@charset "UTF-8";
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(204, 228.6, 255);
  border-color: rgb(183.6, 218.04, 255);
}
.alert-primary hr {
  border-top-color: rgb(158.1, 204.84, 255);
}
.alert-primary .alert-link {
  color: rgb(0, 39.36, 81.6);
}

.alert-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(225.6, 227.4, 229);
  border-color: rgb(213.84, 216.36, 218.6);
}
.alert-secondary hr {
  border-top-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.alert-secondary .alert-link {
  color: rgb(32.5205150215, 35.2305579399, 37.6394849785);
}

.alert-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(212, 237.4, 217.8);
  border-color: rgb(194.8, 230.36, 202.92);
}
.alert-success hr {
  border-top-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.alert-success .alert-link {
  color: rgb(10.9449275362, 45.6950724638, 18.88);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(248, 214.6, 217.8);
  border-color: rgb(245.2, 198.44, 202.92);
}
.alert-danger hr {
  border-top-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.alert-danger .alert-link {
  color: rgb(73.3010989011, 17.6589010989, 22.9898901099);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(0, 86.1, 178.5);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

@-webkit-keyframes bs-notify-fadeOut {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@keyframes bs-notify-fadeOut {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
select.bs-select-hidden,
.bootstrap-select > select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}

.bootstrap-select {
  width: 100%;
  vertical-align: middle;
  position: relative;
}
.bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 50px;
  line-height: 1.2;
  width: 100%;
  color: var(--text-primary-color) !important;
  background-color: #fff !important;
  border-bottom: 1px solid var(--bg-primary-color) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px !important;
  white-space: nowrap;
  font-size: 16px !important;
  cursor: pointer;
  -webkit-transition: all 0.2;
  transition: all 0.2;
}
.bootstrap-select > .dropdown-toggle:after {
  content: "\e93a";
  display: block;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-transition: all 0.2;
  transition: all 0.2;
  font-size: 16px;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: none;
  margin: 0;
  vertical-align: auto;
  color: var(--text-primary-color);
  margin-left: 5px;
}
.bootstrap-select.show > .dropdown-toggle::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.has-error .bootstrap-select .dropdown-toggle, .error .bootstrap-select .dropdown-toggle, .bootstrap-select.is-invalid .dropdown-toggle, .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  border-color: rgb(185, 74, 72);
}
.bootstrap-select.is-valid .dropdown-toggle, .was-validated .bootstrap-select select:valid + .dropdown-toggle {
  border-color: #28a745;
}
.bootstrap-select.fit-width {
  width: auto !important;
}

.bootstrap-select {
  border-radius: 0 !important;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
  height: auto;
}
:not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  float: none;
  z-index: auto;
}
.form-inline .bootstrap-select, .form-inline .bootstrap-select.form-control:not([class*=col-]) {
  width: auto;
}
.bootstrap-select.dropdown-menu-right, .bootstrap-select[class*=col-].dropdown-menu-right, .row .bootstrap-select[class*=col-].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select, .form-horizontal .bootstrap-select, .form-group .bootstrap-select {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.form-control, .form-group-sm .bootstrap-select.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.bootstrap-select.form-control-sm .dropdown-toggle, .bootstrap-select.form-control-lg .dropdown-toggle {
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.bootstrap-select.form-control-sm .dropdown-toggle {
  padding: 0.25rem 0.5rem;
}
.bootstrap-select.form-control-lg .dropdown-toggle {
  padding: 0.5rem 1rem;
}
.form-inline .bootstrap-select .form-control {
  width: 100%;
}
.bootstrap-select.disabled,
.bootstrap-select > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.disabled:focus,
.bootstrap-select > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.bs-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select .dropdown-toggle .filter-option {
  position: static;
  top: 0;
  left: 0;
  float: left;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right: inherit;
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  position: absolute;
  padding-top: inherit;
  padding-bottom: inherit;
  padding-left: inherit;
  float: none;
}
.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  padding-right: inherit;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  width: 100%;
  margin-bottom: -3px;
  font-weight: 300;
}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner > span {
  margin-bottom: -3px;
}
.bootstrap-select .dropdown-toggle .filter-expand {
  width: 0 !important;
  float: left;
  opacity: 0 !important;
  overflow: hidden;
}
.bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius: inherit;
}
.bootstrap-select[class*=col-] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select .dropdown-menu {
  width: 100% !important;
  min-width: 100%;
  left: 0 !important;
  top: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: none !important;
          transform: none !important;
  z-index: 9 !important;
  background: #fff;
  padding-top: 5px;
}
.bootstrap-select .dropdown-menu.show {
  display: block !important;
}
.bootstrap-select .dropdown-menu .inner {
  border-radius: 4px;
  border: 1px solid #c0c2bf;
  overflow-x: hidden;
}
.bootstrap-select .dropdown-menu > .inner:focus {
  outline: none !important;
}
.bootstrap-select .dropdown-menu.inner {
  display: block !important;
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.bootstrap-select .dropdown-menu li {
  position: relative;
  cursor: pointer;
  color: var(--text-primary-color);
}
.bootstrap-select .dropdown-menu li.active a, .bootstrap-select .dropdown-menu li:hover a {
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.bootstrap-select .dropdown-menu li.active small {
  color: rgba(255, 255, 255, 0.5) !important;
}
.bootstrap-select .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select .dropdown-menu li a {
  padding: 0px 15px;
  color: var(--text-primary-color);
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: unset !important;
  -webkit-box-direction: unset !important;
      -ms-flex-direction: unset !important;
          flex-direction: unset !important;
  letter-spacing: normal;
}
.bootstrap-select .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position: static;
  display: inline;
  padding: 0;
}
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
  text-transform: capitalize;
}
.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  content: " ";
}
.bootstrap-select.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  top: 5px;
}
.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select .bs-ok-default:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1em;
  border-style: solid;
  border-width: 0 0.26em 0.26em 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  bottom: auto;
  top: -4px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  bottom: auto;
  top: -4px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after {
  display: block;
}

.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
  height: 40px;
  line-height: 40px;
  background-color: transparent !important;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: 0;
  outline-offset: unset;
}

.country-container .choose_country .dropdown-menu .inner::-webkit-scrollbar {
  height: 9px;
  width: 9px;
}
.country-container .choose_country .dropdown-menu .inner::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(157, 165, 183, 0.4);
}

@-webkit-keyframes header-menu-anim {
  0% {
    top: calc(100% - 5px);
  }
  100% {
    top: 100%;
  }
}

@keyframes header-menu-anim {
  0% {
    top: calc(100% - 5px);
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes opacity-0-to-1 {
  0% {
    opacity: 0;
    width: 10px;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@keyframes opacity-0-to-1 {
  0% {
    opacity: 0;
    width: 10px;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@-webkit-keyframes popover-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popover-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes dropdown-menu-anim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes dropdown-menu-anim {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.dropdown-menu {
  display: none;
}

body[data-modal=globelSearch] {
  padding-right: 0 !important;
  overflow: initial;
}
body[data-modal=globelSearch] .modal-backdrop {
  z-index: 998;
}

body.checkout-page .minicart-link {
  cursor: auto;
}

body {
  padding-top: 88px;
}
@media (min-width: 1023px) {
  body {
    padding-top: 92px;
  }
  body .maincontent {
    min-height: calc(100vh - 123px - 450px);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
  font-size: 16px;
  border-bottom: 0.5px solid #f5f5f5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .header-banner {
  position: relative;
  z-index: 99;
  background: #f6f4ef;
  color: #fff;
}
header .header-banner > div.tw-container {
  position: relative;
}
header .header-banner .header-slide-swiper {
  height: 26px;
  overflow: hidden;
}
header .header-banner .header-slide-swiper .swiper-button-prev,
header .header-banner .header-slide-swiper .swiper-button-next {
  display: none;
}
header .header-banner .header-slide-swiper .swiper-button-white {
  display: none;
}
header .header-banner .header-slide-swiper .swiper-slide{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--text-primary-color);
  height: 40px;
}
@media (max-width: 767.9px) {
  header .header-banner .header-slide-swiper .swiper-slide {
    letter-spacing: 0.01em;
    font-size: 12px;
  }
}
header .header-banner .header-slide-swiper .swiper-slide a {
  color: var(--text-primary-color);
  text-decoration: underline;
  margin-left: 2px;
}
header .header-banner .header-top-tools .bootstrap-select {
  width: auto !important;
}
header .header-banner .header-top-tools .bootstrap-select .dropdown-toggle {
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 0 !important;
  width: auto;
  background: transparent !important;
  color: #fff;
  font-size: 14px !important;
  cursor: pointer;
}
@media (min-width: 992px) {
  header .header-banner .header-top-tools .bootstrap-select .dropdown-toggle {
    font-size: 16px !important;
  }
}
header .header-banner .header-top-tools .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
}
header .header-banner .header-top-tools .bootstrap-select .dropdown-toggle::after {
  color: #fff !important;
}
header .header-banner .header-top-tools .bootstrap-select > div.dropdown-menu {
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}
header .header-banner .header-top-tools .bootstrap-select .dropdown-menu {
  min-width: 100px;
  color: var(--text-primary-color);
}
header .header-banner .header-top-tools .bootstrap-select .dropdown-menu .inner {
  border: 0;
}
@media (max-width: 992px) {
  header .header-banner .header-slide-swiper {
    max-width: none;
  }
  header .header-banner .header-top-tools {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    right: 0;
  }
  header .header-banner .header-top-tools .dropdown-toggle {
    font-size: 14px !important;
  }
}
@media (max-width: 767.9px) {
  header .header-banner {
    height: 44px;
  }
  header .header-banner .header-slide-swiper {
    height: 44px;
  }
  header .header-banner .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.1 !important;
  }
  header .header-banner .swiper-slide a {
    margin-left: 0;
    margin-top: 0;
  }
}
header .header-nav {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--text-primary-color);
}
header .header-nav a {
  color: var(--text-primary-color);
}
header .header-nav .header-left .mobile-menu-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 24px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  header .header-nav .header-left .mobile-menu-button {
    display: none;
  }
}
header .header-nav .header-left .mobile-menu-button.active::before {
  font-size: 20px;
  content: "\e90d";
}
@media (min-width: 320px) and (max-width: 767px){
  header .header-nav .header-left .logo-img{
    margin-left: auto;
    margin-right: auto;
  }
}
header .header-nav .header-left .logo-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .header-nav .navbar-header nav.navbar {
  padding: 0 !important;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .main-menu {
    max-height: inherit !important;
    min-height: inherit !important;
  }
  header .header-nav .navbar-header .main-menu .nav-item{
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
header .header-nav .navbar-header .main-menu .nav-item {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1060;
}
@media (min-width: 320px) and (max-width: 1023px){
  header .header-nav .navbar-header .main-menu .nav-item .nav-link{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
header .header-nav .navbar-header .main-menu .nav-item .nav-link {
  white-space: nowrap;
  height: 62px;
  line-height: 62px;
  border-bottom: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}
header .header-nav .navbar-header .main-menu .nav-item .dropdown-menu{
  position: fixed;
  left: 0px;
  width: 100%;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 320px) and (max-width: 1023px){
  header .header-nav .navbar-header .main-menu .nav-item .dropdown-menu{
    padding-left: 1rem;
    padding-right: 1rem;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
header .header-nav .navbar-header .main-menu .nav-item .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  color: #131313;
  z-index: 9999;
  display: block;
  top: 92px;
  animation: header-menu-anim 0.4s;
  -webkit-animation: header-menu-anim 0.4s;
}
header .header-nav .navbar-header .main-menu .nav-item .dropdown-menu li {
  display: block;
}
header .header-nav .navbar-header .main-menu .nav-item .dropdown-menu li > a {
  width: 100%;
  height: auto;
  padding: 0 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .main-menu .nav-item::before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 2px;
    background: transparent;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: absolute;
    bottom: 15px;
    left: -3px;
  }
  header .header-nav .navbar-header .main-menu .nav-item:hover::before {
    background: var(--text-primary-color);
    -webkit-animation: opacity-0-to-1 0.5s;
    animation: opacity-0-to-1 0.5s;
  }
  header .header-nav .navbar-header .main-menu .nav-item:hover .icon-cheveron-down::before {
    content: "\e916";
  }
  header .header-nav .navbar-header .main-menu .nav-item:hover > .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    border-radius: 0 0 12px 12px;
  }
}
@media (max-width: 1023.9px) {
  header .header-nav .navbar-header .main-menu.active {
    display: block;
    position: absolute;
    width: 100%;
    top: calc(100% - 1px);
    left: 0;
    bottom: auto;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    padding-bottom: 84px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 16px 0;
    border-top: 1px solid #e6e7e5;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .header-account-entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .social{
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e6e7e5;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .social::before {
    content: "";
    display: block;
    width: 1px;
    height: 28px;
    background: #e6e7e5;
    position: absolute;
    left: 50%;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .social a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 17px;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logout > a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logout > a > span {
    display: none !important;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logout > a > button {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 165px;
    height: 42px;
    padding: 8px 32px;
    border: 1px solid #8f8f8f;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-primary-color);
    background: #fff;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logged > .dropdown-menu {
    display: none !important;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logged > a {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    color: var(--text-primary-color);
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logged > a::after {
    content: "\e93a";
    font-family: "icomoon";
    font-size: 20px;
    line-height: 1;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logged > a > .icon-User {
    font-size: 24px;
  }
  header .header-nav .navbar-header .main-menu.active .mobile-account-footer .user-logged > a > span.tw-ml-5 {
    display: inline-block !important;
    margin-left: 10px !important;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item.show {
    background-color: var(--bg-secondary-color);
  }
  header .header-nav .navbar-header .main-menu.active .nav-item.show .arrow-icon {
    -webkit-transform: rotate(180deg) scale(0.7);
            transform: rotate(180deg) scale(0.7);
  }
  header .header-nav .navbar-header .main-menu.active .nav-item.show .dropdown-menu {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item > a {
    height: 58px;
    line-height: 58px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item > span.icon-cheveron-down {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
  header .header-nav .navbar-header .main-menu.active .dropdown-menu {
    position: static;
    z-index: inherit;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item:not(.close) > span.icon-cheveron-down {
    content: "\e916";
  }
}
header .header-nav .navbar-header ul.dropdown-menu {
  width: auto;
  min-width: 200px;
  overflow: hidden;
  position: absolute;
  color: #666;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9999;
  left: 50%;
  top: 100%;
  font-weight: 500;
  animation: header-menu-anim 0.4s;
  -webkit-animation: header-menu-anim 0.4s;
  font-size: 16px;
  float: none;
}
header .header-nav .navbar-header ul.dropdown-menu li {
  display: block;
}
header .header-nav .navbar-header ul.dropdown-menu li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  padding: 0 15px;
  height: 40px;
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header ul.dropdown-menu li > a:hover {
    color: var(--text-secondary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
header .header-nav .navbar-header .science-item{
  position: relative;
  margin-bottom: 2rem;
  font-weight: 400;
}
@media (min-width: 320px) and (max-width: 1023px){
  header .header-nav .navbar-header .science-item{
    padding-left: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  header .header-nav .navbar-header .science-item::before {
    content: ".";
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -7px;
    color: var(--text-secondary-color);
  }
}
@media (max-width: 1023.9px) {
  header .header-nav .navbar-header .navbar-header-right-tool .header-account-entry {
    display: none;
  }
}
header .header-nav .navbar-header .navbar-header-right-tool span[class^=icon-] {
  font-size: 26px;
  cursor: pointer;
}
header .header-nav .navbar-header .navbar-header-right-tool .search,
header .header-nav .navbar-header .navbar-header-right-tool .user:not(.user-logged) {
  display: block;
}
header .header-nav .navbar-header .navbar-header-right-tool .search span[class^=icon-],
header .header-nav .navbar-header .navbar-header-right-tool .user:not(.user-logged) span[class^=icon-] {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .navbar-header-right-tool .search span[class^=icon-],
  header .header-nav .navbar-header .navbar-header-right-tool .user:not(.user-logged) span[class^=icon-] {
    height: 50px;
  }
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged {
  position: relative;
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .navbar-header-right-tool .user-logged > a {
    height: 50px;
  }
}
@media (min-width: 768px) {
  header .header-nav .navbar-header .navbar-header-right-tool .user-logged > a {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged > .dropdown-menu {
  min-width: 240px;
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged > .dropdown-menu #logout {
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 10px;
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged > .dropdown-menu #logout a {
  color: #d94c4c !important;
  border: 1px solid #d94c4c;
  border-radius: 100px;
  margin-bottom: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .navbar-header-right-tool .user-logged:hover > .dropdown-menu {
    opacity: 1;
    z-index: 999;
    display: block;
    padding-top: 10px;
  }
}
header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link {
  height: 40px;
  width: auto;
}
header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link span[class^=icon-] {
  position: relative;
  height: 32px;
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link .minicart-quantity {
  position: absolute;
  left: 15px;
  top: 0px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 20px;
  background-color: #b25632;
  font-size: 10px;
  color: #fff;
  text-align: center;
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged .dropdown-toggle::after {
  display: none;
}
header .header-nav .navbar-header .navbar-header-right-tool .user-logged .dropdown-toggle .icon-arrow-sm-down1 {
  margin-left: 3px;
  font-size: 12px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  display: inline-block;
}
header .header-nav .navbar-header .navbar-header-right-tool .user .popover {
  position: absolute;
  padding: 20px;
  top: 100%;
  left: auto;
  right: 0;
  width: auto;
  border: none;
  padding-top: 30px;
  -webkit-animation: popover-anim 0.5s;
          animation: popover-anim 0.5s;
}
header .header-nav .navbar-header .navbar-header-right-tool .user .popover a {
  white-space: nowrap;
  margin-bottom: 0;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333 !important;
}
header .header-nav .navbar-header .navbar-header-right-tool .user .popover a:hover {
  color: #999 !important;
}
@media (min-width: 320px) and (max-width: 1023px){
  header .icon-Shopping_Bag,
header .icon-User{
    font-weight: 600;
  }
}

@media (min-width: 1024px){
  .globel-search{
    top: 130px;
  }
}

@media (min-width: 320px) and (max-width: 767px){
  .globel-search{
    height: 100% !important;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}

.globel-search {
  display: none;
  height: auto;
  position: fixed;
}
.globel-search.show {
  display: block;
}
@media (min-width: 1024px) {
  .globel-search.show {
    -webkit-animation: popover-anim 0.5s;
            animation: popover-anim 0.5s;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .globel-search .search-box-container{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .globel-search .search-box-container {
    border-bottom: 1px solid #e6e7e5;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .globel-search .search-outer-container{
    padding-left: 0px;
    padding-right: 0px;
  }
}
.globel-search .text-close-btn::before{
  display: none;
}
.globel-search form{
  position: relative;
  z-index: 10;
  border-radius: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
@media (min-width: 1024px){
  .globel-search form{
    margin-top: 20px;
  }
}
.globel-search div.modal-dialog {
  width: 100% !important;
  max-width: none !important;
  position: static;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: none !important;
  transition: none !important;
  background: transparent !important;
}
.globel-search div.modal-dialog .modal-content {
  background: transparent !important;
}
@media (min-width: 1024px){
  .globel-search .site-search{
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
}
.globel-search .site-search {
  height: auto;
  max-height: calc(100vh - 150px);
}
.globel-search .site-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}
.globel-search .site-search .search-field {
  border: none !important;
  padding-left: 30px !important;
  background: transparent !important;
  width: 100% !important;
}
.globel-search .suggestions-wrapper{
  position: relative;
  top: -20px;
  width: 100%;
  background-color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.globel-search .suggestions-wrapper .suggestions {
  position: static;
  width: 100%;
  border: none;
}
.globel-search .suggestions-wrapper .suggestions > ul.container {
  padding: 30px 20px;
  max-height: calc(100vh - 200px);
}
.globel-search .suggestions-wrapper .suggestions .row > [class^=col-] {
  -webkit-box-flex: 100%;
  -ms-flex: 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}
.globel-search .suggestions-wrapper .suggestions .header {
  text-transform: uppercase;
  font-family: Arial, "Helvetica-Bold";
  font-weight: bold;
  color: #301613;
  line-height: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding-top: 0;
  border: none;
}
.globel-search .suggestions-wrapper .suggestions li + li.header {
  margin-top: 30px;
}
.globel-search .suggestions-wrapper .suggestions .category-parent {
  color: #301714;
}
.globel-search .suggestions-wrapper .suggestions .item {
  padding-top: 0;
  padding-bottom: 0;
}
.globel-search .suggestions-wrapper .suggestions .item + .item {
  padding-top: 15px;
}
.globel-search .suggestions-wrapper.active-spinner {
  display: block !important;
  min-height: 200px;
}
.globel-search .search-submit{
  position: relative;
  right: -20px;
  height: 100%;
  white-space: nowrap;
}
.globel-search .search-product-list a {
  display: inline-block;
  width: 100%;
}
.globel-search .search-product-list a .product-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.globel-search .search-product-list a .product-img img {
  width: 100%;
  max-width: none;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}
.globel-search .search-product-list a .name {
  display: inline-block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
}

.nav-item.close .dropdown-menu {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  display: none;
}

.arrow-icon {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform: rotate(0deg) scale(0.7);
          transform: rotate(0deg) scale(0.7);
}
@media screen and (max-width: 1023px) {
  .arrow-icon.expanded {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); /* 展开时旋转箭头 */
  }
}

.learn-dropdown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .learn-dropdown::after {
    content: "";
    position: absolute;
    height: 1px;
    left: -20px;
    right: -20px;
    bottom: 0;
  }
}
@media (min-width: 1024px){
  .learn-dropdown .learn-menu{
    margin-right: 2rem;
  }
}
.learn-dropdown .learn-menu {
  min-width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.learn-dropdown .learn-menu ul{
  margin: 0px;
  padding: 0px;
}
@media (min-width: 1024px){
  .learn-dropdown .learn-menu ul{
    list-style-type: none;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .learn-dropdown .learn-menu ul{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.learn-dropdown .learn-menu ul li{
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 1024px){
  .learn-dropdown .learn-menu ul li{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .learn-dropdown .learn-menu ul li{
    margin-bottom: 0.75rem;
  }
}
@media screen and (max-width: 1024px) {
  .learn-dropdown .learn-menu ul li::before {
    content: ".";
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -6px;
    color: var(--text-secondary-color);
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .learn-dropdown .learn-menu ul li span{
    max-width: 100px;
  }
}
.learn-dropdown .learn-menu ul li span {
  font-size: 18px;
  color: #222;
  margin-bottom: 24px;
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding: 0 5px 5px 5px !important;
  -webkit-transition: color 0.3s ease, border-bottom-color 0.3s ease, -webkit-filter 0.4s ease;
  transition: color 0.3s ease, border-bottom-color 0.3s ease, -webkit-filter 0.4s ease;
  transition: color 0.3s ease, border-bottom-color 0.3s ease, filter 0.4s ease;
  transition: color 0.3s ease, border-bottom-color 0.3s ease, filter 0.4s ease, -webkit-filter 0.4s ease;
  -webkit-filter: brightness(0.92) saturate(0.8);
          filter: brightness(0.92) saturate(0.8);
}
.learn-dropdown .learn-menu ul li.active span {
  border-bottom: 2px solid #131313;
  -webkit-filter: brightness(1) saturate(1);
          filter: brightness(1) saturate(1);
}
@media (min-width: 320px) and (max-width: 767px){
  .learn-dropdown .learn-menu ul li a{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.learn-dropdown .learn-content{
  max-width: 920px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1024px){
  .learn-dropdown .learn-cards{
    gap: 60px;
  }
}
@media (min-width: 320px) and (max-width: 1023px){
  .learn-dropdown .learn-cards{
    gap: 40px;
  }
}
.learn-dropdown .learn-cards.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.learn-dropdown .card{
  width: 100%;
}
@media (min-width: 1024px){
  .learn-dropdown .card{
    width: 50%;
  }
}
.learn-dropdown .card {
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.learn-dropdown .card img{
  width: 100%;
}
@media (min-width: 1024px){
  .learn-dropdown .card img{
    height: 300px;
    border-radius: 1.5rem;
  }
}
.learn-dropdown .card img {
  -o-object-fit: cover;
     object-fit: cover;
}
.learn-dropdown .card-meta {
  font-size: 14px;
  color: var(--bg-dark-grey);
  margin: 12px 0 0 0;
}
.learn-dropdown .card-title{
  position: relative;
}
@media (min-width: 1024px){
  .learn-dropdown .card-title{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.learn-dropdown .card-title {
  color: #222;
  font-weight: 500;
  margin: 8px 0 16px 0;
}
.learn-dropdown .card-title::after{
  position: absolute;
  right: 20px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}
@media (min-width: 1024px){
  .learn-dropdown .card-title::after{
    top: -20px;
  }
}
.learn-dropdown .card-title::after {
  content: "\e904";
  font-family: "icomoon";
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}
.menu-overlay.active {
  display: block;
}
@media screen and (min-width: 1024px) {
  .menu-overlay {
    top: 92px;
  }
}

.suggest-product-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.suggest-product-item img {
  width: 80px;
}

.scrolled-past-header .page header {
  background-color: #fff;
  border-bottom: 1px solid #e6e7e5;
}
.scrolled-past-header .page header .header-nav a {
  color: #131313;
}
.scrolled-past-header .page header .header-nav .icon-Shopping_Bag,
.scrolled-past-header .page header .header-nav .icon-User,
.scrolled-past-header .page header .header-nav .icon-menu {
  color: #131313;
}
.scrolled-past-header .page header .search{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.scrolled-past-header .page header .logo-home{
  display: block;
}
.scrolled-past-header .page header .white-logo{
  display: none;
}
.scrolled-past-header .page header .user-logout button {
  border-color: #131313;
  color: #131313;
  background: none;
}

.veil {
  position: absolute;
  z-index: 100;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.veil .underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #000;
}

body > div.veil {
  z-index: 9999;
}

.spinner {
  width: 80px;
  height: 80px;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
          animation: sk-rotate 2s infinite linear;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
          animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.global-product-line-item .price {
  position: relative;
}
.global-product-line-item .price .value {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.global-product-line-item .price del {
  color: var(--text-tertiary-color);
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 0;
}
.global-product-line-item .price del .value {
  font-size: 14px !important;
  margin-right: 5px;
  letter-spacing: 0;
  font-weight: 300;
}
.global-product-line-item .price del * {
  margin: 0;
  padding: 0;
}

.add-to-cart-messages {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  top: 170px;
  left: 50%;
  z-index: 9999999;
}

.add-to-basket-alert {
  -webkit-animation: fade 5s linear forwards;
          animation: fade 5s linear forwards;
  padding: 1em;
  -webkit-box-shadow: 0.5px 0.5px 6px 0.5px rgba(18, 18, 18, 0.05);
          box-shadow: 0.5px 0.5px 6px 0.5px rgba(18, 18, 18, 0.05);
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.add-to-basket-alert.show {
  display: block;
}

.minicartModal {
  background-color: #fff;
}
.minicartModal .minicart-content {
  position: static !important;
}

body .minicartModal {
  display: block;
  left: 100vw;
  height: 100%;
  max-width: 470px;
  -webkit-transition: visibility 0.6s, -webkit-transform 0.6s ease;
  transition: visibility 0.6s, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, visibility 0.6s;
  transition: transform 0.6s ease, visibility 0.6s, -webkit-transform 0.6s ease;
}
body .minicartModal.show {
  visibility: visible;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
body .minicartModal .modal-dialog {
  position: static !important;
  -webkit-transform: none !important;
          transform: none !important;
  margin: 0 !important;
  pointer-events: unset !important;
}
body .minicartModal .minicart-content {
  height: 100% !important;
}
body .minicartModal .modal-dialog,
body .minicartModal .modal-content,
body .minicartModal .cart {
  width: 100% !important;
  max-width: 500px;
  background: #fff;
  height: 100% !important;
}
body .minicartModal .cart.miniCart-empty .miniCart-empty-container {
  height: 100%;
  max-height: calc(100% - 68px);
}
body .minicartModal .cart .product-summary {
  height: 100%;
  max-height: calc(100% - 68px - 153px);
  overflow-y: auto;
  overflow-x: hidden;
}
body .minicartModal .cart .product-summary .minicart-error:empty {
  display: none;
}
body .minicartModal .cart .minicart-error .alert {
  opacity: 1;
  padding: 15px;
}
body .minicartModal .cart .minicart-error .alert .close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  color: inherit;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body .minicartModal .cart .minicart-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  margin-top: 10px;
}
body .minicartModal .cart .cart-incl-tax {
  color: #987571;
}
body .minicartModal .underlay {
  opacity: 0.2;
}

.global-product-line-item {
  background: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  padding-top: 20px;
  width: 100%;
  position: relative;
}
.global-product-line-item.not-available .item-image,
.global-product-line-item.not-available .line-item-quantity,
.global-product-line-item.not-available .item-attributes > div {
  opacity: 0.5;
}
.global-product-line-item.not-available .item-attributes > div.cart-product-item-tool {
  opacity: 1;
}
.global-product-line-item + div.global-product-line-item {
  border-top: 1px solid #c0c2bf;
}
.global-product-line-item .gift-label {
  position: absolute;
  top: 0;
  right: 0;
  background: #301613;
  color: #fff;
}
.global-product-line-item .item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .global-product-line-item .item-image {
    width: 120px;
    height: 120px;
  }
}
.global-product-line-item .item-image img {
  display: inline-block;
  max-width: none;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: none;
}
.global-product-line-item .item-attributes {
  color: #868886;
}
.global-product-line-item .item-attributes .product-name {
  width: 100%;
  line-height: 1.1;
  color: var(--text-primary-color);
  font-weight: 400;
  font-size: 16px;
}
.global-product-line-item .item-attributes .price {
  color: var(--text-primary-color);
}
.global-product-line-item .item-attributes .order-summary-price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.global-product-line-item .line-item-quantity {
  width: auto;
}
.global-product-line-item .line-item-quantity .quantity-form {
  position: relative;
  border-radius: 30px;
  border: 1px solid #e6e7e5;
  background: #fff;
  width: auto;
}
.global-product-line-item .line-item-quantity .quantity-label {
  display: none;
}
.global-product-line-item .line-item-quantity .icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #131313;
}
.global-product-line-item .line-item-quantity .icon-button.disabled {
  cursor: default;
  color: #999999 !important;
}
.global-product-line-item .line-item-quantity .quantity {
  font-size: 14px;
  width: 50px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  outline: none;
  border: none !important;
  -moz-appearance: textfield;
}
.global-product-line-item .line-item-quantity .quantity::after, .global-product-line-item .line-item-quantity .quantity::before {
  display: none !important;
}
.global-product-line-item .line-item-quantity .quantity::-webkit-outer-spin-button, .global-product-line-item .line-item-quantity .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
.global-product-line-item .remove-line-item {
  width: 40px;
  height: 30px;
}
.global-product-line-item .remove-line-item .icon-trash {
  color: #131313;
  font-weight: 600;
}
.global-product-line-item .remove-product {
  white-space: nowrap;
}
.global-product-line-item .filter-option-inner-inner {
  color: #868886;
  font-size: 14px;
}
.global-product-line-item .dropdown-menu li a {
  color: #868886;
  font-size: 14px;
  font-weight: 300 !important;
}
.global-product-line-item .dropdown-menu li a:hover {
  color: #131313;
}

.bundled-product-line-item .bundled-product-master .global-product-line-item {
  padding-top: 0;
  padding-bottom: 0;
}
.bundled-product-line-item:not(.active) .bundled-product-childs {
  display: none;
}
.bundled-product-line-item .bundled-product-childs {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  background: rgba(245, 245, 245, 0.4);
}
.bundled-product-line-item .bundled-product-childs .global-product-line-item {
  background: transparent !important;
  border-top: 0;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.bundled-product-line-item .bundled-product-childs .global-product-line-item .item-image {
  width: 100px !important;
  height: 100px !important;
}

.minicart-content .bundled-product-line-item .global-product-line-item,
.order-product-summary .bundled-product-line-item .global-product-line-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.minicart-content .bundled-product-line-item .bundled-product-childs,
.order-product-summary .bundled-product-line-item .bundled-product-childs {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.minicart-content .bundled-product-line-item .bundled-product-childs .item-image,
.order-product-summary .bundled-product-line-item .bundled-product-childs .item-image {
  width: 80px !important;
  height: 80px !important;
}

.checkout-container .bundled-product-line-item .bundled-product-childs {
  margin-top: 20px;
}
.checkout-container .bundled-product-line-item .bundled-product-childs .global-product-line-item {
  margin-top: 0 !important;
}

.cart-promotion-item {
  width: 100%;
}
.cart-promotion-item + div.cart-promotion-item {
  margin-top: 10px;
}

.page-footer{
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f6f4ef;
}
.page-footer .footer-top-column{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px){
  .page-footer .footer-top-column{
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px){
  .page-footer .footer-top-column{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
}
.page-footer .leftColumn{
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 1024px){
  .page-footer .leftColumn{
    margin-bottom: 0px;
    width: 320px;
  }
  .page-footer .rightColumn{
    width: 380px;
  }
}
.page-footer .rightColumn .newsletter{
  position: relative;
}
.page-footer .rightColumn .newsletter .newsletter-email {
  border-width: 0;
  border-bottom: 1px solid var(--text-primary-color);
  border-radius: 0;
  background: transparent;
}
.page-footer .rightColumn .newsletter .submit-newsletter{
  position: absolute;
  width: 100px;
  height: 30px;
  right: -40px;
  background: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 10px;
}
.page-footer .rightColumn .newsletter .submit-newsletter i {
  color: var(--text-tertiary-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.page-footer .middleColumn{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px){
  .page-footer .middleColumn{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px){
  .page-footer .middleColumn{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    gap: 30px;
  }
}
.page-footer .middleColumn .menu-item{
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 1024px){
  .page-footer .middleColumn .menu-item{
    margin-bottom: 0px;
    width: 33.333333%;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .middleColumn .menu-item{
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px){
  .page-footer .middleColumn .menu-item:first-child{
    width: 25%;
  }
}
.page-footer .middleColumn .menu-item h3{
  padding-bottom: 10px;
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .middleColumn .menu-item h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .page-footer .middleColumn .menu-item h3.active {
    border-bottom: 1px solid var(--text-primary-color);
    color: var(--text-primary-color);
  }
}
.page-footer .middleColumn .menu-item a{
  margin-top: 0.75rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-primary-color);
}
.page-footer .inputBox-radius{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  padding: 1rem;
  border-bottom-left-radius: 10px !important;
  border: 0 !important;
  max-width: 400px;
}
@media (min-width: 768px){
  .page-footer .copyright{
    border-top-width: 1px;
  }
}
.page-footer .copyright {
  border-color: var(--text-primary-color);
}
.page-footer .copyright a{
  display: inline-block;
}
.page-footer .copyright .copyright-info{
  margin-top: 2rem;
  padding-top: 10px;
  border-top: 1px solid var(--text-primary-color);
}
.page-footer .copyright .footer-country-list{
  cursor: pointer;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border: 1px solid var(--text-primary-color);
  border-radius: 25px;
}
.page-footer .social-links{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  max-width: 460px;
}
.page-footer .social-links a{
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--text-primary-color);
}
.page-footer .i-phone{
  margin-right: 1rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.page-footer .toggle-icon{
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
  .page-footer .toggle-icon{
    display: none;
  }
}
.page-footer .none-bg {
  background: none !important;
  border-bottom: 1px solid var(--text-primary-color) !important;
  border-radius: 0 !important;
}
.page-footer .none-bg::-webkit-input-placeholder{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.page-footer .none-bg::-moz-placeholder{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.page-footer .none-bg:-ms-input-placeholder{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.page-footer .none-bg::-ms-input-placeholder{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.page-footer .none-bg::placeholder{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.page-footer .footer-form-arrow {
  position: absolute;
  right: 0px;
  bottom: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 16px;
  font-weight: bold;
}
.page-footer .opacity-btn {
  opacity: 0;
  position: absolute;
  right: -15px;
  font-size: 10px;
  width: 60px;
}

.modal-dialog .modal-title{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  text-transform: capitalize;
}
.modal-dialog .modal-header {
  border-bottom: none;
}

.button-close{
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  background-color: transparent;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 3rem;
  line-height: 1;
}

.custom-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 0;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease, top 0.3s ease;
  transition: opacity 0.3s ease, top 0.3s ease;
  z-index: 999999;
}

.custom-alert.show {
  opacity: 1;
  top: 40px;
}

.country-selector-item span.text,
.currency-selector-item span.text{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
}

@media (min-width: 768px){
  .newsletter-form{
    max-height: 600px;
  }
}

@media (min-width: 1024px){
  .newsletter-form{
    max-height: 700px;
  }
}

.container-scroll{
  overflow-y: auto;
}

/* 自定义滚动条样式 */
.container-scroll::-webkit-scrollbar,
.carousel-review-body::-webkit-scrollbar {
  width: 7px;
}

.container-scroll::-webkit-scrollbar-track,
.carousel-review-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.container-scroll::-webkit-scrollbar-thumb,
.carousel-review-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.container-scroll::-webkit-scrollbar-thumb:hover,
.carousel-review-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 适用于 Firefox */
.container-scroll {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.inputBox-radius::-webkit-input-placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.inputBox-radius::-moz-placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.inputBox-radius:-ms-input-placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.inputBox-radius::-ms-input-placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.inputBox-radius::placeholder {
  color: #9ca3af;
  font-size: 14px;
}

.product-number-rating {
  height: 28px;
}

@media screen and (max-width: 768px) {
  #newsletterModal {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  #newsletterModal .modal-dialog {
    top: 50%;
    max-width: 350px !important;
    -webkit-transform: translateY(calc(-50% + 80px)) !important;
            transform: translateY(calc(-50% + 80px)) !important;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #newsletterModal .modal-dialog {
    top: 45%;
    max-width: 370px !important;
  }
}
.sfmc-subscribe-form.footer-sfmc-subscribe-form {
  position: relative;
}
.sfmc-subscribe-form.footer-sfmc-subscribe-form .email-form-group .invalid-feedback {
  position: absolute;
  top: 100%;
}
.sfmc-subscribe-form.footer-sfmc-subscribe-form .success-message {
  color: #131313;
  text-align: left;
}
.sfmc-subscribe-form .success-message {
  color: var(--text-secondary-color);
  font-size: 16px !important;
  font-style: normal !important;
  text-align: center;
  margin-top: 30px;
}

.global-about-us-component{
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 1024px){
  .global-about-us-component{
    padding-top: 120px;
  }
}
.global-about-us-component .global-about-us-section{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 40px;
}
@media (min-width: 1024px){
  .global-about-us-component .global-about-us-section{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
  }
}
.global-about-us-component .card-item {
  text-align: center;
}
.global-about-us-component .card-item .card-image {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.global-about-us-component .card-item .card-image img{
  max-width: 250px;
  width: 100%;
}
.global-about-us-component .card-item .title{
  margin-bottom: 10px;
  margin-top: 20px;
  height: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media (min-width: 1024px){
  .global-about-us-component .card-item .title{
    height: 48px;
  }
}
@media (min-width: 1280px){
  .global-about-us-component .card-item .title{
    margin-bottom: 10px;
    margin-top: 30px;
    height: 60px;
  }
}
@media (min-width: 1536px){
  .global-about-us-component .card-item .title{
    height: auto;
  }
}
.global-about-us-component .card-item .title {
  font-weight: 400 !important;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1441px) and (max-width: 1535px) {
  .global-about-us-component .card-item .title {
    height: auto;
  }
}
.global-about-us-component .card-item .text{
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 1024px){
  .global-about-us-component .card-item .text{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.global-about-us-component .card-item .text {
  color: #868886;
}

.global-blog-category-listing{
  padding-top: 60px;
  padding-bottom: 20px;
}

@media (min-width: 1024px){
  .global-blog-category-listing{
    padding-top: 80px;
  }
}

.global-blog-category-listing {
  border-top: 1px solid #e5e7eb;
  --journal-gutter: 15px;
}
.global-blog-category-listing .journal-section {
  scroll-margin-top: var(--journal-anchor-offset, 120px);
  position: relative;
}
.global-blog-category-listing .journal-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.global-blog-category-listing .journal-section__title{
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
  text-transform: capitalize;
}
@media (min-width: 1024px){
  .global-blog-category-listing .journal-section__title{
    font-size: 36px;
    line-height: 1.1;
  }
}
.global-blog-category-listing .journal-section__title {
  color: var(--text-primary-color);
}
.global-blog-category-listing .journal-section__cta{
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .global-blog-category-listing {
    --journal-gutter: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .global-blog-category-listing {
    --journal-gutter: 30px;
  }
}
.global-blog-category-listing .journal-section__swiper {
  position: relative;
  padding-bottom: 0.5rem;
}
.global-blog-category-listing .journal-section__swiper::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--journal-gutter));
  top: 0;
  bottom: 0;
  width: var(--journal-gutter);
  background: #fff;
  z-index: 1;
  pointer-events: none;
}
.global-blog-category-listing .journal-section__swiper .swiper-slide {
  height: auto;
}
.global-blog-category-listing .journal-section__nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
          box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  z-index: 2;
  color: #111827;
  cursor: pointer;
}
.global-blog-category-listing .journal-section__prev {
  left: -10px;
}
@media (min-width: 1024px) {
  .global-blog-category-listing .journal-section__prev {
    left: -18px;
  }
}
.global-blog-category-listing .journal-section__next {
  right: -10px;
}
@media (min-width: 1024px) {
  .global-blog-category-listing .journal-section__next {
    right: -18px;
  }
}
.global-blog-category-listing .journals-slider{
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 320px) and (max-width: 767px){
  .global-blog-category-listing .journals-slider{
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 320px) and (max-width: 1023px){
  .global-blog-category-listing .journals-slider{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.global-blog-category-listing .journals-slider .swiper-pagination {
  top: -30px;
  right: 0;
}
.global-blog-category-listing .journals-slider .swiper-pagination .swiper-pagination-bullet{
  margin-right: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .global-blog-category-listing .blog-slider__container .swiper-slide {
    width: 80% !important;
  }
}
.global-blog-category-listing .blog-slider .swiper-button-prev,
.global-blog-category-listing .blog-slider .swiper-button-next,
.global-blog-category-listing .journals-slider .swiper-button-prev,
.global-blog-category-listing .journals-slider .swiper-button-next {
  color: #111827;
}
.global-blog-category-listing .blog-slider .swiper-button-prev::after,
.global-blog-category-listing .blog-slider .swiper-button-next::after,
.global-blog-category-listing .journals-slider .swiper-button-prev::after,
.global-blog-category-listing .journals-slider .swiper-button-next::after {
  font-size: 1.5rem;
}
.global-blog-category-listing .blog-slider .swiper-slide img,
.global-blog-category-listing .journals-slider .swiper-slide img {
  max-height: 600px;
}
@media screen and (max-width: 768px) {
  .global-blog-category-listing .blog-slider .swiper-slide img,
  .global-blog-category-listing .journals-slider .swiper-slide img {
    height: 400px;
  }
}
.global-blog-category-listing .blog-slider .swiper-pagination-bullet-active,
.global-blog-category-listing .journals-slider .swiper-pagination-bullet-active {
  background: #9cc7ef;
}
.global-blog-category-listing .blog-slider .blog-slider-title,
.global-blog-category-listing .journals-slider .blog-slider-title {
  color: var(--text-primary-color);
}
.global-blog-category-listing .swiper-button-next,
.global-blog-category-listing .swiper-button-prev{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  width: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
          box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 320px) and (max-width: 767px){
  .global-blog-category-listing .swiper-button-next,
.global-blog-category-listing .swiper-button-prev{
    top: 40%;
  }
}
.global-blog-category-listing .swiper-button-next i,
.global-blog-category-listing .swiper-button-prev i{
  font-weight: 700;
  font-size: 15px;
}
.global-blog-category-listing .swiper-button-next::after,
.global-blog-category-listing .swiper-button-prev::after {
  content: "";
}
.global-blog-category-listing .blog-tabs__nav-item{
  cursor: pointer;
  background-color: transparent;
  white-space: nowrap;
}
.global-blog-category-listing .blog-pagination {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}
.global-blog-category-listing .blog-card-grid {
  gap: 2rem;
  grid-auto-rows: minmax(0, auto);
}
.global-blog-category-listing .blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}
.global-blog-category-listing .blog-card__media {
  display: block;
  overflow: hidden;
  border-radius: 50px;
}
.global-blog-category-listing .blog-card__media:hover .blog-card__image, .global-blog-category-listing .blog-card__media:focus-visible .blog-card__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.global-blog-category-listing .blog-card__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}
.global-blog-category-listing .blog-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .global-blog-category-listing .blog-card__meta span {
    letter-spacing: 0.2em;
  }
}
.global-blog-category-listing .blog-card__excerpt {
  color: #4b5563;
  line-height: 1.6;
}
.global-blog-category-listing .blog-card--feature {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  gap: 0;
}
.global-blog-category-listing .blog-card--feature .blog-card__media,
.global-blog-category-listing .blog-card--feature .blog-card__image {
  height: 100%;
}
.global-blog-category-listing .blog-card--feature .blog-card__body {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(19, 19, 19, 0.25)), to(rgba(19, 19, 19, 0.25)));
  background: linear-gradient(0deg, rgba(19, 19, 19, 0.25) 0%, rgba(19, 19, 19, 0.25) 100%);
  color: #fff;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.global-blog-category-listing .blog-card--feature .blog-card__meta span {
  color: rgba(255, 255, 255, 0.85);
}
.global-blog-category-listing .blog-card--feature .blog-card__title a {
  color: #fff;
}
.global-blog-category-listing .blog-card--feature .blog-card__excerpt {
  color: #fff;
}
.global-blog-category-listing .blog-card--feature .blog-line-title {
  height: auto;
  -webkit-line-clamp: unset;
}
@media screen and (min-width: 1024px) {
  .global-blog-category-listing .blog-card-grid {
    grid-auto-rows: minmax(320px, auto);
  }
  .global-blog-category-listing .blog-card:nth-child(3n) {
    grid-row: span 2;
    height: 96%;
  }
  .global-blog-category-listing .blog-card--feature .blog-card__body {
    padding: 2.5rem;
  }
  .global-blog-category-listing .blog-card--feature .blog-card__title{
    position: absolute;
    left: 0px;
    top: 50%;
    width: 100%;
    padding: 2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .global-blog-category-listing .blog-card--feature .blog-card__excerpt {
    display: -webkit-box !important;
    width: 50%;
    line-clamp: 4;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0;
  }
  .global-blog-category-listing .blog-card--feature .bottom-section{
    position: relative;
    padding-top: 10px;
  }
  .global-blog-category-listing .blog-card--feature .bottom-section::before {
    content: "";
    position: absolute;
    inset: 0px;
    height: 1px;
    background-color: #fff;
    left: -20px;
    right: -20px;
  }
  .global-blog-category-listing .blog-card--feature .blog-card__meta{
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

[data-page-action=Order-Confirm] .service-wrapper{
  display: none;
}

.global-reviews-component .global-reviews-swiper {
  padding-left: 20px !important;
  padding-right: 0 !important;
}
.global-reviews-component .global-reviews-swiper.swiper-container-horizontal > .global-reviews-scrollbar {
  position: relative;
  left: auto;
  bottom: auto;
  width: calc(100% - 40px);
  max-width: 380px;
  height: 6px;
  margin: 18px auto 0;
  background: #d9d9d9;
  border-radius: 9999px;
}
.global-reviews-component .global-reviews-swiper .swiper-scrollbar-drag {
  background-color: #e6e7e5;
  border-radius: 50px;
}
.global-reviews-component .global-reviews-swiper.swiper-container-horizontal > .global-reviews-scrollbar .swiper-scrollbar-drag {
  background: #b7b7b7;
  border-radius: 9999px;
}
.global-reviews-component .swiper-slide{
  padding: 20px;
}
@media (min-width: 1024px){
  .global-reviews-component .swiper-slide{
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 320px) and (max-width: 1023px){
  .global-reviews-component .swiper-slide{
    padding-left: 28px;
    padding-right: 28px;
  }
}
.global-reviews-component .swiper-slide {
  border-radius: 30px;
  background: #f6f4ef;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.global-reviews-component .global-reviews-post {
  text-align: center;
  width: 100%;
}

.article .quote-card {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
  background-color: #f9f9f9;
  padding: 24px;
}
.article .quote-card .quote-card__eyebrow {
  display: none;
}
.article .quote-card figcaption {
  font-weight: 300;
  font-size: 16px;
  color: #868886;
}
.article .quote-card blockquote {
  font-weight: 400;
  line-height: 1.5;
}

.hero .hero__image {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  max-height: 630px;
}

.maincontent .banner-content .tertiary-title{
  display: none;
}
.maincontent main {
  max-width: 1440px;
  padding: 40px 0px;
}
@media screen and (max-width: 768px) {
  .maincontent main {
    padding: 30px 0;
  }
}
.maincontent main .share{
  display: none;
}
.maincontent main .hero {
  display: none !important;
}
.maincontent main .related{
  position: relative;
  display: none;
}
@media (min-width: 320px) and (max-width: 767px){
  .maincontent main .related{
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.maincontent main .related {
  border-radius: 0;
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #f9f9f9;
}
.maincontent main .related .related__swiper{
  overflow: hidden;
}
.maincontent main .related .related__swiper .swiper-slide {
  height: auto;
}
.maincontent main .related .related__nav{
  position: absolute;
  top: 50%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  cursor: pointer;
}
.maincontent main .related .related__nav i {
  font-size: 16px;
}
.maincontent main .related .related__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.maincontent main .related .related__prev {
  left: 8px;
}
.maincontent main .related .related__next {
  right: 8px;
}
.maincontent main .related__header a{
  left: 50%;
}
@media (min-width: 320px) and (max-width: 767px){
  .maincontent main .related__header a{
    position: absolute;
    bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .maincontent main .related__header a {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.maincontent main .related__grid{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
}
.maincontent main .related__grid .card{
  background-color: transparent;
}
@media (min-width: 320px) and (max-width: 767px){
  .maincontent main .related__grid .card{
    width: 80%;
  }
}
.maincontent main .related__grid .card {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 1024px) {
  .maincontent main .related .related__nav {
    display: none;
  }
}
.maincontent main .blog-swiper-container{
  overflow: hidden;
}
.maincontent main .card {
  border-radius: 3px;
}
.maincontent main .share {
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 1680px) {
  .maincontent main .share {
    position: fixed;
    top: 60%;
    margin-left: -200px;
  }
}
.maincontent main .share button {
  width: 32px;
  height: 32px;
}
.maincontent main .share span {
  padding-left: 12px;
}
.maincontent main .share .share__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.maincontent .article-layout,
.maincontent .journal-container {
  position: relative;
}
.maincontent .article-layout .article-toc,
.maincontent .journal-container .article-toc {
  position: sticky;
  top: var(--article-toc-offset, 160px);
  padding-top: 50px;
}
.maincontent .article-layout .article-toc__list,
.maincontent .journal-container .article-toc__list{
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  padding: 0px;
}
.maincontent .article-layout .article-toc__link,
.maincontent .journal-container .article-toc__link{
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration-line: none;
  color: var(--text-secondary-color);
}
.maincontent .article-layout .article-toc__link.is-active, .maincontent .article-layout .article-toc__link:hover,
.maincontent .journal-container .article-toc__link.is-active,
.maincontent .journal-container .article-toc__link:hover {
  color: var(--text-primary-color);
  font-weight: 700;
}
.maincontent .article-layout .share__icons,
.maincontent .journal-container .share__icons {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 10px;
}
.maincontent .article-layout .share__icons a,
.maincontent .journal-container .share__icons a {
  font-size: 20px;
  margin-right: 10px;
  border: none;
  color: var(--text-primary-color);
}
.maincontent .article-layout .hero,
.maincontent .journal-container .hero{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.maincontent .article-layout article,
.maincontent .journal-container article {
  min-width: 0;
}
.maincontent .article-layout article h2,
.maincontent .journal-container article h2 {
  font-weight: normal;
}
.maincontent .article-layout article .article-footer,
.maincontent .journal-container article .article-footer{
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--text-primary-color);
}
.maincontent .article-layout article .article-footer span,
.maincontent .journal-container article .article-footer span {
  color: #868886;
}
.maincontent .journal-container .article-toc__list{
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .maincontent .article-layout.has-article-toc {
    display: block;
  }
  .maincontent .article-layout .article-toc {
    display: none;
  }
}

.hero .hero__text .hero__meta{
  padding-top: 10px;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
}

@media (min-width: 320px) and (max-width: 1023px){
  .hero .hero__text .hero__meta{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.hero .hero__text .hero__meta {
  border-top: 1px solid #e5e7eb;
  color: #282828;
}
.hero .hero__text .hero__meta span {
  color: #868886;
}
.hero .hero__text .hero__meta::after {
  display: none;
}
.hero .hero__text h1{
  text-transform: capitalize;
}
@media (min-width: 320px) and (max-width: 767px){
  .hero .hero__text h1{
    font-size: 32px;
  }
}
@media (min-width: 1024px){
  .hero .hero__image{
    border-radius: 0px;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .hero .hero__image{
    border-radius: 0.375rem;
  }
}
.hero .hero__image {
  max-height: 640px;
}

.hero__meta::after {
  display: none;
}

@media screen and (min-width: 1024px) {
  .journal-detail {
    width: calc(100vw - 380px);
  }
}
.journal-detail main {
  margin: 0;
}

.journal-container .article-layout{
  display: block;
}
.journal-container .article-toc__item{
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 320px) and (max-width: 1023px){
  .journal-container .article-toc__item{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.related-stories{
  position: relative;
}
.related-stories .card {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.related-stories .related__header a {
  color: var(--text-primary-color);
}
.related-stories .related__header a:hover {
  color: #fff;
}
.related-stories .related__next,
.related-stories .related__prev{
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  width: 40px;
  --tw-translate-y: -50%;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 320px) and (max-width: 1023px){
  .related-stories .related__next,
.related-stories .related__prev{
    display: none;
  }
}
.related-stories .related__next,
.related-stories .related__prev {
  z-index: 99;
}
.related-stories .related__next i,
.related-stories .related__prev i {
  font-weight: 600;
}
.related-stories .related__prev{
  left: 46px;
}
.related-stories .related__next{
  right: 60px;
}
.related-stories .swiper-button-disabled{
  display: none;
}
.related-stories .card img {
  height: auto;
}

.journal-subscribe{
  padding: 2rem;
  background-color: #9cc7ef;
  border-radius: 32px;
}
.journal-subscribe .none-bg {
  background: none !important;
  border-bottom: 1px solid var(--text-primary-color) !important;
  border-radius: 0 !important;
  max-width: 400px;
}
.journal-subscribe .opacity-btn {
  opacity: 0;
  position: absolute;
  right: -15px;
  font-size: 10px;
  width: 60px;
}
.journal-subscribe .footer-form-arrow {
  position: absolute;
  right: 0px;
  bottom: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 16px;
  font-weight: bold;
}

body {
  font-family: "EuclidSquare", Arial, Helvetica, sans-serif;
  color: var(--text-primary-color);
  background: #fff;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

a {
  color: #007aff;
}

.text-blue-1 {
  color: #007aff;
}

button {
  font-family: "EuclidSquare", Arial, Helvetica, sans-serif;
}

.button-primary, .button-red, .button-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary {
  font-family: "EuclidSquare", Arial, Helvetica, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-transform: uppercase;
  -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px){
  .button-primary, .button-red, .button-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary{
    height: 46px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 320px) and (max-width: 767px){
  .button-primary, .button-red, .button-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary{
    height: 2.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.button-primary, .button-red, .button-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary {
  border-radius: 30px;
  border: 1px solid var(--bg-primary-color);
  color: var(--text-primary-color);
  line-height: 1.1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button-primary:hover, .button-red:hover, .button-white:hover, .button-orange:hover, .button-orange-1:hover, .button-tertiary:hover, .button-secordary:hover {
  background-color: var(--bg-primary-color);
  color: #fff;
}

.button-secordary {
  background-color: var(--bg-primary-color);
  border: 1px solid var(--bg-primary-color);
  color: #fff;
}
.button-secordary:hover {
  border: 1px solid var(--bg-secondary-color);
}

.button-tertiary {
  background-color: var(--bg-dark-grey-color);
  color: #fff;
  font-weight: 600;
  border: none;
}
.button-tertiary:hover {
  background-color: var(--bg-tertiary-color);
}

.button-orange-1 {
  background-color: #a38359;
  color: #fff;
  border-color: #d1a66d;
}
.button-orange-1:hover {
  border-color: #a38359;
}

.button-orange {
  background-color: #e4ca94;
  color: #333;
}
.button-orange:hover {
  color: #fff;
}

.button-white {
  background-color: #fff;
  border: 1px solid transparent !important;
}
.button-white:hover {
  color: #fff;
  background-color: var(--bg-primary-color);
}

.button-red {
  background-color: #fff;
  border: 1px solid #d94c4c !important;
  font-weight: bold;
  color: #d94c4c;
}
.button-red:hover {
  color: #fff;
  background-color: #d94c4c;
}

.text-primary {
  color: var(--text-primary-color);
}

.text-secondary {
  color: var(--text-secondary-color);
}

.text-tertiary {
  color: var(--text-tertiary-color);
}

.text-error {
  color: var(--text-error-color);
}

.text-blue {
  color: var(--text-blue);
}

.text-orange {
  color: var(--text-orange-color);
}

.text-dark-blue {
  color: var(--text-dark-blue);
}

.bg-primary-color {
  background-color: var(--bg-primary-color);
}

.bg-secondary-color {
  background-color: var(--bg-secondary-color);
}

.bg-tertiary-color {
  background-color: var(--bg-tertiary-color);
}

.bg-grey-color {
  background-color: var(--bg-grey-color);
}

p {
  line-height: 1.5;
}

.border-top-DEDEDE {
  border-top: 1px solid #dedede;
}

.border-bottom-DEDEDE {
  border-bottom: 1px solid #dedede;
}

.phoneNumberbox .iti {
  position: relative;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.phoneNumberbox .tel-input-status {
  width: 100% !important;
  padding-right: 6px !important;
  margin-left: 0 !important;
  padding-left: 15px !important;
}
.phoneNumberbox .iti__dropdown-content.iti__hide,
.phoneNumberbox .iti__dropdown-content,
.phoneNumberbox .iti__selected-country-primary {
  display: none !important;
}
.phoneNumberbox .iti__country-container {
  border: none;
  border-bottom: 1px solid var(--bg-primary-color);
  background-color: transparent;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.phoneNumberbox .iti__country-container .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 300;
}
.phoneNumberbox button.iti__selected-country {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 0;
}

.iti--fullscreen-popup {
  display: none !important;
}

.add-to-cart-global:disabled,
.add-to-cart:disabled {
  background-color: #ccc !important;
  border-color: #999 !important;
}

.letter-space-1 {
  letter-spacing: -0.7px;
}

.klaviyo-form-box div[data-testid=form-row] {
  margin-top: 10px;
}
.klaviyo-form-box input {
  outline-width: 0 !important;
}
.klaviyo-form-box input[aria-invalid=true] {
  border: 1px solid var(--text-error-color) !important;
}
.klaviyo-form-box button.needsclick {
  padding-left: 30px !important;
  padding-right: 30px !important;
  font-size: 16px !important;
  font-weight: 700px !important;
  border-width: 0 !important;
  height: 50px !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick {
  font-family: "EuclidSquare", Arial, Helvetica, sans-serif !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-transform: uppercase;
  -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px){
  .klaviyo-form-box.footer-klaviyo-form button.needsclick{
    height: 46px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .klaviyo-form-box.footer-klaviyo-form button.needsclick{
    height: 2.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick {
  border-radius: 30px !important;
  border: 1px solid var(--bg-primary-color) !important;
  color: var(--text-primary-color) !important;
  line-height: 1.1 !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick:hover {
  background-color: var(--bg-primary-color) !important;
  color: #fff !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick {
  background-color: var(--bg-dark-grey-color) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border: none !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick:hover {
  background-color: var(--bg-tertiary-color) !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick {
  margin-left: -15px;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick:hover {
  border-width: 0 !important;
}
.klaviyo-form-box.footer-klaviyo-form input {
  border-bottom-left-radius: 10px !important;
}
.klaviyo-form-box.pop-up-klaviyo-form button.needsclick {
  font-family: "EuclidSquare", Arial, Helvetica, sans-serif !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-transform: uppercase;
  -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px){
  .klaviyo-form-box.pop-up-klaviyo-form button.needsclick{
    height: 46px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .klaviyo-form-box.pop-up-klaviyo-form button.needsclick{
    height: 2.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.klaviyo-form-box.pop-up-klaviyo-form button.needsclick {
  border-radius: 30px !important;
  border: 1px solid var(--bg-primary-color) !important;
  color: var(--text-primary-color) !important;
  line-height: 1.1 !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
.klaviyo-form-box.pop-up-klaviyo-form button.needsclick:hover {
  background-color: var(--bg-primary-color) !important;
  color: #fff !important;
}
.klaviyo-form-box.pop-up-klaviyo-form button.needsclick {
  background-color: var(--bg-primary-color) !important;
  border: 1px solid var(--bg-primary-color) !important;
  color: #fff !important;
}
.klaviyo-form-box.pop-up-klaviyo-form button.needsclick:hover {
  border: 1px solid var(--bg-secondary-color) !important;
}
.klaviyo-form-box input[name=email] {
  padding-right: 30px;
}
.klaviyo-form-box div[id^=rich-text-] p {
  font-family: "ProximaNova", "Arial Narrow", Arial, Helvetica, sans-serif !important;
  color: #e0fcd5 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
}

#chat-button {
  right: 0 !important;
}

body[data-page-action=Product-Show] #chat-button {
  bottom: 100px !important;
  right: 0 !important;
}
@media (max-width: 767.99px) {
  body[data-page-action=Product-Show] #chat-button {
    bottom: 150px !important;
  }
}

body.modal-open #chat-button,
body[data-modal=showOrderDetail] #chat-button,
body[data-modal=globalModal] #chat-button,
body[data-modal=action-modal] #chat-button {
  display: none;
}

@media (max-width: 767.99px) {
  body.checkout-page #chat-button {
    display: none;
  }
}

.toastbox {
  z-index: 9999;
  left: 50%;
  top: 10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: fixed;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
          box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

@media (min-width: 320px) and (max-width: 767px){
  .toastbox{
    top: 110px;
    width: 83.333333%;
  }
}

.i-message{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
}
.i-message.message-success {
  color: #32b6b9;
}
.i-message.message-error {
  color: var(--text-error-color);
}

.product-breadcrumb .breadcrumb-item:last-child {
  -ms-flex-negative: unset;
      flex-shrink: unset;
}
.product-breadcrumb .breadcrumb-item:last-child a {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
  width: 100%;
}
.product-breadcrumb a:hover {
  font-weight: 400;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 25px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #87ceeb;
}

input:checked + .slider:before {
  -webkit-transform: translateX(25px);
          transform: translateX(25px);
}
