@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap);

/* ===================== */
/* Global Salon Variables */
/* ===================== */
:root {
  --primary: #4f07b4;
  /* Elegant purple */
  --secondary: #ff9a8b;
  /* Warm coral */
  --accent: #4f07b4;
  /* Accent */
  --primaryColor: #4f07b4;
  --secondaryColor: #4f07b4;
  --Purple-Gradient: linear-gradient(132deg, #4f07b4 0%, #a074d4 100%);
  --background: #f8f5ff;
  /* Soft background */
  --text-dark: #3a2e4f;
  /* Main text */
  --text-light: #555555;
  /* Secondary text */
  --gray: #e0e0e0;
  --radius: 8px;
  --spacing: 0.8rem;
  /* 12-13px */
}


/* ============== */
/* Base Typography */
/* ============== */
html,
body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--background);
  padding: 0px;
  margin: 0px;

}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

/* ================ */
/* Layout & Spacing */
/* ================ */
.container,
.container-fluid,
.row,
[class*="col-"] {
  padding-left: var(--spacing);
  padding-right: var(--spacing);
}

/* ============= */
/* Form Elements */
/* ============= */
input,
select,
textarea {
  border: 2px solid var(--gray);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  transition: border-color 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* ======== */
/* Buttons  */
/* ======== */
.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #7a4eac;
  box-shadow: 0 2px 8px rgba(139, 95, 191, 0.3);
}

/* ====== */
/* Cards */
/* ====== */
.card,
.booking-card {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background: #fff;
}

/* ================ */
/* FullCalendar UI  */
/* ================ */

.fc {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: white;
  font-family: "Inter", sans-serif;
}

.fc-header-toolbar,
.fc-toolbar {
  padding: var(--spacing);
  background: white;
}

.fc-button {
  background: var(--primary) !important;
  border: none !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.fc-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(139, 95, 191, 0.3);
}

.fc-timegrid-slots td {
  border-color: var(--gray);
}

.fc-timegrid-slot {
  height: 2.5rem !important;
}

.fc-event {
  border: none;
  border-radius: 6px;
  padding: 2px 6px;
  background: var(--primary);
  font-size: 0.85rem;
  color: white !important;
}

.fc-event:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.fc-day-today {
  background: rgba(139, 95, 191, 0.1) !important;
}

.fc-col-header-cell-cushion {
  color: #4f07b4;
}

/* ===================== */
/* Sidebar Color Overrides */
/* ===================== */
.sidebar-area {
  background: var(--primary);
  /* purple background */
  color: #ffffff;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link {
  color: #ffffff;
  background: transparent;
  border-radius: var(--radius);
  padding: 12px 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Hover & Active States */
.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item.active>.nav-link,
.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link.active {
  background: #ffffff;
  color: var(--primary);
}

/* ========= */
/* Utilities */
/* ========= */
.text-center {
  text-align: center !important;
}

.mt-3 {
  margin-top: calc(var(--spacing) * 3);
}

.mb-2 {
  margin-bottom: calc(var(--spacing) * 2);
}

@media (max-width: 768px) {
  .fc-toolbar {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.loader-wrapper[data-v-2d286b5e] {
  --line-width: 5px;
  --curtain-color: #fff;
  --outer-line-color: #a8dadc;
  --middle-line-color: #457b9d;
  --inner-line-color: #1d3557;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader[data-v-2d286b5e] {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  animation: spin-2d286b5e 2s linear infinite;
  z-index: 1001;
}

.loader[data-v-2d286b5e]:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  animation: spin-2d286b5e 3s linear infinite;
}

.loader[data-v-2d286b5e]:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  animation: spin-2d286b5e 1.5s linear infinite;
}

@keyframes spin-2d286b5e {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.loader-wrapper .loader-section[data-v-2d286b5e] {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left[data-v-2d286b5e] {
  left: 0;
}

.loader-wrapper .loader-section.section-right[data-v-2d286b5e] {
  right: 0;
}

.loaded .loader-wrapper .loader-section.section-left[data-v-2d286b5e] {
  transform: translateX(-100%);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}

.loaded .loader-wrapper .loader-section.section-right[data-v-2d286b5e] {
  transform: translateX(100%);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
}

.loaded .loader[data-v-2d286b5e] {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper[data-v-2d286b5e] {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s ease-out 1s;
}

.setting-sidebar[data-v-044f338c] {
  box-shadow: 0 4px 34px 0 rgba(99, 102, 241, 0.11);
  padding: 25px 0 50px;
}

.setting-sidebar .close-btn[data-v-044f338c] {
  top: 32px;
  right: 25px;
}

.setting-sidebar .logo[data-v-044f338c] {
  display: block;
  padding: 0 30px 30px 30px;
  border-bottom: 1px solid #eef3fa;
  margin: 0 0 30px;
}

.setting-sidebar .theme-switch[data-v-044f338c] {
  opacity: 0;
  position: absolute;
}

.setting-sidebar .checkbox-label[data-v-044f338c] {
  background-color: #eef2f9;
  width: 58px;
  height: 32px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #6366f1;
}

.setting-sidebar .checkbox-label .round[data-v-044f338c] {
  background-color: var(--whiteColor);
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 2px 4px 0 rgba(79, 70, 229, 0.25);
  left: 4px;
  top: 3px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.setting-sidebar .theme-switch:checked+.checkbox-label .round[data-v-044f338c] {
  transform: translateX(26px);
  box-shadow: none;
  background-color: #4f46e5;
  transition: var(--transition);
}

.setting-sidebar[data-v-8471c4d6] {
  box-shadow: 0 4px 34px 0 rgba(99, 102, 241, 0.11);
  padding: 25px 0 50px;
}

.setting-sidebar .close-btn[data-v-8471c4d6] {
  top: 32px;
  right: 25px;
}

.setting-sidebar .logo[data-v-8471c4d6] {
  display: block;
  padding: 0 30px 30px 30px;
  border-bottom: 1px solid #eef3fa;
  margin: 0 0 30px;
}

.setting-sidebar .rtl_switch[data-v-8471c4d6],
.setting-sidebar .theme-switch[data-v-8471c4d6] {
  opacity: 0;
  position: absolute;
}

.setting-sidebar .checkbox-label[data-v-8471c4d6] {
  background-color: #eef2f9;
  width: 58px;
  height: 32px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #6366f1;
}

.setting-sidebar .checkbox-label .round[data-v-8471c4d6] {
  background-color: var(--whiteColor);
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 2px 4px 0 rgba(79, 70, 229, 0.25);
  left: 4px;
  top: 3px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.setting-sidebar .rtl_switch:checked+.checkbox-label .round[data-v-8471c4d6],
.setting-sidebar .theme-switch:checked+.checkbox-label .round[data-v-8471c4d6] {
  transform: translateX(26px);
  box-shadow: none;
  background-color: #4f46e5;
  transition: var(--transition);
}

.setting-sidebar .offcanvas-body .settings-item[data-v-8471c4d6] {
  border-bottom: 1px solid #eef3fa;
  padding: 0 30px 30px 30px;
  margin-bottom: 25px;
}

.setting-sidebar .offcanvas-body .settings-item h6[data-v-8471c4d6] {
  border-bottom: 1px solid #eef3fa;
  margin: 0 -30px 25px -30px;
  padding: 0 30px 30px;
}

.setting-sidebar .offcanvas-body .settings-item[data-v-8471c4d6]:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.language-dropdown .dropdown-menu[data-v-f384ec5c] {
  width: 225px;
  font-size: 14px;
  box-shadow: 0 4px 34px rgba(101, 96, 240, 0.1);
  margin-top: 19px !important;
  margin-right: -10px !important;
}

.language-dropdown .dropdown-menu .dropdown-body[data-v-f384ec5c] {
  padding: 15px 30px;
}

.language-dropdown .dropdown-menu .dropdown-body li[data-v-f384ec5c] {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.language-dropdown .dropdown-menu .dropdown-body li[data-v-f384ec5c]:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.language-dropdown .dropdown-menu .dropdown-body li button img[data-v-f384ec5c] {
  max-width: 40px;
}

.notification-dropdown .dropdown-toggle[data-v-176ceac2] {
  padding: 2px 7px 0 0;
}

.notification-dropdown .dropdown-toggle span[data-v-176ceac2] {
  width: 20px;
  height: 20px;
  top: -8px;
  font-size: 12px;
  line-height: 18px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  line-height: 20px;
  background: #0eb77a;
}

.notification-dropdown .dropdown-menu[data-v-176ceac2] {
  width: 315px;
  font-size: 14px;
  box-shadow: 0 4px 34px rgba(101, 96, 240, 0.1);
  margin-top: 19px !important;
  margin-right: -10px !important;
}

.notification-dropdown .dropdown-menu .dropdown-body[data-v-176ceac2] {
  padding: 15px 28px;
}

.notification-dropdown .dropdown-menu .dropdown-body li[data-v-176ceac2] {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-dropdown .dropdown-menu .dropdown-body li .read[data-v-176ceac2],
.notification-dropdown .dropdown-menu .dropdown-body li .unread[data-v-176ceac2] {
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
}

.notification-dropdown .dropdown-menu .dropdown-body li .read i[data-v-176ceac2],
.notification-dropdown .dropdown-menu .dropdown-body li .read img[data-v-176ceac2],
.notification-dropdown .dropdown-menu .dropdown-body li .unread i[data-v-176ceac2],
.notification-dropdown .dropdown-menu .dropdown-body li .unread img[data-v-176ceac2] {
  opacity: 0.7;
}

.notification-dropdown .dropdown-menu .dropdown-body li .unread[data-v-176ceac2] {
  background-color: #0eb77a;
}

.notification-dropdown .dropdown-menu .dropdown-body li .read[data-v-176ceac2] {
  background-color: #4f46e5;
}

.notification-dropdown .dropdown-menu .dropdown-body li[data-v-176ceac2]:last-child {
  border-bottom: none;
}

.notification-dropdown .dropdown-menu .dropdown-body li a[data-v-176ceac2] {
  line-height: 22px;
}

.profile-dropdown img[data-v-013394e2] {
  border-radius: 5px;
  margin-right: 10px;
}

.profile-dropdown .dropdown-toggle[data-v-013394e2]:after {
  display: none;
}

.profile-dropdown span[data-v-013394e2]:first-child {
  margin-bottom: 5px;
}

.profile-dropdown span[data-v-013394e2]:nth-child(2) {
  color: #8a939b;
}

.profile-dropdown .dropdown-menu[data-v-013394e2] {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15) !important;
  padding: 14px 20px;
  top: 20px !important;
}

.profile-dropdown .dropdown-menu ul li[data-v-013394e2] {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.profile-dropdown .dropdown-menu ul li[data-v-013394e2]:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profile-dropdown .dropdown-menu ul li a[data-v-013394e2]:hover {
  color: var(--secondaryColor);
  padding-left: 5px;
}

.settings-toggler[data-v-1d2f21f6] {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  box-shadow: 0 4px 20px 0 rgba(91, 89, 236, 0.2);
}

.settings-toggler img[data-v-1d2f21f6] {
  display: block;
  margin: 0 auto;
}

.header-area {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.03);
}

.header-area.style-two {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-top: 28.5px;
  padding-bottom: 28.5px;
}

.header-area.style-two .header-left .header-burger-menu {
  margin-left: 40px;
}

.header-area.style-two .header-left .header-burger-menu i {
  font-size: 25px;
}

.header-area .header-left .logo {
  min-width: 110px;
}

.header-area .header-left .search-area {
  margin-left: 30px;
}

.header-area .header-left .search-area input {
  height: 55px;
  padding: 13px 35px 13px 23px;
}

.header-area .header-left .search-area input::-moz-placeholder {
  opacity: 1;
  color: #8d929a;
}

.header-area .header-left .search-area input::placeholder {
  opacity: 1;
  color: #8d929a;
}

.header-area .header-right .navbar-nav {
  margin-right: 25px;
}

.header-area .header-right .navbar-nav>.nav-item {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}

.header-area .header-right .navbar-nav>.nav-item:last-child {
  margin-right: 0;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link {
  color: #0e1622;
  font-weight: 500;
  position: relative;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle {
  padding-right: 12px;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.active,
.header-area .header-right .navbar-nav>.nav-item .nav-link:hover {
  color: var(--secondaryColor);
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle:before {
  position: absolute;
  content: "";
  right: -1px;
  top: 20px;
  background-image: url(./assets/img/down-arrow-black.fd08930f.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle:after {
  display: none;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle.active:before,
.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle:hover:before {
  background-image: url(./assets/img/down-arrow-2.1bfd4524.svg);
}

.header-area .header-right .navbar-nav>.nav-item .dropdown-menu {
  top: 65px;
  opacity: 0;
  z-index: 99;
  width: 260px;
  display: block;
  padding: 12px 25px;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  border: none;
  transform: translate3d(0, 18px, 0);
  box-shadow: 0 8px 24px hsla(210, 8%, 62%, 0.2);
}

.header-area .header-right .navbar-nav>.nav-item .dropdown-menu .nav-item .nav-link {
  transition: var(--transition);
}

.header-area .header-right .navbar-nav>.nav-item .dropdown-menu .nav-item .nav-link:hover {
  padding-left: 8px;
}

.header-area .header-right .navbar-nav>.nav-item:hover .dropdown-menu {
  top: 50px;
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}

.header-area .header-right .option-item {
  margin-right: 20px;
}

.header-area .header-right .option-item:last-child {
  margin-right: 0;
}

.header-area .header-right .option-item .pos-link {
  color: #4f46e5;
  border: 2px solid var(--Purple-Gradient, #4f46e5);
  box-shadow: 0 5px 10px 0 rgba(99, 102, 241, 0.2);
  padding: 11.5px 22.5px;
}

.header-area .header-right .option-item .pos-link:hover {
  border-color: transparent;
  background-color: #4f46e5;
  color: var(--whiteColor);
}

.header-area .header-right .option-item .language-dropdown .dropdown-toggle:after,
.header-area .header-right .option-item .notification-dropdown .dropdown-toggle:after {
  display: none;
}

.header-area .header-right .option-item .language-dropdown .dropdown-toggle img {
  position: relative;
  top: 1px;
}

.shopcart {
  padding: 3px 7px 0 0;
}

.shopcart span {
  width: 17px;
  height: 17px;
  font-size: 11px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  line-height: 17px;
}

.searchModal {
  overflow-x: hidden;
}

.searchModal .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 30px 15px;
  background-color: var(--whiteColor);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.searchModal .modal-dialog .modal-content {
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0;
  max-width: 720px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.searchModal .modal-dialog .modal-content form {
  width: calc(100% - 25px);
  position: relative;
}

.searchModal .modal-dialog .modal-content form .form-control {
  height: 55px;
  border-radius: 0;
  box-shadow: unset;
  border-radius: 5px;
  color: var(--blackColor);
  font-size: 14px;
  border: 1px solid #eee;
  background-color: var(--whiteColor);
  padding-left: 18px;
  padding-right: 18px;
}

.searchModal .modal-dialog .modal-content form .form-control::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paraColor);
}

.searchModal .modal-dialog .modal-content form .form-control::placeholder {
  transition: var(--transition);
  color: var(--paraColor);
}

.searchModal .modal-dialog .modal-content form .form-control:focus::-moz-placeholder {
  color: transparent;
}

.searchModal .modal-dialog .modal-content form .form-control:focus::placeholder {
  color: transparent;
}

.searchModal .modal-dialog .modal-content form .form-control:-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraphColor);
}

.searchModal .modal-dialog .modal-content form .form-control:-ms-input-placeholder {
  -ms-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraphColor);
}

.searchModal .modal-dialog .modal-content form button {
  top: 5px;
  border: 0;
  padding: 0;
  right: 5px;
  width: 45px;
  height: 45px;
  font-size: 17px;
  border-radius: 5px;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--secondaryColor);
}

.searchModal .modal-dialog .modal-content form button:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}

.searchModal .modal-dialog .modal-content form button img {
  position: relative;
  top: -1px;
  filter: brightness(0) invert(1);
}

.searchModal .modal-dialog .modal-content .btn-close {
  top: 13px;
  padding: 0;
  z-index: 2;
  opacity: 1;
  right: 0;
  text-align: right;
  cursor: pointer;
  box-shadow: unset;
  position: absolute;
  background-color: transparent;
  background-image: none;
}

.searchModal .modal-dialog .modal-content .btn-close img {
  min-width: 22px;
}

@media only screen and (max-width: 575px) {
  .header-area .header-left .logo {
    max-width: 82px;
    min-width: 82px;
  }

  .header-area .header-right .option-item {
    margin-right: 10px;
  }

  .header-area .header-right .option-item:last-child {
    margin-right: 0;
  }

  .header-area .header-right .option-item .settings-toggler img {
    max-width: 20px;
    position: relative;
    left: 0.5px;
  }

  .header-area.style-two .header-left {
    margin-bottom: 15px;
    justify-content: space-between;
  }

  .header-area.style-two .header-right {
    justify-content: space-between;
  }

  .header-area.style-two .header-right .option-item {
    margin-right: 10px;
  }

  .header-area.style-two .header-right .option-item:last-child {
    margin-right: 0;
  }

  .header-area.style-two .header-right .option-item .pos-link {
    font-size: 14px;
    padding: 8px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area.style-two {
    padding: 18px 0;
  }

  .header-area.style-two .header-left .header-burger-menu {
    margin-left: 20px;
  }

  .header-area.style-two .header-right .option-item {
    margin-right: 15px;
  }

  .header-area.style-two .header-right .option-item:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .header-area .header-left .logo {
    max-width: 85px;
    min-width: 85px;
  }

  .header-area .header-right .option-item .profile-dropdown .dropdown-toggle img,
  .header-area .header-right .option-item .settings-toggler {
    width: 35px;
    height: 35px;
  }

  .profile-dropdown img {
    margin-right: 0;
  }

  .navbar-toggler {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .header-right .navbar-nav .nav-item {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1400px) {
  .header-area .container-fluid {
    padding-right: 50px;
    padding-left: 50px;
  }

  .header-area .header-left .search-area {
    margin-left: 80px;
  }

  .header-area .header-right .navbar-nav {
    margin-right: 38px;
  }

  .header-area .header-right .navbar-nav>.nav-item {
    margin-right: 43px;
  }

  .header-area.style-two .header-left .header-burger-menu {
    margin-left: 78px;
  }

  .header-area.style-two .header-right .option-item {
    margin-right: 27px;
  }

  .header-area.style-two .header-right .option-item:last-child {
    margin-right: 0;
  }
}

.sidebar-area {
  top: 100px;
  left: 0;
  height: 100%;
  z-index: 2;
  transition: var(--transition);
}

/* .sidebar-area .sidebar-menu-wrap {
  padding: 40px;
  z-index: 2;
} */

.sidebar-area .sidebar-menu-wrap .sidebar-menu {
  position: relative;
  z-index: 2;
}




.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item {
  margin-bottom: 25px;
  display: block;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item:last-child {
  margin-bottom: 0;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link {
  position: relative;
  /* background-color: #2c3a52; */
  text-align: center;
  display: inline-block;
  /* width: 128px;
  height: 100px; */
  border-radius: 4px;
  padding: 10px;
  /* padding: 19px 5px 18px; */
  transition: var(--transition);
  z-index: 1;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item.active>.nav-link,
.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link.active {
  background: #ffffff;
  color: var(--primary);
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0;
  border-radius: 4px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link img {
  display: block;
  margin: 0 auto;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link .nav-text {
  color: #ffffff;
  margin-top: 5px;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item.active>.nav-link:after,
.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item:hover>.nav-link:after,
.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link.active:after {
  visibility: visible;
  opacity: 1;
  height: 100%;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item:has(ul.sidebar-secondary-menu li a.active)>.nav-link:after {
  visibility: visible;
  opacity: 1;
  height: 100%;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu {
  position: fixed;
  top: 100px;
  left: 70px;
  width: 200px;
  height: calc(100vh - 100px);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  overflow-y: auto;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li a {
  font-size: 14px;
  color: var(--primaryColor);
  transition: var(--transition);
  padding: 14px 25px;
  display: block;
  width: 100%;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li a img {
  position: relative;
  margin-right: 8px;
  top: -1.5px;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li a.active,
.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li a:hover {
  background-color: #f3f8ff;
}

.sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item:hover .sidebar-secondary-menu {
  visibility: visible;
  opacity: 1;
}

#sidebar_menu_wrap {
  position: relative;
  z-index: 1;
  height: calc(100vh - 70px);
  overflow-y: auto;
}

#sidebar_menu_wrap::-webkit-scrollbar {
  height: 7px;
  width: 7px;
  background: var(--primaryColor);
}

#sidebar_menu_wrap::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 100%, 0.5);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

#sidebar_menu_wrap::-webkit-scrollbar-corner {
  background: #000;
}

@media only screen and (max-width: 575px) {
  .sidebar-area {
    top: 116px;
  }

  .sidebar-area .sidebar-menu-wrap {
    padding: 25px 15px;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item {
    margin-bottom: 10px;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item:last-child {
    margin-bottom: 0;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link {
    width: 55px;
    height: 55px;
    padding: 14px 5px 12px;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link img {
    max-width: 27px;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item>.nav-link .nav-text {
    display: none !important;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu {
    top: 116px;
    left: 80px;
    width: 250px;
    height: 100vh;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li a {
    font-size: 14px;
    padding: 14px 20px;
  }

  #sidebar_menu_wrap {
    height: calc(100vh - 116px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-area {
    top: 80px;
  }

  .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu {
    top: 79px;
  }
}

.stat-card[data-v-2b8703c6] {
  padding: 8px 20px;
}

.stat-card .stat-icon[data-v-2b8703c6] {
  position: relative;
  width: 105px;
  min-height: 104px;
}

.stat-card .stat-icon .blur-icon[data-v-2b8703c6] {
  position: absolute;
  top: 0;
  left: 0;
}

.stat-card .stat-icon img[data-v-2b8703c6] {
  margin-right: auto;
}

.stat-card .stat-info[data-v-2b8703c6] {
  width: calc(100% - 110px);
}

.stat-card .stat-info span[data-v-2b8703c6] {
  color: #a8acb2;
  letter-spacing: 0.7px;
  display: block;
  margin-bottom: 1px;
}

.stat-card .stat-info h4[data-v-2b8703c6] {
  color: var(--titleColor);
  font-size: 22px;
  font-weight: 800;
}

@media only screen and (min-width: 1600px) {
  .stat-card[data-v-2b8703c6] {
    padding: 8px 30px;
  }

  .stat-card .stat-info[data-v-2b8703c6] {
    position: relative;
    top: -3px;
  }

  .stat-card .stat-info h4[data-v-2b8703c6] {
    font-size: 25px;
  }
}

.footer-wrap[data-v-ec4f13bc] {
  background-color: #161e2c;
  padding-top: 26px;
  padding-bottom: 26px;
}

.footer-wrap .copyright-text[data-v-ec4f13bc] {
  color: var(--offwhiteColor);
}

.footer-wrap .copyright-text a[data-v-ec4f13bc]:hover {
  color: var(--secondaryColor) !important;
}

.footer-wrap.style-two[data-v-ec4f13bc] {
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}

@media only screen and (max-width: 767px) {
  .footer-wrap[data-v-ec4f13bc] {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-wrap .copyright-text[data-v-ec4f13bc] {
    margin-bottom: 8px;
  }

  .footer-wrap .copyright-text[data-v-ec4f13bc],
  .footer-wrap p[data-v-ec4f13bc] {
    text-align: center;
    font-size: 14px;
  }
}

@media only screen and (min-width: 1400px) {
  .footer-wrap.style-two[data-v-ec4f13bc] {
    margin: 0 -40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.chart-wrapper[data-v-7ea16980] {
  margin: 0 -10px;
}

.chart-wrapper .card[data-v-7ea16980] {
  margin-left: 10px;
  margin-right: 10px;
}

.breadcrumb-menu li {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-menu li:after {
  position: absolute;
  top: -1px;
  right: 6px;
  content: "/";
  font-size: 14px;
  font-weight: 400;
}

.breadcrumb-menu li:last-child {
  padding-right: 0;
}

.breadcrumb-menu li:last-child:after {
  display: none;
}

.breadcrumb-menu li a {
  color: var(--secondaryColor);
}

@media only screen and (max-width: 767px) {
  .breadcrumb-menu {
    margin-top: 10px;
  }
}

.upload-gallery .file-upload[data-v-6d11aa77] {
  padding: 40px 20px;
  border: 1.5px dashed #a8acb2;
  text-align: center;
  border-radius: 4px;
}

.upload-gallery .file-upload input[data-v-6d11aa77] {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media only screen and (min-width: 1400px) {
  .upload-gallery .file-upload[data-v-6d11aa77] {
    padding: 40px 75px 35px;
  }
}

.chart-wrapper[data-v-d37994c4] {
  margin: 0 -10px;
}

.chart-wrapper .card[data-v-d37994c4] {
  margin-left: 10px;
  margin-right: 10px;
}

.filter-left button {
  margin-right: 10px;
}

.filter-left .search-area input {
  padding-left: 20px;
}

.filter-left .search-area input::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input::placeholder {
  opacity: 0.8;
}

.filter-right a {
  margin-right: 10px;
}

.filter-right a:last-child {
  margin-right: 0;
}

.filter-right button,
.filter-right div {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn {
    margin-bottom: 15px;
  }

  .filter-right a,
  .filter-right button,
  .filter-right div {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button {
    margin-right: 15px;
  }

  .filter-left .search-area {
    width: 320px;
  }

  .filter-right a,
  .filter-right button,
  .filter-right div {
    margin-right: 15px;
  }
}

.chart-wrapper {
  margin: 0 -10px;
}

.chart-wrapper .card {
  margin-left: 10px;
  margin-right: 10px;
}

.chart-wrapper[data-v-fabf67f0] {
  margin: 0 -10px;
}

.chart-wrapper .card[data-v-fabf67f0] {
  margin-left: 10px;
  margin-right: 10px;
}

.barcode-wrapper[data-v-298c7882] {
  display: none;
}

.barcode-wrapper.open[data-v-298c7882] {
  display: block;
}

.barcode-wrap[data-v-298c7882] {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7.5px;
}

.barcode-wrap .barcode-item[data-v-298c7882] {
  border: 1px solid #e3e4e4;
  margin-bottom: 15px;
  margin: 0 7.5px 15px;
  width: calc(12.5% - 15px);
  padding: 16px 10px 17px;
}

@media only screen and (max-width: 575px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(50% - 15px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(33.33% - 15px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(25% - 15px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(25% - 15px);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(20% - 15px);
  }
}

@media only screen and (min-width: 1400px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(16.66% - 15px);
  }
}

@media only screen and (min-width: 1600px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(14.28% - 15px);
  }
}

@media only screen and (min-width: 1920px) {
  .barcode-wrap .barcode-item[data-v-298c7882] {
    width: calc(12.5% - 15px);
  }
}

.filter-right a[data-v-3b9a67ee] {
  margin-right: 10px;
}

.filter-right a[data-v-3b9a67ee]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-3b9a67ee],
.filter-right div[data-v-3b9a67ee] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {

  .filter-right a[data-v-3b9a67ee],
  .filter-right button[data-v-3b9a67ee],
  .filter-right div[data-v-3b9a67ee] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-3b9a67ee] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (min-width: 1400px) {

  .filter-right a[data-v-3b9a67ee],
  .filter-right button[data-v-3b9a67ee],
  .filter-right div[data-v-3b9a67ee] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-5fa29a92] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-5fa29a92] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-5fa29a92]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-5fa29a92]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-5fa29a92] {
  margin-right: 10px;
}

.filter-right a[data-v-5fa29a92]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-5fa29a92],
.filter-right div[data-v-5fa29a92] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-5fa29a92] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-5fa29a92],
  .filter-right button[data-v-5fa29a92],
  .filter-right div[data-v-5fa29a92] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-5fa29a92] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-5fa29a92] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-5fa29a92] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-5fa29a92] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-5fa29a92] {
    width: 320px;
  }

  .filter-right a[data-v-5fa29a92],
  .filter-right button[data-v-5fa29a92],
  .filter-right div[data-v-5fa29a92] {
    margin-right: 15px;
  }
}

.select-cat[data-v-3689a9b0] {
  height: 36px;
  border-radius: 2px;
  background: #ececec;
  width: 226px;
  padding-left: 20px;
  background-image: url(./assets/img/down-arrow-4.22a46b18.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: calc(100% - 20px) 16px;
}

.filter-left button[data-v-1c52162e] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-1c52162e] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-1c52162e]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-1c52162e]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-1c52162e] {
  margin-right: 10px;
}

.filter-right a[data-v-1c52162e]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-1c52162e],
.filter-right div[data-v-1c52162e] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-1c52162e] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-1c52162e],
  .filter-right button[data-v-1c52162e],
  .filter-right div[data-v-1c52162e] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-1c52162e] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-1c52162e] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-1c52162e] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-1c52162e] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-1c52162e] {
    width: 320px;
  }

  .filter-right a[data-v-1c52162e],
  .filter-right button[data-v-1c52162e],
  .filter-right div[data-v-1c52162e] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-6f5a3132] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-6f5a3132] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-6f5a3132]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-6f5a3132]::placeholder {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-6f5a3132] {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-6f5a3132] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-6f5a3132] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-6f5a3132] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-6f5a3132] {
    width: 320px;
  }
}

.pos-left[data-v-fd5d3770] {
  width: calc(45% - 10px);
  height: 100%;
  padding: 15px 15px 50px;
}

.pos-left .pos-tablist .nav-item[data-v-fd5d3770] {
  width: calc(33.33% - 15px);
}

.pos-left .pos-tablist .nav-item .nav-link[data-v-fd5d3770] {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  padding: 13.5px 15px;
}

.pos-left .pos-tablist .nav-item .nav-link.active[data-v-fd5d3770]:before {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.pos-table[data-v-fd5d3770] {
  border-radius: none;
}

.pos-table tbody tr:last-child td[data-v-fd5d3770] {
  border-bottom: 1px solid #eeeef0;
}

.pos-table tbody tr td[data-v-fd5d3770] {
  padding: 5px 10px 12px;
  border: 1px solid #eeeef0;
}

.pos-table tbody tr td[data-v-fd5d3770]:last-child {
  border-bottom: 1px solid #eeeef0;
}

.pos-table tbody tr td .product-item[data-v-fd5d3770] {
  cursor: pointer;
}

.pos-table tbody tr td .product-item span[data-v-fd5d3770] {
  margin-bottom: 8px;
}

.pos-table tbody tr td .product-item h6[data-v-fd5d3770] {
  font-weight: 600;
}

@media only screen and (max-width: 575px) {
  .pos-left[data-v-fd5d3770] {
    padding: 15px 15px 30px;
  }

  .pos-left .pos-tablist .nav-item[data-v-fd5d3770] {
    width: 100%;
    margin-bottom: 15px;
  }

  .pos-table tbody tr td[data-v-fd5d3770] {
    padding: 20px 30px !important;
  }
}

@media only screen and (max-width: 991px) {
  .pos-left[data-v-fd5d3770] {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 1600px) {
  .pos-left[data-v-fd5d3770] {
    width: calc(50% - 10px);
  }
}

.pos-right {
  width: calc(55% - 10px);
}

.pos-right .grand-total {
  background-color: #1e293b;
  font-size: 16px;
  color: var(--whiteColor);
  font-weight: 600;
  text-align: center;
  padding: 17px 20px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.pos-right .grand-total span {
  font-size: 20px;
  font-weight: 800;
}

.pos-right .btn-wrapper button {
  width: calc(20% - 10px);
  padding: 14.5px 8px;
  font-size: 14px;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .pos-right .btn-wrapper button {
    width: 100%;
    margin-bottom: 10px;
  }

  .pos-right .btn-wrapper button:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .pos-right {
    width: 100%;
  }
}

@media only screen and (min-width: 1600px) {
  .pos-right {
    width: calc(50% - 10px);
  }

  .pos-right .btn-wrapper button {
    width: calc(20% - 20px);
  }
}

.filter-left .search-area input[data-v-1687ec25] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-1687ec25]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-1687ec25]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-1687ec25] {
  margin-right: 10px;
}

.filter-right a[data-v-1687ec25]:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-1687ec25] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-1687ec25] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left .search-area[data-v-1687ec25] {
    width: 320px;
  }
}

.filter-left button[data-v-5109d169] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-5109d169] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-5109d169]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-5109d169]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-5109d169] {
  margin-right: 10px;
}

.filter-right a[data-v-5109d169]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-5109d169],
.filter-right div[data-v-5109d169] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-5109d169] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-5109d169],
  .filter-right button[data-v-5109d169],
  .filter-right div[data-v-5109d169] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-5109d169] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-5109d169] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-5109d169] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-5109d169] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-5109d169] {
    width: 320px;
  }

  .filter-right a[data-v-5109d169],
  .filter-right button[data-v-5109d169],
  .filter-right div[data-v-5109d169] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-4d8dabf7] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-4d8dabf7] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-4d8dabf7]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-4d8dabf7]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-4d8dabf7] {
  margin-right: 10px;
}

.filter-right a[data-v-4d8dabf7]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-4d8dabf7],
.filter-right div[data-v-4d8dabf7] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-4d8dabf7] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-4d8dabf7],
  .filter-right button[data-v-4d8dabf7],
  .filter-right div[data-v-4d8dabf7] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-4d8dabf7] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-4d8dabf7] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-4d8dabf7] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-4d8dabf7] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-4d8dabf7] {
    width: 320px;
  }

  .filter-right a[data-v-4d8dabf7],
  .filter-right button[data-v-4d8dabf7],
  .filter-right div[data-v-4d8dabf7] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-b5daf0f2] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-b5daf0f2] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-b5daf0f2]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-b5daf0f2]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-b5daf0f2] {
  margin-right: 10px;
}

.filter-right a[data-v-b5daf0f2]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-b5daf0f2],
.filter-right div[data-v-b5daf0f2] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-b5daf0f2] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-b5daf0f2],
  .filter-right button[data-v-b5daf0f2],
  .filter-right div[data-v-b5daf0f2] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-b5daf0f2] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-b5daf0f2] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-b5daf0f2] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-b5daf0f2] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-b5daf0f2] {
    width: 320px;
  }

  .filter-right a[data-v-b5daf0f2],
  .filter-right button[data-v-b5daf0f2],
  .filter-right div[data-v-b5daf0f2] {
    margin-right: 15px;
  }
}

.upload-gallery .file-upload {
  padding: 40px 20px;
  border: 1.5px dashed #a8acb2;
  text-align: center;
  border-radius: 4px;
}

.upload-gallery .file-upload input {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media only screen and (min-width: 1400px) {
  .upload-gallery .file-upload {
    padding: 40px 75px 35px;
  }
}

.filter-left button[data-v-43f997d8] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-43f997d8] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-43f997d8]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-43f997d8]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-43f997d8] {
  margin-right: 10px;
}

.filter-right a[data-v-43f997d8]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-43f997d8],
.filter-right div[data-v-43f997d8] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-43f997d8] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-43f997d8],
  .filter-right button[data-v-43f997d8],
  .filter-right div[data-v-43f997d8] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-43f997d8] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-43f997d8] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-43f997d8] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-43f997d8] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-43f997d8] {
    width: 320px;
  }

  .filter-right a[data-v-43f997d8],
  .filter-right button[data-v-43f997d8],
  .filter-right div[data-v-43f997d8] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-0c31417d] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-0c31417d] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-0c31417d]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-0c31417d]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-0c31417d] {
  margin-right: 10px;
}

.filter-right a[data-v-0c31417d]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-0c31417d],
.filter-right div[data-v-0c31417d] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-0c31417d] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-0c31417d],
  .filter-right button[data-v-0c31417d],
  .filter-right div[data-v-0c31417d] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-0c31417d] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-0c31417d] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-0c31417d] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-0c31417d] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-0c31417d] {
    width: 320px;
  }

  .filter-right a[data-v-0c31417d],
  .filter-right button[data-v-0c31417d],
  .filter-right div[data-v-0c31417d] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-531b6f45] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-531b6f45] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-531b6f45]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-531b6f45]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-531b6f45] {
  margin-right: 10px;
}

.filter-right a[data-v-531b6f45]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-531b6f45],
.filter-right div[data-v-531b6f45] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-531b6f45] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-531b6f45],
  .filter-right button[data-v-531b6f45],
  .filter-right div[data-v-531b6f45] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-531b6f45] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-531b6f45] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-531b6f45] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-531b6f45] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-531b6f45] {
    width: 320px;
  }

  .filter-right a[data-v-531b6f45],
  .filter-right button[data-v-531b6f45],
  .filter-right div[data-v-531b6f45] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-50399cc4] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-50399cc4] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-50399cc4]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-50399cc4]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-50399cc4] {
  margin-right: 10px;
}

.filter-right a[data-v-50399cc4]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-50399cc4],
.filter-right div[data-v-50399cc4] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-50399cc4] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-50399cc4],
  .filter-right button[data-v-50399cc4],
  .filter-right div[data-v-50399cc4] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-50399cc4] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-50399cc4] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-50399cc4] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-50399cc4] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-50399cc4] {
    width: 320px;
  }

  .filter-right a[data-v-50399cc4],
  .filter-right button[data-v-50399cc4],
  .filter-right div[data-v-50399cc4] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-79f9fcd2] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-79f9fcd2] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-79f9fcd2]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-79f9fcd2]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-79f9fcd2] {
  margin-right: 10px;
}

.filter-right a[data-v-79f9fcd2]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-79f9fcd2],
.filter-right div[data-v-79f9fcd2] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-79f9fcd2] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-79f9fcd2],
  .filter-right button[data-v-79f9fcd2],
  .filter-right div[data-v-79f9fcd2] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-79f9fcd2] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-79f9fcd2] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-79f9fcd2] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-79f9fcd2] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-79f9fcd2] {
    width: 320px;
  }

  .filter-right a[data-v-79f9fcd2],
  .filter-right button[data-v-79f9fcd2],
  .filter-right div[data-v-79f9fcd2] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-9a7af67c] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-9a7af67c] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-9a7af67c]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-9a7af67c]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-9a7af67c] {
  margin-right: 10px;
}

.filter-right a[data-v-9a7af67c]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-9a7af67c],
.filter-right div[data-v-9a7af67c] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-9a7af67c] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-9a7af67c],
  .filter-right button[data-v-9a7af67c],
  .filter-right div[data-v-9a7af67c] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-9a7af67c] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-9a7af67c] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-9a7af67c] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-9a7af67c] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-9a7af67c] {
    width: 320px;
  }

  .filter-right a[data-v-9a7af67c],
  .filter-right button[data-v-9a7af67c],
  .filter-right div[data-v-9a7af67c] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-2a24f729] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-2a24f729] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-2a24f729]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-2a24f729]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-2a24f729] {
  margin-right: 10px;
}

.filter-right a[data-v-2a24f729]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-2a24f729],
.filter-right div[data-v-2a24f729] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-2a24f729] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-2a24f729],
  .filter-right button[data-v-2a24f729],
  .filter-right div[data-v-2a24f729] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-2a24f729] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-2a24f729] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-2a24f729] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-2a24f729] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-2a24f729] {
    width: 320px;
  }

  .filter-right a[data-v-2a24f729],
  .filter-right button[data-v-2a24f729],
  .filter-right div[data-v-2a24f729] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-8bf960d2] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-8bf960d2] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-8bf960d2]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-8bf960d2]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-8bf960d2] {
  margin-right: 10px;
}

.filter-right a[data-v-8bf960d2]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-8bf960d2],
.filter-right div[data-v-8bf960d2] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-8bf960d2] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-8bf960d2],
  .filter-right button[data-v-8bf960d2],
  .filter-right div[data-v-8bf960d2] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-8bf960d2] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-8bf960d2] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-8bf960d2] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-8bf960d2] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-8bf960d2] {
    width: 320px;
  }

  .filter-right a[data-v-8bf960d2],
  .filter-right button[data-v-8bf960d2],
  .filter-right div[data-v-8bf960d2] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-3c3092cd] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-3c3092cd] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-3c3092cd]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-3c3092cd]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-3c3092cd] {
  margin-right: 10px;
}

.filter-right a[data-v-3c3092cd]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-3c3092cd],
.filter-right div[data-v-3c3092cd] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-3c3092cd] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-3c3092cd],
  .filter-right button[data-v-3c3092cd],
  .filter-right div[data-v-3c3092cd] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-3c3092cd] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-3c3092cd] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-3c3092cd] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-3c3092cd] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-3c3092cd] {
    width: 320px;
  }

  .filter-right a[data-v-3c3092cd],
  .filter-right button[data-v-3c3092cd],
  .filter-right div[data-v-3c3092cd] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-5ad14aee] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-5ad14aee] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-5ad14aee]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-5ad14aee]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-5ad14aee] {
  margin-right: 10px;
}

.filter-right a[data-v-5ad14aee]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-5ad14aee],
.filter-right div[data-v-5ad14aee] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-5ad14aee] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-5ad14aee],
  .filter-right button[data-v-5ad14aee],
  .filter-right div[data-v-5ad14aee] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-5ad14aee] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-5ad14aee] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-5ad14aee] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-5ad14aee] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-5ad14aee] {
    width: 320px;
  }

  .filter-right a[data-v-5ad14aee],
  .filter-right button[data-v-5ad14aee],
  .filter-right div[data-v-5ad14aee] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-51463562] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-51463562] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-51463562]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-51463562]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-51463562] {
  margin-right: 10px;
}

.filter-right a[data-v-51463562]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-51463562],
.filter-right div[data-v-51463562] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-51463562] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-51463562],
  .filter-right button[data-v-51463562],
  .filter-right div[data-v-51463562] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-51463562] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-51463562] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-51463562] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-51463562] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-51463562] {
    width: 320px;
  }

  .filter-right a[data-v-51463562],
  .filter-right button[data-v-51463562],
  .filter-right div[data-v-51463562] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-6a29b39d] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-6a29b39d] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-6a29b39d]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-6a29b39d]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-6a29b39d] {
  margin-right: 10px;
}

.filter-right a[data-v-6a29b39d]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-6a29b39d],
.filter-right div[data-v-6a29b39d] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-6a29b39d] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-6a29b39d],
  .filter-right button[data-v-6a29b39d],
  .filter-right div[data-v-6a29b39d] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-6a29b39d] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-6a29b39d] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-6a29b39d] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-6a29b39d] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-6a29b39d] {
    width: 320px;
  }

  .filter-right a[data-v-6a29b39d],
  .filter-right button[data-v-6a29b39d],
  .filter-right div[data-v-6a29b39d] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-4e260e3f] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-4e260e3f] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-4e260e3f]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-4e260e3f]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-4e260e3f] {
  margin-right: 10px;
}

.filter-right a[data-v-4e260e3f]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-4e260e3f],
.filter-right div[data-v-4e260e3f] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-4e260e3f] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-4e260e3f],
  .filter-right button[data-v-4e260e3f],
  .filter-right div[data-v-4e260e3f] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-4e260e3f] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-4e260e3f] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-4e260e3f] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-4e260e3f] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-4e260e3f] {
    width: 320px;
  }

  .filter-right a[data-v-4e260e3f],
  .filter-right button[data-v-4e260e3f],
  .filter-right div[data-v-4e260e3f] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-0c8a7da8] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-0c8a7da8] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-0c8a7da8]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-0c8a7da8]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-0c8a7da8] {
  margin-right: 10px;
}

.filter-right a[data-v-0c8a7da8]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-0c8a7da8],
.filter-right div[data-v-0c8a7da8] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-0c8a7da8] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-0c8a7da8],
  .filter-right button[data-v-0c8a7da8],
  .filter-right div[data-v-0c8a7da8] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-0c8a7da8] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-0c8a7da8] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-0c8a7da8] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-0c8a7da8] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-0c8a7da8] {
    width: 320px;
  }

  .filter-right a[data-v-0c8a7da8],
  .filter-right button[data-v-0c8a7da8],
  .filter-right div[data-v-0c8a7da8] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-d206378a] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-d206378a] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-d206378a]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-d206378a]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-d206378a] {
  margin-right: 10px;
}

.filter-right a[data-v-d206378a]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-d206378a],
.filter-right div[data-v-d206378a] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-d206378a] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-d206378a],
  .filter-right button[data-v-d206378a],
  .filter-right div[data-v-d206378a] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-d206378a] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-d206378a] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-d206378a] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-d206378a] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-d206378a] {
    width: 320px;
  }

  .filter-right a[data-v-d206378a],
  .filter-right button[data-v-d206378a],
  .filter-right div[data-v-d206378a] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-11f134fc] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-11f134fc] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-11f134fc]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-11f134fc]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-11f134fc] {
  margin-right: 10px;
}

.filter-right a[data-v-11f134fc]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-11f134fc],
.filter-right div[data-v-11f134fc] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-11f134fc] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-11f134fc],
  .filter-right button[data-v-11f134fc],
  .filter-right div[data-v-11f134fc] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-11f134fc] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-11f134fc] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-11f134fc] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-11f134fc] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-11f134fc] {
    width: 320px;
  }

  .filter-right a[data-v-11f134fc],
  .filter-right button[data-v-11f134fc],
  .filter-right div[data-v-11f134fc] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-68daa8e7] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-68daa8e7] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-68daa8e7]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-68daa8e7]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-68daa8e7] {
  margin-right: 10px;
}

.filter-right a[data-v-68daa8e7]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-68daa8e7],
.filter-right div[data-v-68daa8e7] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-68daa8e7] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-68daa8e7],
  .filter-right button[data-v-68daa8e7],
  .filter-right div[data-v-68daa8e7] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-68daa8e7] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-68daa8e7] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-68daa8e7] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-68daa8e7] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-68daa8e7] {
    width: 320px;
  }

  .filter-right a[data-v-68daa8e7],
  .filter-right button[data-v-68daa8e7],
  .filter-right div[data-v-68daa8e7] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-0161cdb2] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-0161cdb2] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-0161cdb2]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-0161cdb2]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-0161cdb2] {
  margin-right: 10px;
}

.filter-right a[data-v-0161cdb2]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-0161cdb2],
.filter-right div[data-v-0161cdb2] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-0161cdb2] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-0161cdb2],
  .filter-right button[data-v-0161cdb2],
  .filter-right div[data-v-0161cdb2] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-0161cdb2] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-0161cdb2] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-0161cdb2] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-0161cdb2] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-0161cdb2] {
    width: 320px;
  }

  .filter-right a[data-v-0161cdb2],
  .filter-right button[data-v-0161cdb2],
  .filter-right div[data-v-0161cdb2] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-f8eeb012] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-f8eeb012] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-f8eeb012]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-f8eeb012]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-f8eeb012] {
  margin-right: 10px;
}

.filter-right a[data-v-f8eeb012]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-f8eeb012],
.filter-right div[data-v-f8eeb012] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-f8eeb012] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-f8eeb012],
  .filter-right button[data-v-f8eeb012],
  .filter-right div[data-v-f8eeb012] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-f8eeb012] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-f8eeb012] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-f8eeb012] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-f8eeb012] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-f8eeb012] {
    width: 320px;
  }

  .filter-right a[data-v-f8eeb012],
  .filter-right button[data-v-f8eeb012],
  .filter-right div[data-v-f8eeb012] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-4f558679] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-4f558679] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-4f558679]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-4f558679]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-4f558679] {
  margin-right: 10px;
}

.filter-right a[data-v-4f558679]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-4f558679],
.filter-right div[data-v-4f558679] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-4f558679] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-4f558679],
  .filter-right button[data-v-4f558679],
  .filter-right div[data-v-4f558679] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-4f558679] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-4f558679] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-4f558679] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-4f558679] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-4f558679] {
    width: 320px;
  }

  .filter-right a[data-v-4f558679],
  .filter-right button[data-v-4f558679],
  .filter-right div[data-v-4f558679] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-e6e82f7e] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-e6e82f7e] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-e6e82f7e]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-e6e82f7e]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-e6e82f7e] {
  margin-right: 10px;
}

.filter-right a[data-v-e6e82f7e]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-e6e82f7e],
.filter-right div[data-v-e6e82f7e] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-e6e82f7e] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-e6e82f7e],
  .filter-right button[data-v-e6e82f7e],
  .filter-right div[data-v-e6e82f7e] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-e6e82f7e] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-e6e82f7e] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-e6e82f7e] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-e6e82f7e] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-e6e82f7e] {
    width: 320px;
  }

  .filter-right a[data-v-e6e82f7e],
  .filter-right button[data-v-e6e82f7e],
  .filter-right div[data-v-e6e82f7e] {
    margin-right: 15px;
  }
}

.filter-left button[data-v-f01480f6] {
  margin-right: 10px;
}

.filter-left .search-area input[data-v-f01480f6] {
  padding-left: 20px;
}

.filter-left .search-area input[data-v-f01480f6]::-moz-placeholder {
  opacity: 0.8;
}

.filter-left .search-area input[data-v-f01480f6]::placeholder {
  opacity: 0.8;
}

.filter-right a[data-v-f01480f6] {
  margin-right: 10px;
}

.filter-right a[data-v-f01480f6]:last-child {
  margin-right: 0;
}

.filter-right button[data-v-f01480f6],
.filter-right div[data-v-f01480f6] {
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .filter-left .btn[data-v-f01480f6] {
    margin-bottom: 15px;
  }

  .filter-right a[data-v-f01480f6],
  .filter-right button[data-v-f01480f6],
  .filter-right div[data-v-f01480f6] {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .filter-right[data-v-f01480f6] {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
}

@media only screen and (max-width: 991px) {
  .filter-left[data-v-f01480f6] {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .filter-left .search-area[data-v-f01480f6] {
    width: 320px;
  }
}

@media only screen and (min-width: 1400px) {
  .filter-left button[data-v-f01480f6] {
    margin-right: 15px;
  }

  .filter-left .search-area[data-v-f01480f6] {
    width: 320px;
  }

  .filter-right a[data-v-f01480f6],
  .filter-right button[data-v-f01480f6],
  .filter-right div[data-v-f01480f6] {
    margin-right: 15px;
  }
}

.header-area[data-v-1dc13fdc] {
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.03);
}

.header-area.style-one[data-v-1dc13fdc] {
  position: relative;
  padding-top: 22.5px;
  padding-bottom: 22.5px;
}

.header-area.style-one.sticky[data-v-1dc13fdc] {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
}

.header-area .header-left .logo[data-v-1dc13fdc] {
  min-width: 110px;
}

.header-area .header-left .search-area[data-v-1dc13fdc] {
  margin-left: 30px;
}

.header-area .header-left .search-area input[data-v-1dc13fdc] {
  height: 55px;
  padding: 13px 35px 13px 23px;
}

.header-area .header-left .search-area input[data-v-1dc13fdc]::-moz-placeholder {
  opacity: 1;
  color: #8d929a;
}

.header-area .header-left .search-area input[data-v-1dc13fdc]::placeholder {
  opacity: 1;
  color: #8d929a;
}

.header-area .header-right .navbar-nav[data-v-1dc13fdc] {
  margin-right: 25px;
}

.header-area .header-right .navbar-nav>.nav-item[data-v-1dc13fdc] {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}

.header-area .header-right .navbar-nav>.nav-item[data-v-1dc13fdc]:last-child {
  margin-right: 0;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link[data-v-1dc13fdc] {
  color: #0e1622;
  font-weight: 500;
  position: relative;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle[data-v-1dc13fdc] {
  padding-right: 12px;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.active[data-v-1dc13fdc],
.header-area .header-right .navbar-nav>.nav-item .nav-link[data-v-1dc13fdc]:hover {
  color: var(--secondaryColor);
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle[data-v-1dc13fdc]:before {
  position: absolute;
  content: "";
  right: -1px;
  top: 20px;
  background-image: url(./assets/img/down-arrow-black.fd08930f.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle[data-v-1dc13fdc]:after {
  display: none;
}

.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle.active[data-v-1dc13fdc]:before,
.header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle[data-v-1dc13fdc]:hover:before {
  background-image: url(./assets/img/down-arrow-2.1bfd4524.svg);
}

.header-area .header-right .navbar-nav>.nav-item .dropdown-menu[data-v-1dc13fdc] {
  top: 65px;
  opacity: 0;
  z-index: 99;
  width: 260px;
  display: block;
  padding: 12px 25px;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  border: none;
  transform: translate3d(0, 18px, 0);
  box-shadow: 0 8px 24px hsla(210, 8%, 62%, 0.2);
}

.header-area .header-right .navbar-nav>.nav-item .dropdown-menu .nav-item .nav-link[data-v-1dc13fdc] {
  transition: var(--transition);
}

.header-area .header-right .navbar-nav>.nav-item .dropdown-menu .nav-item .nav-link[data-v-1dc13fdc]:hover {
  padding-left: 8px;
}

.header-area .header-right .navbar-nav>.nav-item:hover .dropdown-menu[data-v-1dc13fdc] {
  top: 50px;
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}

.header-area .header-right .option-item[data-v-1dc13fdc] {
  margin-right: 20px;
}

.header-area .header-right .option-item[data-v-1dc13fdc]:last-child {
  margin-right: 0;
}

.header-area .header-right .option-item .pos-link[data-v-1dc13fdc] {
  color: #4f46e5;
  border: 2px solid var(--Purple-Gradient, #4f46e5);
  box-shadow: 0 5px 10px 0 rgba(99, 102, 241, 0.2);
  padding: 11.5px 22.5px;
}

.header-area .header-right .option-item .pos-link[data-v-1dc13fdc]:hover {
  border-color: transparent;
  background-color: #4f46e5;
  color: var(--whiteColor);
}

.header-area .header-right .option-item .language-dropdown .dropdown-toggle[data-v-1dc13fdc]:after,
.header-area .header-right .option-item .notification-dropdown .dropdown-toggle[data-v-1dc13fdc]:after {
  display: none;
}

.header-area .header-right .option-item .language-dropdown .dropdown-toggle img[data-v-1dc13fdc] {
  position: relative;
  top: 1px;
}

.shopcart[data-v-1dc13fdc] {
  padding: 3px 7px 0 0;
}

.shopcart span[data-v-1dc13fdc] {
  width: 17px;
  height: 17px;
  font-size: 11px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  line-height: 17px;
}

.searchModal[data-v-1dc13fdc] {
  overflow-x: hidden;
}

.searchModal .modal-dialog[data-v-1dc13fdc] {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 30px 15px;
  background-color: var(--whiteColor);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.searchModal .modal-dialog .modal-content[data-v-1dc13fdc] {
  border: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0;
  max-width: 720px;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
}

.searchModal .modal-dialog .modal-content form[data-v-1dc13fdc] {
  width: calc(100% - 25px);
  position: relative;
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc] {
  height: 55px;
  border-radius: 0;
  box-shadow: unset;
  border-radius: 5px;
  color: var(--blackColor);
  font-size: 14px;
  border: 1px solid #eee;
  background-color: var(--whiteColor);
  padding-left: 18px;
  padding-right: 18px;
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc]::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paraColor);
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc]::placeholder {
  transition: var(--transition);
  color: var(--paraColor);
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc]:focus::-moz-placeholder {
  color: transparent;
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc]:focus::placeholder {
  color: transparent;
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc]:-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraphColor);
}

.searchModal .modal-dialog .modal-content form .form-control[data-v-1dc13fdc]:-ms-input-placeholder {
  -ms-transition: var(--transition);
  transition: var(--transition);
  color: var(--paragraphColor);
}

.searchModal .modal-dialog .modal-content form button[data-v-1dc13fdc] {
  top: 5px;
  border: 0;
  padding: 0;
  right: 5px;
  width: 45px;
  height: 45px;
  font-size: 17px;
  border-radius: 5px;
  position: absolute;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--secondaryColor);
}

.searchModal .modal-dialog .modal-content form button[data-v-1dc13fdc]:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}

.searchModal .modal-dialog .modal-content form button img[data-v-1dc13fdc] {
  position: relative;
  top: -1px;
  filter: brightness(0) invert(1);
}

.searchModal .modal-dialog .modal-content .btn-close[data-v-1dc13fdc] {
  top: 13px;
  padding: 0;
  z-index: 2;
  opacity: 1;
  right: 0;
  text-align: right;
  cursor: pointer;
  box-shadow: unset;
  position: absolute;
  background-color: transparent;
  background-image: none;
}

.searchModal .modal-dialog .modal-content .btn-close img[data-v-1dc13fdc] {
  min-width: 22px;
}

.profile-dropdown img[data-v-1dc13fdc] {
  border-radius: 5px;
  margin-right: 10px;
}

.profile-dropdown .dropdown-toggle[data-v-1dc13fdc]:after {
  display: none;
}

.profile-dropdown span[data-v-1dc13fdc]:first-child {
  margin-bottom: 5px;
}

.profile-dropdown span[data-v-1dc13fdc]:nth-child(2) {
  color: #8a939b;
}

.profile-dropdown .dropdown-menu[data-v-1dc13fdc] {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  padding: 14px 20px;
  top: 20px !important;
}

.profile-dropdown .dropdown-menu ul li[data-v-1dc13fdc] {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.profile-dropdown .dropdown-menu ul li[data-v-1dc13fdc]:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profile-dropdown .dropdown-menu ul li a[data-v-1dc13fdc]:hover {
  color: var(--secondaryColor);
  padding-left: 5px;
}

.settings-toggler[data-v-1dc13fdc] {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  box-shadow: 0 4px 20px 0 rgba(91, 89, 236, 0.2);
}

.settings-toggler img[data-v-1dc13fdc] {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 575px) {
  .header-area .header-left .logo[data-v-1dc13fdc] {
    max-width: 82px;
    min-width: 82px;
  }

  .header-area .header-right .option-item[data-v-1dc13fdc] {
    margin-right: 10px;
  }

  .header-area .header-right .option-item[data-v-1dc13fdc]:last-child {
    margin-right: 0;
  }

  .header-area .header-right .option-item .settings-toggler img[data-v-1dc13fdc] {
    max-width: 20px;
    position: relative;
    left: 0.5px;
  }

  .header-area.style-two .header-left[data-v-1dc13fdc] {
    margin-bottom: 15px;
    justify-content: space-between;
  }

  .header-area.style-two .header-right[data-v-1dc13fdc] {
    justify-content: space-between;
  }

  .header-area.style-two .header-right .option-item[data-v-1dc13fdc] {
    margin-right: 10px;
  }

  .header-area.style-two .header-right .option-item[data-v-1dc13fdc]:last-child {
    margin-right: 0;
  }

  .header-area.style-two .header-right .option-item .pos-link[data-v-1dc13fdc] {
    font-size: 14px;
    padding: 8px 15px;
  }
}

@media only screen and (max-width: 991px) {
  .header-area .header-left .logo[data-v-1dc13fdc] {
    max-width: 85px;
    min-width: 85px;
  }

  .header-area .header-right .option-item .profile-dropdown .dropdown-toggle img[data-v-1dc13fdc],
  .header-area .header-right .option-item .settings-toggler[data-v-1dc13fdc] {
    width: 35px;
    height: 35px;
  }

  .profile-dropdown img[data-v-1dc13fdc] {
    margin-right: 0;
  }

  .navbar-toggler[data-v-1dc13fdc] {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area .header-right .navbar-nav .nav-item[data-v-1dc13fdc] {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1400px) {
  .header-area .container-fluid[data-v-1dc13fdc] {
    padding-right: 50px;
    padding-left: 50px;
  }

  .header-area .header-left .search-area[data-v-1dc13fdc] {
    margin-left: 80px;
  }

  .header-area .header-right .navbar-nav[data-v-1dc13fdc] {
    margin-right: 38px;
  }

  .header-area .header-right .navbar-nav>.nav-item[data-v-1dc13fdc] {
    margin-right: 43px;
  }

  .header-area.style-one .header-right .option-item[data-v-1dc13fdc] {
    margin-right: 30px;
  }

  .header-area.style-one .header-right .option-item[data-v-1dc13fdc]:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .responsive-navbar[data-v-021d5650] {
    background-color: var(--ashColor);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
  }

  .responsive-navbar .offcanvas-header[data-v-021d5650] {
    padding: 20px 25px 10px;
  }

  .responsive-navbar .offcanvas-header .close-btn[data-v-021d5650] {
    transition: var(--transition);
    color: var(--titleColor);
    font-size: 21px;
    cursor: pointer;
    top: 2px;
  }

  .responsive-navbar .offcanvas-body[data-v-021d5650] {
    padding: 20px 25px;
  }

  .responsive-navbar .offcanvas-body ul[data-v-021d5650] {
    list-style-type: none;
    margin-bottom: 0;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu[data-v-021d5650] {
    padding-left: 0;
    overflow: hidden;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list[data-v-021d5650] {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    line-height: 55px;
    height: 55px;
    clear: both;
    width: 100%;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a[data-v-021d5650] {
    position: relative;
    height: 100%;
    display: block;
    padding-right: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a.dropdown-toggle[data-v-021d5650]:before {
    top: 50%;
    right: 0;
    content: "";
    background-image: url(./assets/img/down-arrow-black.fd08930f.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    width: 10px;
    height: 10px;
    position: absolute;
    transform: translateY(-50%);
    transition: var(--transition);
    cursor: pointer;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a.dropdown-toggle[data-v-021d5650]:after {
    display: none;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a.active[data-v-021d5650],
  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list a[data-v-021d5650]:hover {
    color: var(--secondaryColor);
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items[data-v-021d5650] {
    height: 0;
    overflow: hidden;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a[data-v-021d5650] {
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a.active[data-v-021d5650],
  .responsive-navbar .offcanvas-body ul.responsive-menu .responsive-menu-list .responsive-menu-items a[data-v-021d5650]:hover {
    color: var(--secondaryColor);
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .active[data-v-021d5650]:after {
    transform: translateY(-50%) rotate(180deg);
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .active>.responsive-menu-items[data-v-021d5650] {
    transition: all 0.2s;
    display: block;
    height: auto;
    clear: both;
    float: left;
    width: 100%;
    padding: 0 0 0 20px;
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .active>.responsive-menu-items li[data-v-021d5650] {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  }

  .responsive-navbar .offcanvas-body ul.responsive-menu .active>a[data-v-021d5650] {
    color: var(--titleColor);
  }
}

.hero-section[data-v-358e9e68] {
  background-color: #8897e8;
  margin-top: 30px;
  border-radius: 10px;
  padding: 35px 50px;
}

.hero-section .hero-content h1[data-v-358e9e68] {
  color: var(--whiteColor);
  font-size: 38px;
  font-weight: 800;
  line-height: 52px;
  margin-bottom: 10px;
}

.hero-section .hero-content p[data-v-358e9e68] {
  color: #e3e8ff;
  line-height: 28px;
  margin-bottom: 20px;
}

.hero-section .hero-img img[data-v-358e9e68] {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .hero-section[data-v-358e9e68] {
    padding: 48px 20px;
  }

  .hero-section .hero-content h1[data-v-358e9e68] {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }

  .hero-section .hero-content p[data-v-358e9e68] {
    padding-right: 0;
  }

  .hero-section .hero-img[data-v-358e9e68] {
    margin-top: 35px;
    padding: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .hero-section[data-v-358e9e68] {
    margin: 30px 50px 0;
    padding: 48px 80px;
  }

  .hero-section .hero-content h1[data-v-358e9e68] {
    font-size: 42px;
    line-height: 60px;
  }

  .hero-section .hero-content p[data-v-358e9e68] {
    padding-right: 20px;
  }

  .hero-section .hero-img[data-v-358e9e68] {
    padding-left: 135px;
  }
}

@media only screen and (min-width: 1600px) {
  .hero-section .hero-content h1[data-v-358e9e68] {
    font-size: 60px;
    line-height: 80px;
  }
}

.ctegory-card img[data-v-052d6ad5] {
  border-radius: 5px;
  margin-bottom: 18px;
}

.ctegory-card h6[data-v-052d6ad5] {
  margin: 0;
}

.ctegory-card h6 a[data-v-052d6ad5] {
  color: var(--titleColor);
}

.ctegory-card h6 a[data-v-052d6ad5]:hover {
  color: var(--secondaryColor);
}

.category-wrap[data-v-052d6ad5] {
  position: relative;
}

.category-wrap .slider-btn .category-next[data-v-052d6ad5],
.category-wrap .slider-btn .category-prev[data-v-052d6ad5] {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 2;
  transition: var(--transition);
}

.category-wrap .slider-btn .category-next img[data-v-052d6ad5],
.category-wrap .slider-btn .category-prev img[data-v-052d6ad5] {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.category-wrap .slider-btn .category-next[data-v-052d6ad5]:hover,
.category-wrap .slider-btn .category-prev[data-v-052d6ad5]:hover {
  background-color: var(--secondaryColor);
}

.category-wrap .slider-btn .category-next:hover img[data-v-052d6ad5],
.category-wrap .slider-btn .category-prev:hover img[data-v-052d6ad5] {
  filter: brightness(0) invert(1);
}

.category-wrap .slider-btn .category-prev[data-v-052d6ad5] {
  left: 0;
}

.category-wrap .slider-btn .category-next[data-v-052d6ad5] {
  right: 0;
}

@media only screen and (min-width: 1400px) {
  .category-wrap[data-v-052d6ad5] {
    padding: 0 50px;
  }

  .category-wrap .slider-btn .category-next[data-v-052d6ad5],
  .category-wrap .slider-btn .category-prev[data-v-052d6ad5] {
    top: 50%;
  }

  .category-wrap .slider-btn .category-prev[data-v-052d6ad5] {
    left: 20px;
  }

  .category-wrap .slider-btn .category-next[data-v-052d6ad5] {
    right: 20px;
  }
}

.product-card-wrap[data-v-5c11f546] {
  margin: 0 -7.5px;
}

.product-card-wrap .product-card[data-v-5c11f546] {
  margin: 0 7.5px 25px;
}

.product-card[data-v-5c11f546] {
  margin: 0 7.5px 30px;
}

.product-card>a img[data-v-5c11f546] {
  border-radius: 5px;
  margin: 0 0 24px;
}

.product-card .add-to-cart[data-v-5c11f546] {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}

.product-card .add-to-cart img[data-v-5c11f546] {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.product-card .add-to-cart[data-v-5c11f546]:hover {
  background-color: var(--secondaryColor) !important;
}

.product-card .add-to-cart:hover img[data-v-5c11f546] {
  filter: brightness(0) invert(1);
}

.product-card .product-info h3[data-v-5c11f546] {
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 13px;
}

.product-card .product-info h3 a[data-v-5c11f546] {
  color: var(--primaryColor);
}

.product-card .product-info h3 a[data-v-5c11f546]:hover {
  color: var(--secondaryColor);
}

.product-card .product-info span[data-v-5c11f546] {
  color: #5855eb;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .product-card-wrap[data-v-5c11f546] {
    margin: 0;
  }

  .product-card-wrap .product-card[data-v-5c11f546] {
    width: 100%;
    margin: 0 0 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-card-wrap .product-card[data-v-5c11f546] {
    width: calc(50% - 15px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-card-wrap .product-card[data-v-5c11f546] {
    width: calc(33.33% - 15px);
  }
}

@media only screen and (min-width: 1200px) {
  .product-card-wrap .product-card[data-v-5c11f546] {
    width: calc(25% - 15px);
  }
}

@media only screen and (min-width: 1400px) {
  .product-card-wrap .product-card[data-v-5c11f546] {
    width: calc(20% - 15px);
    margin: 0 7.5px 40px;
  }
}

.footer-wrap[data-v-549b9b97] {
  background-color: #161e2c;
  padding-top: 26px;
  padding-bottom: 26px;
}

.footer-wrap .copyright-text[data-v-549b9b97] {
  color: var(--offwhiteColor);
}

.footer-wrap .copyright-text a[data-v-549b9b97]:hover {
  color: var(--secondaryColor) !important;
}

@media only screen and (max-width: 767px) {
  .footer-wrap[data-v-549b9b97] {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-wrap .copyright-text[data-v-549b9b97] {
    margin-bottom: 8px;
  }

  .footer-wrap .copyright-text[data-v-549b9b97],
  .footer-wrap p[data-v-549b9b97] {
    text-align: center;
    font-size: 14px;
  }
}

.breadcrumb-menu li[data-v-77330a26] {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-menu li[data-v-77330a26]:after {
  position: absolute;
  top: -1px;
  right: 6px;
  content: "/";
  font-size: 14px;
  font-weight: 400;
}

.breadcrumb-menu li[data-v-77330a26]:last-child {
  padding-right: 0;
}

.breadcrumb-menu li[data-v-77330a26]:last-child:after {
  display: none;
}

.breadcrumb-menu li a[data-v-77330a26] {
  color: var(--secondaryColor);
}

@media only screen and (max-width: 767px) {
  .breadcrumb-menu[data-v-77330a26] {
    margin-top: 10px;
  }
}

.sidebar .sidebar-widget[data-v-0f8e4fb1] {
  background-color: var(--whiteColor);
  padding: 25px;
  border-radius: 10px;
  margin: 0 0 30px;
  position: relative;
  z-index: 1;
}

.sidebar .sidebar-widget .sidebar-widget-title[data-v-0f8e4fb1] {
  color: var(--titleColor);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar .sidebar-widget[data-v-0f8e4fb1]:last-child {
  margin: 0;
}

.multi-range[data-v-0f8e4fb1] {
  position: relative;
  height: 30px;
  margin: 0 0 20px;
}

.category-list li[data-v-0f8e4fb1] {
  position: relative;
  margin-bottom: 8px;
}

.category-list li[data-v-0f8e4fb1]:last-child {
  margin-bottom: 0;
}

.category-list li a[data-v-0f8e4fb1] {
  color: var(--optionalColor);
  display: block;
  font-size: 14px;
  transition: var(transition);
  border-radius: 5px;
}

.category-list li a span[data-v-0f8e4fb1] {
  margin-left: 5px;
}

.category-list li a[data-v-0f8e4fb1]:hover {
  color: var(--secondaryColor);
}

.price-title[data-v-0f8e4fb1] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.price-title .price span[data-v-0f8e4fb1],
.price-title p[data-v-0f8e4fb1] {
  margin: 0 5px 0 0;
  color: #555;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.multi-range input[type="range"][data-v-0f8e4fb1]:first-child::-webkit-slider-thumb:before {
  background-color: gray;
}

.multi-range input[type="range"][data-v-0f8e4fb1]:nth-child(2) {
  background: none;
}

.multi-range input[type="range"][data-v-0f8e4fb1]:nth-child(2)::-webkit-slider-thumb:before {
  background-color: gray;
}

.multi-range input[type="range"][data-v-0f8e4fb1]::-moz-range-track {
  background: none;
}

input[type="range"][data-v-0f8e4fb1] {
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  background: linear-gradient(#6366f1, #6366f1) no-repeat 50%;
  background-size: 100% 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: none;
}

input[type="range"][data-v-0f8e4fb1]::-moz-focus-outer,
input[type="range"][data-v-0f8e4fb1]:active,
input[type="range"][data-v-0f8e4fb1]:focus {
  border: none;
  outline: none;
}

input[type="range"][data-v-0f8e4fb1]::-moz-range-thumb {
  position: relative;
  height: 20px;
  width: 20px;
  margin: 5px 0;
  border-radius: 50%;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 4px 0 rgba(79, 70, 229, 0.25);
  border: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: all;
  cursor: pointer;
}

input[type="range"][data-v-0f8e4fb1]::-webkit-slider-thumb {
  position: relative;
  height: 28px;
  width: 28px;
  margin: 5px 0;
  border-radius: 50%;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 4px 0 rgba(79, 70, 229, 0.25);
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
}

.tag-list[data-v-0f8e4fb1] {
  margin-top: -10px;
}

.tag-list li[data-v-0f8e4fb1] {
  display: inline-block;
  margin: 10px 6px 0 0;
}

.tag-list li a[data-v-0f8e4fb1] {
  display: inline-block;
  font-size: 13px;
  line-height: 14px;
  padding: 11px 15px;
  border-radius: 5px;
  color: #4f46e5;
  background-color: #f1f5f9;
  transition: var(transition);
}

.tag-list li a[data-v-0f8e4fb1]:hover {
  background-color: #4f46e5;
  color: var(--whiteColor);
  border-color: transparent;
}

@media only screen and (min-width: 1400px) {
  .sidebar .sidebar-widget[data-v-0f8e4fb1] {
    padding: 38px 40px 40px;
  }
}

.product-card[data-v-234d4072] {
  margin: 0 7.5px 30px;
}

.product-card>a img[data-v-234d4072] {
  border-radius: 5px;
  margin: 0 0 24px;
}

.product-card .add-to-cart[data-v-234d4072] {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}

.product-card .add-to-cart img[data-v-234d4072] {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.product-card .add-to-cart[data-v-234d4072]:hover {
  background-color: var(--secondaryColor) !important;
}

.product-card .add-to-cart:hover img[data-v-234d4072] {
  filter: brightness(0) invert(1);
}

.product-card .product-info h3[data-v-234d4072] {
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 13px;
}

.product-card .product-info h3 a[data-v-234d4072] {
  color: var(--primaryColor);
}

.product-card .product-info h3 a[data-v-234d4072]:hover {
  color: var(--secondaryColor);
}

.product-card .product-info span[data-v-234d4072] {
  color: #5855eb;
  font-weight: 500;
}

.product-card[data-v-9c0d263c] {
  margin: 0 7.5px 30px;
}

.product-card>a img[data-v-9c0d263c] {
  border-radius: 5px;
  margin: 0 0 24px;
}

.product-card .add-to-cart[data-v-9c0d263c] {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}

.product-card .add-to-cart img[data-v-9c0d263c] {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.product-card .add-to-cart[data-v-9c0d263c]:hover {
  background-color: var(--secondaryColor) !important;
}

.product-card .add-to-cart:hover img[data-v-9c0d263c] {
  filter: brightness(0) invert(1);
}

.product-card .product-info h3[data-v-9c0d263c] {
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 13px;
}

.product-card .product-info h3 a[data-v-9c0d263c] {
  color: var(--primaryColor);
}

.product-card .product-info h3 a[data-v-9c0d263c]:hover {
  color: var(--secondaryColor);
}

.product-card .product-info span[data-v-9c0d263c] {
  color: #5855eb;
  font-weight: 500;
}

.product-card[data-v-56ce9af4] {
  margin: 0 7.5px 30px;
}

.product-card>a img[data-v-56ce9af4] {
  border-radius: 5px;
  margin: 0 0 24px;
}

.product-card .add-to-cart[data-v-56ce9af4] {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  transition: var(--transition);
}

.product-card .add-to-cart img[data-v-56ce9af4] {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.product-card .add-to-cart[data-v-56ce9af4]:hover {
  background-color: var(--secondaryColor) !important;
}

.product-card .add-to-cart:hover img[data-v-56ce9af4] {
  filter: brightness(0) invert(1);
}

.product-card .product-info h3[data-v-56ce9af4] {
  font-size: 18px;
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 13px;
}

.product-card .product-info h3 a[data-v-56ce9af4] {
  color: var(--primaryColor);
}

.product-card .product-info h3 a[data-v-56ce9af4]:hover {
  color: var(--secondaryColor);
}

.product-card .product-info span[data-v-56ce9af4] {
  color: #5855eb;
  font-weight: 500;
}

.single-product-details .ratings li[data-v-28b2271e] {
  margin-right: 3px;
}

.single-product-details h1[data-v-28b2271e] {
  color: var(--titleColor);
  font-size: 46px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 18px;
  letter-spacing: -2.3px;
}

.single-product-details .product-price[data-v-28b2271e] {
  font-size: 24px;
  margin-bottom: 22px;
}

.single-product-details p[data-v-28b2271e] {
  margin-bottom: 25px;
}

.single-product-details .add-to-cart .btn[data-v-28b2271e] {
  padding: 12.5px 22px;
}

.single-product-details .add-to-cart .btn.style-eleven[data-v-28b2271e] {
  background: #6366f1;
  margin: 0 15px;
}

.single-product-details .add-to-cart .btn.style-tweleve[data-v-28b2271e] {
  padding: 12.5px 5px;
}

.single-product-details .add-to-cart .v-counter[data-v-28b2271e] {
  background-color: var(--ashColor);
}

.single-product-details .add-to-cart .v-counter.style-three input[data-v-28b2271e] {
  background-color: #cdcedf;
}

.single-product-details .add-to-cart .v-counter.style-three .minusBtn[data-v-28b2271e]:before,
.single-product-details .add-to-cart .v-counter.style-three .plusBtn[data-v-28b2271e]:before {
  top: 14px;
}

.single-product-details .product-features[data-v-28b2271e] {
  margin-top: 30px;
}

.single-product-details .product-features li[data-v-28b2271e] {
  letter-spacing: 1.4px;
  margin-bottom: 6px;
}

.single-product-details .product-features li span[data-v-28b2271e] {
  letter-spacing: 0;
}

.single-product-item[data-v-28b2271e] {
  position: relative;
}

.single-product-item span[data-v-28b2271e] {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #635bff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  line-height: 1;
  padding: 7px 10px;
  color: var(--whiteColor);
}

.single-product-item img[data-v-28b2271e] {
  border-radius: 20px;
}

.client-reviews .review-item[data-v-28b2271e] {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}

.client-reviews .review-item .client-img[data-v-28b2271e] {
  width: 70px;
  border-radius: 5px;
}

.client-reviews .review-item .client-img img[data-v-28b2271e] {
  border-radius: 5px;
}

.client-reviews .review-item .review-info[data-v-28b2271e] {
  width: calc(100% - 90px);
  margin-left: 20px;
}

.client-reviews .review-item .review-info h6[data-v-28b2271e] {
  color: var(--titleColor);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.32px;
  margin: 0;
}

.client-reviews .review-item .review-info h6 span[data-v-28b2271e] {
  color: #646464;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  margin-left: 10px;
}

.client-reviews .review-item .review-info p[data-v-28b2271e] {
  margin: 15px 0 0;
}

.offer-card[data-v-28b2271e] {
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.offer-card.style-two[data-v-28b2271e] {
  background: linear-gradient(119deg,
      #d9d8e6 22.05%,
      #d0d2e1 50.57%,
      #c2c5d8 98.4%);
}

.offer-card .offer-content[data-v-28b2271e] {
  padding-right: 80px;
  position: relative;
  z-index: 1;
}

.offer-card .offer-content h6[data-v-28b2271e] {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 21px;
}

.offer-card .offer-content h6 span[data-v-28b2271e] {
  font-weight: 900;
}

.offer-card .offer-content h6 a[data-v-28b2271e] {
  color: var(--titleColor);
}

.offer-card .offer-content .btn[data-v-28b2271e] {
  font-size: 16px;
  padding: 11px 20px;
}

.offer-card .offer-content .btn.style-two[data-v-28b2271e] {
  border: none;
  background-color: var(--whiteColor);
  color: var(--secondaryColor);
  border-radius: 3px;
}

.offer-card .offer-content .btn.style-three[data-v-28b2271e] {
  border: none;
  background-color: var(--titleColor);
  color: var(--whiteColor);
  border-radius: 3px;
}

.offer-card .offer-content .btn.style-three[data-v-28b2271e]:hover {
  background-color: var(--secondaryColor);
}

.offer-card .offer-content .btn[data-v-28b2271e]:hover {
  color: var(--whiteColor);
}

.offer-card .offer-img[data-v-28b2271e] {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .single-product-details h1[data-v-28b2271e] {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -1.3px;
  }

  .single-product-details .product-price[data-v-28b2271e] {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .single-product-details p[data-v-28b2271e] {
    margin-bottom: 20px;
  }

  .single-product-details .add-to-cart .btn[data-v-28b2271e] {
    padding: 12.5px 22px;
  }

  .single-product-details .add-to-cart .btn.style-eleven[data-v-28b2271e] {
    background: #6366f1;
    margin: 0 15px 10px 0;
  }

  .single-product-details .add-to-cart .btn.style-tweleve[data-v-28b2271e] {
    padding: 12.5px 5px;
    margin: 0 0 10px 0;
  }

  .single-product-details .add-to-cart .v-counter[data-v-28b2271e] {
    margin: 0 15px 10px 0;
  }

  .single-product-details .product-features[data-v-28b2271e] {
    margin-top: 20px;
  }

  .offer-card .offer-img[data-v-28b2271e] {
    position: relative;
    top: auto;
    transform: translateY(0);
    margin: 0 auto;
  }

  .offer-card .offer-content[data-v-28b2271e] {
    text-align: center;
    padding-right: 0;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .single-product-item[data-v-28b2271e] {
    margin-bottom: 30px;
  }

  .client-reviews .review-item[data-v-28b2271e] {
    margin-bottom: 20px;
  }

  .client-reviews .review-item .review-info[data-v-28b2271e] {
    width: 100%;
    margin: 20px 0 0;
  }

  .client-reviews .review-item .review-info h6[data-v-28b2271e] {
    width: 100%;
  }

  .client-reviews .review-item .review-info h6 span[data-v-28b2271e] {
    color: #646464;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-left: 10px;
  }

  .client-reviews .review-item .review-info .ratings[data-v-28b2271e] {
    width: 100%;
    margin: 10px 0 0;
  }

  .client-reviews .review-item .review-info p[data-v-28b2271e] {
    margin: 15px 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offer-card .offer-img[data-v-28b2271e] {
    max-width: 130px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offer-card .offer-img[data-v-28b2271e] {
    max-width: 130px;
  }
}

@media only screen and (min-width: 1400px) {
  .single-product-details .add-to-cart .v-counter[data-v-28b2271e] {
    background-color: var(--ashColor);
  }

  .single-product-details .add-to-cart .btn.style-eleven[data-v-28b2271e] {
    padding: 12.5px 42px;
  }

  .offer-card[data-v-28b2271e] {
    padding: 30px 40px;
  }

  .offer-card.style-one .offer-content[data-v-28b2271e],
  .offer-card.style-three .offer-content[data-v-28b2271e],
  .offer-card.style-two .offer-content[data-v-28b2271e] {
    padding-right: 155px;
  }
}

.cart-item img[data-v-5e733f1e] {
  border-radius: 10px;
  margin-right: 15px;
}

.cart-item span.qty[data-v-5e733f1e] {
  display: block;
}

.cart-table thead tr th[data-v-5e733f1e] {
  font-size: 14px;
  color: #646464;
  font-weight: 600;
  border-bottom: 1px solid #e0e8ee;
}

.cart-table tbody tr:last-child td[data-v-5e733f1e] {
  border-bottom: 1px solid #e0e8ee;
  padding-bottom: 20px;
}

.cart-table tbody tr td[data-v-5e733f1e] {
  border-bottom: 1px solid #e0e8ee;
}

.cart-table tbody tr td .shop-item[data-v-5e733f1e] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cart-table tbody tr td .shop-item img[data-v-5e733f1e] {
  border-radius: 10px;
}

.cart-table tbody tr td .shop-item a[data-v-5e733f1e] {
  color: var(--titleColor);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-left: 33px;
}

.coupon-form[data-v-5e733f1e] {
  position: relative;
}

.coupon-form button[data-v-5e733f1e] {
  background-color: #03b288;
  height: 100%;
  padding: 10px 20px;
}

@media only screen and (max-width: 767px) {
  .cart-table .table tbody tr td[data-v-5e733f1e] {
    padding-right: 85px;
  }

  .cart-table .table tbody tr td .shop-item[data-v-5e733f1e] {
    flex-wrap: nowrap;
  }
}

.wishlist-table thead tr th[data-v-3cd71e80] {
  font-size: 14px;
  color: #646464;
  font-weight: 600;
  border-bottom: 1px solid #e0e8ee;
}

.wishlist-table tbody tr:last-child td[data-v-3cd71e80] {
  border-bottom: 1px solid #e0e8ee;
  padding-bottom: 20px;
}

.wishlist-table tbody tr td[data-v-3cd71e80] {
  border-bottom: 1px solid #e0e8ee;
}

.wishlist-table tbody tr td .shop-item[data-v-3cd71e80] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.wishlist-table tbody tr td .shop-item img[data-v-3cd71e80] {
  border-radius: 10px;
}

.wishlist-table tbody tr td .shop-item a[data-v-3cd71e80] {
  color: var(--titleColor);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-left: 33px;
}

@media only screen and (max-width: 767px) {
  .wishlist-table .table tbody tr td[data-v-3cd71e80] {
    padding-right: 85px;
  }

  .wishlist-table .table tbody tr td .shop-item[data-v-3cd71e80] {
    flex-wrap: nowrap;
  }
}

.table-responsive[data-v-1da9f758] {
  margin: 0 -30px;
}

.table-responsive table tr td[data-v-1da9f758] {
  padding: 20px 30px;
}

.cart-item img[data-v-1da9f758] {
  border-radius: 10px;
  margin-right: 15px;
}

.cart-item span.qty[data-v-1da9f758] {
  display: block;
}

@media only screen and (max-width: 991px) {
  .checkout-wrap .table-responsive[data-v-c69c3f9e] {
    margin: 0 -22px;
  }

  .checkout-wrap .table-responsive table tr td[data-v-c69c3f9e] {
    padding: 20px 22px;
  }

  .checkout-wrap .table-responsive table tr td[data-v-c69c3f9e]:last-child {
    padding-right: 22px;
  }
}

.login-wrapper .login-bg {
  background-image: url(/assets/img/login-bg.d2033fd9.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  width: 50%;
}

.login-wrapper .login-form-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  background-color: var(--whiteColor);
  padding: 0 50px;
}

.login-wrapper .login-form-wrap .logo {
  display: block;
  margin-bottom: 20px;
  border-bottom: 1px solid #eef3fa;
  padding-bottom: 25px;
}

.login-wrapper .login-form-wrap .login-form {
  border: 1px solid var(--ashColor);
  padding: 25px;
}

.login-wrapper .login-form-wrap h5 {
  font-weight: 500;
  border-bottom: 1px solid #eef3fa;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 0 20px;
}

.login-wrapper .login-credential-item {
  border-bottom: 1px solid #eef3fa;
}

.form-group #toggler {
  right: 20px;
  top: 65px;
  transform: translateY(-50%);
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .login-wrapper {
    padding: 50px 0;
  }

  .login-wrapper .login-bg {
    display: none;
  }

  .login-wrapper .login-form-wrap {
    width: 100%;
    height: 100%;
    padding: 0 12px;
  }

  .login-wrapper .login-form-wrap .login-form {
    padding: 20px 10px;
  }
}

@media only screen and (min-width: 992px) {

  .login-wrapper .login-bg,
  .login-wrapper {
    height: 100vh;
  }
}

@media only screen and (min-width: 1920px) {
  .login-wrapper .login-bg {
    width: 61%;
  }

  .login-wrapper .login-form-wrap {
    width: 39%;
    padding: 0 100px;
  }

  .login-wrapper .login-form-wrap .logo {
    margin-bottom: 30px;
    padding-bottom: 45px;
  }

  .login-wrapper .login-form-wrap .login-form {
    padding: 25px 35px;
  }

  .login-wrapper .login-form-wrap h5 {
    padding-bottom: 20px;
    margin: 0 0 20px;
  }
}

.terms-wrap h1[data-v-6c407f9c],
.terms-wrap h2[data-v-6c407f9c],
.terms-wrap h3[data-v-6c407f9c],
.terms-wrap h4[data-v-6c407f9c],
.terms-wrap h5[data-v-6c407f9c],
.terms-wrap h6[data-v-6c407f9c] {
  margin-bottom: 20px;
}

.terms-wrap p[data-v-6c407f9c] {
  margin-bottom: 15px;
  color: var(--optioanlColor);
}

.terms-wrap p[data-v-6c407f9c]:last-child {
  margin-bottom: 0;
}

.terms-wrap .single-terms[data-v-6c407f9c] {
  margin-bottom: 40px;
}

.terms-wrap .single-terms[data-v-6c407f9c]:last-child {
  margin-bottom: 0;
}

.hero-section[data-v-17c5442c] {
  background-color: #8897e8;
  margin-top: 30px;
  border-radius: 10px;
  padding: 35px 50px;
}

.hero-section .hero-content h1[data-v-17c5442c] {
  color: var(--whiteColor);
  font-size: 38px;
  font-weight: 800;
  line-height: 52px;
  margin-bottom: 10px;
}

.hero-section .hero-content p[data-v-17c5442c] {
  color: #e3e8ff;
  line-height: 28px;
  margin-bottom: 20px;
}

.hero-section .hero-img img[data-v-17c5442c] {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .hero-section[data-v-17c5442c] {
    padding: 48px 20px;
  }

  .hero-section .hero-content h1[data-v-17c5442c] {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }

  .hero-section .hero-content p[data-v-17c5442c] {
    padding-right: 0;
  }

  .hero-section .hero-img[data-v-17c5442c] {
    margin-top: 35px;
    padding: 0;
  }
}

@media only screen and (min-width: 1400px) {
  .hero-section[data-v-17c5442c] {
    margin: 30px 50px 0;
    padding: 48px 80px;
  }

  .hero-section .hero-content h1[data-v-17c5442c] {
    font-size: 42px;
    line-height: 60px;
  }

  .hero-section .hero-content p[data-v-17c5442c] {
    padding-right: 20px;
  }

  .hero-section .hero-img[data-v-17c5442c] {
    padding-left: 135px;
  }
}

@media only screen and (min-width: 1600px) {
  .hero-section .hero-content h1[data-v-17c5442c] {
    font-size: 60px;
    line-height: 80px;
  }
}

.offer-card[data-v-46105ba4] {
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.offer-card.style-one[data-v-46105ba4] {
  background: linear-gradient(180deg, #8fdeff, #91deff 50.52%);
}

.offer-card.style-two[data-v-46105ba4] {
  background: linear-gradient(119deg,
      #d9d8e6 22.05%,
      #d0d2e1 50.57%,
      #c2c5d8 98.4%);
}

.offer-card.style-three[data-v-46105ba4] {
  background: linear-gradient(181deg,
      #e5d8cf 1.71%,
      #cbb9af 37.01%,
      #bdaa9e 54.79%,
      #ae9b8c 73.24%,
      #cbbab0 96.23%);
}

.offer-card .offer-content[data-v-46105ba4] {
  padding-right: 80px;
  position: relative;
  z-index: 1;
}

.offer-card .offer-content h6[data-v-46105ba4] {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 21px;
}

.offer-card .offer-content h6 span[data-v-46105ba4] {
  font-weight: 900;
}

.offer-card .offer-content h6 a[data-v-46105ba4] {
  color: var(--titleColor);
}

.offer-card .offer-content .btn[data-v-46105ba4] {
  font-size: 16px;
  padding: 11px 20px;
}

.offer-card .offer-content .btn.style-two[data-v-46105ba4] {
  border: none;
  background-color: var(--whiteColor);
  color: var(--secondaryColor);
  border-radius: 3px;
}

.offer-card .offer-content .btn.style-three[data-v-46105ba4] {
  border: none;
  background-color: var(--titleColor);
  color: var(--whiteColor);
  border-radius: 3px;
}

.offer-card .offer-content .btn.style-three[data-v-46105ba4]:hover {
  background-color: var(--secondaryColor);
}

.offer-card .offer-content .btn[data-v-46105ba4]:hover {
  color: var(--whiteColor);
}

.offer-card .offer-img[data-v-46105ba4] {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

.offer-wrapper[data-v-46105ba4] {
  position: relative;
}

.offer-wrapper .slider-btn .offer-next[data-v-46105ba4],
.offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 2;
  transition: var(--transition);
  cursor: pointer;
}

.offer-wrapper .slider-btn .offer-next img[data-v-46105ba4],
.offer-wrapper .slider-btn .offer-prev img[data-v-46105ba4] {
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.offer-wrapper .slider-btn .offer-next[data-v-46105ba4]:hover,
.offer-wrapper .slider-btn .offer-prev[data-v-46105ba4]:hover {
  background-color: var(--secondaryColor);
}

.offer-wrapper .slider-btn .offer-next:hover img[data-v-46105ba4],
.offer-wrapper .slider-btn .offer-prev:hover img[data-v-46105ba4] {
  filter: brightness(0) invert(1);
}

.offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
  left: 0;
}

.offer-wrapper .slider-btn .offer-next[data-v-46105ba4] {
  right: 0;
}

@media only screen and (max-width: 767px) {
  .offer-card .offer-img[data-v-46105ba4] {
    position: relative;
    top: auto;
    transform: translateY(0);
    margin: 0 auto;
  }

  .offer-card .offer-content[data-v-46105ba4] {
    text-align: center;
    padding-right: 0;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .offer-wrapper .slider-btn[data-v-46105ba4] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .offer-wrapper .slider-btn .offer-next[data-v-46105ba4],
  .offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
    position: relative;
    top: auto;
    justify-content: center;
    margin-top: 30px;
    width: 49px;
    height: 49px;
    transform: translateY(0);
  }

  .offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
    left: auto;
  }

  .offer-wrapper .slider-btn .offer-next[data-v-46105ba4] {
    right: -10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offer-card .offer-img[data-v-46105ba4] {
    max-width: 130px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
    left: -20px;
  }

  .offer-wrapper .slider-btn .offer-next[data-v-46105ba4] {
    right: -20px;
  }

  .offer-card .offer-img[data-v-46105ba4] {
    max-width: 130px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1399px) {
  .offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
    left: -50px;
  }

  .offer-wrapper .slider-btn .offer-next[data-v-46105ba4] {
    right: -50px;
  }
}

@media only screen and (min-width: 1400px) {

  .offer-wrapper .slider-btn .offer-next[data-v-46105ba4],
  .offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
    top: 50%;
  }

  .offer-wrapper .slider-btn .offer-prev[data-v-46105ba4] {
    left: -35px;
  }

  .offer-wrapper .slider-btn .offer-next[data-v-46105ba4] {
    right: -35px;
  }

  .offer-card[data-v-46105ba4] {
    padding: 30px 40px;
  }

  .offer-card.style-one .offer-content[data-v-46105ba4],
  .offer-card.style-three .offer-content[data-v-46105ba4],
  .offer-card.style-two .offer-content[data-v-46105ba4] {
    padding-right: 155px;
  }
}

.accordion-item[data-v-099c5f7c] {
  border: none;
  margin: 0 0 12px;
  background: var(--whiteColor);
}

.accordion-item[data-v-099c5f7c]:last-child {
  margin-bottom: 0;
}

.accordion-item .accordion-header[data-v-099c5f7c] {
  margin-bottom: 0;
  position: relative;
  z-index: 3;
}

.accordion-item .accordion-header .accordion-button[data-v-099c5f7c] {
  border-radius: 5px 5px 0 0;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--titleColor);
  text-align: left;
  align-items: center;
  border: none;
  padding: 17px 50px 17px 25px;
  border-radius: 5px;
  transition: var(--transition);
  background-color: transparent;
}

.accordion-item .accordion-header .accordion-button[data-v-099c5f7c]:after {
  display: none;
}

.accordion-item .accordion-header .accordion-button[data-v-099c5f7c]:focus {
  outline: none;
  box-shadow: none;
}

.accordion-item .accordion-header .accordion-button[data-v-099c5f7c]:not(.collapsed) {
  box-shadow: none;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) span img.minus[data-v-099c5f7c] {
  visibility: visible;
  opacity: 1;
}

.accordion-item .accordion-header .accordion-button:not(.collapsed) span img.plus[data-v-099c5f7c] {
  visibility: hidden;
  opacity: 0;
}

.accordion-item .accordion-header .accordion-button span[data-v-099c5f7c] {
  display: inline-block;
  width: 35px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}

.accordion-item .accordion-header .accordion-button span img[data-v-099c5f7c] {
  position: absolute;
  top: 27px;
  right: 20px;
  display: block;
  margin: 0 auto;
}

.accordion-item .accordion-header .accordion-button span img.minus[data-v-099c5f7c] {
  visibility: hidden;
  opacity: 0;
}

.accordion-item .accordion-body[data-v-099c5f7c] {
  border-radius: 0 0 5px 5px;
  padding-bottom: 15px;
  padding: 12px 25px 48px;
  border: none;
  border-top: 1px solid #e0e8ee;
}

.accordion-item .accordion-body p[data-v-099c5f7c] {
  margin: 0 0 10px;
}

.accordion-item .accordion-body p[data-v-099c5f7c]:last-child {
  margin: 0;
}

.accordion-collapse[data-v-099c5f7c] {
  border: none;
}

.accordion-button:not(.collapsed) span i.plus[data-v-099c5f7c] {
  visibility: hidden;
  opacity: 0;
}

.accordion-button:not(.collapsed) span i.minus[data-v-099c5f7c] {
  visibility: visible !important;
  opacity: 1 !important;
}

.contact-card[data-v-f8ad35d6] {
  padding: 35px 30px;
  margin-bottom: 25px;
}

.contact-card h6[data-v-f8ad35d6] {
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}

.contact-card ul li[data-v-f8ad35d6] {
  margin-bottom: 6px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 30px;
}

.contact-card ul li img[data-v-f8ad35d6] {
  position: absolute;
  top: 6px;
  left: 0;
}

.contact-card ul li[data-v-f8ad35d6]:last-child {
  margin-bottom: 0;
}

@font-face {
  font-family: remixicon;
  src: url(./assets/fonts/remixicon.227bf528.eot);
  src: url(./assets/fonts/remixicon.227bf528.eot#iefix) format("embedded-opentype"),
    url(./assets/fonts/remixicon.5d6b0a13.woff2) format("woff2"),
    url(./assets/fonts/remixicon.26f18b51.woff) format("woff"),
    url(./assets/fonts/remixicon.7cc5770e.ttf) format("truetype"),
    url(./assets/img/remixicon.e0a546f7.svg#remixicon) format("svg");
  font-display: swap;
}

[class*=" ri-"],
[class^="ri-"] {
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ri-lg {
  font-size: 1.3333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.ri-xl {
  font-size: 1.5em;
  line-height: 0.6666em;
  vertical-align: -0.075em;
}

.ri-xxs {
  font-size: 0.5em;
}

.ri-xs {
  font-size: 0.75em;
}

.ri-sm {
  font-size: 0.875em;
}

.ri-1x {
  font-size: 1em;
}

.ri-2x {
  font-size: 2em;
}

.ri-3x {
  font-size: 3em;
}

.ri-4x {
  font-size: 4em;
}

.ri-5x {
  font-size: 5em;
}

.ri-6x {
  font-size: 6em;
}

.ri-7x {
  font-size: 7em;
}

.ri-8x {
  font-size: 8em;
}

.ri-9x {
  font-size: 9em;
}

.ri-10x {
  font-size: 10em;
}

.ri-fw {
  text-align: center;
  width: 1.25em;
}

.ri-24-hours-fill:before {
  content: "";
}

.ri-24-hours-line:before {
  content: "";
}

.ri-4k-fill:before {
  content: "";
}

.ri-4k-line:before {
  content: "";
}

.ri-a-b:before {
  content: "";
}

.ri-account-box-fill:before {
  content: "";
}

.ri-account-box-line:before {
  content: "";
}

.ri-account-circle-fill:before {
  content: "";
}

.ri-account-circle-line:before {
  content: "";
}

.ri-account-pin-box-fill:before {
  content: "";
}

.ri-account-pin-box-line:before {
  content: "";
}

.ri-account-pin-circle-fill:before {
  content: "";
}

.ri-account-pin-circle-line:before {
  content: "";
}

.ri-add-box-fill:before {
  content: "";
}

.ri-add-box-line:before {
  content: "";
}

.ri-add-circle-fill:before {
  content: "";
}

.ri-add-circle-line:before {
  content: "";
}

.ri-add-fill:before {
  content: "";
}

.ri-add-line:before {
  content: "";
}

.ri-admin-fill:before {
  content: "";
}

.ri-admin-line:before {
  content: "";
}

.ri-advertisement-fill:before {
  content: "";
}

.ri-advertisement-line:before {
  content: "";
}

.ri-airplay-fill:before {
  content: "";
}

.ri-airplay-line:before {
  content: "";
}

.ri-alarm-fill:before {
  content: "";
}

.ri-alarm-line:before {
  content: "";
}

.ri-alarm-warning-fill:before {
  content: "";
}

.ri-alarm-warning-line:before {
  content: "";
}

.ri-album-fill:before {
  content: "";
}

.ri-album-line:before {
  content: "";
}

.ri-alert-fill:before {
  content: "";
}

.ri-alert-line:before {
  content: "";
}

.ri-aliens-fill:before {
  content: "";
}

.ri-aliens-line:before {
  content: "";
}

.ri-align-bottom:before {
  content: "";
}

.ri-align-center:before {
  content: "";
}

.ri-align-justify:before {
  content: "";
}

.ri-align-left:before {
  content: "";
}

.ri-align-right:before {
  content: "";
}

.ri-align-top:before {
  content: "";
}

.ri-align-vertically:before {
  content: "";
}

.ri-alipay-fill:before {
  content: "";
}

.ri-alipay-line:before {
  content: "";
}

.ri-amazon-fill:before {
  content: "";
}

.ri-amazon-line:before {
  content: "";
}

.ri-anchor-fill:before {
  content: "";
}

.ri-anchor-line:before {
  content: "";
}

.ri-ancient-gate-fill:before {
  content: "";
}

.ri-ancient-gate-line:before {
  content: "";
}

.ri-ancient-pavilion-fill:before {
  content: "";
}

.ri-ancient-pavilion-line:before {
  content: "";
}

.ri-android-fill:before {
  content: "";
}

.ri-android-line:before {
  content: "";
}

.ri-angularjs-fill:before {
  content: "";
}

.ri-angularjs-line:before {
  content: "";
}

.ri-anticlockwise-2-fill:before {
  content: "";
}

.ri-anticlockwise-2-line:before {
  content: "";
}

.ri-anticlockwise-fill:before {
  content: "";
}

.ri-anticlockwise-line:before {
  content: "";
}

.ri-app-store-fill:before {
  content: "";
}

.ri-app-store-line:before {
  content: "";
}

.ri-apple-fill:before {
  content: "";
}

.ri-apple-line:before {
  content: "";
}

.ri-apps-2-fill:before {
  content: "";
}

.ri-apps-2-line:before {
  content: "";
}

.ri-apps-fill:before {
  content: "";
}

.ri-apps-line:before {
  content: "";
}

.ri-archive-drawer-fill:before {
  content: "";
}

.ri-archive-drawer-line:before {
  content: "";
}

.ri-archive-fill:before {
  content: "";
}

.ri-archive-line:before {
  content: "";
}

.ri-arrow-down-circle-fill:before {
  content: "";
}

.ri-arrow-down-circle-line:before {
  content: "";
}

.ri-arrow-down-fill:before {
  content: "";
}

.ri-arrow-down-line:before {
  content: "";
}

.ri-arrow-down-s-fill:before {
  content: "";
}

.ri-arrow-down-s-line:before {
  content: "";
}

.ri-arrow-drop-down-fill:before {
  content: "";
}

.ri-arrow-drop-down-line:before {
  content: "";
}

.ri-arrow-drop-left-fill:before {
  content: "";
}

.ri-arrow-drop-left-line:before {
  content: "";
}

.ri-arrow-drop-right-fill:before {
  content: "";
}

.ri-arrow-drop-right-line:before {
  content: "";
}

.ri-arrow-drop-up-fill:before {
  content: "";
}

.ri-arrow-drop-up-line:before {
  content: "";
}

.ri-arrow-go-back-fill:before {
  content: "";
}

.ri-arrow-go-back-line:before {
  content: "";
}

.ri-arrow-go-forward-fill:before {
  content: "";
}

.ri-arrow-go-forward-line:before {
  content: "";
}

.ri-arrow-left-circle-fill:before {
  content: "";
}

.ri-arrow-left-circle-line:before {
  content: "";
}

.ri-arrow-left-down-fill:before {
  content: "";
}

.ri-arrow-left-down-line:before {
  content: "";
}

.ri-arrow-left-fill:before {
  content: "";
}

.ri-arrow-left-line:before {
  content: "";
}

.ri-arrow-left-right-fill:before {
  content: "";
}

.ri-arrow-left-right-line:before {
  content: "";
}

.ri-arrow-left-s-fill:before {
  content: "";
}

.ri-arrow-left-s-line:before {
  content: "";
}

.ri-arrow-left-up-fill:before {
  content: "";
}

.ri-arrow-left-up-line:before {
  content: "";
}

.ri-arrow-right-circle-fill:before {
  content: "";
}

.ri-arrow-right-circle-line:before {
  content: "";
}

.ri-arrow-right-down-fill:before {
  content: "";
}

.ri-arrow-right-down-line:before {
  content: "";
}

.ri-arrow-right-fill:before {
  content: "";
}

.ri-arrow-right-line:before {
  content: "";
}

.ri-arrow-right-s-fill:before {
  content: "";
}

.ri-arrow-right-s-line:before {
  content: "";
}

.ri-arrow-right-up-fill:before {
  content: "";
}

.ri-arrow-right-up-line:before {
  content: "";
}

.ri-arrow-up-circle-fill:before {
  content: "";
}

.ri-arrow-up-circle-line:before {
  content: "";
}

.ri-arrow-up-down-fill:before {
  content: "";
}

.ri-arrow-up-down-line:before {
  content: "";
}

.ri-arrow-up-fill:before {
  content: "";
}

.ri-arrow-up-line:before {
  content: "";
}

.ri-arrow-up-s-fill:before {
  content: "";
}

.ri-arrow-up-s-line:before {
  content: "";
}

.ri-artboard-2-fill:before {
  content: "";
}

.ri-artboard-2-line:before {
  content: "";
}

.ri-artboard-fill:before {
  content: "";
}

.ri-artboard-line:before {
  content: "";
}

.ri-article-fill:before {
  content: "";
}

.ri-article-line:before {
  content: "";
}

.ri-aspect-ratio-fill:before {
  content: "";
}

.ri-aspect-ratio-line:before {
  content: "";
}

.ri-asterisk:before {
  content: "";
}

.ri-at-fill:before {
  content: "";
}

.ri-at-line:before {
  content: "";
}

.ri-attachment-2:before {
  content: "";
}

.ri-attachment-fill:before {
  content: "";
}

.ri-attachment-line:before {
  content: "";
}

.ri-auction-fill:before {
  content: "";
}

.ri-auction-line:before {
  content: "";
}

.ri-award-fill:before {
  content: "";
}

.ri-award-line:before {
  content: "";
}

.ri-baidu-fill:before {
  content: "";
}

.ri-baidu-line:before {
  content: "";
}

.ri-ball-pen-fill:before {
  content: "";
}

.ri-ball-pen-line:before {
  content: "";
}

.ri-bank-card-2-fill:before {
  content: "";
}

.ri-bank-card-2-line:before {
  content: "";
}

.ri-bank-card-fill:before {
  content: "";
}

.ri-bank-card-line:before {
  content: "";
}

.ri-bank-fill:before {
  content: "";
}

.ri-bank-line:before {
  content: "";
}

.ri-bar-chart-2-fill:before {
  content: "";
}

.ri-bar-chart-2-line:before {
  content: "";
}

.ri-bar-chart-box-fill:before {
  content: "";
}

.ri-bar-chart-box-line:before {
  content: "";
}

.ri-bar-chart-fill:before {
  content: "";
}

.ri-bar-chart-grouped-fill:before {
  content: "";
}

.ri-bar-chart-grouped-line:before {
  content: "";
}

.ri-bar-chart-horizontal-fill:before {
  content: "";
}

.ri-bar-chart-horizontal-line:before {
  content: "";
}

.ri-bar-chart-line:before {
  content: "";
}

.ri-barcode-box-fill:before {
  content: "";
}

.ri-barcode-box-line:before {
  content: "";
}

.ri-barcode-fill:before {
  content: "";
}

.ri-barcode-line:before {
  content: "";
}

.ri-barricade-fill:before {
  content: "";
}

.ri-barricade-line:before {
  content: "";
}

.ri-base-station-fill:before {
  content: "";
}

.ri-base-station-line:before {
  content: "";
}

.ri-basketball-fill:before {
  content: "";
}

.ri-basketball-line:before {
  content: "";
}

.ri-battery-2-charge-fill:before {
  content: "";
}

.ri-battery-2-charge-line:before {
  content: "";
}

.ri-battery-2-fill:before {
  content: "";
}

.ri-battery-2-line:before {
  content: "";
}

.ri-battery-charge-fill:before {
  content: "";
}

.ri-battery-charge-line:before {
  content: "";
}

.ri-battery-fill:before {
  content: "";
}

.ri-battery-line:before {
  content: "";
}

.ri-battery-low-fill:before {
  content: "";
}

.ri-battery-low-line:before {
  content: "";
}

.ri-battery-saver-fill:before {
  content: "";
}

.ri-battery-saver-line:before {
  content: "";
}

.ri-battery-share-fill:before {
  content: "";
}

.ri-battery-share-line:before {
  content: "";
}

.ri-bear-smile-fill:before {
  content: "";
}

.ri-bear-smile-line:before {
  content: "";
}

.ri-behance-fill:before {
  content: "";
}

.ri-behance-line:before {
  content: "";
}

.ri-bell-fill:before {
  content: "";
}

.ri-bell-line:before {
  content: "";
}

.ri-bike-fill:before {
  content: "";
}

.ri-bike-line:before {
  content: "";
}

.ri-bilibili-fill:before {
  content: "";
}

.ri-bilibili-line:before {
  content: "";
}

.ri-bill-fill:before {
  content: "";
}

.ri-bill-line:before {
  content: "";
}

.ri-billiards-fill:before {
  content: "";
}

.ri-billiards-line:before {
  content: "";
}

.ri-bit-coin-fill:before {
  content: "";
}

.ri-bit-coin-line:before {
  content: "";
}

.ri-blaze-fill:before {
  content: "";
}

.ri-blaze-line:before {
  content: "";
}

.ri-bluetooth-connect-fill:before {
  content: "";
}

.ri-bluetooth-connect-line:before {
  content: "";
}

.ri-bluetooth-fill:before {
  content: "";
}

.ri-bluetooth-line:before {
  content: "";
}

.ri-blur-off-fill:before {
  content: "";
}

.ri-blur-off-line:before {
  content: "";
}

.ri-body-scan-fill:before {
  content: "";
}

.ri-body-scan-line:before {
  content: "";
}

.ri-bold:before {
  content: "";
}

.ri-book-2-fill:before {
  content: "";
}

.ri-book-2-line:before {
  content: "";
}

.ri-book-3-fill:before {
  content: "";
}

.ri-book-3-line:before {
  content: "";
}

.ri-book-fill:before {
  content: "";
}

.ri-book-line:before {
  content: "";
}

.ri-book-mark-fill:before {
  content: "";
}

.ri-book-mark-line:before {
  content: "";
}

.ri-book-open-fill:before {
  content: "";
}

.ri-book-open-line:before {
  content: "";
}

.ri-book-read-fill:before {
  content: "";
}

.ri-book-read-line:before {
  content: "";
}

.ri-booklet-fill:before {
  content: "";
}

.ri-booklet-line:before {
  content: "";
}

.ri-bookmark-2-fill:before {
  content: "";
}

.ri-bookmark-2-line:before {
  content: "";
}

.ri-bookmark-3-fill:before {
  content: "";
}

.ri-bookmark-3-line:before {
  content: "";
}

.ri-bookmark-fill:before {
  content: "";
}

.ri-bookmark-line:before {
  content: "";
}

.ri-boxing-fill:before {
  content: "";
}

.ri-boxing-line:before {
  content: "";
}

.ri-braces-fill:before {
  content: "";
}

.ri-braces-line:before {
  content: "";
}

.ri-brackets-fill:before {
  content: "";
}

.ri-brackets-line:before {
  content: "";
}

.ri-briefcase-2-fill:before {
  content: "";
}

.ri-briefcase-2-line:before {
  content: "";
}

.ri-briefcase-3-fill:before {
  content: "";
}

.ri-briefcase-3-line:before {
  content: "";
}

.ri-briefcase-4-fill:before {
  content: "";
}

.ri-briefcase-4-line:before {
  content: "";
}

.ri-briefcase-5-fill:before {
  content: "";
}

.ri-briefcase-5-line:before {
  content: "";
}

.ri-briefcase-fill:before {
  content: "";
}

.ri-briefcase-line:before {
  content: "";
}

.ri-bring-forward:before {
  content: "";
}

.ri-bring-to-front:before {
  content: "";
}

.ri-broadcast-fill:before {
  content: "";
}

.ri-broadcast-line:before {
  content: "";
}

.ri-brush-2-fill:before {
  content: "";
}

.ri-brush-2-line:before {
  content: "";
}

.ri-brush-3-fill:before {
  content: "";
}

.ri-brush-3-line:before {
  content: "";
}

.ri-brush-4-fill:before {
  content: "";
}

.ri-brush-4-line:before {
  content: "";
}

.ri-brush-fill:before {
  content: "";
}

.ri-brush-line:before {
  content: "";
}

.ri-bubble-chart-fill:before {
  content: "";
}

.ri-bubble-chart-line:before {
  content: "";
}

.ri-bug-2-fill:before {
  content: "";
}

.ri-bug-2-line:before {
  content: "";
}

.ri-bug-fill:before {
  content: "";
}

.ri-bug-line:before {
  content: "";
}

.ri-building-2-fill:before {
  content: "";
}

.ri-building-2-line:before {
  content: "";
}

.ri-building-3-fill:before {
  content: "";
}

.ri-building-3-line:before {
  content: "";
}

.ri-building-4-fill:before {
  content: "";
}

.ri-building-4-line:before {
  content: "";
}

.ri-building-fill:before {
  content: "";
}

.ri-building-line:before {
  content: "";
}

.ri-bus-2-fill:before {
  content: "";
}

.ri-bus-2-line:before {
  content: "";
}

.ri-bus-fill:before {
  content: "";
}

.ri-bus-line:before {
  content: "";
}

.ri-bus-wifi-fill:before {
  content: "";
}

.ri-bus-wifi-line:before {
  content: "";
}

.ri-cactus-fill:before {
  content: "";
}

.ri-cactus-line:before {
  content: "";
}

.ri-cake-2-fill:before {
  content: "";
}

.ri-cake-2-line:before {
  content: "";
}

.ri-cake-3-fill:before {
  content: "";
}

.ri-cake-3-line:before {
  content: "";
}

.ri-cake-fill:before {
  content: "";
}

.ri-cake-line:before {
  content: "";
}

.ri-calculator-fill:before {
  content: "";
}

.ri-calculator-line:before {
  content: "";
}

.ri-calendar-2-fill:before {
  content: "";
}

.ri-calendar-2-line:before {
  content: "";
}

.ri-calendar-check-fill:before {
  content: "";
}

.ri-calendar-check-line:before {
  content: "";
}

.ri-calendar-event-fill:before {
  content: "";
}

.ri-calendar-event-line:before {
  content: "";
}

.ri-calendar-fill:before {
  content: "";
}

.ri-calendar-line:before {
  content: "";
}

.ri-calendar-todo-fill:before {
  content: "";
}

.ri-calendar-todo-line:before {
  content: "";
}

.ri-camera-2-fill:before {
  content: "";
}

.ri-camera-2-line:before {
  content: "";
}

.ri-camera-3-fill:before {
  content: "";
}

.ri-camera-3-line:before {
  content: "";
}

.ri-camera-fill:before {
  content: "";
}

.ri-camera-lens-fill:before {
  content: "";
}

.ri-camera-lens-line:before {
  content: "";
}

.ri-camera-line:before {
  content: "";
}

.ri-camera-off-fill:before {
  content: "";
}

.ri-camera-off-line:before {
  content: "";
}

.ri-camera-switch-fill:before {
  content: "";
}

.ri-camera-switch-line:before {
  content: "";
}

.ri-capsule-fill:before {
  content: "";
}

.ri-capsule-line:before {
  content: "";
}

.ri-car-fill:before {
  content: "";
}

.ri-car-line:before {
  content: "";
}

.ri-car-washing-fill:before {
  content: "";
}

.ri-car-washing-line:before {
  content: "";
}

.ri-caravan-fill:before {
  content: "";
}

.ri-caravan-line:before {
  content: "";
}

.ri-cast-fill:before {
  content: "";
}

.ri-cast-line:before {
  content: "";
}

.ri-cellphone-fill:before {
  content: "";
}

.ri-cellphone-line:before {
  content: "";
}

.ri-celsius-fill:before {
  content: "";
}

.ri-celsius-line:before {
  content: "";
}

.ri-centos-fill:before {
  content: "";
}

.ri-centos-line:before {
  content: "";
}

.ri-character-recognition-fill:before {
  content: "";
}

.ri-character-recognition-line:before {
  content: "";
}

.ri-charging-pile-2-fill:before {
  content: "";
}

.ri-charging-pile-2-line:before {
  content: "";
}

.ri-charging-pile-fill:before {
  content: "";
}

.ri-charging-pile-line:before {
  content: "";
}

.ri-chat-1-fill:before {
  content: "";
}

.ri-chat-1-line:before {
  content: "";
}

.ri-chat-2-fill:before {
  content: "";
}

.ri-chat-2-line:before {
  content: "";
}

.ri-chat-3-fill:before {
  content: "";
}

.ri-chat-3-line:before {
  content: "";
}

.ri-chat-4-fill:before {
  content: "";
}

.ri-chat-4-line:before {
  content: "";
}

.ri-chat-check-fill:before {
  content: "";
}

.ri-chat-check-line:before {
  content: "";
}

.ri-chat-delete-fill:before {
  content: "";
}

.ri-chat-delete-line:before {
  content: "";
}

.ri-chat-download-fill:before {
  content: "";
}

.ri-chat-download-line:before {
  content: "";
}

.ri-chat-follow-up-fill:before {
  content: "";
}

.ri-chat-follow-up-line:before {
  content: "";
}

.ri-chat-forward-fill:before {
  content: "";
}

.ri-chat-forward-line:before {
  content: "";
}

.ri-chat-heart-fill:before {
  content: "";
}

.ri-chat-heart-line:before {
  content: "";
}

.ri-chat-history-fill:before {
  content: "";
}

.ri-chat-history-line:before {
  content: "";
}

.ri-chat-new-fill:before {
  content: "";
}

.ri-chat-new-line:before {
  content: "";
}

.ri-chat-off-fill:before {
  content: "";
}

.ri-chat-off-line:before {
  content: "";
}

.ri-chat-poll-fill:before {
  content: "";
}

.ri-chat-poll-line:before {
  content: "";
}

.ri-chat-private-fill:before {
  content: "";
}

.ri-chat-private-line:before {
  content: "";
}

.ri-chat-quote-fill:before {
  content: "";
}

.ri-chat-quote-line:before {
  content: "";
}

.ri-chat-settings-fill:before {
  content: "";
}

.ri-chat-settings-line:before {
  content: "";
}

.ri-chat-smile-2-fill:before {
  content: "";
}

.ri-chat-smile-2-line:before {
  content: "";
}

.ri-chat-smile-3-fill:before {
  content: "";
}

.ri-chat-smile-3-line:before {
  content: "";
}

.ri-chat-smile-fill:before {
  content: "";
}

.ri-chat-smile-line:before {
  content: "";
}

.ri-chat-upload-fill:before {
  content: "";
}

.ri-chat-upload-line:before {
  content: "";
}

.ri-chat-voice-fill:before {
  content: "";
}

.ri-chat-voice-line:before {
  content: "";
}

.ri-check-double-fill:before {
  content: "";
}

.ri-check-double-line:before {
  content: "";
}

.ri-check-fill:before {
  content: "";
}

.ri-check-line:before {
  content: "";
}

.ri-checkbox-blank-circle-fill:before {
  content: "";
}

.ri-checkbox-blank-circle-line:before {
  content: "";
}

.ri-checkbox-blank-fill:before {
  content: "";
}

.ri-checkbox-blank-line:before {
  content: "";
}

.ri-checkbox-circle-fill:before {
  content: "";
}

.ri-checkbox-circle-line:before {
  content: "";
}

.ri-checkbox-fill:before {
  content: "";
}

.ri-checkbox-indeterminate-fill:before {
  content: "";
}

.ri-checkbox-indeterminate-line:before {
  content: "";
}

.ri-checkbox-line:before {
  content: "";
}

.ri-checkbox-multiple-blank-fill:before {
  content: "";
}

.ri-checkbox-multiple-blank-line:before {
  content: "";
}

.ri-checkbox-multiple-fill:before {
  content: "";
}

.ri-checkbox-multiple-line:before {
  content: "";
}

.ri-china-railway-fill:before {
  content: "";
}

.ri-china-railway-line:before {
  content: "";
}

.ri-chrome-fill:before {
  content: "";
}

.ri-chrome-line:before {
  content: "";
}

.ri-clapperboard-fill:before {
  content: "";
}

.ri-clapperboard-line:before {
  content: "";
}

.ri-clipboard-fill:before {
  content: "";
}

.ri-clipboard-line:before {
  content: "";
}

.ri-clockwise-2-fill:before {
  content: "";
}

.ri-clockwise-2-line:before {
  content: "";
}

.ri-clockwise-fill:before {
  content: "";
}

.ri-clockwise-line:before {
  content: "";
}

.ri-close-circle-fill:before {
  content: "";
}

.ri-close-circle-line:before {
  content: "";
}

.ri-close-fill:before {
  content: "";
}

.ri-close-line:before {
  content: "";
}

.ri-closed-captioning-fill:before {
  content: "";
}

.ri-closed-captioning-line:before {
  content: "";
}

.ri-cloud-fill:before {
  content: "";
}

.ri-cloud-line:before {
  content: "";
}

.ri-cloud-off-fill:before {
  content: "";
}

.ri-cloud-off-line:before {
  content: "";
}

.ri-cloud-windy-fill:before {
  content: "";
}

.ri-cloud-windy-line:before {
  content: "";
}

.ri-cloudy-2-fill:before {
  content: "";
}

.ri-cloudy-2-line:before {
  content: "";
}

.ri-cloudy-fill:before {
  content: "";
}

.ri-cloudy-line:before {
  content: "";
}

.ri-code-box-fill:before {
  content: "";
}

.ri-code-box-line:before {
  content: "";
}

.ri-code-fill:before {
  content: "";
}

.ri-code-line:before {
  content: "";
}

.ri-code-s-fill:before {
  content: "";
}

.ri-code-s-line:before {
  content: "";
}

.ri-code-s-slash-fill:before {
  content: "";
}

.ri-code-s-slash-line:before {
  content: "";
}

.ri-code-view:before {
  content: "";
}

.ri-codepen-fill:before {
  content: "";
}

.ri-codepen-line:before {
  content: "";
}

.ri-coin-fill:before {
  content: "";
}

.ri-coin-line:before {
  content: "";
}

.ri-coins-fill:before {
  content: "";
}

.ri-coins-line:before {
  content: "";
}

.ri-collage-fill:before {
  content: "";
}

.ri-collage-line:before {
  content: "";
}

.ri-command-fill:before {
  content: "";
}

.ri-command-line:before {
  content: "";
}

.ri-community-fill:before {
  content: "";
}

.ri-community-line:before {
  content: "";
}

.ri-compass-2-fill:before {
  content: "";
}

.ri-compass-2-line:before {
  content: "";
}

.ri-compass-3-fill:before {
  content: "";
}

.ri-compass-3-line:before {
  content: "";
}

.ri-compass-4-fill:before {
  content: "";
}

.ri-compass-4-line:before {
  content: "";
}

.ri-compass-discover-fill:before {
  content: "";
}

.ri-compass-discover-line:before {
  content: "";
}

.ri-compass-fill:before {
  content: "";
}

.ri-compass-line:before {
  content: "";
}

.ri-compasses-2-fill:before {
  content: "";
}

.ri-compasses-2-line:before {
  content: "";
}

.ri-compasses-fill:before {
  content: "";
}

.ri-compasses-line:before {
  content: "";
}

.ri-computer-fill:before {
  content: "";
}

.ri-computer-line:before {
  content: "";
}

.ri-contacts-book-2-fill:before {
  content: "";
}

.ri-contacts-book-2-line:before {
  content: "";
}

.ri-contacts-book-fill:before {
  content: "";
}

.ri-contacts-book-line:before {
  content: "";
}

.ri-contacts-book-upload-fill:before {
  content: "";
}

.ri-contacts-book-upload-line:before {
  content: "";
}

.ri-contacts-fill:before {
  content: "";
}

.ri-contacts-line:before {
  content: "";
}

.ri-contrast-2-fill:before {
  content: "";
}

.ri-contrast-2-line:before {
  content: "";
}

.ri-contrast-drop-2-fill:before {
  content: "";
}

.ri-contrast-drop-2-line:before {
  content: "";
}

.ri-contrast-drop-fill:before {
  content: "";
}

.ri-contrast-drop-line:before {
  content: "";
}

.ri-contrast-fill:before {
  content: "";
}

.ri-contrast-line:before {
  content: "";
}

.ri-copper-coin-fill:before {
  content: "";
}

.ri-copper-coin-line:before {
  content: "";
}

.ri-copper-diamond-fill:before {
  content: "";
}

.ri-copper-diamond-line:before {
  content: "";
}

.ri-copyleft-fill:before {
  content: "";
}

.ri-copyleft-line:before {
  content: "";
}

.ri-copyright-fill:before {
  content: "";
}

.ri-copyright-line:before {
  content: "";
}

.ri-coreos-fill:before {
  content: "";
}

.ri-coreos-line:before {
  content: "";
}

.ri-coupon-2-fill:before {
  content: "";
}

.ri-coupon-2-line:before {
  content: "";
}

.ri-coupon-3-fill:before {
  content: "";
}

.ri-coupon-3-line:before {
  content: "";
}

.ri-coupon-4-fill:before {
  content: "";
}

.ri-coupon-4-line:before {
  content: "";
}

.ri-coupon-5-fill:before {
  content: "";
}

.ri-coupon-5-line:before {
  content: "";
}

.ri-coupon-fill:before {
  content: "";
}

.ri-coupon-line:before {
  content: "";
}

.ri-cpu-fill:before {
  content: "";
}

.ri-cpu-line:before {
  content: "";
}

.ri-creative-commons-by-fill:before {
  content: "";
}

.ri-creative-commons-by-line:before {
  content: "";
}

.ri-creative-commons-fill:before {
  content: "";
}

.ri-creative-commons-line:before {
  content: "";
}

.ri-creative-commons-nc-fill:before {
  content: "";
}

.ri-creative-commons-nc-line:before {
  content: "";
}

.ri-creative-commons-nd-fill:before {
  content: "";
}

.ri-creative-commons-nd-line:before {
  content: "";
}

.ri-creative-commons-sa-fill:before {
  content: "";
}

.ri-creative-commons-sa-line:before {
  content: "";
}

.ri-creative-commons-zero-fill:before {
  content: "";
}

.ri-creative-commons-zero-line:before {
  content: "";
}

.ri-criminal-fill:before {
  content: "";
}

.ri-criminal-line:before {
  content: "";
}

.ri-crop-2-fill:before {
  content: "";
}

.ri-crop-2-line:before {
  content: "";
}

.ri-crop-fill:before {
  content: "";
}

.ri-crop-line:before {
  content: "";
}

.ri-css3-fill:before {
  content: "";
}

.ri-css3-line:before {
  content: "";
}

.ri-cup-fill:before {
  content: "";
}

.ri-cup-line:before {
  content: "";
}

.ri-currency-fill:before {
  content: "";
}

.ri-currency-line:before {
  content: "";
}

.ri-cursor-fill:before {
  content: "";
}

.ri-cursor-line:before {
  content: "";
}

.ri-customer-service-2-fill:before {
  content: "";
}

.ri-customer-service-2-line:before {
  content: "";
}

.ri-customer-service-fill:before {
  content: "";
}

.ri-customer-service-line:before {
  content: "";
}

.ri-dashboard-2-fill:before {
  content: "";
}

.ri-dashboard-2-line:before {
  content: "";
}

.ri-dashboard-3-fill:before {
  content: "";
}

.ri-dashboard-3-line:before {
  content: "";
}

.ri-dashboard-fill:before {
  content: "";
}

.ri-dashboard-line:before {
  content: "";
}

.ri-database-2-fill:before {
  content: "";
}

.ri-database-2-line:before {
  content: "";
}

.ri-database-fill:before {
  content: "";
}

.ri-database-line:before {
  content: "";
}

.ri-delete-back-2-fill:before {
  content: "";
}

.ri-delete-back-2-line:before {
  content: "";
}

.ri-delete-back-fill:before {
  content: "";
}

.ri-delete-back-line:before {
  content: "";
}

.ri-delete-bin-2-fill:before {
  content: "";
}

.ri-delete-bin-2-line:before {
  content: "";
}

.ri-delete-bin-3-fill:before {
  content: "";
}

.ri-delete-bin-3-line:before {
  content: "";
}

.ri-delete-bin-4-fill:before {
  content: "";
}

.ri-delete-bin-4-line:before {
  content: "";
}

.ri-delete-bin-5-fill:before {
  content: "";
}

.ri-delete-bin-5-line:before {
  content: "";
}

.ri-delete-bin-6-fill:before {
  content: "";
}

.ri-delete-bin-6-line:before {
  content: "";
}

.ri-delete-bin-7-fill:before {
  content: "";
}

.ri-delete-bin-7-line:before {
  content: "";
}

.ri-delete-bin-fill:before {
  content: "";
}

.ri-delete-bin-line:before {
  content: "";
}

.ri-delete-column:before {
  content: "";
}

.ri-delete-row:before {
  content: "";
}

.ri-device-fill:before {
  content: "";
}

.ri-device-line:before {
  content: "";
}

.ri-device-recover-fill:before {
  content: "";
}

.ri-device-recover-line:before {
  content: "";
}

.ri-dingding-fill:before {
  content: "";
}

.ri-dingding-line:before {
  content: "";
}

.ri-direction-fill:before {
  content: "";
}

.ri-direction-line:before {
  content: "";
}

.ri-disc-fill:before {
  content: "";
}

.ri-disc-line:before {
  content: "";
}

.ri-discord-fill:before {
  content: "";
}

.ri-discord-line:before {
  content: "";
}

.ri-discuss-fill:before {
  content: "";
}

.ri-discuss-line:before {
  content: "";
}

.ri-dislike-fill:before {
  content: "";
}

.ri-dislike-line:before {
  content: "";
}

.ri-disqus-fill:before {
  content: "";
}

.ri-disqus-line:before {
  content: "";
}

.ri-divide-fill:before {
  content: "";
}

.ri-divide-line:before {
  content: "";
}

.ri-donut-chart-fill:before {
  content: "";
}

.ri-donut-chart-line:before {
  content: "";
}

.ri-door-closed-fill:before {
  content: "";
}

.ri-door-closed-line:before {
  content: "";
}

.ri-door-fill:before {
  content: "";
}

.ri-door-line:before {
  content: "";
}

.ri-door-lock-box-fill:before {
  content: "";
}

.ri-door-lock-box-line:before {
  content: "";
}

.ri-door-lock-fill:before {
  content: "";
}

.ri-door-lock-line:before {
  content: "";
}

.ri-door-open-fill:before {
  content: "";
}

.ri-door-open-line:before {
  content: "";
}

.ri-dossier-fill:before {
  content: "";
}

.ri-dossier-line:before {
  content: "";
}

.ri-douban-fill:before {
  content: "";
}

.ri-douban-line:before {
  content: "";
}

.ri-double-quotes-l:before {
  content: "";
}

.ri-double-quotes-r:before {
  content: "";
}

.ri-download-2-fill:before {
  content: "";
}

.ri-download-2-line:before {
  content: "";
}

.ri-download-cloud-2-fill:before {
  content: "";
}

.ri-download-cloud-2-line:before {
  content: "";
}

.ri-download-cloud-fill:before {
  content: "";
}

.ri-download-cloud-line:before {
  content: "";
}

.ri-download-fill:before {
  content: "";
}

.ri-download-line:before {
  content: "";
}

.ri-draft-fill:before {
  content: "";
}

.ri-draft-line:before {
  content: "";
}

.ri-drag-drop-fill:before {
  content: "";
}

.ri-drag-drop-line:before {
  content: "";
}

.ri-drag-move-2-fill:before {
  content: "";
}

.ri-drag-move-2-line:before {
  content: "";
}

.ri-drag-move-fill:before {
  content: "";
}

.ri-drag-move-line:before {
  content: "";
}

.ri-dribbble-fill:before {
  content: "";
}

.ri-dribbble-line:before {
  content: "";
}

.ri-drive-fill:before {
  content: "";
}

.ri-drive-line:before {
  content: "";
}

.ri-drizzle-fill:before {
  content: "";
}

.ri-drizzle-line:before {
  content: "";
}

.ri-drop-fill:before {
  content: "";
}

.ri-drop-line:before {
  content: "";
}

.ri-dropbox-fill:before {
  content: "";
}

.ri-dropbox-line:before {
  content: "";
}

.ri-dual-sim-1-fill:before {
  content: "";
}

.ri-dual-sim-1-line:before {
  content: "";
}

.ri-dual-sim-2-fill:before {
  content: "";
}

.ri-dual-sim-2-line:before {
  content: "";
}

.ri-dv-fill:before {
  content: "";
}

.ri-dv-line:before {
  content: "";
}

.ri-dvd-fill:before {
  content: "";
}

.ri-dvd-line:before {
  content: "";
}

.ri-e-bike-2-fill:before {
  content: "";
}

.ri-e-bike-2-line:before {
  content: "";
}

.ri-e-bike-fill:before {
  content: "";
}

.ri-e-bike-line:before {
  content: "";
}

.ri-earth-fill:before {
  content: "";
}

.ri-earth-line:before {
  content: "";
}

.ri-earthquake-fill:before {
  content: "";
}

.ri-earthquake-line:before {
  content: "";
}

.ri-edge-fill:before {
  content: "";
}

.ri-edge-line:before {
  content: "";
}

.ri-edit-2-fill:before {
  content: "";
}

.ri-edit-2-line:before {
  content: "";
}

.ri-edit-box-fill:before {
  content: "";
}

.ri-edit-box-line:before {
  content: "";
}

.ri-edit-circle-fill:before {
  content: "";
}

.ri-edit-circle-line:before {
  content: "";
}

.ri-edit-fill:before {
  content: "";
}

.ri-edit-line:before {
  content: "";
}

.ri-eject-fill:before {
  content: "";
}

.ri-eject-line:before {
  content: "";
}

.ri-emotion-2-fill:before {
  content: "";
}

.ri-emotion-2-line:before {
  content: "";
}

.ri-emotion-fill:before {
  content: "";
}

.ri-emotion-happy-fill:before {
  content: "";
}

.ri-emotion-happy-line:before {
  content: "";
}

.ri-emotion-laugh-fill:before {
  content: "";
}

.ri-emotion-laugh-line:before {
  content: "";
}

.ri-emotion-line:before {
  content: "";
}

.ri-emotion-normal-fill:before {
  content: "";
}

.ri-emotion-normal-line:before {
  content: "";
}

.ri-emotion-sad-fill:before {
  content: "";
}

.ri-emotion-sad-line:before {
  content: "";
}

.ri-emotion-unhappy-fill:before {
  content: "";
}

.ri-emotion-unhappy-line:before {
  content: "";
}

.ri-empathize-fill:before {
  content: "";
}

.ri-empathize-line:before {
  content: "";
}

.ri-emphasis-cn:before {
  content: "";
}

.ri-emphasis:before {
  content: "";
}

.ri-english-input:before {
  content: "";
}

.ri-equalizer-fill:before {
  content: "";
}

.ri-equalizer-line:before {
  content: "";
}

.ri-eraser-fill:before {
  content: "";
}

.ri-eraser-line:before {
  content: "";
}

.ri-error-warning-fill:before {
  content: "";
}

.ri-error-warning-line:before {
  content: "";
}

.ri-evernote-fill:before {
  content: "";
}

.ri-evernote-line:before {
  content: "";
}

.ri-exchange-box-fill:before {
  content: "";
}

.ri-exchange-box-line:before {
  content: "";
}

.ri-exchange-cny-fill:before {
  content: "";
}

.ri-exchange-cny-line:before {
  content: "";
}

.ri-exchange-dollar-fill:before {
  content: "";
}

.ri-exchange-dollar-line:before {
  content: "";
}

.ri-exchange-fill:before {
  content: "";
}

.ri-exchange-funds-fill:before {
  content: "";
}

.ri-exchange-funds-line:before {
  content: "";
}

.ri-exchange-line:before {
  content: "";
}

.ri-external-link-fill:before {
  content: "";
}

.ri-external-link-line:before {
  content: "";
}

.ri-eye-2-fill:before {
  content: "";
}

.ri-eye-2-line:before {
  content: "";
}

.ri-eye-close-fill:before {
  content: "";
}

.ri-eye-close-line:before {
  content: "";
}

.ri-eye-fill:before {
  content: "";
}

.ri-eye-line:before {
  content: "";
}

.ri-eye-off-fill:before {
  content: "";
}

.ri-eye-off-line:before {
  content: "";
}

.ri-facebook-box-fill:before {
  content: "";
}

.ri-facebook-box-line:before {
  content: "";
}

.ri-facebook-circle-fill:before {
  content: "";
}

.ri-facebook-circle-line:before {
  content: "";
}

.ri-facebook-fill:before {
  content: "";
}

.ri-facebook-line:before {
  content: "";
}

.ri-fahrenheit-fill:before {
  content: "";
}

.ri-fahrenheit-line:before {
  content: "";
}

.ri-feedback-fill:before {
  content: "";
}

.ri-feedback-line:before {
  content: "";
}

.ri-file-2-fill:before {
  content: "";
}

.ri-file-2-line:before {
  content: "";
}

.ri-file-3-fill:before {
  content: "";
}

.ri-file-3-line:before {
  content: "";
}

.ri-file-4-fill:before {
  content: "";
}

.ri-file-4-line:before {
  content: "";
}

.ri-file-add-fill:before {
  content: "";
}

.ri-file-add-line:before {
  content: "";
}

.ri-file-chart-2-fill:before {
  content: "";
}

.ri-file-chart-2-line:before {
  content: "";
}

.ri-file-chart-fill:before {
  content: "";
}

.ri-file-chart-line:before {
  content: "";
}

.ri-file-cloud-fill:before {
  content: "";
}

.ri-file-cloud-line:before {
  content: "";
}

.ri-file-code-fill:before {
  content: "";
}

.ri-file-code-line:before {
  content: "";
}

.ri-file-copy-2-fill:before {
  content: "";
}

.ri-file-copy-2-line:before {
  content: "";
}

.ri-file-copy-fill:before {
  content: "";
}

.ri-file-copy-line:before {
  content: "";
}

.ri-file-damage-fill:before {
  content: "";
}

.ri-file-damage-line:before {
  content: "";
}

.ri-file-download-fill:before {
  content: "";
}

.ri-file-download-line:before {
  content: "";
}

.ri-file-edit-fill:before {
  content: "";
}

.ri-file-edit-line:before {
  content: "";
}

.ri-file-excel-2-fill:before {
  content: "";
}

.ri-file-excel-2-line:before {
  content: "";
}

.ri-file-excel-fill:before {
  content: "";
}

.ri-file-excel-line:before {
  content: "";
}

.ri-file-fill:before {
  content: "";
}

.ri-file-forbid-fill:before {
  content: "";
}

.ri-file-forbid-line:before {
  content: "";
}

.ri-file-gif-fill:before {
  content: "";
}

.ri-file-gif-line:before {
  content: "";
}

.ri-file-history-fill:before {
  content: "";
}

.ri-file-history-line:before {
  content: "";
}

.ri-file-hwp-fill:before {
  content: "";
}

.ri-file-hwp-line:before {
  content: "";
}

.ri-file-info-fill:before {
  content: "";
}

.ri-file-info-line:before {
  content: "";
}

.ri-file-line:before {
  content: "";
}

.ri-file-list-2-fill:before {
  content: "";
}

.ri-file-list-2-line:before {
  content: "";
}

.ri-file-list-3-fill:before {
  content: "";
}

.ri-file-list-3-line:before {
  content: "";
}

.ri-file-list-fill:before {
  content: "";
}

.ri-file-list-line:before {
  content: "";
}

.ri-file-lock-fill:before {
  content: "";
}

.ri-file-lock-line:before {
  content: "";
}

.ri-file-mark-fill:before {
  content: "";
}

.ri-file-mark-line:before {
  content: "";
}

.ri-file-music-fill:before {
  content: "";
}

.ri-file-music-line:before {
  content: "";
}

.ri-file-paper-2-fill:before {
  content: "";
}

.ri-file-paper-2-line:before {
  content: "";
}

.ri-file-paper-fill:before {
  content: "";
}

.ri-file-paper-line:before {
  content: "";
}

.ri-file-pdf-fill:before {
  content: "";
}

.ri-file-pdf-line:before {
  content: "";
}

.ri-file-ppt-2-fill:before {
  content: "";
}

.ri-file-ppt-2-line:before {
  content: "";
}

.ri-file-ppt-fill:before {
  content: "";
}

.ri-file-ppt-line:before {
  content: "";
}

.ri-file-reduce-fill:before {
  content: "";
}

.ri-file-reduce-line:before {
  content: "";
}

.ri-file-search-fill:before {
  content: "";
}

.ri-file-search-line:before {
  content: "";
}

.ri-file-settings-fill:before {
  content: "";
}

.ri-file-settings-line:before {
  content: "";
}

.ri-file-shield-2-fill:before {
  content: "";
}

.ri-file-shield-2-line:before {
  content: "";
}

.ri-file-shield-fill:before {
  content: "";
}

.ri-file-shield-line:before {
  content: "";
}

.ri-file-shred-fill:before {
  content: "";
}

.ri-file-shred-line:before {
  content: "";
}

.ri-file-text-fill:before {
  content: "";
}

.ri-file-text-line:before {
  content: "";
}

.ri-file-transfer-fill:before {
  content: "";
}

.ri-file-transfer-line:before {
  content: "";
}

.ri-file-unknow-fill:before {
  content: "";
}

.ri-file-unknow-line:before {
  content: "";
}

.ri-file-upload-fill:before {
  content: "";
}

.ri-file-upload-line:before {
  content: "";
}

.ri-file-user-fill:before {
  content: "";
}

.ri-file-user-line:before {
  content: "";
}

.ri-file-warning-fill:before {
  content: "";
}

.ri-file-warning-line:before {
  content: "";
}

.ri-file-word-2-fill:before {
  content: "";
}

.ri-file-word-2-line:before {
  content: "";
}

.ri-file-word-fill:before {
  content: "";
}

.ri-file-word-line:before {
  content: "";
}

.ri-file-zip-fill:before {
  content: "";
}

.ri-file-zip-line:before {
  content: "";
}

.ri-film-fill:before {
  content: "";
}

.ri-film-line:before {
  content: "";
}

.ri-filter-2-fill:before {
  content: "";
}

.ri-filter-2-line:before {
  content: "";
}

.ri-filter-3-fill:before {
  content: "";
}

.ri-filter-3-line:before {
  content: "";
}

.ri-filter-fill:before {
  content: "";
}

.ri-filter-line:before {
  content: "";
}

.ri-filter-off-fill:before {
  content: "";
}

.ri-filter-off-line:before {
  content: "";
}

.ri-find-replace-fill:before {
  content: "";
}

.ri-find-replace-line:before {
  content: "";
}

.ri-finder-fill:before {
  content: "";
}

.ri-finder-line:before {
  content: "";
}

.ri-fingerprint-2-fill:before {
  content: "";
}

.ri-fingerprint-2-line:before {
  content: "";
}

.ri-fingerprint-fill:before {
  content: "";
}

.ri-fingerprint-line:before {
  content: "";
}

.ri-fire-fill:before {
  content: "";
}

.ri-fire-line:before {
  content: "";
}

.ri-firefox-fill:before {
  content: "";
}

.ri-firefox-line:before {
  content: "";
}

.ri-first-aid-kit-fill:before {
  content: "";
}

.ri-first-aid-kit-line:before {
  content: "";
}

.ri-flag-2-fill:before {
  content: "";
}

.ri-flag-2-line:before {
  content: "";
}

.ri-flag-fill:before {
  content: "";
}

.ri-flag-line:before {
  content: "";
}

.ri-flashlight-fill:before {
  content: "";
}

.ri-flashlight-line:before {
  content: "";
}

.ri-flask-fill:before {
  content: "";
}

.ri-flask-line:before {
  content: "";
}

.ri-flight-land-fill:before {
  content: "";
}

.ri-flight-land-line:before {
  content: "";
}

.ri-flight-takeoff-fill:before {
  content: "";
}

.ri-flight-takeoff-line:before {
  content: "";
}

.ri-flood-fill:before {
  content: "";
}

.ri-flood-line:before {
  content: "";
}

.ri-flow-chart:before {
  content: "";
}

.ri-flutter-fill:before {
  content: "";
}

.ri-flutter-line:before {
  content: "";
}

.ri-focus-2-fill:before {
  content: "";
}

.ri-focus-2-line:before {
  content: "";
}

.ri-focus-3-fill:before {
  content: "";
}

.ri-focus-3-line:before {
  content: "";
}

.ri-focus-fill:before {
  content: "";
}

.ri-focus-line:before {
  content: "";
}

.ri-foggy-fill:before {
  content: "";
}

.ri-foggy-line:before {
  content: "";
}

.ri-folder-2-fill:before {
  content: "";
}

.ri-folder-2-line:before {
  content: "";
}

.ri-folder-3-fill:before {
  content: "";
}

.ri-folder-3-line:before {
  content: "";
}

.ri-folder-4-fill:before {
  content: "";
}

.ri-folder-4-line:before {
  content: "";
}

.ri-folder-5-fill:before {
  content: "";
}

.ri-folder-5-line:before {
  content: "";
}

.ri-folder-add-fill:before {
  content: "";
}

.ri-folder-add-line:before {
  content: "";
}

.ri-folder-chart-2-fill:before {
  content: "";
}

.ri-folder-chart-2-line:before {
  content: "";
}

.ri-folder-chart-fill:before {
  content: "";
}

.ri-folder-chart-line:before {
  content: "";
}

.ri-folder-download-fill:before {
  content: "";
}

.ri-folder-download-line:before {
  content: "";
}

.ri-folder-fill:before {
  content: "";
}

.ri-folder-forbid-fill:before {
  content: "";
}

.ri-folder-forbid-line:before {
  content: "";
}

.ri-folder-history-fill:before {
  content: "";
}

.ri-folder-history-line:before {
  content: "";
}

.ri-folder-info-fill:before {
  content: "";
}

.ri-folder-info-line:before {
  content: "";
}

.ri-folder-keyhole-fill:before {
  content: "";
}

.ri-folder-keyhole-line:before {
  content: "";
}

.ri-folder-line:before {
  content: "";
}

.ri-folder-lock-fill:before {
  content: "";
}

.ri-folder-lock-line:before {
  content: "";
}

.ri-folder-music-fill:before {
  content: "";
}

.ri-folder-music-line:before {
  content: "";
}

.ri-folder-open-fill:before {
  content: "";
}

.ri-folder-open-line:before {
  content: "";
}

.ri-folder-received-fill:before {
  content: "";
}

.ri-folder-received-line:before {
  content: "";
}

.ri-folder-reduce-fill:before {
  content: "";
}

.ri-folder-reduce-line:before {
  content: "";
}

.ri-folder-settings-fill:before {
  content: "";
}

.ri-folder-settings-line:before {
  content: "";
}

.ri-folder-shared-fill:before {
  content: "";
}

.ri-folder-shared-line:before {
  content: "";
}

.ri-folder-shield-2-fill:before {
  content: "";
}

.ri-folder-shield-2-line:before {
  content: "";
}

.ri-folder-shield-fill:before {
  content: "";
}

.ri-folder-shield-line:before {
  content: "";
}

.ri-folder-transfer-fill:before {
  content: "";
}

.ri-folder-transfer-line:before {
  content: "";
}

.ri-folder-unknow-fill:before {
  content: "";
}

.ri-folder-unknow-line:before {
  content: "";
}

.ri-folder-upload-fill:before {
  content: "";
}

.ri-folder-upload-line:before {
  content: "";
}

.ri-folder-user-fill:before {
  content: "";
}

.ri-folder-user-line:before {
  content: "";
}

.ri-folder-warning-fill:before {
  content: "";
}

.ri-folder-warning-line:before {
  content: "";
}

.ri-folder-zip-fill:before {
  content: "";
}

.ri-folder-zip-line:before {
  content: "";
}

.ri-folders-fill:before {
  content: "";
}

.ri-folders-line:before {
  content: "";
}

.ri-font-color:before {
  content: "";
}

.ri-font-size-2:before {
  content: "";
}

.ri-font-size:before {
  content: "";
}

.ri-football-fill:before {
  content: "";
}

.ri-football-line:before {
  content: "";
}

.ri-footprint-fill:before {
  content: "";
}

.ri-footprint-line:before {
  content: "";
}

.ri-forbid-2-fill:before {
  content: "";
}

.ri-forbid-2-line:before {
  content: "";
}

.ri-forbid-fill:before {
  content: "";
}

.ri-forbid-line:before {
  content: "";
}

.ri-format-clear:before {
  content: "";
}

.ri-fridge-fill:before {
  content: "";
}

.ri-fridge-line:before {
  content: "";
}

.ri-fullscreen-exit-fill:before {
  content: "";
}

.ri-fullscreen-exit-line:before {
  content: "";
}

.ri-fullscreen-fill:before {
  content: "";
}

.ri-fullscreen-line:before {
  content: "";
}

.ri-function-fill:before {
  content: "";
}

.ri-function-line:before {
  content: "";
}

.ri-functions:before {
  content: "";
}

.ri-funds-box-fill:before {
  content: "";
}

.ri-funds-box-line:before {
  content: "";
}

.ri-funds-fill:before {
  content: "";
}

.ri-funds-line:before {
  content: "";
}

.ri-gallery-fill:before {
  content: "";
}

.ri-gallery-line:before {
  content: "";
}

.ri-gallery-upload-fill:before {
  content: "";
}

.ri-gallery-upload-line:before {
  content: "";
}

.ri-game-fill:before {
  content: "";
}

.ri-game-line:before {
  content: "";
}

.ri-gamepad-fill:before {
  content: "";
}

.ri-gamepad-line:before {
  content: "";
}

.ri-gas-station-fill:before {
  content: "";
}

.ri-gas-station-line:before {
  content: "";
}

.ri-gatsby-fill:before {
  content: "";
}

.ri-gatsby-line:before {
  content: "";
}

.ri-genderless-fill:before {
  content: "";
}

.ri-genderless-line:before {
  content: "";
}

.ri-ghost-2-fill:before {
  content: "";
}

.ri-ghost-2-line:before {
  content: "";
}

.ri-ghost-fill:before {
  content: "";
}

.ri-ghost-line:before {
  content: "";
}

.ri-ghost-smile-fill:before {
  content: "";
}

.ri-ghost-smile-line:before {
  content: "";
}

.ri-gift-2-fill:before {
  content: "";
}

.ri-gift-2-line:before {
  content: "";
}

.ri-gift-fill:before {
  content: "";
}

.ri-gift-line:before {
  content: "";
}

.ri-git-branch-fill:before {
  content: "";
}

.ri-git-branch-line:before {
  content: "";
}

.ri-git-commit-fill:before {
  content: "";
}

.ri-git-commit-line:before {
  content: "";
}

.ri-git-merge-fill:before {
  content: "";
}

.ri-git-merge-line:before {
  content: "";
}

.ri-git-pull-request-fill:before {
  content: "";
}

.ri-git-pull-request-line:before {
  content: "";
}

.ri-git-repository-commits-fill:before {
  content: "";
}

.ri-git-repository-commits-line:before {
  content: "";
}

.ri-git-repository-fill:before {
  content: "";
}

.ri-git-repository-line:before {
  content: "";
}

.ri-git-repository-private-fill:before {
  content: "";
}

.ri-git-repository-private-line:before {
  content: "";
}

.ri-github-fill:before {
  content: "";
}

.ri-github-line:before {
  content: "";
}

.ri-gitlab-fill:before {
  content: "";
}

.ri-gitlab-line:before {
  content: "";
}

.ri-global-fill:before {
  content: "";
}

.ri-global-line:before {
  content: "";
}

.ri-globe-fill:before {
  content: "";
}

.ri-globe-line:before {
  content: "";
}

.ri-goblet-fill:before {
  content: "";
}

.ri-goblet-line:before {
  content: "";
}

.ri-google-fill:before {
  content: "";
}

.ri-google-line:before {
  content: "";
}

.ri-google-play-fill:before {
  content: "";
}

.ri-google-play-line:before {
  content: "";
}

.ri-government-fill:before {
  content: "";
}

.ri-government-line:before {
  content: "";
}

.ri-gps-fill:before {
  content: "";
}

.ri-gps-line:before {
  content: "";
}

.ri-gradienter-fill:before {
  content: "";
}

.ri-gradienter-line:before {
  content: "";
}

.ri-grid-fill:before {
  content: "";
}

.ri-grid-line:before {
  content: "";
}

.ri-group-2-fill:before {
  content: "";
}

.ri-group-2-line:before {
  content: "";
}

.ri-group-fill:before {
  content: "";
}

.ri-group-line:before {
  content: "";
}

.ri-guide-fill:before {
  content: "";
}

.ri-guide-line:before {
  content: "";
}

.ri-h-1:before {
  content: "";
}

.ri-h-2:before {
  content: "";
}

.ri-h-3:before {
  content: "";
}

.ri-h-4:before {
  content: "";
}

.ri-h-5:before {
  content: "";
}

.ri-h-6:before {
  content: "";
}

.ri-hail-fill:before {
  content: "";
}

.ri-hail-line:before {
  content: "";
}

.ri-hammer-fill:before {
  content: "";
}

.ri-hammer-line:before {
  content: "";
}

.ri-hand-coin-fill:before {
  content: "";
}

.ri-hand-coin-line:before {
  content: "";
}

.ri-hand-heart-fill:before {
  content: "";
}

.ri-hand-heart-line:before {
  content: "";
}

.ri-hand-sanitizer-fill:before {
  content: "";
}

.ri-hand-sanitizer-line:before {
  content: "";
}

.ri-handbag-fill:before {
  content: "";
}

.ri-handbag-line:before {
  content: "";
}

.ri-hard-drive-2-fill:before {
  content: "";
}

.ri-hard-drive-2-line:before {
  content: "";
}

.ri-hard-drive-fill:before {
  content: "";
}

.ri-hard-drive-line:before {
  content: "";
}

.ri-hashtag:before {
  content: "";
}

.ri-haze-2-fill:before {
  content: "";
}

.ri-haze-2-line:before {
  content: "";
}

.ri-haze-fill:before {
  content: "";
}

.ri-haze-line:before {
  content: "";
}

.ri-hd-fill:before {
  content: "";
}

.ri-hd-line:before {
  content: "";
}

.ri-heading:before {
  content: "";
}

.ri-headphone-fill:before {
  content: "";
}

.ri-headphone-line:before {
  content: "";
}

.ri-health-book-fill:before {
  content: "";
}

.ri-health-book-line:before {
  content: "";
}

.ri-heart-2-fill:before {
  content: "";
}

.ri-heart-2-line:before {
  content: "";
}

.ri-heart-3-fill:before {
  content: "";
}

.ri-heart-3-line:before {
  content: "";
}

.ri-heart-add-fill:before {
  content: "";
}

.ri-heart-add-line:before {
  content: "";
}

.ri-heart-fill:before {
  content: "";
}

.ri-heart-line:before {
  content: "";
}

.ri-heart-pulse-fill:before {
  content: "";
}

.ri-heart-pulse-line:before {
  content: "";
}

.ri-hearts-fill:before {
  content: "";
}

.ri-hearts-line:before {
  content: "";
}

.ri-heavy-showers-fill:before {
  content: "";
}

.ri-heavy-showers-line:before {
  content: "";
}

.ri-history-fill:before {
  content: "";
}

.ri-history-line:before {
  content: "";
}

.ri-home-2-fill:before {
  content: "";
}

.ri-home-2-line:before {
  content: "";
}

.ri-home-3-fill:before {
  content: "";
}

.ri-home-3-line:before {
  content: "";
}

.ri-home-4-fill:before {
  content: "";
}

.ri-home-4-line:before {
  content: "";
}

.ri-home-5-fill:before {
  content: "";
}

.ri-home-5-line:before {
  content: "";
}

.ri-home-6-fill:before {
  content: "";
}

.ri-home-6-line:before {
  content: "";
}

.ri-home-7-fill:before {
  content: "";
}

.ri-home-7-line:before {
  content: "";
}

.ri-home-8-fill:before {
  content: "";
}

.ri-home-8-line:before {
  content: "";
}

.ri-home-fill:before {
  content: "";
}

.ri-home-gear-fill:before {
  content: "";
}

.ri-home-gear-line:before {
  content: "";
}

.ri-home-heart-fill:before {
  content: "";
}

.ri-home-heart-line:before {
  content: "";
}

.ri-home-line:before {
  content: "";
}

.ri-home-smile-2-fill:before {
  content: "";
}

.ri-home-smile-2-line:before {
  content: "";
}

.ri-home-smile-fill:before {
  content: "";
}

.ri-home-smile-line:before {
  content: "";
}

.ri-home-wifi-fill:before {
  content: "";
}

.ri-home-wifi-line:before {
  content: "";
}

.ri-honor-of-kings-fill:before {
  content: "";
}

.ri-honor-of-kings-line:before {
  content: "";
}

.ri-honour-fill:before {
  content: "";
}

.ri-honour-line:before {
  content: "";
}

.ri-hospital-fill:before {
  content: "";
}

.ri-hospital-line:before {
  content: "";
}

.ri-hotel-bed-fill:before {
  content: "";
}

.ri-hotel-bed-line:before {
  content: "";
}

.ri-hotel-fill:before {
  content: "";
}

.ri-hotel-line:before {
  content: "";
}

.ri-hotspot-fill:before {
  content: "";
}

.ri-hotspot-line:before {
  content: "";
}

.ri-hq-fill:before {
  content: "";
}

.ri-hq-line:before {
  content: "";
}

.ri-html5-fill:before {
  content: "";
}

.ri-html5-line:before {
  content: "";
}

.ri-ie-fill:before {
  content: "";
}

.ri-ie-line:before {
  content: "";
}

.ri-image-2-fill:before {
  content: "";
}

.ri-image-2-line:before {
  content: "";
}

.ri-image-add-fill:before {
  content: "";
}

.ri-image-add-line:before {
  content: "";
}

.ri-image-edit-fill:before {
  content: "";
}

.ri-image-edit-line:before {
  content: "";
}

.ri-image-fill:before {
  content: "";
}

.ri-image-line:before {
  content: "";
}

.ri-inbox-archive-fill:before {
  content: "";
}

.ri-inbox-archive-line:before {
  content: "";
}

.ri-inbox-fill:before {
  content: "";
}

.ri-inbox-line:before {
  content: "";
}

.ri-inbox-unarchive-fill:before {
  content: "";
}

.ri-inbox-unarchive-line:before {
  content: "";
}

.ri-increase-decrease-fill:before {
  content: "";
}

.ri-increase-decrease-line:before {
  content: "";
}

.ri-indent-decrease:before {
  content: "";
}

.ri-indent-increase:before {
  content: "";
}

.ri-indeterminate-circle-fill:before {
  content: "";
}

.ri-indeterminate-circle-line:before {
  content: "";
}

.ri-information-fill:before {
  content: "";
}

.ri-information-line:before {
  content: "";
}

.ri-infrared-thermometer-fill:before {
  content: "";
}

.ri-infrared-thermometer-line:before {
  content: "";
}

.ri-ink-bottle-fill:before {
  content: "";
}

.ri-ink-bottle-line:before {
  content: "";
}

.ri-input-cursor-move:before {
  content: "";
}

.ri-input-method-fill:before {
  content: "";
}

.ri-input-method-line:before {
  content: "";
}

.ri-insert-column-left:before {
  content: "";
}

.ri-insert-column-right:before {
  content: "";
}

.ri-insert-row-bottom:before {
  content: "";
}

.ri-insert-row-top:before {
  content: "";
}

.ri-instagram-fill:before {
  content: "";
}

.ri-instagram-line:before {
  content: "";
}

.ri-install-fill:before {
  content: "";
}

.ri-install-line:before {
  content: "";
}

.ri-invision-fill:before {
  content: "";
}

.ri-invision-line:before {
  content: "";
}

.ri-italic:before {
  content: "";
}

.ri-kakao-talk-fill:before {
  content: "";
}

.ri-kakao-talk-line:before {
  content: "";
}

.ri-key-2-fill:before {
  content: "";
}

.ri-key-2-line:before {
  content: "";
}

.ri-key-fill:before {
  content: "";
}

.ri-key-line:before {
  content: "";
}

.ri-keyboard-box-fill:before {
  content: "";
}

.ri-keyboard-box-line:before {
  content: "";
}

.ri-keyboard-fill:before {
  content: "";
}

.ri-keyboard-line:before {
  content: "";
}

.ri-keynote-fill:before {
  content: "";
}

.ri-keynote-line:before {
  content: "";
}

.ri-knife-blood-fill:before {
  content: "";
}

.ri-knife-blood-line:before {
  content: "";
}

.ri-knife-fill:before {
  content: "";
}

.ri-knife-line:before {
  content: "";
}

.ri-landscape-fill:before {
  content: "";
}

.ri-landscape-line:before {
  content: "";
}

.ri-layout-2-fill:before {
  content: "";
}

.ri-layout-2-line:before {
  content: "";
}

.ri-layout-3-fill:before {
  content: "";
}

.ri-layout-3-line:before {
  content: "";
}

.ri-layout-4-fill:before {
  content: "";
}

.ri-layout-4-line:before {
  content: "";
}

.ri-layout-5-fill:before {
  content: "";
}

.ri-layout-5-line:before {
  content: "";
}

.ri-layout-6-fill:before {
  content: "";
}

.ri-layout-6-line:before {
  content: "";
}

.ri-layout-bottom-2-fill:before {
  content: "";
}

.ri-layout-bottom-2-line:before {
  content: "";
}

.ri-layout-bottom-fill:before {
  content: "";
}

.ri-layout-bottom-line:before {
  content: "";
}

.ri-layout-column-fill:before {
  content: "";
}

.ri-layout-column-line:before {
  content: "";
}

.ri-layout-fill:before {
  content: "";
}

.ri-layout-grid-fill:before {
  content: "";
}

.ri-layout-grid-line:before {
  content: "";
}

.ri-layout-left-2-fill:before {
  content: "";
}

.ri-layout-left-2-line:before {
  content: "";
}

.ri-layout-left-fill:before {
  content: "";
}

.ri-layout-left-line:before {
  content: "";
}

.ri-layout-line:before {
  content: "";
}

.ri-layout-masonry-fill:before {
  content: "";
}

.ri-layout-masonry-line:before {
  content: "";
}

.ri-layout-right-2-fill:before {
  content: "";
}

.ri-layout-right-2-line:before {
  content: "";
}

.ri-layout-right-fill:before {
  content: "";
}

.ri-layout-right-line:before {
  content: "";
}

.ri-layout-row-fill:before {
  content: "";
}

.ri-layout-row-line:before {
  content: "";
}

.ri-layout-top-2-fill:before {
  content: "";
}

.ri-layout-top-2-line:before {
  content: "";
}

.ri-layout-top-fill:before {
  content: "";
}

.ri-layout-top-line:before {
  content: "";
}

.ri-leaf-fill:before {
  content: "";
}

.ri-leaf-line:before {
  content: "";
}

.ri-lifebuoy-fill:before {
  content: "";
}

.ri-lifebuoy-line:before {
  content: "";
}

.ri-lightbulb-fill:before {
  content: "";
}

.ri-lightbulb-flash-fill:before {
  content: "";
}

.ri-lightbulb-flash-line:before {
  content: "";
}

.ri-lightbulb-line:before {
  content: "";
}

.ri-line-chart-fill:before {
  content: "";
}

.ri-line-chart-line:before {
  content: "";
}

.ri-line-fill:before {
  content: "";
}

.ri-line-height:before {
  content: "";
}

.ri-line-line:before {
  content: "";
}

.ri-link-m:before {
  content: "";
}

.ri-link-unlink-m:before {
  content: "";
}

.ri-link-unlink:before {
  content: "";
}

.ri-link:before {
  content: "";
}

.ri-linkedin-box-fill:before {
  content: "";
}

.ri-linkedin-box-line:before {
  content: "";
}

.ri-linkedin-fill:before {
  content: "";
}

.ri-linkedin-line:before {
  content: "";
}

.ri-links-fill:before {
  content: "";
}

.ri-links-line:before {
  content: "";
}

.ri-list-check-2:before {
  content: "";
}

.ri-list-check:before {
  content: "";
}

.ri-list-ordered:before {
  content: "";
}

.ri-list-settings-fill:before {
  content: "";
}

.ri-list-settings-line:before {
  content: "";
}

.ri-list-unordered:before {
  content: "";
}

.ri-live-fill:before {
  content: "";
}

.ri-live-line:before {
  content: "";
}

.ri-loader-2-fill:before {
  content: "";
}

.ri-loader-2-line:before {
  content: "";
}

.ri-loader-3-fill:before {
  content: "";
}

.ri-loader-3-line:before {
  content: "";
}

.ri-loader-4-fill:before {
  content: "";
}

.ri-loader-4-line:before {
  content: "";
}

.ri-loader-5-fill:before {
  content: "";
}

.ri-loader-5-line:before {
  content: "";
}

.ri-loader-fill:before {
  content: "";
}

.ri-loader-line:before {
  content: "";
}

.ri-lock-2-fill:before {
  content: "";
}

.ri-lock-2-line:before {
  content: "";
}

.ri-lock-fill:before {
  content: "";
}

.ri-lock-line:before {
  content: "";
}

.ri-lock-password-fill:before {
  content: "";
}

.ri-lock-password-line:before {
  content: "";
}

.ri-lock-unlock-fill:before {
  content: "";
}

.ri-lock-unlock-line:before {
  content: "";
}

.ri-login-box-fill:before {
  content: "";
}

.ri-login-box-line:before {
  content: "";
}

.ri-login-circle-fill:before {
  content: "";
}

.ri-login-circle-line:before {
  content: "";
}

.ri-logout-box-fill:before {
  content: "";
}

.ri-logout-box-line:before {
  content: "";
}

.ri-logout-box-r-fill:before {
  content: "";
}

.ri-logout-box-r-line:before {
  content: "";
}

.ri-logout-circle-fill:before {
  content: "";
}

.ri-logout-circle-line:before {
  content: "";
}

.ri-logout-circle-r-fill:before {
  content: "";
}

.ri-logout-circle-r-line:before {
  content: "";
}

.ri-luggage-cart-fill:before {
  content: "";
}

.ri-luggage-cart-line:before {
  content: "";
}

.ri-luggage-deposit-fill:before {
  content: "";
}

.ri-luggage-deposit-line:before {
  content: "";
}

.ri-lungs-fill:before {
  content: "";
}

.ri-lungs-line:before {
  content: "";
}

.ri-mac-fill:before {
  content: "";
}

.ri-mac-line:before {
  content: "";
}

.ri-macbook-fill:before {
  content: "";
}

.ri-macbook-line:before {
  content: "";
}

.ri-magic-fill:before {
  content: "";
}

.ri-magic-line:before {
  content: "";
}

.ri-mail-add-fill:before {
  content: "";
}

.ri-mail-add-line:before {
  content: "";
}

.ri-mail-check-fill:before {
  content: "";
}

.ri-mail-check-line:before {
  content: "";
}

.ri-mail-close-fill:before {
  content: "";
}

.ri-mail-close-line:before {
  content: "";
}

.ri-mail-download-fill:before {
  content: "";
}

.ri-mail-download-line:before {
  content: "";
}

.ri-mail-fill:before {
  content: "";
}

.ri-mail-forbid-fill:before {
  content: "";
}

.ri-mail-forbid-line:before {
  content: "";
}

.ri-mail-line:before {
  content: "";
}

.ri-mail-lock-fill:before {
  content: "";
}

.ri-mail-lock-line:before {
  content: "";
}

.ri-mail-open-fill:before {
  content: "";
}

.ri-mail-open-line:before {
  content: "";
}

.ri-mail-send-fill:before {
  content: "";
}

.ri-mail-send-line:before {
  content: "";
}

.ri-mail-settings-fill:before {
  content: "";
}

.ri-mail-settings-line:before {
  content: "";
}

.ri-mail-star-fill:before {
  content: "";
}

.ri-mail-star-line:before {
  content: "";
}

.ri-mail-unread-fill:before {
  content: "";
}

.ri-mail-unread-line:before {
  content: "";
}

.ri-mail-volume-fill:before {
  content: "";
}

.ri-mail-volume-line:before {
  content: "";
}

.ri-map-2-fill:before {
  content: "";
}

.ri-map-2-line:before {
  content: "";
}

.ri-map-fill:before {
  content: "";
}

.ri-map-line:before {
  content: "";
}

.ri-map-pin-2-fill:before {
  content: "";
}

.ri-map-pin-2-line:before {
  content: "";
}

.ri-map-pin-3-fill:before {
  content: "";
}

.ri-map-pin-3-line:before {
  content: "";
}

.ri-map-pin-4-fill:before {
  content: "";
}

.ri-map-pin-4-line:before {
  content: "";
}

.ri-map-pin-5-fill:before {
  content: "";
}

.ri-map-pin-5-line:before {
  content: "";
}

.ri-map-pin-add-fill:before {
  content: "";
}

.ri-map-pin-add-line:before {
  content: "";
}

.ri-map-pin-fill:before {
  content: "";
}

.ri-map-pin-line:before {
  content: "";
}

.ri-map-pin-range-fill:before {
  content: "";
}

.ri-map-pin-range-line:before {
  content: "";
}

.ri-map-pin-time-fill:before {
  content: "";
}

.ri-map-pin-time-line:before {
  content: "";
}

.ri-map-pin-user-fill:before {
  content: "";
}

.ri-map-pin-user-line:before {
  content: "";
}

.ri-mark-pen-fill:before {
  content: "";
}

.ri-mark-pen-line:before {
  content: "";
}

.ri-markdown-fill:before {
  content: "";
}

.ri-markdown-line:before {
  content: "";
}

.ri-markup-fill:before {
  content: "";
}

.ri-markup-line:before {
  content: "";
}

.ri-mastercard-fill:before {
  content: "";
}

.ri-mastercard-line:before {
  content: "";
}

.ri-mastodon-fill:before {
  content: "";
}

.ri-mastodon-line:before {
  content: "";
}

.ri-medal-2-fill:before {
  content: "";
}

.ri-medal-2-line:before {
  content: "";
}

.ri-medal-fill:before {
  content: "";
}

.ri-medal-line:before {
  content: "";
}

.ri-medicine-bottle-fill:before {
  content: "";
}

.ri-medicine-bottle-line:before {
  content: "";
}

.ri-medium-fill:before {
  content: "";
}

.ri-medium-line:before {
  content: "";
}

.ri-men-fill:before {
  content: "";
}

.ri-men-line:before {
  content: "";
}

.ri-mental-health-fill:before {
  content: "";
}

.ri-mental-health-line:before {
  content: "";
}

.ri-menu-2-fill:before {
  content: "";
}

.ri-menu-2-line:before {
  content: "";
}

.ri-menu-3-fill:before {
  content: "";
}

.ri-menu-3-line:before {
  content: "";
}

.ri-menu-4-fill:before {
  content: "";
}

.ri-menu-4-line:before {
  content: "";
}

.ri-menu-5-fill:before {
  content: "";
}

.ri-menu-5-line:before {
  content: "";
}

.ri-menu-add-fill:before {
  content: "";
}

.ri-menu-add-line:before {
  content: "";
}

.ri-menu-fill:before {
  content: "";
}

.ri-menu-fold-fill:before {
  content: "";
}

.ri-menu-fold-line:before {
  content: "";
}

.ri-menu-line:before {
  content: "";
}

.ri-menu-unfold-fill:before {
  content: "";
}

.ri-menu-unfold-line:before {
  content: "";
}

.ri-merge-cells-horizontal:before {
  content: "";
}

.ri-merge-cells-vertical:before {
  content: "";
}

.ri-message-2-fill:before {
  content: "";
}

.ri-message-2-line:before {
  content: "";
}

.ri-message-3-fill:before {
  content: "";
}

.ri-message-3-line:before {
  content: "";
}

.ri-message-fill:before {
  content: "";
}

.ri-message-line:before {
  content: "";
}

.ri-messenger-fill:before {
  content: "";
}

.ri-messenger-line:before {
  content: "";
}

.ri-meteor-fill:before {
  content: "";
}

.ri-meteor-line:before {
  content: "";
}

.ri-mic-2-fill:before {
  content: "";
}

.ri-mic-2-line:before {
  content: "";
}

.ri-mic-fill:before {
  content: "";
}

.ri-mic-line:before {
  content: "";
}

.ri-mic-off-fill:before {
  content: "";
}

.ri-mic-off-line:before {
  content: "";
}

.ri-mickey-fill:before {
  content: "";
}

.ri-mickey-line:before {
  content: "";
}

.ri-microscope-fill:before {
  content: "";
}

.ri-microscope-line:before {
  content: "";
}

.ri-microsoft-fill:before {
  content: "";
}

.ri-microsoft-line:before {
  content: "";
}

.ri-mind-map:before {
  content: "";
}

.ri-mini-program-fill:before {
  content: "";
}

.ri-mini-program-line:before {
  content: "";
}

.ri-mist-fill:before {
  content: "";
}

.ri-mist-line:before {
  content: "";
}

.ri-money-cny-box-fill:before {
  content: "";
}

.ri-money-cny-box-line:before {
  content: "";
}

.ri-money-cny-circle-fill:before {
  content: "";
}

.ri-money-cny-circle-line:before {
  content: "";
}

.ri-money-dollar-box-fill:before {
  content: "";
}

.ri-money-dollar-box-line:before {
  content: "";
}

.ri-money-dollar-circle-fill:before {
  content: "";
}

.ri-money-dollar-circle-line:before {
  content: "";
}

.ri-money-euro-box-fill:before {
  content: "";
}

.ri-money-euro-box-line:before {
  content: "";
}

.ri-money-euro-circle-fill:before {
  content: "";
}

.ri-money-euro-circle-line:before {
  content: "";
}

.ri-money-pound-box-fill:before {
  content: "";
}

.ri-money-pound-box-line:before {
  content: "";
}

.ri-money-pound-circle-fill:before {
  content: "";
}

.ri-money-pound-circle-line:before {
  content: "";
}

.ri-moon-clear-fill:before {
  content: "";
}

.ri-moon-clear-line:before {
  content: "";
}

.ri-moon-cloudy-fill:before {
  content: "";
}

.ri-moon-cloudy-line:before {
  content: "";
}

.ri-moon-fill:before {
  content: "";
}

.ri-moon-foggy-fill:before {
  content: "";
}

.ri-moon-foggy-line:before {
  content: "";
}

.ri-moon-line:before {
  content: "";
}

.ri-more-2-fill:before {
  content: "";
}

.ri-more-2-line:before {
  content: "";
}

.ri-more-fill:before {
  content: "";
}

.ri-more-line:before {
  content: "";
}

.ri-motorbike-fill:before {
  content: "";
}

.ri-motorbike-line:before {
  content: "";
}

.ri-mouse-fill:before {
  content: "";
}

.ri-mouse-line:before {
  content: "";
}

.ri-movie-2-fill:before {
  content: "";
}

.ri-movie-2-line:before {
  content: "";
}

.ri-movie-fill:before {
  content: "";
}

.ri-movie-line:before {
  content: "";
}

.ri-music-2-fill:before {
  content: "";
}

.ri-music-2-line:before {
  content: "";
}

.ri-music-fill:before {
  content: "";
}

.ri-music-line:before {
  content: "";
}

.ri-mv-fill:before {
  content: "";
}

.ri-mv-line:before {
  content: "";
}

.ri-navigation-fill:before {
  content: "";
}

.ri-navigation-line:before {
  content: "";
}

.ri-netease-cloud-music-fill:before {
  content: "";
}

.ri-netease-cloud-music-line:before {
  content: "";
}

.ri-netflix-fill:before {
  content: "";
}

.ri-netflix-line:before {
  content: "";
}

.ri-newspaper-fill:before {
  content: "";
}

.ri-newspaper-line:before {
  content: "";
}

.ri-node-tree:before {
  content: "";
}

.ri-notification-2-fill:before {
  content: "";
}

.ri-notification-2-line:before {
  content: "";
}

.ri-notification-3-fill:before {
  content: "";
}

.ri-notification-3-line:before {
  content: "";
}

.ri-notification-4-fill:before {
  content: "";
}

.ri-notification-4-line:before {
  content: "";
}

.ri-notification-badge-fill:before {
  content: "";
}

.ri-notification-badge-line:before {
  content: "";
}

.ri-notification-fill:before {
  content: "";
}

.ri-notification-line:before {
  content: "";
}

.ri-notification-off-fill:before {
  content: "";
}

.ri-notification-off-line:before {
  content: "";
}

.ri-npmjs-fill:before {
  content: "";
}

.ri-npmjs-line:before {
  content: "";
}

.ri-number-0:before {
  content: "";
}

.ri-number-1:before {
  content: "";
}

.ri-number-2:before {
  content: "";
}

.ri-number-3:before {
  content: "";
}

.ri-number-4:before {
  content: "";
}

.ri-number-5:before {
  content: "";
}

.ri-number-6:before {
  content: "";
}

.ri-number-7:before {
  content: "";
}

.ri-number-8:before {
  content: "";
}

.ri-number-9:before {
  content: "";
}

.ri-numbers-fill:before {
  content: "";
}

.ri-numbers-line:before {
  content: "";
}

.ri-nurse-fill:before {
  content: "";
}

.ri-nurse-line:before {
  content: "";
}

.ri-oil-fill:before {
  content: "";
}

.ri-oil-line:before {
  content: "";
}

.ri-omega:before {
  content: "";
}

.ri-open-arm-fill:before {
  content: "";
}

.ri-open-arm-line:before {
  content: "";
}

.ri-open-source-fill:before {
  content: "";
}

.ri-open-source-line:before {
  content: "";
}

.ri-opera-fill:before {
  content: "";
}

.ri-opera-line:before {
  content: "";
}

.ri-order-play-fill:before {
  content: "";
}

.ri-order-play-line:before {
  content: "";
}

.ri-organization-chart:before {
  content: "";
}

.ri-outlet-2-fill:before {
  content: "";
}

.ri-outlet-2-line:before {
  content: "";
}

.ri-outlet-fill:before {
  content: "";
}

.ri-outlet-line:before {
  content: "";
}

.ri-page-separator:before {
  content: "";
}

.ri-pages-fill:before {
  content: "";
}

.ri-pages-line:before {
  content: "";
}

.ri-paint-brush-fill:before {
  content: "";
}

.ri-paint-brush-line:before {
  content: "";
}

.ri-paint-fill:before {
  content: "";
}

.ri-paint-line:before {
  content: "";
}

.ri-palette-fill:before {
  content: "";
}

.ri-palette-line:before {
  content: "";
}

.ri-pantone-fill:before {
  content: "";
}

.ri-pantone-line:before {
  content: "";
}

.ri-paragraph:before {
  content: "";
}

.ri-parent-fill:before {
  content: "";
}

.ri-parent-line:before {
  content: "";
}

.ri-parentheses-fill:before {
  content: "";
}

.ri-parentheses-line:before {
  content: "";
}

.ri-parking-box-fill:before {
  content: "";
}

.ri-parking-box-line:before {
  content: "";
}

.ri-parking-fill:before {
  content: "";
}

.ri-parking-line:before {
  content: "";
}

.ri-passport-fill:before {
  content: "";
}

.ri-passport-line:before {
  content: "";
}

.ri-patreon-fill:before {
  content: "";
}

.ri-patreon-line:before {
  content: "";
}

.ri-pause-circle-fill:before {
  content: "";
}

.ri-pause-circle-line:before {
  content: "";
}

.ri-pause-fill:before {
  content: "";
}

.ri-pause-line:before {
  content: "";
}

.ri-pause-mini-fill:before {
  content: "";
}

.ri-pause-mini-line:before {
  content: "";
}

.ri-paypal-fill:before {
  content: "";
}

.ri-paypal-line:before {
  content: "";
}

.ri-pen-nib-fill:before {
  content: "";
}

.ri-pen-nib-line:before {
  content: "";
}

.ri-pencil-fill:before {
  content: "";
}

.ri-pencil-line:before {
  content: "";
}

.ri-pencil-ruler-2-fill:before {
  content: "";
}

.ri-pencil-ruler-2-line:before {
  content: "";
}

.ri-pencil-ruler-fill:before {
  content: "";
}

.ri-pencil-ruler-line:before {
  content: "";
}

.ri-percent-fill:before {
  content: "";
}

.ri-percent-line:before {
  content: "";
}

.ri-phone-camera-fill:before {
  content: "";
}

.ri-phone-camera-line:before {
  content: "";
}

.ri-phone-fill:before {
  content: "";
}

.ri-phone-find-fill:before {
  content: "";
}

.ri-phone-find-line:before {
  content: "";
}

.ri-phone-line:before {
  content: "";
}

.ri-phone-lock-fill:before {
  content: "";
}

.ri-phone-lock-line:before {
  content: "";
}

.ri-picture-in-picture-2-fill:before {
  content: "";
}

.ri-picture-in-picture-2-line:before {
  content: "";
}

.ri-picture-in-picture-exit-fill:before {
  content: "";
}

.ri-picture-in-picture-exit-line:before {
  content: "";
}

.ri-picture-in-picture-fill:before {
  content: "";
}

.ri-picture-in-picture-line:before {
  content: "";
}

.ri-pie-chart-2-fill:before {
  content: "";
}

.ri-pie-chart-2-line:before {
  content: "";
}

.ri-pie-chart-box-fill:before {
  content: "";
}

.ri-pie-chart-box-line:before {
  content: "";
}

.ri-pie-chart-fill:before {
  content: "";
}

.ri-pie-chart-line:before {
  content: "";
}

.ri-pin-distance-fill:before {
  content: "";
}

.ri-pin-distance-line:before {
  content: "";
}

.ri-ping-pong-fill:before {
  content: "";
}

.ri-ping-pong-line:before {
  content: "";
}

.ri-pinterest-fill:before {
  content: "";
}

.ri-pinterest-line:before {
  content: "";
}

.ri-pinyin-input:before {
  content: "";
}

.ri-pixelfed-fill:before {
  content: "";
}

.ri-pixelfed-line:before {
  content: "";
}

.ri-plane-fill:before {
  content: "";
}

.ri-plane-line:before {
  content: "";
}

.ri-plant-fill:before {
  content: "";
}

.ri-plant-line:before {
  content: "";
}

.ri-play-circle-fill:before {
  content: "";
}

.ri-play-circle-line:before {
  content: "";
}

.ri-play-fill:before {
  content: "";
}

.ri-play-line:before {
  content: "";
}

.ri-play-list-2-fill:before {
  content: "";
}

.ri-play-list-2-line:before {
  content: "";
}

.ri-play-list-add-fill:before {
  content: "";
}

.ri-play-list-add-line:before {
  content: "";
}

.ri-play-list-fill:before {
  content: "";
}

.ri-play-list-line:before {
  content: "";
}

.ri-play-mini-fill:before {
  content: "";
}

.ri-play-mini-line:before {
  content: "";
}

.ri-playstation-fill:before {
  content: "";
}

.ri-playstation-line:before {
  content: "";
}

.ri-plug-2-fill:before {
  content: "";
}

.ri-plug-2-line:before {
  content: "";
}

.ri-plug-fill:before {
  content: "";
}

.ri-plug-line:before {
  content: "";
}

.ri-polaroid-2-fill:before {
  content: "";
}

.ri-polaroid-2-line:before {
  content: "";
}

.ri-polaroid-fill:before {
  content: "";
}

.ri-polaroid-line:before {
  content: "";
}

.ri-police-car-fill:before {
  content: "";
}

.ri-police-car-line:before {
  content: "";
}

.ri-price-tag-2-fill:before {
  content: "";
}

.ri-price-tag-2-line:before {
  content: "";
}

.ri-price-tag-3-fill:before {
  content: "";
}

.ri-price-tag-3-line:before {
  content: "";
}

.ri-price-tag-fill:before {
  content: "";
}

.ri-price-tag-line:before {
  content: "";
}

.ri-printer-cloud-fill:before {
  content: "";
}

.ri-printer-cloud-line:before {
  content: "";
}

.ri-printer-fill:before {
  content: "";
}

.ri-printer-line:before {
  content: "";
}

.ri-product-hunt-fill:before {
  content: "";
}

.ri-product-hunt-line:before {
  content: "";
}

.ri-profile-fill:before {
  content: "";
}

.ri-profile-line:before {
  content: "";
}

.ri-projector-2-fill:before {
  content: "";
}

.ri-projector-2-line:before {
  content: "";
}

.ri-projector-fill:before {
  content: "";
}

.ri-projector-line:before {
  content: "";
}

.ri-psychotherapy-fill:before {
  content: "";
}

.ri-psychotherapy-line:before {
  content: "";
}

.ri-pulse-fill:before {
  content: "";
}

.ri-pulse-line:before {
  content: "";
}

.ri-pushpin-2-fill:before {
  content: "";
}

.ri-pushpin-2-line:before {
  content: "";
}

.ri-pushpin-fill:before {
  content: "";
}

.ri-pushpin-line:before {
  content: "";
}

.ri-qq-fill:before {
  content: "";
}

.ri-qq-line:before {
  content: "";
}

.ri-qr-code-fill:before {
  content: "";
}

.ri-qr-code-line:before {
  content: "";
}

.ri-qr-scan-2-fill:before {
  content: "";
}

.ri-qr-scan-2-line:before {
  content: "";
}

.ri-qr-scan-fill:before {
  content: "";
}

.ri-qr-scan-line:before {
  content: "";
}

.ri-question-answer-fill:before {
  content: "";
}

.ri-question-answer-line:before {
  content: "";
}

.ri-question-fill:before {
  content: "";
}

.ri-question-line:before {
  content: "";
}

.ri-question-mark:before {
  content: "";
}

.ri-questionnaire-fill:before {
  content: "";
}

.ri-questionnaire-line:before {
  content: "";
}

.ri-quill-pen-fill:before {
  content: "";
}

.ri-quill-pen-line:before {
  content: "";
}

.ri-radar-fill:before {
  content: "";
}

.ri-radar-line:before {
  content: "";
}

.ri-radio-2-fill:before {
  content: "";
}

.ri-radio-2-line:before {
  content: "";
}

.ri-radio-button-fill:before {
  content: "";
}

.ri-radio-button-line:before {
  content: "";
}

.ri-radio-fill:before {
  content: "";
}

.ri-radio-line:before {
  content: "";
}

.ri-rainbow-fill:before {
  content: "";
}

.ri-rainbow-line:before {
  content: "";
}

.ri-rainy-fill:before {
  content: "";
}

.ri-rainy-line:before {
  content: "";
}

.ri-reactjs-fill:before {
  content: "";
}

.ri-reactjs-line:before {
  content: "";
}

.ri-record-circle-fill:before {
  content: "";
}

.ri-record-circle-line:before {
  content: "";
}

.ri-record-mail-fill:before {
  content: "";
}

.ri-record-mail-line:before {
  content: "";
}

.ri-recycle-fill:before {
  content: "";
}

.ri-recycle-line:before {
  content: "";
}

.ri-red-packet-fill:before {
  content: "";
}

.ri-red-packet-line:before {
  content: "";
}

.ri-reddit-fill:before {
  content: "";
}

.ri-reddit-line:before {
  content: "";
}

.ri-refresh-fill:before {
  content: "";
}

.ri-refresh-line:before {
  content: "";
}

.ri-refund-2-fill:before {
  content: "";
}

.ri-refund-2-line:before {
  content: "";
}

.ri-refund-fill:before {
  content: "";
}

.ri-refund-line:before {
  content: "";
}

.ri-registered-fill:before {
  content: "";
}

.ri-registered-line:before {
  content: "";
}

.ri-remixicon-fill:before {
  content: "";
}

.ri-remixicon-line:before {
  content: "";
}

.ri-remote-control-2-fill:before {
  content: "";
}

.ri-remote-control-2-line:before {
  content: "";
}

.ri-remote-control-fill:before {
  content: "";
}

.ri-remote-control-line:before {
  content: "";
}

.ri-repeat-2-fill:before {
  content: "";
}

.ri-repeat-2-line:before {
  content: "";
}

.ri-repeat-fill:before {
  content: "";
}

.ri-repeat-line:before {
  content: "";
}

.ri-repeat-one-fill:before {
  content: "";
}

.ri-repeat-one-line:before {
  content: "";
}

.ri-reply-all-fill:before {
  content: "";
}

.ri-reply-all-line:before {
  content: "";
}

.ri-reply-fill:before {
  content: "";
}

.ri-reply-line:before {
  content: "";
}

.ri-reserved-fill:before {
  content: "";
}

.ri-reserved-line:before {
  content: "";
}

.ri-rest-time-fill:before {
  content: "";
}

.ri-rest-time-line:before {
  content: "";
}

.ri-restart-fill:before {
  content: "";
}

.ri-restart-line:before {
  content: "";
}

.ri-restaurant-2-fill:before {
  content: "";
}

.ri-restaurant-2-line:before {
  content: "";
}

.ri-restaurant-fill:before {
  content: "";
}

.ri-restaurant-line:before {
  content: "";
}

.ri-rewind-fill:before {
  content: "";
}

.ri-rewind-line:before {
  content: "";
}

.ri-rewind-mini-fill:before {
  content: "";
}

.ri-rewind-mini-line:before {
  content: "";
}

.ri-rhythm-fill:before {
  content: "";
}

.ri-rhythm-line:before {
  content: "";
}

.ri-riding-fill:before {
  content: "";
}

.ri-riding-line:before {
  content: "";
}

.ri-road-map-fill:before {
  content: "";
}

.ri-road-map-line:before {
  content: "";
}

.ri-roadster-fill:before {
  content: "";
}

.ri-roadster-line:before {
  content: "";
}

.ri-robot-fill:before {
  content: "";
}

.ri-robot-line:before {
  content: "";
}

.ri-rocket-2-fill:before {
  content: "";
}

.ri-rocket-2-line:before {
  content: "";
}

.ri-rocket-fill:before {
  content: "";
}

.ri-rocket-line:before {
  content: "";
}

.ri-rotate-lock-fill:before {
  content: "";
}

.ri-rotate-lock-line:before {
  content: "";
}

.ri-rounded-corner:before {
  content: "";
}

.ri-route-fill:before {
  content: "";
}

.ri-route-line:before {
  content: "";
}

.ri-router-fill:before {
  content: "";
}

.ri-router-line:before {
  content: "";
}

.ri-rss-fill:before {
  content: "";
}

.ri-rss-line:before {
  content: "";
}

.ri-ruler-2-fill:before {
  content: "";
}

.ri-ruler-2-line:before {
  content: "";
}

.ri-ruler-fill:before {
  content: "";
}

.ri-ruler-line:before {
  content: "";
}

.ri-run-fill:before {
  content: "";
}

.ri-run-line:before {
  content: "";
}

.ri-safari-fill:before {
  content: "";
}

.ri-safari-line:before {
  content: "";
}

.ri-safe-2-fill:before {
  content: "";
}

.ri-safe-2-line:before {
  content: "";
}

.ri-safe-fill:before {
  content: "";
}

.ri-safe-line:before {
  content: "";
}

.ri-sailboat-fill:before {
  content: "";
}

.ri-sailboat-line:before {
  content: "";
}

.ri-save-2-fill:before {
  content: "";
}

.ri-save-2-line:before {
  content: "";
}

.ri-save-3-fill:before {
  content: "";
}

.ri-save-3-line:before {
  content: "";
}

.ri-save-fill:before {
  content: "";
}

.ri-save-line:before {
  content: "";
}

.ri-scales-2-fill:before {
  content: "";
}

.ri-scales-2-line:before {
  content: "";
}

.ri-scales-3-fill:before {
  content: "";
}

.ri-scales-3-line:before {
  content: "";
}

.ri-scales-fill:before {
  content: "";
}

.ri-scales-line:before {
  content: "";
}

.ri-scan-2-fill:before {
  content: "";
}

.ri-scan-2-line:before {
  content: "";
}

.ri-scan-fill:before {
  content: "";
}

.ri-scan-line:before {
  content: "";
}

.ri-scissors-2-fill:before {
  content: "";
}

.ri-scissors-2-line:before {
  content: "";
}

.ri-scissors-cut-fill:before {
  content: "";
}

.ri-scissors-cut-line:before {
  content: "";
}

.ri-scissors-fill:before {
  content: "";
}

.ri-scissors-line:before {
  content: "";
}

.ri-screenshot-2-fill:before {
  content: "";
}

.ri-screenshot-2-line:before {
  content: "";
}

.ri-screenshot-fill:before {
  content: "";
}

.ri-screenshot-line:before {
  content: "";
}

.ri-sd-card-fill:before {
  content: "";
}

.ri-sd-card-line:before {
  content: "";
}

.ri-sd-card-mini-fill:before {
  content: "";
}

.ri-sd-card-mini-line:before {
  content: "";
}

.ri-search-2-fill:before {
  content: "";
}

.ri-search-2-line:before {
  content: "";
}

.ri-search-eye-fill:before {
  content: "";
}

.ri-search-eye-line:before {
  content: "";
}

.ri-search-fill:before {
  content: "";
}

.ri-search-line:before {
  content: "";
}

.ri-secure-payment-fill:before {
  content: "";
}

.ri-secure-payment-line:before {
  content: "";
}

.ri-seedling-fill:before {
  content: "";
}

.ri-seedling-line:before {
  content: "";
}

.ri-send-backward:before {
  content: "";
}

.ri-send-plane-2-fill:before {
  content: "";
}

.ri-send-plane-2-line:before {
  content: "";
}

.ri-send-plane-fill:before {
  content: "";
}

.ri-send-plane-line:before {
  content: "";
}

.ri-send-to-back:before {
  content: "";
}

.ri-sensor-fill:before {
  content: "";
}

.ri-sensor-line:before {
  content: "";
}

.ri-separator:before {
  content: "";
}

.ri-server-fill:before {
  content: "";
}

.ri-server-line:before {
  content: "";
}

.ri-service-fill:before {
  content: "";
}

.ri-service-line:before {
  content: "";
}

.ri-settings-2-fill:before {
  content: "";
}

.ri-settings-2-line:before {
  content: "";
}

.ri-settings-3-fill:before {
  content: "";
}

.ri-settings-3-line:before {
  content: "";
}

.ri-settings-4-fill:before {
  content: "";
}

.ri-settings-4-line:before {
  content: "";
}

.ri-settings-5-fill:before {
  content: "";
}

.ri-settings-5-line:before {
  content: "";
}

.ri-settings-6-fill:before {
  content: "";
}

.ri-settings-6-line:before {
  content: "";
}

.ri-settings-fill:before {
  content: "";
}

.ri-settings-line:before {
  content: "";
}

.ri-shape-2-fill:before {
  content: "";
}

.ri-shape-2-line:before {
  content: "";
}

.ri-shape-fill:before {
  content: "";
}

.ri-shape-line:before {
  content: "";
}

.ri-share-box-fill:before {
  content: "";
}

.ri-share-box-line:before {
  content: "";
}

.ri-share-circle-fill:before {
  content: "";
}

.ri-share-circle-line:before {
  content: "";
}

.ri-share-fill:before {
  content: "";
}

.ri-share-forward-2-fill:before {
  content: "";
}

.ri-share-forward-2-line:before {
  content: "";
}

.ri-share-forward-box-fill:before {
  content: "";
}

.ri-share-forward-box-line:before {
  content: "";
}

.ri-share-forward-fill:before {
  content: "";
}

.ri-share-forward-line:before {
  content: "";
}

.ri-share-line:before {
  content: "";
}

.ri-shield-check-fill:before {
  content: "";
}

.ri-shield-check-line:before {
  content: "";
}

.ri-shield-cross-fill:before {
  content: "";
}

.ri-shield-cross-line:before {
  content: "";
}

.ri-shield-fill:before {
  content: "";
}

.ri-shield-flash-fill:before {
  content: "";
}

.ri-shield-flash-line:before {
  content: "";
}

.ri-shield-keyhole-fill:before {
  content: "";
}

.ri-shield-keyhole-line:before {
  content: "";
}

.ri-shield-line:before {
  content: "";
}

.ri-shield-star-fill:before {
  content: "";
}

.ri-shield-star-line:before {
  content: "";
}

.ri-shield-user-fill:before {
  content: "";
}

.ri-shield-user-line:before {
  content: "";
}

.ri-ship-2-fill:before {
  content: "";
}

.ri-ship-2-line:before {
  content: "";
}

.ri-ship-fill:before {
  content: "";
}

.ri-ship-line:before {
  content: "";
}

.ri-shirt-fill:before {
  content: "";
}

.ri-shirt-line:before {
  content: "";
}

.ri-shopping-bag-2-fill:before {
  content: "";
}

.ri-shopping-bag-2-line:before {
  content: "";
}

.ri-shopping-bag-3-fill:before {
  content: "";
}

.ri-shopping-bag-3-line:before {
  content: "";
}

.ri-shopping-bag-fill:before {
  content: "";
}

.ri-shopping-bag-line:before {
  content: "";
}

.ri-shopping-basket-2-fill:before {
  content: "";
}

.ri-shopping-basket-2-line:before {
  content: "";
}

.ri-shopping-basket-fill:before {
  content: "";
}

.ri-shopping-basket-line:before {
  content: "";
}

.ri-shopping-cart-2-fill:before {
  content: "";
}

.ri-shopping-cart-2-line:before {
  content: "";
}

.ri-shopping-cart-fill:before {
  content: "";
}

.ri-shopping-cart-line:before {
  content: "";
}

.ri-showers-fill:before {
  content: "";
}

.ri-showers-line:before {
  content: "";
}

.ri-shuffle-fill:before {
  content: "";
}

.ri-shuffle-line:before {
  content: "";
}

.ri-shut-down-fill:before {
  content: "";
}

.ri-shut-down-line:before {
  content: "";
}

.ri-side-bar-fill:before {
  content: "";
}

.ri-side-bar-line:before {
  content: "";
}

.ri-signal-tower-fill:before {
  content: "";
}

.ri-signal-tower-line:before {
  content: "";
}

.ri-signal-wifi-1-fill:before {
  content: "";
}

.ri-signal-wifi-1-line:before {
  content: "";
}

.ri-signal-wifi-2-fill:before {
  content: "";
}

.ri-signal-wifi-2-line:before {
  content: "";
}

.ri-signal-wifi-3-fill:before {
  content: "";
}

.ri-signal-wifi-3-line:before {
  content: "";
}

.ri-signal-wifi-error-fill:before {
  content: "";
}

.ri-signal-wifi-error-line:before {
  content: "";
}

.ri-signal-wifi-fill:before {
  content: "";
}

.ri-signal-wifi-line:before {
  content: "";
}

.ri-signal-wifi-off-fill:before {
  content: "";
}

.ri-signal-wifi-off-line:before {
  content: "";
}

.ri-sim-card-2-fill:before {
  content: "";
}

.ri-sim-card-2-line:before {
  content: "";
}

.ri-sim-card-fill:before {
  content: "";
}

.ri-sim-card-line:before {
  content: "";
}

.ri-single-quotes-l:before {
  content: "";
}

.ri-single-quotes-r:before {
  content: "";
}

.ri-sip-fill:before {
  content: "";
}

.ri-sip-line:before {
  content: "";
}

.ri-skip-back-fill:before {
  content: "";
}

.ri-skip-back-line:before {
  content: "";
}

.ri-skip-back-mini-fill:before {
  content: "";
}

.ri-skip-back-mini-line:before {
  content: "";
}

.ri-skip-forward-fill:before {
  content: "";
}

.ri-skip-forward-line:before {
  content: "";
}

.ri-skip-forward-mini-fill:before {
  content: "";
}

.ri-skip-forward-mini-line:before {
  content: "";
}

.ri-skull-2-fill:before {
  content: "";
}

.ri-skull-2-line:before {
  content: "";
}

.ri-skull-fill:before {
  content: "";
}

.ri-skull-line:before {
  content: "";
}

.ri-skype-fill:before {
  content: "";
}

.ri-skype-line:before {
  content: "";
}

.ri-slack-fill:before {
  content: "";
}

.ri-slack-line:before {
  content: "";
}

.ri-slice-fill:before {
  content: "";
}

.ri-slice-line:before {
  content: "";
}

.ri-slideshow-2-fill:before {
  content: "";
}

.ri-slideshow-2-line:before {
  content: "";
}

.ri-slideshow-3-fill:before {
  content: "";
}

.ri-slideshow-3-line:before {
  content: "";
}

.ri-slideshow-4-fill:before {
  content: "";
}

.ri-slideshow-4-line:before {
  content: "";
}

.ri-slideshow-fill:before {
  content: "";
}

.ri-slideshow-line:before {
  content: "";
}

.ri-smartphone-fill:before {
  content: "";
}

.ri-smartphone-line:before {
  content: "";
}

.ri-snapchat-fill:before {
  content: "";
}

.ri-snapchat-line:before {
  content: "";
}

.ri-snowy-fill:before {
  content: "";
}

.ri-snowy-line:before {
  content: "";
}

.ri-sort-asc:before {
  content: "";
}

.ri-sort-desc:before {
  content: "";
}

.ri-sound-module-fill:before {
  content: "";
}

.ri-sound-module-line:before {
  content: "";
}

.ri-soundcloud-fill:before {
  content: "";
}

.ri-soundcloud-line:before {
  content: "";
}

.ri-space-ship-fill:before {
  content: "";
}

.ri-space-ship-line:before {
  content: "";
}

.ri-space:before {
  content: "";
}

.ri-spam-2-fill:before {
  content: "";
}

.ri-spam-2-line:before {
  content: "";
}

.ri-spam-3-fill:before {
  content: "";
}

.ri-spam-3-line:before {
  content: "";
}

.ri-spam-fill:before {
  content: "";
}

.ri-spam-line:before {
  content: "";
}

.ri-speaker-2-fill:before {
  content: "";
}

.ri-speaker-2-line:before {
  content: "";
}

.ri-speaker-3-fill:before {
  content: "";
}

.ri-speaker-3-line:before {
  content: "";
}

.ri-speaker-fill:before {
  content: "";
}

.ri-speaker-line:before {
  content: "";
}

.ri-spectrum-fill:before {
  content: "";
}

.ri-spectrum-line:before {
  content: "";
}

.ri-speed-fill:before {
  content: "";
}

.ri-speed-line:before {
  content: "";
}

.ri-speed-mini-fill:before {
  content: "";
}

.ri-speed-mini-line:before {
  content: "";
}

.ri-split-cells-horizontal:before {
  content: "";
}

.ri-split-cells-vertical:before {
  content: "";
}

.ri-spotify-fill:before {
  content: "";
}

.ri-spotify-line:before {
  content: "";
}

.ri-spy-fill:before {
  content: "";
}

.ri-spy-line:before {
  content: "";
}

.ri-stack-fill:before {
  content: "";
}

.ri-stack-line:before {
  content: "";
}

.ri-stack-overflow-fill:before {
  content: "";
}

.ri-stack-overflow-line:before {
  content: "";
}

.ri-stackshare-fill:before {
  content: "";
}

.ri-stackshare-line:before {
  content: "";
}

.ri-star-fill:before {
  content: "";
}

.ri-star-half-fill:before {
  content: "";
}

.ri-star-half-line:before {
  content: "";
}

.ri-star-half-s-fill:before {
  content: "";
}

.ri-star-half-s-line:before {
  content: "";
}

.ri-star-line:before {
  content: "";
}

.ri-star-s-fill:before {
  content: "";
}

.ri-star-s-line:before {
  content: "";
}

.ri-star-smile-fill:before {
  content: "";
}

.ri-star-smile-line:before {
  content: "";
}

.ri-steam-fill:before {
  content: "";
}

.ri-steam-line:before {
  content: "";
}

.ri-steering-2-fill:before {
  content: "";
}

.ri-steering-2-line:before {
  content: "";
}

.ri-steering-fill:before {
  content: "";
}

.ri-steering-line:before {
  content: "";
}

.ri-stethoscope-fill:before {
  content: "";
}

.ri-stethoscope-line:before {
  content: "";
}

.ri-sticky-note-2-fill:before {
  content: "";
}

.ri-sticky-note-2-line:before {
  content: "";
}

.ri-sticky-note-fill:before {
  content: "";
}

.ri-sticky-note-line:before {
  content: "";
}

.ri-stock-fill:before {
  content: "";
}

.ri-stock-line:before {
  content: "";
}

.ri-stop-circle-fill:before {
  content: "";
}

.ri-stop-circle-line:before {
  content: "";
}

.ri-stop-fill:before {
  content: "";
}

.ri-stop-line:before {
  content: "";
}

.ri-stop-mini-fill:before {
  content: "";
}

.ri-stop-mini-line:before {
  content: "";
}

.ri-store-2-fill:before {
  content: "";
}

.ri-store-2-line:before {
  content: "";
}

.ri-store-3-fill:before {
  content: "";
}

.ri-store-3-line:before {
  content: "";
}

.ri-store-fill:before {
  content: "";
}

.ri-store-line:before {
  content: "";
}

.ri-strikethrough-2:before {
  content: "";
}

.ri-strikethrough:before {
  content: "";
}

.ri-subscript-2:before {
  content: "";
}

.ri-subscript:before {
  content: "";
}

.ri-subtract-fill:before {
  content: "";
}

.ri-subtract-line:before {
  content: "";
}

.ri-subway-fill:before {
  content: "";
}

.ri-subway-line:before {
  content: "";
}

.ri-subway-wifi-fill:before {
  content: "";
}

.ri-subway-wifi-line:before {
  content: "";
}

.ri-suitcase-2-fill:before {
  content: "";
}

.ri-suitcase-2-line:before {
  content: "";
}

.ri-suitcase-3-fill:before {
  content: "";
}

.ri-suitcase-3-line:before {
  content: "";
}

.ri-suitcase-fill:before {
  content: "";
}

.ri-suitcase-line:before {
  content: "";
}

.ri-sun-cloudy-fill:before {
  content: "";
}

.ri-sun-cloudy-line:before {
  content: "";
}

.ri-sun-fill:before {
  content: "";
}

.ri-sun-foggy-fill:before {
  content: "";
}

.ri-sun-foggy-line:before {
  content: "";
}

.ri-sun-line:before {
  content: "";
}

.ri-superscript-2:before {
  content: "";
}

.ri-superscript:before {
  content: "";
}

.ri-surgical-mask-fill:before {
  content: "";
}

.ri-surgical-mask-line:before {
  content: "";
}

.ri-surround-sound-fill:before {
  content: "";
}

.ri-surround-sound-line:before {
  content: "";
}

.ri-survey-fill:before {
  content: "";
}

.ri-survey-line:before {
  content: "";
}

.ri-swap-box-fill:before {
  content: "";
}

.ri-swap-box-line:before {
  content: "";
}

.ri-swap-fill:before {
  content: "";
}

.ri-swap-line:before {
  content: "";
}

.ri-switch-fill:before {
  content: "";
}

.ri-switch-line:before {
  content: "";
}

.ri-sword-fill:before {
  content: "";
}

.ri-sword-line:before {
  content: "";
}

.ri-syringe-fill:before {
  content: "";
}

.ri-syringe-line:before {
  content: "";
}

.ri-t-box-fill:before {
  content: "";
}

.ri-t-box-line:before {
  content: "";
}

.ri-t-shirt-2-fill:before {
  content: "";
}

.ri-t-shirt-2-line:before {
  content: "";
}

.ri-t-shirt-air-fill:before {
  content: "";
}

.ri-t-shirt-air-line:before {
  content: "";
}

.ri-t-shirt-fill:before {
  content: "";
}

.ri-t-shirt-line:before {
  content: "";
}

.ri-table-2:before {
  content: "";
}

.ri-table-alt-fill:before {
  content: "";
}

.ri-table-alt-line:before {
  content: "";
}

.ri-table-fill:before {
  content: "";
}

.ri-table-line:before {
  content: "";
}

.ri-tablet-fill:before {
  content: "";
}

.ri-tablet-line:before {
  content: "";
}

.ri-takeaway-fill:before {
  content: "";
}

.ri-takeaway-line:before {
  content: "";
}

.ri-taobao-fill:before {
  content: "";
}

.ri-taobao-line:before {
  content: "";
}

.ri-tape-fill:before {
  content: "";
}

.ri-tape-line:before {
  content: "";
}

.ri-task-fill:before {
  content: "";
}

.ri-task-line:before {
  content: "";
}

.ri-taxi-fill:before {
  content: "";
}

.ri-taxi-line:before {
  content: "";
}

.ri-taxi-wifi-fill:before {
  content: "";
}

.ri-taxi-wifi-line:before {
  content: "";
}

.ri-team-fill:before {
  content: "";
}

.ri-team-line:before {
  content: "";
}

.ri-telegram-fill:before {
  content: "";
}

.ri-telegram-line:before {
  content: "";
}

.ri-temp-cold-fill:before {
  content: "";
}

.ri-temp-cold-line:before {
  content: "";
}

.ri-temp-hot-fill:before {
  content: "";
}

.ri-temp-hot-line:before {
  content: "";
}

.ri-terminal-box-fill:before {
  content: "";
}

.ri-terminal-box-line:before {
  content: "";
}

.ri-terminal-fill:before {
  content: "";
}

.ri-terminal-line:before {
  content: "";
}

.ri-terminal-window-fill:before {
  content: "";
}

.ri-terminal-window-line:before {
  content: "";
}

.ri-test-tube-fill:before {
  content: "";
}

.ri-test-tube-line:before {
  content: "";
}

.ri-text-direction-l:before {
  content: "";
}

.ri-text-direction-r:before {
  content: "";
}

.ri-text-spacing:before {
  content: "";
}

.ri-text-wrap:before {
  content: "";
}

.ri-text:before {
  content: "";
}

.ri-thermometer-fill:before {
  content: "";
}

.ri-thermometer-line:before {
  content: "";
}

.ri-thumb-down-fill:before {
  content: "";
}

.ri-thumb-down-line:before {
  content: "";
}

.ri-thumb-up-fill:before {
  content: "";
}

.ri-thumb-up-line:before {
  content: "";
}

.ri-thunderstorms-fill:before {
  content: "";
}

.ri-thunderstorms-line:before {
  content: "";
}

.ri-ticket-2-fill:before {
  content: "";
}

.ri-ticket-2-line:before {
  content: "";
}

.ri-ticket-fill:before {
  content: "";
}

.ri-ticket-line:before {
  content: "";
}

.ri-time-fill:before {
  content: "";
}

.ri-time-line:before {
  content: "";
}

.ri-timer-2-fill:before {
  content: "";
}

.ri-timer-2-line:before {
  content: "";
}

.ri-timer-fill:before {
  content: "";
}

.ri-timer-flash-fill:before {
  content: "";
}

.ri-timer-flash-line:before {
  content: "";
}

.ri-timer-line:before {
  content: "";
}

.ri-todo-fill:before {
  content: "";
}

.ri-todo-line:before {
  content: "";
}

.ri-toggle-fill:before {
  content: "";
}

.ri-toggle-line:before {
  content: "";
}

.ri-tools-fill:before {
  content: "";
}

.ri-tools-line:before {
  content: "";
}

.ri-tornado-fill:before {
  content: "";
}

.ri-tornado-line:before {
  content: "";
}

.ri-trademark-fill:before {
  content: "";
}

.ri-trademark-line:before {
  content: "";
}

.ri-traffic-light-fill:before {
  content: "";
}

.ri-traffic-light-line:before {
  content: "";
}

.ri-train-fill:before {
  content: "";
}

.ri-train-line:before {
  content: "";
}

.ri-train-wifi-fill:before {
  content: "";
}

.ri-train-wifi-line:before {
  content: "";
}

.ri-translate-2:before {
  content: "";
}

.ri-translate:before {
  content: "";
}

.ri-travesti-fill:before {
  content: "";
}

.ri-travesti-line:before {
  content: "";
}

.ri-treasure-map-fill:before {
  content: "";
}

.ri-treasure-map-line:before {
  content: "";
}

.ri-trello-fill:before {
  content: "";
}

.ri-trello-line:before {
  content: "";
}

.ri-trophy-fill:before {
  content: "";
}

.ri-trophy-line:before {
  content: "";
}

.ri-truck-fill:before {
  content: "";
}

.ri-truck-line:before {
  content: "";
}

.ri-tumblr-fill:before {
  content: "";
}

.ri-tumblr-line:before {
  content: "";
}

.ri-tv-2-fill:before {
  content: "";
}

.ri-tv-2-line:before {
  content: "";
}

.ri-tv-fill:before {
  content: "";
}

.ri-tv-line:before {
  content: "";
}

.ri-twitch-fill:before {
  content: "";
}

.ri-twitch-line:before {
  content: "";
}

.ri-twitter-fill:before {
  content: "";
}

.ri-twitter-line:before {
  content: "";
}

.ri-typhoon-fill:before {
  content: "";
}

.ri-typhoon-line:before {
  content: "";
}

.ri-u-disk-fill:before {
  content: "";
}

.ri-u-disk-line:before {
  content: "";
}

.ri-ubuntu-fill:before {
  content: "";
}

.ri-ubuntu-line:before {
  content: "";
}

.ri-umbrella-fill:before {
  content: "";
}

.ri-umbrella-line:before {
  content: "";
}

.ri-underline:before {
  content: "";
}

.ri-uninstall-fill:before {
  content: "";
}

.ri-uninstall-line:before {
  content: "";
}

.ri-unsplash-fill:before {
  content: "";
}

.ri-unsplash-line:before {
  content: "";
}

.ri-upload-2-fill:before {
  content: "";
}

.ri-upload-2-line:before {
  content: "";
}

.ri-upload-cloud-2-fill:before {
  content: "";
}

.ri-upload-cloud-2-line:before {
  content: "";
}

.ri-upload-cloud-fill:before {
  content: "";
}

.ri-upload-cloud-line:before {
  content: "";
}

.ri-upload-fill:before {
  content: "";
}

.ri-upload-line:before {
  content: "";
}

.ri-usb-fill:before {
  content: "";
}

.ri-usb-line:before {
  content: "";
}

.ri-user-2-fill:before {
  content: "";
}

.ri-user-2-line:before {
  content: "";
}

.ri-user-3-fill:before {
  content: "";
}

.ri-user-3-line:before {
  content: "";
}

.ri-user-4-fill:before {
  content: "";
}

.ri-user-4-line:before {
  content: "";
}

.ri-user-5-fill:before {
  content: "";
}

.ri-user-5-line:before {
  content: "";
}

.ri-user-6-fill:before {
  content: "";
}

.ri-user-6-line:before {
  content: "";
}

.ri-user-add-fill:before {
  content: "";
}

.ri-user-add-line:before {
  content: "";
}

.ri-user-fill:before {
  content: "";
}

.ri-user-follow-fill:before {
  content: "";
}

.ri-user-follow-line:before {
  content: "";
}

.ri-user-heart-fill:before {
  content: "";
}

.ri-user-heart-line:before {
  content: "";
}

.ri-user-line:before {
  content: "";
}

.ri-user-location-fill:before {
  content: "";
}

.ri-user-location-line:before {
  content: "";
}

.ri-user-received-2-fill:before {
  content: "";
}

.ri-user-received-2-line:before {
  content: "";
}

.ri-user-received-fill:before {
  content: "";
}

.ri-user-received-line:before {
  content: "";
}

.ri-user-search-fill:before {
  content: "";
}

.ri-user-search-line:before {
  content: "";
}

.ri-user-settings-fill:before {
  content: "";
}

.ri-user-settings-line:before {
  content: "";
}

.ri-user-shared-2-fill:before {
  content: "";
}

.ri-user-shared-2-line:before {
  content: "";
}

.ri-user-shared-fill:before {
  content: "";
}

.ri-user-shared-line:before {
  content: "";
}

.ri-user-smile-fill:before {
  content: "";
}

.ri-user-smile-line:before {
  content: "";
}

.ri-user-star-fill:before {
  content: "";
}

.ri-user-star-line:before {
  content: "";
}

.ri-user-unfollow-fill:before {
  content: "";
}

.ri-user-unfollow-line:before {
  content: "";
}

.ri-user-voice-fill:before {
  content: "";
}

.ri-user-voice-line:before {
  content: "";
}

.ri-video-add-fill:before {
  content: "";
}

.ri-video-add-line:before {
  content: "";
}

.ri-video-chat-fill:before {
  content: "";
}

.ri-video-chat-line:before {
  content: "";
}

.ri-video-download-fill:before {
  content: "";
}

.ri-video-download-line:before {
  content: "";
}

.ri-video-fill:before {
  content: "";
}

.ri-video-line:before {
  content: "";
}

.ri-video-upload-fill:before {
  content: "";
}

.ri-video-upload-line:before {
  content: "";
}

.ri-vidicon-2-fill:before {
  content: "";
}

.ri-vidicon-2-line:before {
  content: "";
}

.ri-vidicon-fill:before {
  content: "";
}

.ri-vidicon-line:before {
  content: "";
}

.ri-vimeo-fill:before {
  content: "";
}

.ri-vimeo-line:before {
  content: "";
}

.ri-vip-crown-2-fill:before {
  content: "";
}

.ri-vip-crown-2-line:before {
  content: "";
}

.ri-vip-crown-fill:before {
  content: "";
}

.ri-vip-crown-line:before {
  content: "";
}

.ri-vip-diamond-fill:before {
  content: "";
}

.ri-vip-diamond-line:before {
  content: "";
}

.ri-vip-fill:before {
  content: "";
}

.ri-vip-line:before {
  content: "";
}

.ri-virus-fill:before {
  content: "";
}

.ri-virus-line:before {
  content: "";
}

.ri-visa-fill:before {
  content: "";
}

.ri-visa-line:before {
  content: "";
}

.ri-voice-recognition-fill:before {
  content: "";
}

.ri-voice-recognition-line:before {
  content: "";
}

.ri-voiceprint-fill:before {
  content: "";
}

.ri-voiceprint-line:before {
  content: "";
}

.ri-volume-down-fill:before {
  content: "";
}

.ri-volume-down-line:before {
  content: "";
}

.ri-volume-mute-fill:before {
  content: "";
}

.ri-volume-mute-line:before {
  content: "";
}

.ri-volume-off-vibrate-fill:before {
  content: "";
}

.ri-volume-off-vibrate-line:before {
  content: "";
}

.ri-volume-up-fill:before {
  content: "";
}

.ri-volume-up-line:before {
  content: "";
}

.ri-volume-vibrate-fill:before {
  content: "";
}

.ri-volume-vibrate-line:before {
  content: "";
}

.ri-vuejs-fill:before {
  content: "";
}

.ri-vuejs-line:before {
  content: "";
}

.ri-walk-fill:before {
  content: "";
}

.ri-walk-line:before {
  content: "";
}

.ri-wallet-2-fill:before {
  content: "";
}

.ri-wallet-2-line:before {
  content: "";
}

.ri-wallet-3-fill:before {
  content: "";
}

.ri-wallet-3-line:before {
  content: "";
}

.ri-wallet-fill:before {
  content: "";
}

.ri-wallet-line:before {
  content: "";
}

.ri-water-flash-fill:before {
  content: "";
}

.ri-water-flash-line:before {
  content: "";
}

.ri-webcam-fill:before {
  content: "";
}

.ri-webcam-line:before {
  content: "";
}

.ri-wechat-2-fill:before {
  content: "";
}

.ri-wechat-2-line:before {
  content: "";
}

.ri-wechat-fill:before {
  content: "";
}

.ri-wechat-line:before {
  content: "";
}

.ri-wechat-pay-fill:before {
  content: "";
}

.ri-wechat-pay-line:before {
  content: "";
}

.ri-weibo-fill:before {
  content: "";
}

.ri-weibo-line:before {
  content: "";
}

.ri-whatsapp-fill:before {
  content: "";
}

.ri-whatsapp-line:before {
  content: "";
}

.ri-wheelchair-fill:before {
  content: "";
}

.ri-wheelchair-line:before {
  content: "";
}

.ri-wifi-fill:before {
  content: "";
}

.ri-wifi-line:before {
  content: "";
}

.ri-wifi-off-fill:before {
  content: "";
}

.ri-wifi-off-line:before {
  content: "";
}

.ri-window-2-fill:before {
  content: "";
}

.ri-window-2-line:before {
  content: "";
}

.ri-window-fill:before {
  content: "";
}

.ri-window-line:before {
  content: "";
}

.ri-windows-fill:before {
  content: "";
}

.ri-windows-line:before {
  content: "";
}

.ri-windy-fill:before {
  content: "";
}

.ri-windy-line:before {
  content: "";
}

.ri-wireless-charging-fill:before {
  content: "";
}

.ri-wireless-charging-line:before {
  content: "";
}

.ri-women-fill:before {
  content: "";
}

.ri-women-line:before {
  content: "";
}

.ri-wubi-input:before {
  content: "";
}

.ri-xbox-fill:before {
  content: "";
}

.ri-xbox-line:before {
  content: "";
}

.ri-xing-fill:before {
  content: "";
}

.ri-xing-line:before {
  content: "";
}

.ri-youtube-fill:before {
  content: "";
}

.ri-youtube-line:before {
  content: "";
}

.ri-zcool-fill:before {
  content: "";
}

.ri-zcool-line:before {
  content: "";
}

.ri-zhihu-fill:before {
  content: "";
}

.ri-zhihu-line:before {
  content: "";
}

.ri-zoom-in-fill:before {
  content: "";
}

.ri-zoom-in-line:before {
  content: "";
}

.ri-zoom-out-fill:before {
  content: "";
}

.ri-zoom-out-line:before {
  content: "";
}

.ri-zzz-fill:before {
  content: "";
}

.ri-zzz-line:before {
  content: "";
}

.ri-arrow-down-double-fill:before {
  content: "";
}

.ri-arrow-down-double-line:before {
  content: "";
}

.ri-arrow-left-double-fill:before {
  content: "";
}

.ri-arrow-left-double-line:before {
  content: "";
}

.ri-arrow-right-double-fill:before {
  content: "";
}

.ri-arrow-right-double-line:before {
  content: "";
}

.ri-arrow-turn-back-fill:before {
  content: "";
}

.ri-arrow-turn-back-line:before {
  content: "";
}

.ri-arrow-turn-forward-fill:before {
  content: "";
}

.ri-arrow-turn-forward-line:before {
  content: "";
}

.ri-arrow-up-double-fill:before {
  content: "";
}

.ri-arrow-up-double-line:before {
  content: "";
}

.ri-bard-fill:before {
  content: "";
}

.ri-bard-line:before {
  content: "";
}

.ri-bootstrap-fill:before {
  content: "";
}

.ri-bootstrap-line:before {
  content: "";
}

.ri-box-1-fill:before {
  content: "";
}

.ri-box-1-line:before {
  content: "";
}

.ri-box-2-fill:before {
  content: "";
}

.ri-box-2-line:before {
  content: "";
}

.ri-box-3-fill:before {
  content: "";
}

.ri-box-3-line:before {
  content: "";
}

.ri-brain-fill:before {
  content: "";
}

.ri-brain-line:before {
  content: "";
}

.ri-candle-fill:before {
  content: "";
}

.ri-candle-line:before {
  content: "";
}

.ri-cash-fill:before {
  content: "";
}

.ri-cash-line:before {
  content: "";
}

.ri-contract-left-fill:before {
  content: "";
}

.ri-contract-left-line:before {
  content: "";
}

.ri-contract-left-right-fill:before {
  content: "";
}

.ri-contract-left-right-line:before {
  content: "";
}

.ri-contract-right-fill:before {
  content: "";
}

.ri-contract-right-line:before {
  content: "";
}

.ri-contract-up-down-fill:before {
  content: "";
}

.ri-contract-up-down-line:before {
  content: "";
}

.ri-copilot-fill:before {
  content: "";
}

.ri-copilot-line:before {
  content: "";
}

.ri-corner-down-left-fill:before {
  content: "";
}

.ri-corner-down-left-line:before {
  content: "";
}

.ri-corner-down-right-fill:before {
  content: "";
}

.ri-corner-down-right-line:before {
  content: "";
}

.ri-corner-left-down-fill:before {
  content: "";
}

.ri-corner-left-down-line:before {
  content: "";
}

.ri-corner-left-up-fill:before {
  content: "";
}

.ri-corner-left-up-line:before {
  content: "";
}

.ri-corner-right-down-fill:before {
  content: "";
}

.ri-corner-right-down-line:before {
  content: "";
}

.ri-corner-right-up-fill:before {
  content: "";
}

.ri-corner-right-up-line:before {
  content: "";
}

.ri-corner-up-left-double-fill:before {
  content: "";
}

.ri-corner-up-left-double-line:before {
  content: "";
}

.ri-corner-up-left-fill:before {
  content: "";
}

.ri-corner-up-left-line:before {
  content: "";
}

.ri-corner-up-right-double-fill:before {
  content: "";
}

.ri-corner-up-right-double-line:before {
  content: "";
}

.ri-corner-up-right-fill:before {
  content: "";
}

.ri-corner-up-right-line:before {
  content: "";
}

.ri-cross-fill:before {
  content: "";
}

.ri-cross-line:before {
  content: "";
}

.ri-edge-new-fill:before {
  content: "";
}

.ri-edge-new-line:before {
  content: "";
}

.ri-equal-fill:before {
  content: "";
}

.ri-equal-line:before {
  content: "";
}

.ri-expand-left-fill:before {
  content: "";
}

.ri-expand-left-line:before {
  content: "";
}

.ri-expand-left-right-fill:before {
  content: "";
}

.ri-expand-left-right-line:before {
  content: "";
}

.ri-expand-right-fill:before {
  content: "";
}

.ri-expand-right-line:before {
  content: "";
}

.ri-expand-up-down-fill:before {
  content: "";
}

.ri-expand-up-down-line:before {
  content: "";
}

.ri-flickr-fill:before {
  content: "";
}

.ri-flickr-line:before {
  content: "";
}

.ri-forward-10-fill:before {
  content: "";
}

.ri-forward-10-line:before {
  content: "";
}

.ri-forward-15-fill:before {
  content: "";
}

.ri-forward-15-line:before {
  content: "";
}

.ri-forward-30-fill:before {
  content: "";
}

.ri-forward-30-line:before {
  content: "";
}

.ri-forward-5-fill:before {
  content: "";
}

.ri-forward-5-line:before {
  content: "";
}

.ri-graduation-cap-fill:before {
  content: "";
}

.ri-graduation-cap-line:before {
  content: "";
}

.ri-home-office-fill:before {
  content: "";
}

.ri-home-office-line:before {
  content: "";
}

.ri-hourglass-2-fill:before {
  content: "";
}

.ri-hourglass-2-line:before {
  content: "";
}

.ri-hourglass-fill:before {
  content: "";
}

.ri-hourglass-line:before {
  content: "";
}

.ri-javascript-fill:before {
  content: "";
}

.ri-javascript-line:before {
  content: "";
}

.ri-loop-left-fill:before {
  content: "";
}

.ri-loop-left-line:before {
  content: "";
}

.ri-loop-right-fill:before {
  content: "";
}

.ri-loop-right-line:before {
  content: "";
}

.ri-memories-fill:before {
  content: "";
}

.ri-memories-line:before {
  content: "";
}

.ri-meta-fill:before {
  content: "";
}

.ri-meta-line:before {
  content: "";
}

.ri-microsoft-loop-fill:before {
  content: "";
}

.ri-microsoft-loop-line:before {
  content: "";
}

.ri-nft-fill:before {
  content: "";
}

.ri-nft-line:before {
  content: "";
}

.ri-notion-fill:before {
  content: "";
}

.ri-notion-line:before {
  content: "";
}

.ri-openai-fill:before {
  content: "";
}

.ri-openai-line:before {
  content: "";
}

.ri-overline:before {
  content: "";
}

.ri-p2p-fill:before {
  content: "";
}

.ri-p2p-line:before {
  content: "";
}

.ri-presentation-fill:before {
  content: "";
}

.ri-presentation-line:before {
  content: "";
}

.ri-replay-10-fill:before {
  content: "";
}

.ri-replay-10-line:before {
  content: "";
}

.ri-replay-15-fill:before {
  content: "";
}

.ri-replay-15-line:before {
  content: "";
}

.ri-replay-30-fill:before {
  content: "";
}

.ri-replay-30-line:before {
  content: "";
}

.ri-replay-5-fill:before {
  content: "";
}

.ri-replay-5-line:before {
  content: "";
}

.ri-school-fill:before {
  content: "";
}

.ri-school-line:before {
  content: "";
}

.ri-shining-2-fill:before {
  content: "";
}

.ri-shining-2-line:before {
  content: "";
}

.ri-shining-fill:before {
  content: "";
}

.ri-shining-line:before {
  content: "";
}

.ri-sketching:before {
  content: "";
}

.ri-skip-down-fill:before {
  content: "";
}

.ri-skip-down-line:before {
  content: "";
}

.ri-skip-left-fill:before {
  content: "";
}

.ri-skip-left-line:before {
  content: "";
}

.ri-skip-right-fill:before {
  content: "";
}

.ri-skip-right-line:before {
  content: "";
}

.ri-skip-up-fill:before {
  content: "";
}

.ri-skip-up-line:before {
  content: "";
}

.ri-slow-down-fill:before {
  content: "";
}

.ri-slow-down-line:before {
  content: "";
}

.ri-sparkling-2-fill:before {
  content: "";
}

.ri-sparkling-2-line:before {
  content: "";
}

.ri-sparkling-fill:before {
  content: "";
}

.ri-sparkling-line:before {
  content: "";
}

.ri-speak-fill:before {
  content: "";
}

.ri-speak-line:before {
  content: "";
}

.ri-speed-up-fill:before {
  content: "";
}

.ri-speed-up-line:before {
  content: "";
}

.ri-tiktok-fill:before {
  content: "";
}

.ri-tiktok-line:before {
  content: "";
}

.ri-token-swap-fill:before {
  content: "";
}

.ri-token-swap-line:before {
  content: "";
}

.ri-unpin-fill:before {
  content: "";
}

.ri-unpin-line:before {
  content: "";
}

.ri-wechat-channels-fill:before {
  content: "";
}

.ri-wechat-channels-line:before {
  content: "";
}

.ri-wordpress-fill:before {
  content: "";
}

.ri-wordpress-line:before {
  content: "";
}

.ri-blender-fill:before {
  content: "";
}

.ri-blender-line:before {
  content: "";
}

.ri-emoji-sticker-fill:before {
  content: "";
}

.ri-emoji-sticker-line:before {
  content: "";
}

.ri-git-close-pull-request-fill:before {
  content: "";
}

.ri-git-close-pull-request-line:before {
  content: "";
}

.ri-instance-fill:before {
  content: "";
}

.ri-instance-line:before {
  content: "";
}

.ri-megaphone-fill:before {
  content: "";
}

.ri-megaphone-line:before {
  content: "";
}

.ri-pass-expired-fill:before {
  content: "";
}

.ri-pass-expired-line:before {
  content: "";
}

.ri-pass-pending-fill:before {
  content: "";
}

.ri-pass-pending-line:before {
  content: "";
}

.ri-pass-valid-fill:before {
  content: "";
}

.ri-pass-valid-line:before {
  content: "";
}

.ri-ai-generate:before {
  content: "";
}

.ri-calendar-close-fill:before {
  content: "";
}

.ri-calendar-close-line:before {
  content: "";
}

.ri-draggable:before {
  content: "";
}

.ri-font-family:before {
  content: "";
}

.ri-font-mono:before {
  content: "";
}

.ri-font-sans-serif:before {
  content: "";
}

.ri-font-sans:before {
  content: "";
}

.ri-hard-drive-3-fill:before {
  content: "";
}

.ri-hard-drive-3-line:before {
  content: "";
}

.ri-kick-fill:before {
  content: "";
}

.ri-kick-line:before {
  content: "";
}

.ri-list-check-3:before {
  content: "";
}

.ri-list-indefinite:before {
  content: "";
}

.ri-list-ordered-2:before {
  content: "";
}

.ri-list-radio:before {
  content: "";
}

.ri-openbase-fill:before {
  content: "";
}

.ri-openbase-line:before {
  content: "";
}

.ri-planet-fill:before {
  content: "";
}

.ri-planet-line:before {
  content: "";
}

.ri-prohibited-fill:before {
  content: "";
}

.ri-prohibited-line:before {
  content: "";
}

.ri-quote-text:before {
  content: "";
}

.ri-seo-fill:before {
  content: "";
}

.ri-seo-line:before {
  content: "";
}

.ri-slash-commands:before {
  content: "";
}

.ri-archive-2-fill:before {
  content: "";
}

.ri-archive-2-line:before {
  content: "";
}

.ri-inbox-2-fill:before {
  content: "";
}

.ri-inbox-2-line:before {
  content: "";
}

.ri-shake-hands-fill:before {
  content: "";
}

.ri-shake-hands-line:before {
  content: "";
}

.ri-supabase-fill:before {
  content: "";
}

.ri-supabase-line:before {
  content: "";
}

.ri-water-percent-fill:before {
  content: "";
}

.ri-water-percent-line:before {
  content: "";
}

.ri-yuque-fill:before {
  content: "";
}

.ri-yuque-line:before {
  content: "";
}

.ri-crosshair-2-fill:before {
  content: "";
}

.ri-crosshair-2-line:before {
  content: "";
}

.ri-crosshair-fill:before {
  content: "";
}

.ri-crosshair-line:before {
  content: "";
}

.ri-file-close-fill:before {
  content: "";
}

.ri-file-close-line:before {
  content: "";
}

.ri-infinity-fill:before {
  content: "";
}

.ri-infinity-line:before {
  content: "";
}

.ri-rfid-fill:before {
  content: "";
}

.ri-rfid-line:before {
  content: "";
}

.ri-slash-commands-2:before {
  content: "";
}

.ri-user-forbid-fill:before {
  content: "";
}

.ri-user-forbid-line:before {
  content: "";
}

.ri-beer-fill:before {
  content: "";
}

.ri-beer-line:before {
  content: "";
}

.ri-circle-fill:before {
  content: "";
}

.ri-circle-line:before {
  content: "";
}

.ri-dropdown-list:before {
  content: "";
}

.ri-file-image-fill:before {
  content: "";
}

.ri-file-image-line:before {
  content: "";
}

.ri-file-pdf-2-fill:before {
  content: "";
}

.ri-file-pdf-2-line:before {
  content: "";
}

.ri-file-video-fill:before {
  content: "";
}

.ri-file-video-line:before {
  content: "";
}

.ri-folder-image-fill:before {
  content: "";
}

.ri-folder-image-line:before {
  content: "";
}

.ri-folder-video-fill:before {
  content: "";
}

.ri-folder-video-line:before {
  content: "";
}

.ri-hexagon-fill:before {
  content: "";
}

.ri-hexagon-line:before {
  content: "";
}

.ri-menu-search-fill:before {
  content: "";
}

.ri-menu-search-line:before {
  content: "";
}

.ri-octagon-fill:before {
  content: "";
}

.ri-octagon-line:before {
  content: "";
}

.ri-pentagon-fill:before {
  content: "";
}

.ri-pentagon-line:before {
  content: "";
}

.ri-rectangle-fill:before {
  content: "";
}

.ri-rectangle-line:before {
  content: "";
}

.ri-robot-2-fill:before {
  content: "";
}

.ri-robot-2-line:before {
  content: "";
}

.ri-shapes-fill:before {
  content: "";
}

.ri-shapes-line:before {
  content: "";
}

.ri-square-fill:before {
  content: "";
}

.ri-square-line:before {
  content: "";
}

.ri-tent-fill:before {
  content: "";
}

.ri-tent-line:before {
  content: "";
}

.ri-threads-fill:before {
  content: "";
}

.ri-threads-line:before {
  content: "";
}

.ri-tree-fill:before {
  content: "";
}

.ri-tree-line:before {
  content: "";
}

.ri-triangle-fill:before {
  content: "";
}

.ri-triangle-line:before {
  content: "";
}

.ri-twitter-x-fill:before {
  content: "";
}

.ri-twitter-x-line:before {
  content: "";
}

.ri-verified-badge-fill:before {
  content: "";
}

.ri-verified-badge-line:before {
  content: "";
}

:root {
  --primaryFont: "Inter", sans-serif;
  --primaryColor: #1e293b;
  --secondaryColor: #6366f1;
  --paraColor: #838a95;
  --optionalColor: #8d929a;
  --offwhiteColor: #cbcbcb;
  --titleColor: #212326;
  --bgColor: #646464;
  --whiteColor: #fff;
  --aztechColor: #00181d;
  --ashColor: #f1f5f9;
  --codColor: #222;
  --mildColor: #e5e5e5;
  --grayColor: #f1f5f9;
  --redColor: #e30d24;
  --blackColor: #1e293b;
  --fontSize: 16px;
  --transition: all ease 0.5s;
}

.bg_primary {
  background-color: var(--primaryColor);
}

.bg_secondary {
  background-color: var(--secondaryColor);
}

.bg_ash {
  background-color: var(--ashColor);
}

.bg_gray {
  background-color: var(--grayColor);
}

.bg_mild {
  background-color: var(--mildColor) !important;
}

.text-title {
  color: var(--primaryColor);
}

.text-offwhite {
  color: var(--offwhiteColor);
}

.text-purple,
.text_secondary {
  color: var(--secondaryColor);
}

.text-bg {
  color: var(--bgColor);
}

.text-green {
  color: #3bbe86;
}

.text-light-purple {
  color: #6366f1;
}

.text-paragraph {
  color: var(--paraColor) !important;
}

.text-purple {
  color: #4f46e5 !important;
}

.text-optional {
  color: var(--optionalColor) !important;
}

.text-red {
  color: var(--redColor) !important;
}

.btn {
  padding: 14.5px 17px;
  z-index: 1;
  display: inline-block;
  border-radius: 3px;
}

.btn,
.btn img {
  position: relative;
  transition: var(--transition);
}

.btn img {
  margin-left: 5px;
  top: -1px;
}

.btn:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0;
  z-index: -1;
  border-radius: 3px;
  transition: var(--transition);
}

.btn:hover:before {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.btn.style-one {
  border-radius: 3px;
  background: linear-gradient(132deg, #4f46e5 4.27%, #6366f1);
  color: var(--whiteColor);
  border: none;
}

.btn.style-one:before {
  background: linear-gradient(-132deg, #7a4eac 4.27%, #7a4eac);
}

.btn.style-one:hover {
  border-color: transparent;
}

.btn.style-four,
.btn.style-three,
.btn.style-two {
  background-color: transparent;
  border: 1px solid var(--secondaryColor);
  color: var(--secondaryColor);
  border-radius: 3px;
  font-weight: 600;
}

.btn.style-four:before,
.btn.style-three:before,
.btn.style-two:before {
  background-color: var(--secondaryColor);
}

.btn.style-four:hover,
.btn.style-three:hover,
.btn.style-two:hover {
  border-color: transparent;
  color: var(--whiteColor);
}

.btn.style-four:hover img,
.btn.style-three:hover img,
.btn.style-two:hover img {
  filter: brightness(0) invert(1);
}

.btn.style-two {
  border: 1px solid var(--secondaryColor);
  color: var(--secondaryColor);
}

.btn.style-two:before {
  background-color: var(--secondaryColor);
}

.btn.style-three {
  border: 1px solid #7a4eac;
  color: #7a4eac;
}

.btn.style-three:before {
  background-color: #7a4eac;
}

.btn.style-four {
  border: 1px solid #7a4eac;
  color: #7a4eac;
}

.btn.style-four:before {
  background-color: #7a4eac;
}

.btn.style-five {
  background-color: #7a4eac;
  color: var(--whiteColor);
  border: none;
}

.btn.style-five:before {
  background-color: #7a4eac;
}

.btn.style-eight,
.btn.style-nine,
.btn.style-seven,
.btn.style-six,
.btn.style-ten {
  border-radius: 3px;
  color: var(--whiteColor);
}

.btn.style-eight:before,
.btn.style-nine:before,
.btn.style-seven:before,
.btn.style-six:before,
.btn.style-ten:before {
  background: #7a4eac;
}

.btn.style-six {
  background: #7a4eac;
}

.btn.style-six:before {
  background: #7a4eac;
}

.btn.style-seven {
  background: #7a4eac;
}

.btn.style-seven:before {
  background: #7a4eac;
}

.btn.style-eight {
  background: #7a4eac;
}

.btn.style-eight:before {
  background: #7a4eac;
}

.btn.style-nine {
  background: #7a4eac;
}

.btn.style-nine:before {
  background: #7a4eac;
}

.btn.style-ten {
  background: #7a4eac;
}

.btn.style-ten:before {
  background: #7a4eac;
}

.btn.style-eleven {
  background: #7a4eac;
  border-radius: 3px;
  border: none;
  color: var(--whiteColor);
  font-weight: 600;
}

.btn.style-eleven:before {
  background: #7a4eac;
}

.btn.style-eleven:hover {
  border-color: transparent;
}

.upload-btn {
  overflow: hidden;
}

.upload-btn input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.switch-theme-mode {
  position: fixed;
  top: 45%;
  right: 20px;
  background-color: #5e5eee;
  border-radius: 50px;
  z-index: 2;
  height: 156px;
  padding: 19px 5px;
}

.switch-theme-mode .theme-switcher {
  transform: rotate(90deg);
}

.switch-theme-mode .theme-switch {
  opacity: 0;
  position: absolute;
}

.switch-theme-mode .checkbox-label {
  background-color: #2f28a9;
  width: 46px;
  height: 24px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.switch-theme-mode .checkbox-label .round {
  background-color: #deddf8;
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 50px;
  box-shadow: 0 2px 4px 0 rgba(79, 70, 229, 0.25);
  left: 4px;
  top: 4px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.switch-theme-mode .theme-switch:checked+.checkbox-label .round {
  transform: translateX(22px);
  box-shadow: none;
  background-color: #4f46e5;
  transition: var(--transition);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.btn:focus,
:focus,
button:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
}

a,
button,
input[type="submit"] {
  cursor: pointer;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

input,
select,
textarea {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 15px 12px;
  width: 100%;
  font-size: 16px;
}

input {
  height: 55px;
  padding-left: 20px;
}

input.placeholder-1::-moz-placeholder {
  color: #8d929a;
  opacity: 1;
}

input.placeholder-1::placeholder {
  color: #8d929a;
  opacity: 1;
}

a {
  text-transform: inherit;
  transition: all 0.3s ease;
  color: var(--paraColor);
}

a,
a :focus,
a:hover {
  text-decoration: none;
}

a :focus,
a:hover {
  box-shadow: none;
}

a:focus {
  outline: 0 solid;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--primaryFont);
  color: var(--titleColor);
}

body {
  font-family: var(--primaryFont);
  font-weight: 400;
  line-height: 28.5px;
}

body,
p {
  font-size: 16px;
  color: var(--paraColor);
}

p {
  line-height: 28px;
  font-family: var(--bodyFont);
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-size: 12px;
  background-image: url(./assets/img/down-arrow.bfcd9758.svg);
  background-position: calc(100% - 22px) 50%;
}

.mt-100 {
  margin-top: 100px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-60 {
  margin-top: 60px;
}

.me-25 {
  margin-right: 25px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.pt-12 {
  padding-top: 12px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-57 {
  padding-top: 57px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-100 {
  padding-bottom: 100px;
}

.h-55 {
  height: 55px;
}

.h-60 {
  height: 60px;
}

.list-style {
  margin: 0;
  padding: 0;
}

.list-style,
.list-style li {
  list-style: none;
}

.checkbox {
  display: block;
}

.checkbox.form-check {
  padding-left: 0;
}

.checkbox input {
  padding: 0;
  height: auto;
  width: auto;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  padding-left: 29px;
}

.checkbox label:before {
  content: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 2px solid #6366f1;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 1px;
}

.checkbox label a {
  color: var(--titleColorTwo);
  font-weight: 500;
}

.checkbox label a:hover {
  color: var(--secondaryColor);
}

.checkbox.style-two label {
  padding-left: 32px;
}

.checkbox.style-two label:before {
  top: 4px;
  width: 20px;
  height: 20px;
}

.checkbox.style-three label {
  padding-left: 32px;
}

.checkbox.style-three label:before {
  top: -14px;
  width: 16px;
  height: 16px;
}

.checkbox.style-four label {
  padding-left: 35px;
}

.checkbox.style-four label:before {
  top: 2px;
  width: 24px;
  height: 24px;
}

.checkbox input:checked+label:before {
  border-color: var(--secondaryColor);
}

.checkbox input:checked+label:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 3px;
  background-image: url(./assets/img/check-icon.8c9c0034.svg);
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: 4px 4px;
  background-color: var(--secondaryColor);
}

.checkbox.style-two input:checked+label:after {
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: 10px;
  background-position: 5px 6px;
}

.checkbox.style-three input:checked+label:after {
  top: -14px;
  left: 0;
  width: 16px;
  height: 16px;
  background-size: 9px;
  background-position: 4px 4px;
}

.checkbox.style-four input:checked+label:after {
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background-size: 12px;
  background-position: 7px 7px;
}

.group-checkbox h6 {
  background: #2c3a52;
  padding: 18px 20px;
  margin-bottom: 30px;
}

.offcanvas-backdrop {
  opacity: 0 !important;
}

.br-1 {
  border-bottom: 1px solid #deebff !important;
}

.br-2 {
  border-bottom: 1px solid var(--whiteColor);
}

.br-s-1 {
  border-left: 1px solid #deebff;
}

.br-e-1 {
  border-right: 1px solid #deebff;
}

.page-nav li {
  display: inline-block;
  margin-right: 3px;
}

.page-nav li:first-child img {
  filter: brightness(1) invert(1);
}

.page-nav li:last-child {
  margin-right: 0;
}

.page-nav li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: var(--transition);
  color: var(--titleColor);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 14px;
  border-radius: 2px;
}

.page-nav li a.active,
.page-nav li a:hover {
  background-color: var(--whiteColor);
  font-weight: 600;
  color: var(--secondaryColor);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.section-title {
  font-size: 42px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-30 {
  font-size: 30px;
}

.fw-black {
  font-weight: 800 !important;
}

.ls-1 {
  letter-spacing: 0.7px;
}

.badge {
  line-height: 1;
  border-radius: 4px;
  padding-top: 5.5px;
  padding-bottom: 5.5px;
}

.badge-outline-green {
  border: 1px solid #03b288;
  color: #03b288;
}

.badge-outline-green.style-two {
  border-width: 2px;
  padding: 5px 9.5px;
}

.badge-outline-red {
  border: 1px solid #ea3548;
  color: #ea3548;
}

.badge-outline-red.style-two {
  border-width: 2px;
  padding: 5px 9.5px;
}

.badge-outline-purple {
  border: 1px solid #6366f1;
  color: #6366f1;
}

.badge-success {
  background-color: #edfffb;
  color: #03b288;
}

.badge-danger,
.badge-success {
  padding: 6.5px 10px 6.5px 10px;
}

.badge-danger {
  background-color: #ffe9eb;
  color: #ea3548;
}

.badge-alert {
  background-color: #e9e9ff;
  color: #6366f1;
  padding: 6.5px 10px 6.5px 10px;
}

body .sidebar-area {
  width: 208px;
  left: 0;
}

body .main-content {
  width: calc(100% - 208px);
  float: right;
  transition: var(--transition);
  min-height: 100vh;
  padding-top: 140px;
  padding-left: 12px;
  padding-bottom: 0;
  padding-right: 12px;
}

body.minimized .sidebar-area {
  left: -210px;
}

body.minimized .main-content {
  width: 100%;
}

.main-content padding {
  top: 140px;
  bottom: 0;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  height: 45px;
}

.form-group input:focus,
.form-group select:focus {
  border: 1px solid var(--secondaryColor);
}

.form-group .percent-sign {
  top: 44px;
  right: 7px;
  width: 46px;
  height: 46px;
  background-color: #ffffff;
}

.form-group input,
.form-group textarea {
  border: 1px solid transparent;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondaryColor);
}

.form-group textarea {
  height: 157px;
  resize: none;
}

.table> :not(caption)>*>* {
  border-bottom: 1px solid #eef3fa;
  padding: 17px 13px;
}

.table thead tr th .form-check {
  position: relative;
  top: 1px;
  width: 16px;
}

.table thead tr th .form-check label {
  padding-left: 40px;
}

.table thead tr th .checkbox input:checked+label:after,
.table thead tr th .form-check label:before {
  top: 6px;
}

.table tbody td {
  padding: 20px 13px;
}

.table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 7px;
}

.table.style-two tr {
  vertical-align: middle;
}

.table.style-two tr:last-child td,
.table.style-two tr:last-child th {
  padding-bottom: 7px;
  border-bottom: none;
}

.table.style-two tr td:last-child {
  padding-right: 30px;
}

.table.style-two td,
.table.style-two th {
  padding: 17px 30px;
}

.table-responsive {
  margin-bottom: 0;
}

.table-responsive.style-one .table th {
  padding: 15px 20px 24px 30px;
}

.table-responsive.style-one .table td {
  padding: 15px 20px 15px 30px;
}

.table-responsive.style-two .table {
  border: 1px solid #deebff;
  border-right: none;
}

.table-responsive.style-two .table td,
.table-responsive.style-two .table th {
  border-right: 1px solid #deebff;
  padding: 15px 20px;
}

.table-responsive.style-three .table td {
  padding: 34.5px 20px;
}

.table-responsive.style-three .table tr:last-child td {
  padding-bottom: 7px;
}

.modal .modal-header {
  border-bottom: 1px solid #deebff;
}

.modal .modal-content {
  border-radius: 10px;
  border: none;
}

.modal .btn-close {
  --bs-btn-close-bg: none;
  width: 26px;
  height: 26px;
  position: relative;
  top: -3px;
  opacity: 1;
}

.modal .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.modal .modal-footer a,
.modal .modal-footer button {
  margin-right: 15px;
  margin-left: 0;
}

.modal .modal-footer a:last-child,
.modal .modal-footer button:last-child {
  margin-right: 0;
}

.modal-backdrop {
  background-color: #1e293b;
  opacity: 0.75 !important;
}

.button-group a {
  margin-right: 9px;
  display: inline-block;
}

.button-group a:last-child {
  margin-right: 0;
}

.button-group.style-two {
  max-width: 57px;
}

.page-unit span {
  color: #5c6067;
}

.page-unit select {
  margin-left: 10px;
  width: 30px;
  padding: 0 5px 0 0;
  background-size: 10px;
  background-position: 100% 10px;
  background-image: url(./assets/img/down-arrow-3.39dbb212.svg);
}

.v-counter.style-one {
  width: 180px;
  height: 36px;
  background-color: #ececec;
  border-radius: 2px;
  position: relative;
}

.v-counter.style-one input {
  border: none;
  height: 36px;
}

.v-counter.style-one input.count {
  padding-left: 20px;
  padding-right: 60px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 500;
}

.v-counter.style-one .minusBtn,
.v-counter.style-one .plusBtn {
  position: absolute;
  z-index: 1;
  right: 16px;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: none;
  padding: 0;
}

.v-counter.style-one .minusBtn {
  bottom: 8px;
}

.v-counter.style-one .minusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background-image: url(./assets/img/arrow-down.c315f24a.svg);
  background-repeat: no-repeat;
  background-size: 10px;
}

.v-counter.style-one .plusBtn {
  top: 3px;
}

.v-counter.style-one .plusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background-image: url(./assets/img/arrow-up.cc88c49e.svg);
  background-repeat: no-repeat;
  background-size: 10px;
}

.v-counter.style-two {
  width: 130px;
  height: 36px;
  background-color: #ececec;
  border-radius: 2px;
  position: relative;
}

.v-counter.style-two input {
  border: none;
  height: 36px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.v-counter.style-two input.count {
  padding: 10px 30px;
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 500;
}

.v-counter.style-two .minusBtn,
.v-counter.style-two .plusBtn {
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  border: none;
  border-radius: 2px;
  padding: 0;
}

.v-counter.style-two .minusBtn {
  right: 4px;
}

.v-counter.style-two .minusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background-image: url(./assets/img/arrow-right.6e508e11.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  transform: translate(-50%, -50%);
}

.v-counter.style-two .plusBtn {
  left: 4px;
}

.v-counter.style-two .plusBtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background-image: url(./assets/img/arrow-left.c52bb302.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  transform: translate(-50%, -50%);
}

.v-counter.style-three {
  width: 140px;
  height: 51px;
  position: relative;
}

.v-counter.style-three input {
  border: none;
  height: 51px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.v-counter.style-three input.count {
  padding: 10px 30px;
  color: var(--titleColor);
  font-size: 14px;
  font-weight: 500;
}

.v-counter.style-three .minusBtn,
.v-counter.style-three .plusBtn {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 16px;
  width: 30px;
  height: 100%;
  border: none;
  border-radius: 2px;
  padding: 0;
  background-color: transparent;
}

.v-counter.style-three .minusBtn {
  left: 15px;
}

.v-counter.style-three .minusBtn:before {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "-";
  font-size: 18px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.v-counter.style-three .plusBtn {
  right: 15px;
}

.v-counter.style-three .plusBtn:before {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "+";
  font-size: 18px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.search-area.style-two input {
  padding-left: 49px;
}

.search-area.style-two button {
  top: 0;
  left: 15px;
  width: 30px;
}

.search-area.style-two button img {
  position: relative;
  top: -1px;
}

.card-body {
  padding: 30px;
}

.single-product-img,
.single-product-img img {
  border-radius: 4px;
}

.table.single-product-table {
  border: 1px solid #eef3fa;
}

.table.single-product-table td,
.table.single-product-table th {
  font-size: 14px;
}

.table.single-product-table tr {
  vertical-align: middle;
}

.table.single-product-table th {
  color: var(--primaryColor);
  font-weight: 400;
  border-right: 1px solid #eef3fa;
  line-height: 1;
  padding: 23px 30px;
}

.table.single-product-table td {
  padding: 23px 30px;
  line-height: 1;
  color: var(--optionalColor);
}

.table.single-product-table.style-two {
  border: none;
}

.table.single-product-table.style-two thead tr th {
  border-right: none;
}

.table.single-product-table.style-two tbody tr th {
  border-left: 1px solid #eef3fa;
}

.table.single-product-table.style-two tbody tr td {
  border-right: 1px solid #eef3fa;
}

.details-title li {
  margin-bottom: 20px;
}

.details-title li:last-child {
  margin-bottom: 0;
}

.table-tablist {
  border-bottom: 1px solid #dadada;
  padding-bottom: 18px;
}

.table-tablist .nav-item {
  margin-right: 15px;
}

.table-tablist .nav-item:last-child {
  margin-right: 0;
}

.table-tablist .nav-item .nav-link {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #e8e9f5;
  background: #e8e9f5;
  line-height: 1.1;
  padding: 13px 36px;
}

.table-tablist .nav-item .nav-link:after {
  position: absolute;
  bottom: -18px;
  left: 0;
  content: "";
  width: 0;
  height: 5px;
  background-color: var(--secondaryColor);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.table-tablist .nav-item .nav-link.active {
  background-color: transparent;
  border: 1px solid #4f46e5;
  box-shadow: 0 4px 20px 0 rgba(79, 70, 229, 0.2);
}

.table-tablist .nav-item .nav-link.active:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.table-tablist.style-two {
  padding-bottom: 8px;
}

.table-tablist.style-two .nav-item {
  margin-bottom: 10px;
}

.table-tablist.style-two .nav-item .nav-link {
  padding: 13px 23px;
}

.details-list li {
  padding: 16px 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.details-list li span {
  width: 50%;
}

.details-list li:nth-child(odd) {
  background-color: var(--ashColor);
}

.product-tab-content {
  margin: 20px 0 0;
}

#salesTargetChart .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center,
#salesTargetChart .apexcharts-legend.apx-legend-position-top.apexcharts-align-center {
  justify-content: space-between;
}

.delete-popup.offcanvas {
  width: 440px;
  max-height: 92px;
  top: 40%;
  background: #ea3548;
  padding: 30px 20px 25px 40px;
  box-shadow: 0 4px 34px 0 rgba(234, 53, 72, 0.5);
}

.delete-popup img {
  position: relative;
  top: -2px;
}

.delete-popup span {
  font-size: 16px;
  margin-left: 15px;
}

@media only screen and (max-width: 575px) {
  .xs-none {
    display: none;
  }

  body .sidebar-area {
    width: 85px;
  }

  .table.single-product-table td,
  .table.single-product-table th {
    padding: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container-fluid {
    max-width: 540px;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {

  input,
  label,
  p,
  span,
  textarea {
    font-size: 14px;
    line-height: 25px;
  }

  .sm-none {
    display: none !important;
  }

  .w-sm-100 {
    width: 100%;
  }

  .pt-100,
  .ptb-100 {
    padding-top: 50px;
  }

  .pb-100,
  .ptb-100 {
    padding-bottom: 50px;
  }

  .pb-70 {
    padding-bottom: 20px;
  }

  .pb-75 {
    padding-bottom: 25px;
  }

  .pt-75 {
    padding-top: 25px;
  }

  .ptb-150 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .row.mb-30 {
    margin-bottom: 25px;
  }

  .row.mb-40 {
    margin-bottom: 35px;
  }

  .btn {
    font-size: 14px;
    padding: 9px 24px 9px;
  }

  .back-to-top {
    font-size: 20px;
    width: 35px;
    height: 35px;
    line-height: 32px;
    right: 10px;
  }

  .back-to-top i {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .card-body {
    padding: 22px;
  }

  .form-group input,
  .form-group select {
    height: 52px;
  }

  .form-group .percent-sign {
    top: 36px;
    right: 3px;
  }

  .page-nav {
    margin-top: 20px;
  }

  .delete-popup.offcanvas {
    width: 310px;
    max-height: 75px;
    padding: 23px 10px 23px 15px;
  }

  .delete-popup span {
    font-size: 14px;
    margin-left: 2px;
  }

  .delete-popup img {
    max-width: 18px;
    top: -1px;
  }

  .br-wrapper.pb-60 {
    padding-bottom: 30px !important;
  }

  .br-wrapper.mb-80 {
    margin-bottom: 40px !important;
  }

  .br-wrapper h4 {
    width: 100%;
    margin-bottom: 20px;
  }

  .br-wrapper .breadcrumb-menu {
    width: 100%;
  }

  body .main-content {
    padding-top: 15px;
  }

  body .main-content.style-two {
    padding-top: 15px;
  }

  .details-title.mb-40 {
    margin-bottom: 30px !important;
  }

  .details-title li {
    margin-bottom: 13px;
  }
}

@media only screen and (min-width: 768px) {
  .modal .modal-dialog.modal-rl {
    --bs-modal-width: 590px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title {
    font-size: 34px;
  }

  .pt-100 {
    padding-top: 70px;
  }

  .pb-100 {
    padding-bottom: 70px;
  }

  .pb-70 {
    padding-bottom: 40px;
  }

  .pt-75 {
    padding-top: 50px;
  }

  .pb-75 {
    padding-bottom: 50px;
  }

  .ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .btn {
    font-size: 13px !important;
  }
}

@media only screen and (max-width: 991px) {
  .md-none {
    display: none !important;
  }

  .mb-md-15 {
    margin-bottom: 15px;
  }

  .mb-md-25 {
    margin-bottom: 25px;
  }

  input,
  select,
  textarea {
    font-size: 14px !important;
  }

  .h-55 {
    height: 50px;
  }

  .btn {
    font-size: 14px;
    padding: 13.5px 15px;
  }

  .btn img {
    margin-left: 4px;
  }

  .single-product-img {
    margin-bottom: 25px;
  }

  .table-tablist.style-two .nav-item .nav-link:after {
    display: none;
  }

  .table thead tr th {
    padding-right: 50px;
  }

  .table thead tr th:last-child {
    padding-right: 0;
  }

  .table tbody tr td {
    padding-right: 50px;
  }

  .table tbody tr td:last-child {
    padding-right: 0;
  }

  .button-group {
    min-width: 85px;
  }

  .button-group a {
    margin-right: 13px;
  }

  .button-group a:last-child {
    margin: 0;
  }

  .button-group a img {
    max-width: 16px;
  }

  .button-group.style-two {
    min-width: 39px;
  }

  .product-tab-content .offer-card {
    margin-top: 20px;
  }

  .chart-wrapper {
    flex-wrap: wrap;
  }

  .chart-wrapper.style-one .card:first-child,
  .chart-wrapper.style-one .card:nth-child(2),
  .chart-wrapper.style-one .card:nth-child(3),
  .chart-wrapper.style-three .card:first-child,
  .chart-wrapper.style-three .card:nth-child(2),
  .chart-wrapper.style-three .card:nth-child(3),
  .chart-wrapper.style-two .card:first-child,
  .chart-wrapper.style-two .card:nth-child(2),
  .chart-wrapper.style-two .card:nth-child(3) {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}

@media only screen and (max-width: 1199px) {
  .lg-none {
    display: none !important;
  }

  .sidebar {
    margin-top: 50px;
  }

  body {
    overflow-x: hidden;
  }

  body .sidebar-area {
    left: -210px !important;
    z-index: 99 !important;
  }

  body .main-content {
    width: 100%;
  }

  body.minimized .sidebar-area {
    left: 0 !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .modal .modal-dialog.modal-xxl {
    --bs-modal-width: 960px;
  }

  .button-group {
    min-width: 84px;
  }

  .button-group.style-two {
    min-width: 39px;
  }

  .chart-wrapper.style-one .card:first-child {
    width: calc(45% - 10px);
  }

  .chart-wrapper.style-one .card:nth-child(2),
  .chart-wrapper.style-two .card:first-child {
    width: calc(55% - 10px);
  }

  .chart-wrapper.style-two .card:nth-child(2) {
    width: calc(45% - 10px);
  }

  .chart-wrapper.style-three .card:first-child,
  .chart-wrapper.style-three .card:nth-child(2) {
    width: calc(50% - 20px);
  }

  .chart-wrapper.style-three .card:nth-child(3) {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }

  .p-xl-40 {
    padding: 25px 20px 30px !important;
  }

  .p-xl-60 {
    padding: 35px 40px 40px !important;
  }

  body .sidebar-area {
    width: 100px;
    left: 0;
  }

  body .main-content {
    width: calc(100% - 80px);
    float: right;
    transition: var(--transition);
    padding-top: 15px;
    padding-left: 12px;
    padding-bottom: 0;
    padding-right: 12px;
  }

  body .main-content.style-two {
    padding-top: 120px;
  }

  body.minimized .sidebar-area {
    left: -210px;
  }

  body.minimized .main-content {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .gx-xl-45 {
    --bs-gutter-x: 2.1rem;
  }

  body .sidebar-area {
    width: 80px;
    left: 0;
  }

  body .sidebar-area .sidebar-menu-wrap {
    padding: 5px;
  }

  body .main-content {
    width: calc(100% - 80px);
    padding-top: calc(var(--header-height) + 15px);
    margin-left: var(--sidebar-width);
    float: right;
    transition: var(--transition);
    padding-left: 12px;
    padding-bottom: 0;
    padding-right: 12px;
  }

  body.minimized .sidebar-area {
    left: -194px;
  }

  body.minimized .main-content {
    width: 100%;
  }

  .chart-wrapper.style-one .card:first-child {
    width: calc(45% - 10px);
  }

  .chart-wrapper.style-one .card:nth-child(2),
  .chart-wrapper.style-two .card:first-child {
    width: calc(55% - 10px);
  }

  .chart-wrapper.style-two .card:nth-child(2) {
    width: calc(45% - 10px);
  }

  .chart-wrapper.style-three .card:first-child,
  .chart-wrapper.style-three .card:nth-child(2) {
    width: calc(50% - 20px);
  }

  .chart-wrapper.style-three .card:nth-child(3) {
    width: 100%;
  }
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1330px;
  }

  .px-xxl-6 {
    padding-left: 31px !important;
    padding-right: 31px !important;
  }

  .ps-xxl-6 {
    padding-left: 63px !important;
  }

  .p-xxl-30 {
    padding: 30px;
  }

  .gx-xxl-6 {
    --bs-gutter-x: 2.6rem;
  }

  .gx-xxl-7 {
    --bs-gutter-x: 5.5rem;
  }

  .pe-xxl-6 {
    padding-right: 5.4rem !important;
  }

  .pe-xxl-7 {
    padding-right: 6.7rem !important;
  }

  .pe-xxl-8 {
    padding-right: 6.5rem !important;
  }

  .p-xl-40 {
    padding: 35px 40px 40px !important;
  }

  .p-xl-60 {
    padding: 60px 60px 60px !important;
  }

  .me-xxl-15 {
    margin-right: 15px;
  }

  .w-xxl-5 {
    width: calc(100% + 58px);
    margin-left: -58px;
    width: calc(100% + 85px);
    margin-left: -85px;
  }

  .btn {
    padding: 14.5px 23px;
  }

  .btn img {
    margin-left: 9px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding-left: 20px;
  }

  .modal .modal-header {
    padding: 28px 40px 26px;
  }

  .modal .modal-body {
    padding: 28px 40px 40px;
  }

  .modal .modal-dialog.modal-md {
    --bs-modal-width: 736px;
  }

  .modal .modal-dialog.modal-lg {
    --bs-modal-width: 830px;
  }

  .modal .modal-dialog.modal-xl {
    --bs-modal-width: 1096px;
  }

  .modal .modal-dialog.modal-xxl {
    --bs-modal-width: 1344px;
  }

  #detailsModal .modal-header {
    padding: 28px 40px 26px;
  }

  #detailsModal .modal-body {
    padding: 28px 40px 30px;
  }

  #detailsModal .modal-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  body .main-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .chart-wrapper.style-one .card:first-child {
    width: calc(37% - 10px);
  }

  .chart-wrapper.style-one .card:nth-child(2) {
    width: calc(63% - 10px);
  }

  .chart-wrapper.style-two .card:first-child {
    width: calc(62% - 10px);
  }

  .chart-wrapper.style-two .card:nth-child(2) {
    width: calc(48% - 10px);
  }

  .chart-wrapper.style-three .card:first-child,
  .chart-wrapper.style-three .card:nth-child(2) {
    width: calc(50% - 20px);
  }

  .chart-wrapper.style-three .card:nth-child(3) {
    width: 100%;
  }

  .table> :not(caption)>*>* {
    padding: 17px;
  }

  .table tbody td {
    padding: 20px 17px;
  }

  .button-group a {
    margin-right: 12px;
  }

  .details-list li {
    padding: 16px 40px;
  }
}

@media only screen and (min-width: 1600px) {
  .table-responsive.style-one .table th {
    padding: 15px 20px 24px 102px;
  }

  .table-responsive.style-one .table td {
    padding: 15px 20px 15px 102px;
  }

  .table-responsive.style-four th {
    padding: 15px 10px 24px 75px;
  }

  .table-responsive.style-four td {
    padding: 15px 10px 15px 75px;
  }

  .table-responsive.style-five th {
    padding: 15px 10px 24px 80px;
  }

  .table-responsive.style-five td {
    padding: 15px 10px 15px 80px;
  }

  .chart-wrapper.style-one .card:first-child {
    width: calc(37% - 10px);
  }

  .chart-wrapper.style-one .card:nth-child(2) {
    width: calc(63% - 10px);
  }

  .chart-wrapper.style-two .card:first-child {
    width: calc(62% - 10px);
  }

  .chart-wrapper.style-two .card:nth-child(2) {
    width: calc(48% - 10px);
  }

  .chart-wrapper.style-three .card:first-child,
  .chart-wrapper.style-three .card:nth-child(2) {
    width: calc(28.3% - 20px);
  }

  .chart-wrapper.style-three .card:nth-child(3) {
    width: calc(43.4% - 20px);
  }
}

.logo-dark {
  display: none !important;
}

.logo-light {
  display: block !important;
}

.theme-dark {
  background-color: #0e1622;
}

.theme-dark .logo-light {
  display: none !important;
}

.theme-dark .logo-dark {
  display: block !important;
}

.theme-dark .header-area.style-two .header-left .header-burger-menu i {
  color: var(--offwhiteColor);
}

.theme-dark .header-area .header-left .search-area input,
.theme-dark .main-content,
.theme-dark .modal-content {
  background-color: #0e1622 !important;
}

.theme-dark .profile-dropdown .dropdown-menu,
.theme-dark .setting-sidebar .checkbox-label {
  background-color: #0e1622;
}

.theme-dark .sidebar .card,
.theme-dark .sidebar .sidebar-widget {
  background-color: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.2) !important;
}

.theme-dark .accordion-item .accordion-header .accordion-button,
.theme-dark .select-cat,
.theme-dark .stat-card .stat-info h4,
.theme-dark .text-title,
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6 {
  color: var(--whiteColor) !important;
}

.theme-dark .br-1,
.theme-dark .br-2 {
  border-bottom: 1px solid #39414f !important;
}

.theme-dark .header-area.style-one {
  background-color: #222 !important;
}

.theme-dark .contact_form .form-group input,
.theme-dark .contact_form .form-group select,
.theme-dark .contact_form .form-group textarea,
.theme-dark .coupon-form input {
  color: var(--whiteColor);
  background-color: #0e1622 !important;
}

.theme-dark .contact_form .form-group input::-moz-placeholder,
.theme-dark .contact_form .form-group select::-moz-placeholder,
.theme-dark .contact_form .form-group textarea::-moz-placeholder,
.theme-dark .coupon-form input::-moz-placeholder {
  color: var(--offwhiteColor);
  opacity: 1;
}

.theme-dark .contact_form .form-group input::placeholder,
.theme-dark .contact_form .form-group select::placeholder,
.theme-dark .contact_form .form-group textarea::placeholder,
.theme-dark .coupon-form input::placeholder {
  color: var(--offwhiteColor);
  opacity: 1;
}

.theme-dark .accordion-item,
.theme-dark .contact-card {
  background-color: #0e1622 !important;
}

.theme-dark .bg-white,
.theme-dark .bg_ash {
  background-color: #1e293b !important;
}

.theme-dark .product-card .add-to-cart {
  background-color: var(--secondaryColor) !important;
}

.theme-dark .product-card .add-to-cart img {
  filter: brightness(0) invert(1);
}

.theme-dark .ctegory-card h6 a,
.theme-dark .product-card .product-info h3 a {
  color: var(--whiteColor);
}

.theme-dark .ctegory-card h6 a:hover,
.theme-dark .product-card .product-info h3 a:hover {
  color: var(--secondaryColor);
}

.theme-dark .badge-success {
  background-color: transparent;
  border: 1px solid #03b288;
}

.theme-dark .badge-danger {
  background-color: transparent;
  border: 1px solid #ea3548;
}

.theme-dark .badge-alert {
  background-color: transparent;
  border: 1px solid #6366f1;
}

.theme-dark .profile-dropdown .dropdown-menu ul li a,
.theme-dark .profile-dropdown span,
.theme-dark .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li a,
.theme-dark .single-product-details .add-to-cart .btn,
.theme-dark .text-bg,
.theme-dark .text-black,
.theme-dark .text-optional,
.theme-dark .text-para,
.theme-dark p {
  color: var(--offwhiteColor) !important;
}

.theme-dark .setting-sidebar .close-btn img,
.theme-dark .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li img {
  filter: brightness(0) invert(1);
}

.theme-dark .card,
.theme-dark .card-body,
.theme-dark .table tr td,
.theme-dark .table tr th {
  background-color: #1e293b;
}

.theme-dark .bg_mild,
.theme-dark .details-list li:nth-child(odd),
.theme-dark .form-group .percent-sign,
.theme-dark .select-cat,
.theme-dark .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li.active a,
.theme-dark .sidebar-area .sidebar-menu-wrap .sidebar-menu>.nav-item .sidebar-secondary-menu li:hover a {
  background-color: #0e1622 !important;
}

.theme-dark .profile-dropdown .dropdown-menu ul li a {
  color: var(--offwhiteColor);
}

.theme-dark .profile-dropdown .dropdown-menu ul li a:hover {
  color: var(--secondaryColor) !important;
}

.theme-dark .table-responsive.style-two tr td,
.theme-dark .table-responsive.style-two tr th {
  background-color: transparent;
}

.theme-dark .cart-table tbody tr td .shop-item a,
.theme-dark .header-area .header-right .navbar-nav>.nav-item .nav-link,
.theme-dark .table-tablist .nav-item .nav-link.active {
  color: var(--whiteColor);
}

.theme-dark .header-area .header-right .navbar-nav>.nav-item .nav-link.active {
  color: var(--secondaryColor);
}

.theme-dark .header-area .header-right .navbar-nav>.nav-item .nav-link.dropdown-toggle:before {
  background-image: url(./assets/img/down-arrow-white.6e60cabb.svg);
}

.theme-dark .accordion-item .accordion-body,
.theme-dark .modal .modal-footer,
.theme-dark .modal .modal-header,
.theme-dark .setting-sidebar .logo,
.theme-dark .setting-sidebar .offcanvas-body .settings-item,
.theme-dark .setting-sidebar .offcanvas-body .settings-item h6,
.theme-dark .table-tablist,
.theme-dark .table> :not(caption)>*>* {
  border-color: #39414f !important;
}

.theme-dark .header-area .header-right .option-item button>img {
  filter: brightness(0) invert(0.6);
}

.theme-dark .header-area .header-right .option-item .profile-dropdown .dropdown-toggle img,
.theme-dark .header-area .header-right .option-item button.flag-item img {
  filter: brightness(1) invert(0);
}

.theme-dark .page-unit select {
  background-image: url(./assets/img/down-arrow-white.6e60cabb.svg);
}

.theme-dark .page-nav li a {
  color: var(--whiteColor);
}

.theme-dark .page-nav li a.active,
.theme-dark .page-nav li a:hover {
  background: var(--Purple-Gradient,
      linear-gradient(132deg, #4f46e5 4.27%, #6366f1 100%));
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-one,
.theme-dark .v-counter.style-two {
  background-color: #0e1622 !important;
}

.theme-dark .v-counter.style-one input,
.theme-dark .v-counter.style-two input {
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-one input::-moz-placeholder,
.theme-dark .v-counter.style-two input::-moz-placeholder {
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-one input::placeholder,
.theme-dark .v-counter.style-two input::placeholder {
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-three {
  background-color: #0e1622 !important;
}

.theme-dark .v-counter.style-three input {
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-three input::-moz-placeholder {
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-three input::placeholder {
  color: var(--whiteColor);
}

.theme-dark .v-counter.style-one .minusBtn:before,
.theme-dark .v-counter.style-one .plusBtn:before,
.theme-dark .v-counter.style-three .minusBtn:before,
.theme-dark .v-counter.style-three .plusBtn:before,
.theme-dark .v-counter.style-two .minusBtn:before,
.theme-dark .v-counter.style-two .plusBtn:before {
  color: var(--whiteColor);
}

.theme-dark .tag-list li a {
  color: var(--whiteColor);
  border: 1px solid #4f46e5;
  background-color: transparent;
}

.theme-dark .tag-list li a:hover {
  background-color: var(--secondaryColor);
  border-color: transparent;
}

.hide-scrollbar {
  overflow-y: auto;
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari, and Opera */
}

.btn-primary {
  background-color: #4b1248 !important;
}

.react-tabs__tab--selected {
  background: #4b1248 !important;
  border-color: #aaa;
  color: #fff !important;
  border-radius: 5px 5px 0 0;
}

.nav-tabs .react-tabs__tab--selected .nav-link {
  color: #fff !important;
}

/* appoinment css  */

time-slot-hour {
  width: 100px;
}

time-slot-minute {
  width: 800px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-weekday {
  padding: 10px;
  background-color: #f8f9fa;
  text-align: center;
  font-weight: bold;
}

.calendar-day {
  min-height: 100px;
  padding: 5px;
  border: 1px solid #dee2e6;
  cursor: pointer;
  background-color: white;
}

.calendar-day:hover {
  background-color: #f8f9fa;
}

.current-day {
  background-color: #e7f5ff;
  border-color: #74c0fc;
}

.other-month {
  color: #adb5bd;
  background-color: #f8f9fa;
}

.day-number {
  font-weight: bold;
  margin-bottom: 5px;
}

.appointment-count {
  margin-top: 5px;
}

.time-slots-container {
  display: grid;
  align-items: center;
}

.time-slot-hour {
  grid-column: 1 / -1;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.time-slot {
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}

.time-slot.available {
  background-color: #e3f2fd;
  border: 1px solid #bbdefb;
}

.time-slot.available:hover {
  background-color: #bbdefb;
}

.time-slot.unavailable {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
}

.service-card,
.stylist-card {
  cursor: pointer;
  transition: all 0.2s;
}

.service-card:hover,
.stylist-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.time-slots-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.time-slot-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.time-hour-column {
  width: 100px;
}

.time-hour {
  font-weight: bold;
}

.time-period {
  font-size: 0.8em;
  margin-left: 2px;
  color: #666;
}

.time-minute {
  padding: 8px;
  /* border-radius: 4px; */
  text-align: start;
  cursor: pointer;
  width: 100%;
}

.time-minute.available {
  background-color: #e3f2fd;
  /* border: 1px solid #bbdefb; */
}

.time-minute.available:hover {
  background-color: #bbdefb;
}

.time-minute.unavailable {
  background-color: #f5f5f5;
  color: #9e9e9e;
  cursor: not-allowed;
}

.time-minute-column {
  width: 100%;
}

/* Main container styling */
.appointment-booking-container {
  padding: 20px;
  background-color: #f8f9fa;
  min-height: 100vh;
}

/* Calendar container styling */
.calendar-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.navigation-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-date {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.select-service-btn {
  display: flex;
  align-items: center;
}

/* right side modal  */

/* Booking Offcanvas Styles */
.booking-offcanvas {
  width: 800px !important;
  max-width: 100vw;
}

.offcanvas-footer {
  background: white;
  position: fixed;
  
  bottom: 0;
  z-index: 10;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  gap: 8px;
}

.step-indicator span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.step-indicator span.active {
  background: #0d6efd;
  color: white;
}

/* Service Cards */
.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.service-card:hover {
  background-color: #f8f9fa;
}

.service-card.selected {
  border-color: #0d6efd;
  background-color: #f0f7ff;
}

.service-info {
  flex: 1;
}

.service-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.service-meta {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #6c757d;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-check {
  color: #0d6efd;
}

/* Stylist Cards */
.stylist-card {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.stylist-card:hover {
  background-color: #f8f9fa;
}

.stylist-card.selected {
  border-color: #0d6efd;
  background-color: #f0f7ff;
}

.stylist-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.stylist-image-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.stylist-info {
  flex: 1;
}

.stylist-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.stylist-specializations {
  font-size: 14px;
}

.stylist-check {
  color: #0d6efd;
}

/* Time Slot Display */
.time-slot {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px;
  margin-top: 12px;
}

/* Confirmation Alert */
.confirmation-alert {
  border: 1px solid #dee2e6;
}

/* Button Styles */
.back-button,
.next-button,
.confirm-button {
  min-width: 140px;
}

.confirm-button {
  background-color: #198754;
  border-color: #198754;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .booking-offcanvas {
    width: 100% !important;
  }

  .service-meta {
    flex-direction: column;
    gap: 4px;
  }
}

.navbar-link {
  color: var(--primary);
  margin-right: 15px;
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px !important;
  border: 1px solid var(--primary);

}

.navbar-link:active {
  margin-right: 15px;
  text-decoration: none;
  background: #4f07b4;
  padding: 5px;
  border-radius: 5px;
}

.navbar-link:hover {
  margin-right: 15px;
  text-decoration: none;
  background: #4f07b4;
  padding: 5px;
  border-radius: 5px;
  color: white;
}

.service-item {
  font-size: 12px !important;
}

.react-tabs .nav-tabs .nav-item button {


  color: #4f07b4;
}

.row .col-lg-3 .card .card-header {

  background-color: #4f07b4 !important;
}

.row .col-lg-9 .card .card-header {

  background-color: #4f07b4 !important;
}

.brand-card {
  transition: all 0.2s ease;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.hover-shadow {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.transition-all {
  transition: all 0.2s ease;
}


/*custom toggle switch use for product*/
.custom-toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.custom-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #7a4eac;
  transition: 0.3s;
  border-radius: 34px;
}

.custom-toggle-switch .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: 0.3s;
  border-radius: 50%;
}

.custom-toggle-switch input:checked+.slider {
  background-color: #4f07b4;
}

.custom-toggle-switch input:checked+.slider::before {
  transform: translateX(22px);
}



.image-slider {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
}

.slider-image {
  width: 100%;
  height: 300px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.slider-prev,
.slider-next {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.slider-thumbs {
  display: flex;
  gap: 10px;
  padding: 10px;
  margin-top: 10px;
}

.thumb {
  width: 80px;
  height: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb:hover,
.thumb.active {
  border-color: #007bff;
}

.no-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

/* For screens smaller than 992px (lg breakpoint) */
@media (max-width: 991.98px) {
  .single-product-img {
    padding-bottom: 0 !important;
  }

  /* Hide the original commission table in mobile */
  .d-none.d-lg-block {
    display: none !important;
  }

  /* Style for the mobile commission table */
  .d-block.d-lg-none {
    margin-top: 20px;
    width: 100%;
  }
}
.service-list {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    position: relative;
}



/* Main container styles */
.booking-offcanvas {
  width: 100% !important;
  max-width: 1200px;
}

.booking-container {
  display: flex;
  height: 100%;
}

/* Panel styles */
.client-panel, .booking-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

.client-panel {
  border-right: 1px solid #dee2e6;
}

.panel-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.title-icon {
  color: #0d6efd;
}

.panel-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.panel-footer {
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  background: white;
}

.footer-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.empty-button-space {
  flex-grow: 1;
}

/* Client panel styles */
.add-client-section {
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.add-client-btn {
  border-radius: 50%;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
}

.add-client-text {
  margin-left: 0.75rem;
  cursor: pointer;
}

.client-search-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.search-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 0;
  border-bottom: 1px solid #dee2e6;
}

.search-input-group {
  display: flex;
  width: 100%;
}

.search-icon {
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-right: none;
  border-radius: 0.25rem 0 0 0.25rem;
}

.search-field {
  border-left: none;
  border-radius: 0 0.25rem 0.25rem 0;
}

.clear-search-btn {
  border: 1px solid #ced4da;
  border-left: none;
}

.add-new-client {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  cursor: pointer;
}

.add-new-client-btn {
  border-radius: 50%;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
}

.add-new-client-text {
  margin-left: 0.75rem;
  cursor: pointer;
}

.client-list-container {
  flex: 1;
  overflow-y: auto;
  height: calc(100vh - 200px);
}

.loading-clients {
  text-align: center;
  padding: 1rem 0;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.client-item.selected {
  background-color: #f8f9fa;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info {
  flex: 1;
  min-width: 0;
}

.client-name {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-email {
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selection-check {
  color: #198754;
  margin-left: auto;
}

.no-clients-found {
  text-align: center;
  padding: 1rem 0;
  color: #6c757d;
}

/* Service selection styles */
.service-selection-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-search-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.service-search-group {
  display: flex;
  width: 100%;
}

.service-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.service-category {
  margin-bottom: 1.5rem;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

.category-badge {
  margin-left: 0.5rem;
  color: white;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.service-card {
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
}

.service-card:hover {
  border-color: #adb5bd;
}

.service-card.selected {
  border-color: #0d6efd;
  background-color: #e7f1ff;
}

.service-card.warning {
  border-color: #ffc107;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-name {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.warning-icon {
  margin-left: 0.5rem;
  color: #ffc107;
}

.service-meta {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.service-duration {
  color: #6c757d;
}

.service-price {
  color: #198754;
  font-weight: 600;
}

.no-services-found {
  text-align: center;
  padding: 3rem 0;
  color: #6c757d;
}

.search-icon-large {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #adb5bd;
}

/* Stylist selection styles */
.stylist-selection-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stylist-search-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.stylist-search-group {
  display: flex;
  width: 100%;
}

.stylist-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  padding-bottom: 120px; /* Space for footer */
}

.stylist-card {
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.stylist-card:hover {
  border-color: #adb5bd;
}

.stylist-card.selected {
  border-color: #0d6efd;
  background-color: #e7f1ff;
}

.stylist-card.recommended {
  border-color: #198754;
  background-color: #e8f5e9;
}

.stylist-info {
  display: flex;
  align-items: center;
}

.stylist-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #eee;
}

.stylist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-details {
  flex: 1;
  margin-left: 1rem;
  min-width: 0;
}

.stylist-name {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.stylist-specializations {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recommended-badge {
  font-size: 0.875rem;
  color: #198754;
  margin-top: 0.5rem;
}

/* Confirmation styles */
.confirmation-container {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 120px; /* Space for footer */
}

.appointment-summary {
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin: 1rem;
}

.stylist-info-summary {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.stylist-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #eee;
}

.stylist-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-details-summary {
  margin-left: 1rem;
}

.services-count {
  color: #6c757d;
}

.services-summary {
  margin-bottom: 1.5rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.service-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
  font-size: 0.875rem;
}

.service-details {
  display: flex;
  justify-content: space-between;
}

.total-summary {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  padding-top: 0.5rem;
  border-top: 1px solid #dee2e6;
}

.time-slot-summary {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.time-slot-icon {
  padding: 0.5rem;
  background-color: #e7f1ff;
  border-radius: 50%;
  margin-right: 1rem;
  color: #0d6efd;
}

.time-slot-details {
  flex: 1;
}

.appointment-date {
  font-weight: 600;
}

.appointment-time {
  color: #6c757d;
  font-size: 0.875rem;
}

.no-slot-selected {
  color: #6c757d;
}

.confirmation-alert {
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  margin: 1rem;
}

.confirmation-message {
  color: #6c757d;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.confirmation-buttons {
  display: flex;
  gap: 1rem;
}

.confirmation-buttons .btn {
  flex: 1;
}

.confirmation-footer {
  text-align: center;
  padding: 1rem;
  color: #6c757d;
  font-size: 0.875rem;
}

.confirmation-note {
  margin: 0;
}

/* Error alert */
.error-alert {
  margin: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-container {
      flex-direction: column;
  }
  
  .client-panel, .booking-panel {
      min-width: 100%;
  }
  
  .client-panel {
      border-right: none;
      border-bottom: 1px solid #dee2e6;
  }
  
  .service-grid {
      grid-template-columns: 1fr;
  }
  
  .stylist-list, .confirmation-container {
      padding-bottom: 80px;
  }
}


/* .form-switch .form-check-input {
  background-color: #7a4eac;
} */
.form-switch .form-check-input:checked {
  background-color: #4f07b4;

}

.nav-item .nav-link:hover {
  color: #4f07b4 ;
}
.nav-item .nav-link {
  color: #7a4eac ;
}

/* Custom pagination styles */
.pagination {
  --active-bg-color: #4f07b4; /* Change this to your preferred color */
  --active-text-color: #fff;
  --hover-bg-color: #4f07b4;
  --hover-text-color: #000;
}

.page-item .page-link {
  color: #495057;
  border: 1px solid #dee2e6;

}

.page-item .page-link:hover {
  color: var(--hover-text-color);
}

.page-item.active .page-link {
  background-color: var(--active-bg-color);
  border-color: var(--active-bg-color);
  color: var(--active-text-color);
}

/* Disabled items styling */
.page-item.disabled .page-link {
  color: #6c757d;
  background-color: #f8f9fa;
}

.badge.bg-primary {
  background-color: #4f07b4 !important;
}
.otp-input {
  border: 1px solid #000 !important;
}

