@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: 1px solid #cfcfcf !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px !important;
  white-space: nowrap;
  font-size: 16px !important;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.2;
  transition: all 0.2;
}
.bootstrap-select > .dropdown-toggle:after {
  content: "\e915";
  display: block;
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  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 {
  content: "\e916";
}
.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;
}
.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: 6px;
  border: 1px solid #32b6b9;
  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 + li {
  border-top: 1px solid #f5f5f5;
}
.bootstrap-select .dropdown-menu li.active a, .bootstrap-select .dropdown-menu li:hover a {
  color: var(--text-secondary-color);
  -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;
}
.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;
}

.maincontent {
  min-height: calc(100vh - 116px - 380px);
}

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: 101px;
}
@media (min-width: 768px) {
  body {
    padding-top: 106px;
  }
}
@media (min-width: 1024px) {
  body {
    padding-top: 111px;
  }
}
@media (min-width: 1440px) {
  body {
    padding-top: 116px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
  font-size: 16px;
  border-bottom: 0.5px solid #f5f5f5;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(18, 18, 18, 0.1);
          box-shadow: 0px 1px 10px 0px rgba(18, 18, 18, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .header-banner {
  position: relative;
  z-index: 99;
  background: #02aba3;
  color: #fff;
}
header .header-banner > div.tw-container {
  position: relative;
}
header .header-banner .header-slide-swiper {
  height: 40px;
  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;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  height: 40px;
  overflow: hidden;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767.9px) {
  header .header-banner .header-slide-swiper .swiper-slide {
    letter-spacing: 0.01em;
    font-size: 12px;
  }
}
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 {
  border-radius: 5px;
  -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);
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  width: auto !important;
  max-width: 350px;
  min-width: 100px;
  color: var(--text-primary-color);
  background: #fff;
}
header .header-banner .header-top-tools .bootstrap-select .dropdown-menu .inner {
  border: 0;
}
@media (max-width: 992px) {
  header .header-banner .tw-container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  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;
  }
}
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 {
  content: "\e912";
}
header .header-nav .header-left .logo-img {
  width: auto;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  header .header-nav .header-left .logo-img {
    height: 45px;
  }
}
@media (min-width: 1440px) {
  header .header-nav .header-left .logo-img {
    height: 55px;
  }
}
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 {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1060;
}
header .header-nav .navbar-header .main-menu .nav-item > a {
  font-weight: 500;
}
header .header-nav .navbar-header .main-menu .nav-item .nav-link {
  white-space: nowrap;
  height: 50px;
  line-height: 50px;
  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;
}
@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: 5px;
  }
  header .header-nav .navbar-header .main-menu .nav-item:hover::before {
    background: #02aba3;
    -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 > ul.dropdown-menu {
    opacity: 1;
    z-index: 9;
    display: block;
  }
}
@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: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 1023.9px) and (max-width: 767.9px) {
  header .header-nav .navbar-header .main-menu.active {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1023.9px) {
  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:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item > a {
    height: 50px;
    line-height: 50px;
    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 ul.dropdown-menu {
    display: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    position: static;
    width: 100%;
    min-width: auto;
    max-width: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    z-index: inherit;
  }
  header .header-nav .navbar-header .main-menu.active ul.dropdown-menu li {
    width: 100%;
    border: none !important;
  }
  header .header-nav .navbar-header .main-menu.active ul.dropdown-menu li > a {
    padding: 0;
    height: 50px;
    line-height: 50px;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item:not(.close) {
    margin-bottom: 10px;
  }
  header .header-nav .navbar-header .main-menu.active .nav-item:not(.close) > span.icon-cheveron-down {
    content: "\e916";
  }
  header .header-nav .navbar-header .main-menu.active .nav-item:not(.close) ul.dropdown-menu {
    display: block;
  }
}
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%;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header ul.dropdown-menu li > a:hover {
    background: #d6f1f9;
    color: var(--text-secondary-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
header .header-nav .navbar-header ul.dropdown-menu li + li {
  border-top: 1px solid #f5f5f5;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .navbar-header-right-tool::before {
    content: "";
    display: block;
    height: 26px;
    width: 1px;
    background: #e5e1e1;
    opacity: 0.8;
  }
}
header .header-nav .navbar-header .navbar-header-right-tool span[class^=icon-] {
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 1023.9px) {
  header .header-nav .navbar-header .navbar-header-right-tool span[class^=icon-]:not(.icon-shopping-cart) {
    font-size: 24px;
  }
}
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 > ul.dropdown-menu {
  min-width: 150px;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header .navbar-header-right-tool .user-logged:hover > ul.dropdown-menu {
    opacity: 1;
    z-index: 9;
    display: block;
  }
}
header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link {
  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;
  position: relative;
  background: #02aba3;
  border-radius: 50px;
  height: 40px;
  width: auto;
  padding: 0 5px;
}
header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link span[class^=icon-] {
  position: relative;
  height: 30px;
  width: 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;
  border-radius: 100%;
  background: #fff;
}
header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link .minicart-quantity {
  width: 30px;
  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;
  color: #fff;
}
@media (min-width: 768px) {
  header .header-nav .navbar-header .navbar-header-right-tool .minicart .minicart-link .minicart-quantity {
    width: 36px;
  }
}
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;
}
header .globel-search {
  background-color: #f5f5f5;
  display: none;
  position: relative;
  height: auto;
}
header .globel-search.show {
  display: block;
}
@media (min-width: 1024px) {
  header .globel-search.show {
    -webkit-animation: popover-anim 0.5s;
            animation: popover-anim 0.5s;
  }
}
header .globel-search .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;
}
header .globel-search .modal-dialog .modal-content {
  background: transparent !important;
}
header .globel-search .site-search {
  height: auto;
  max-height: calc(100vh - 150px);
}
header .globel-search .site-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
}
header .globel-search .site-search .search-field {
  border: none !important;
  padding: 5px 10px !important;
  padding-left: 0 !important;
  background: transparent !important;
  width: 100% !important;
}
header .globel-search .site-search button.search-submit {
  border: none;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: static;
  background: transparent;
  padding: 0 !important;
  cursor: pointer;
}
header .globel-search .suggestions-wrapper {
  width: 100%;
  background-color: white;
  border-radius: 5px 5px 5px 5px;
}
header .globel-search .suggestions-wrapper:not(:empty) {
  margin-top: 20px;
}
header .globel-search .suggestions-wrapper .suggestions {
  position: static;
  width: 100%;
  border: none;
}
header .globel-search .suggestions-wrapper .suggestions > ul.container {
  padding: 30px 20px;
  max-height: calc(100vh - 200px);
}
header .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;
}
header .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;
}
header .globel-search .suggestions-wrapper .suggestions li + li.header {
  margin-top: 30px;
}
header .globel-search .suggestions-wrapper .suggestions .category-parent {
  color: #301714;
}
header .globel-search .suggestions-wrapper .suggestions .item {
  padding-top: 0;
  padding-bottom: 0;
}
header .globel-search .suggestions-wrapper .suggestions .item + .item {
  padding-top: 15px;
}
header .globel-search .suggestions-wrapper.active-spinner {
  display: block !important;
  min-height: 200px;
}
header .globel-search .search-product-list a {
  display: inline-block;
  width: 100%;
}
header .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;
}
header .globel-search .search-product-list a .product-img img {
  width: 100%;
  max-width: none;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}
header .globel-search .search-product-list a .name {
  display: inline-block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
}

.dropdown-menu {
  display: none; /* 默认隐藏 */
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.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;
}

.arrow-icon.expanded {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); /* 展开时旋转箭头 */
}

.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 del {
  color: var(--text-tertiary-color);
  margin-right: 8px;
}
.global-product-line-item .price del .value {
  font-size: 14px;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .global-product-line-item .price del .value {
    font-size: 18px;
  }
}
.global-product-line-item .price del + span.sales .value {
  font-size: 14px;
  color: var(--text-secondary-color);
  line-height: 1.1;
}
@media (min-width: 768px) {
  .global-product-line-item .price del + span.sales .value {
    font-size: 18px;
  }
}
.global-product-line-item .price .sales .value {
  font-size: 14px;
  color: var(--text-secondary-color);
}
@media (min-width: 768px) {
  .global-product-line-item .price .sales .value {
    font-size: 18px;
  }
}

.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;
}

body .minicartModal {
  overflow: hidden !important;
}
body .minicartModal.show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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 .modal-dialog {
  position: static;
  -webkit-transform: none !important;
          transform: none !important;
  margin: 0 !important;
}
body .minicartModal .modal-dialog,
body .minicartModal .modal-content,
body .minicartModal .cart {
  height: 100% !important;
  width: 100% !important;
  max-width: 500px;
  background: #fff;
}
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 .global-product-line-item del {
  display: none !important;
}
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 {
  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: 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.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 rgba(204, 204, 204, 0.5);
}
.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 .product-name {
  width: 100%;
  line-height: 1.1;
  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: 4px;
  border: 1px solid #eeefed;
  background: #fff;
  -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);
  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;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}
.global-product-line-item .line-item-quantity .icon-button.disabled {
  cursor: default;
  color: #999999 !important;
}
.global-product-line-item .line-item-quantity .icon-button:hover {
  color: var(--text-secondary-color);
}
.global-product-line-item .line-item-quantity .quantity {
  border: none !important;
  width: 60px;
  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-left: 1px solid #eeefed !important;
  border-right: 1px solid #eeefed !important;
  font-weight: 700;
  -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 {
  font-weight: 600;
  color: #000;
}
.global-product-line-item .remove-product {
  white-space: nowrap;
}

.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%;
  background: #9efce1;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cart-promotion-item + div.cart-promotion-item {
  margin-top: 10px;
}

.page-footer{
  padding-top: 3rem;
  padding-bottom: 3rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.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: 40%;
  }
}
.page-footer .rightColumn{
  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 .rightColumn{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px){
  .page-footer .rightColumn{
    width: 60%;
  }
}
.page-footer .rightColumn .menu-item{
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 1024px){
  .page-footer .rightColumn .menu-item{
    margin-bottom: 0px;
    width: 33.333333%;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .rightColumn .menu-item{
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px){
  .page-footer .rightColumn .menu-item:first-child{
    width: 25%;
  }
}
.page-footer .rightColumn .menu-item:last-child{
  margin-bottom: 0px;
}
.page-footer .rightColumn .menu-item h3{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .rightColumn .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;
    border-bottom-width: 1px;
    padding-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.page-footer .rightColumn .menu-item a{
  margin-top: 0.75rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.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;
}
.page-footer .copyright{
  padding-top: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
  .page-footer .copyright{
    border-top-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  }
}
.page-footer .copyright a{
  display: inline-block;
}
.page-footer .copyright p {
  margin: 0;
}
.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: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.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: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px){
  .page-footer .toggle-icon{
    display: 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 {
  width: 8px;
}

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

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

.container-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

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

#homepage {
  background: url(../images/Kava2.jpg) no-repeat left 100vh;
}

.about-merge-module {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(178, 235, 216, 0.3)), to(#fff));
  background: linear-gradient(180deg, rgba(178, 235, 216, 0.3) 0%, #fff 100%);
}

[data-module-id=module-multi-1] .overlay {
  background: linear-gradient(208deg, rgba(217, 217, 217, 0) 2.15%, rgba(51, 51, 51, 0.6) 51.76%) !important;
}
[data-module-id=module-multi-1] img {
  border-radius: 0 80px;
}

[data-module-id=module-home-banner] {
  background-color: #fff;
}

[data-module-id=module-glossary] .banner-component .overlay {
  background: linear-gradient(104deg, rgba(214, 241, 249, 0.65) 1.21%, rgba(50, 182, 185, 0.65) 28.62%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
@media screen and (max-width: 640px) {
  [data-module-id=module-glossary] .banner-component .subTitle {
    font-size: 18px !important;
  }
}

[data-module-id=sustainable-layout] .image-container {
  max-width: 500px;
  text-align: left;
}
[data-module-id=sustainable-layout] .text-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

[data-module-id=module-imageText-1] .banner-component {
  min-height: 256px;
  max-width: 1380px !important;
}
[data-module-id=module-imageText-1] .overlay {
  background: linear-gradient(104deg, rgba(214, 241, 249, 0.45) 1.21%, rgba(50, 182, 185, 0.45) 28.62%), linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
}

[data-module-id=module-impact-banner] .banner-component .overlay {
  background: linear-gradient(104deg, rgba(214, 241, 249, 0.65) 1.21%, rgba(50, 182, 185, 0.65) 28.62%);
}

[data-module-id=module-faq-banner] .banner-component .overlay {
  background: linear-gradient(104deg, rgba(214, 241, 249, 0.45) 1.21%, rgba(50, 182, 185, 0.45) 28.62%);
}

[data-module-id=kava-component_background] .text-banner-title p {
  text-align: left;
  padding-left: 24px;
}

#faq p {
  margin-bottom: 0;
}
#faq .imageText-component .text-container {
  padding-bottom: 0;
}
#faq .faq-item {
  padding-top: 0.5rem;
}

.banner-title,
.module-title,
.text-banner-title {
  font-family: DinCondensed, "Arial Narrow", Arial, Helvetica, sans-serif;
  letter-spacing: -0.7px;
}

.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;
}

#homepage .experience-dynamic-productCarouselComponent {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(214, 241, 249, 0.3)), to(#fff));
  background: linear-gradient(180deg, rgba(214, 241, 249, 0.3) 0%, #fff 100%);
}
#homepage .review-list-component {
  padding-top: 40px;
  background: none;
}
#homepage .product-carousel-component .product-tile-pd{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
#homepage .experience-commerce_assets-reviewListComponent {
  background: rgba(214, 241, 249, 0.3);
}
#homepage .experience-commerce_assets-simpleCards {
  background: none;
}
#homepage .banner-carousel-component .banner-title{
  font-size: 3.75rem;
  line-height: 1;
}
@media (min-width: 320px) and (max-width: 767px){
  #homepage .banner-carousel-component .banner-title{
    font-size: 40px;
  }
  #homepage .banner-carousel-component .banner-description{
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

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

@media (min-width: 320px) and (max-width: 767px){
  #kavaglossary .imageText-component .text-banner-title h4{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

textarea#description {
  font-family: "ProximaNova";
}

@media screen and (max-width: 768px) {
  #homepage {
    background: url(../images/Kava2.jpg) no-repeat left 70vh;
  }
  #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: 320px) and (max-width: 380px) {
  #homepage {
    background: url(../images/Kava2.jpg) no-repeat left 100vh;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  #homepage {
    background: url(../images/Kava2.jpg) no-repeat left 60vh;
  }
  #newsletterModal .modal-dialog {
    top: 45%;
    max-width: 370px !important;
  }
}
@media screen and (min-width: 1280px) {
  .header-slide-swiper .swiper-slide {
    padding-left: 80px;
  }
}
@media screen and (min-width: 1024px) {
  #homepage .productFeature-component {
    padding: 20px 0;
  }
}
.font-dincondensed {
  font-family: DinCondensed, "Arial Narrow", Arial, Helvetica, sans-serif;
  letter-spacing: -0.7px;
}

body {
  font-family: "ProximaNova", "Arial Narrow", Arial, Helvetica, sans-serif;
  color: var(--text-primary-color);
  background: #fff;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}

button {
  font-family: "ProximaNova";
}

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

.button-primary, .button-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary{
  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;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 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);
  -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-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-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-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary{
    height: 50px;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 320px) and (max-width: 767px){
  .button-primary, .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-white, .button-orange, .button-orange-1, .button-tertiary, .button-secordary {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
          box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
  border-radius: 0 10px;
  color: var(--text-primary-color);
  line-height: 1.1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.button-primary:hover, .button-white:hover, .button-orange:hover, .button-orange-1:hover, .button-tertiary:hover, .button-secordary:hover, .button-primary.active, .active.button-white, .active.button-orange, .active.button-orange-1, .active.button-tertiary, .active.button-secordary {
  border: 2px solid var(--bg-primary-color);
}

.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-secondary-color);
  color: var(--text-secondary-color);
  font-weight: 600;
  border: none;
}
.button-tertiary:hover {
  border: 2px solid var(--bg-primary-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 var(--bg-primary-color) !important;
  font-weight: bold;
}
.button-white:hover {
  color: #fff;
  background-color: var(--bg-primary-color);
}

.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-1 {
  color: #003ad0;
}

.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-seconday-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: 1px solid #ccc;
  background-color: #f8f7f6;
  height: 50px;
  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: 100px;
  border-radius: 6px;
}
.phoneNumberbox .iti__country-container .iti__selected-dial-code {
  font-size: 16px;
  font-weight: 700;
}
.phoneNumberbox button.iti__selected-country {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.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{
  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;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 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);
  -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-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-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: 50px;
    padding-left: 2rem;
    padding-right: 2rem;
    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 {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08) !important;
          box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08) !important;
  border-radius: 0 10px !important;
  color: var(--text-primary-color) !important;
  line-height: 1.1 !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick:hover, .active.klaviyo-form-box.footer-klaviyo-form button.needsclick {
  border: 2px solid var(--bg-primary-color) !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick {
  background-color: var(--bg-secondary-color) !important;
  color: var(--text-secondary-color) !important;
  font-weight: 600 !important;
  border: none !important;
}
.klaviyo-form-box.footer-klaviyo-form button.needsclick:hover {
  border: 2px solid var(--bg-primary-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{
  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;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 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);
  -webkit-transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-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-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: 50px;
    padding-left: 2rem;
    padding-right: 2rem;
    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 {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08) !important;
          box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08) !important;
  border-radius: 0 10px !important;
  color: var(--text-primary-color) !important;
  line-height: 1.1 !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}
.klaviyo-form-box.pop-up-klaviyo-form button.needsclick:hover, .active.klaviyo-form-box.pop-up-klaviyo-form button.needsclick {
  border: 2px solid var(--bg-primary-color) !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 {
  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));
}

.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%;
}
