@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 #ccc;
  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;
  cursor: pointer;
  -webkit-transition: all 0.2;
  transition: all 0.2;
}
.bootstrap-select > .dropdown-toggle:after {
  content: "\e96a";
  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;
  font-size: 12px;
  font-weight: bold;
}
.bootstrap-select.show > .dropdown-toggle::after {
  content: "\e96b";
}
.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 {
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 25px;
  width: 100%;
  margin-bottom: -3px;
  font-family: "Avenir";
  font-size: 16px;
}
.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;
  overflow-x: hidden;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(55, 39, 31, 0.2);
          box-shadow: 0px 4px 4px 0px rgba(55, 39, 31, 0.2);
  backdrop-filter: blur(5px);
}
.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 .filter-option-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.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;
}

.choose_country .dropdown-menu .inner::-webkit-scrollbar {
  height: 9px;
  width: 9px;
}
.choose_country .dropdown-menu .inner::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(157, 165, 183, 0.4);
}
.choose_country.show .dropdown-toggle {
  border-color: #bf5627;
}

.currencies .dropdown-toggle.disabled::after {
  display: none;
}

@-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 - 359px);
}

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: 112px;
  }
}

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: #f6dfa4;
}
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;
  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: 11px;
  }
}
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: "\e967";
}
header .header-nav .header-left .logo-img {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .header-nav nav.navbar {
  padding: 0 !important;
}
@media (min-width: 1024px) {
  header .header-nav .main-menu {
    max-height: inherit !important;
    min-height: inherit !important;
  }
}
header .header-nav .main-menu .nav-item {
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1060;
  font-family: "Hamilton";
}
header .header-nav .main-menu .nav-item > a {
  font-weight: 500;
}
header .header-nav .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;
  font-family: var(--font-secondary);
}
@media screen and (min-width: 1024px) {
  header .header-nav .main-menu .nav-item .nav-link:hover .text-darker-red {
    color: #bd9a5f;
  }
}
@media screen and (max-width: 767.9px) {
  header .header-nav .main-menu .nav-item .nav-link .expanded.text-darker-red {
    color: var(--text-secondary-color);
  }
}
@media (min-width: 1024px) {
  header .header-nav .main-menu .nav-item::before {
    display: inline-block;
    content: "";
    width: 100%;
    height: 0px;
    background: transparent;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: absolute;
    bottom: 5px;
  }
  header .header-nav .main-menu .nav-item:hover::before {
    border-bottom: 2px dashed #bd9a5f;
    -webkit-animation: opacity-0-to-1 0.2s;
    animation: opacity-0-to-1 0.2s;
  }
  header .header-nav .main-menu .nav-item:hover .icon-cheveron-down::before {
    content: "\e916";
  }
  header .header-nav .main-menu .nav-item:hover > ul.dropdown-menu {
    opacity: 1;
    z-index: 9;
    display: block;
  }
}
@media (max-width: 1023.9px) {
  header .header-nav .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 .main-menu.active {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1023.9px) {
  header .header-nav .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 #eee;
  }
  header .header-nav .main-menu.active .nav-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
  }
  header .header-nav .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 .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 .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;
    font-weight: 500;
    border-radius: 0;
    z-index: inherit;
  }
  header .header-nav .main-menu.active ul.dropdown-menu li {
    width: 100%;
    border: none !important;
  }
  header .header-nav .main-menu.active ul.dropdown-menu li > a {
    padding: 0;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  header .header-nav .main-menu.active .nav-item:not(.close) {
    margin-bottom: 10px;
  }
  header .header-nav .main-menu.active .nav-item:not(.close) > span.icon-cheveron-down {
    content: "\e916";
  }
  header .header-nav .main-menu.active .nav-item:not(.close) ul.dropdown-menu {
    display: block;
  }
}
header .header-nav 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 ul.dropdown-menu li {
  display: block;
}
header .header-nav 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 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-right-tool span[class^=icon-] {
  cursor: pointer;
}
@media (max-width: 1023.9px) {
  header .header-nav .navbar-header-right-tool span[class^=icon-]:not(.icon-shopping-cart) {
    font-size: 24px;
  }
}
header .header-nav .navbar-header-right-tool .search,
header .header-nav .navbar-header-right-tool .user:not(.user-logged) {
  display: block;
}
header .header-nav .navbar-header-right-tool .search span[class^=icon-],
header .header-nav .navbar-header-right-tool .user:not(.user-logged) span[class^=icon-] {
  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-right-tool .user-logged {
  position: relative;
}
header .header-nav .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-right-tool .user-logged > a {
    height: 50px;
  }
}
@media (min-width: 768px) {
  header .header-nav .navbar-header-right-tool .user-logged > a {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header .header-nav .navbar-header-right-tool .user-logged > ul.dropdown-menu {
  min-width: 150px;
  font-family: "Hamilton", Arial, Helvetica, sans-serif;
  font-size: 17px;
}
@media (min-width: 1024px) {
  header .header-nav .navbar-header-right-tool .user-logged:hover > ul.dropdown-menu {
    opacity: 1;
    z-index: 9;
    display: block;
  }
}
header .header-nav .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: var(--bg-primary-color);
  border-radius: 50px;
  height: 50px;
  width: auto;
  padding: 0 5px;
}
header .header-nav .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-right-tool .minicart .minicart-link .minicart-quantity {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--text-primary-color);
  font-weight: bold;
  font-family: var(--font-secondary);
}
@media (min-width: 768px) {
  header .header-nav .navbar-header-right-tool .minicart .minicart-link .minicart-quantity {
    width: 36px;
  }
}
header .header-nav .navbar-header-right-tool .user-logged .dropdown-toggle::after {
  display: none;
}
header .header-nav .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-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-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-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;
}

@media (min-width: 1024px){
  .arrow-icon{
    height: 1rem;
  }
}

.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;
}
@media screen and (max-width: 1023px) {
  .arrow-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.arrow-icon.expanded {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.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 {
  font-family: var(--font-secondary);
}
.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: 20px;
  color: var(--text-secondary-color);
}
@media (min-width: 768px) {
  .global-product-line-item .price .sales .value {
    font-size: 24px;
  }
}

.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: 450px;
  background: #fff;
}
body .minicartModal .cart.miniCart-empty .miniCart-empty-container {
  height: 100%;
  max-height: calc(100% - 290px);
}
body .minicartModal .cart .product-summary {
  height: 100%;
  max-height: calc(100% - 55px - 125px);
  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 .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: 10px 16px;
  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 !important;
  height: 100px !important;
  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;
  font-family: var(--font-secondary);
  color: #75391c;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0px;
}
.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;
  background: #fff;
  width: auto;
  border-bottom: 2px dashed rgb(185, 159, 94);
}
.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;
  font-weight: 700;
  -moz-appearance: textfield;
  font-family: "hamilton", sans-serif;
  font-size: 20px;
  color: var(--text-secondary-color);
}
.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: -webkit-gradient(linear, left top, right top, color-stop(18.21%, #f6dfa4), color-stop(290.43%, #bd9a5f));
  background: linear-gradient(90deg, #f6dfa4 18.21%, #bd9a5f 290.43%);
  padding-top: 4px;
  padding-bottom: 8px;
}
.cart-promotion-item + div.cart-promotion-item {
  margin-top: 10px;
}
.cart-promotion-item .free-total {
  color: var(--text-secondary-color);
}

button.swiper-button-next::after,
button.swiper-button-prev::after {
  display: none;
}

@media (min-width: 320px) and (max-width: 767px){
  .progress-bar{
    margin-top: 10px;
  }
}

.progress-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 12px;
  background: #bd9a5f;
  border-radius: 5px;
  overflow: hidden;
}

@media (min-width: 320px) and (max-width: 767px){
  .progress-bar{
    height: 0.5rem;
  }
}

.minicart-content .progress-bar {
  height: 10px;
  border: 0.5px solid #75391c;
}
.minicart-content .progress-bar div.reset-progress {
  left: 0;
  border: none;
}

.progress-bar .progress {
  width: 0;
  height: 100%;
  background: #bf5627;
  border-radius: 5px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.minicartModal .progress-bar .progress{
  position: relative;
  top: -1px;
  left: -2px;
  z-index: 10;
  height: 10px;
  border: 1px solid #75391c;
}

.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: 1024px){
  .page-footer .footer-top-column{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-footer {
    background: url(../images/mobile-footer.png) 0px -1.23px/100.052% 108.561% no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .page-footer {
    background: url(../images/footer-bg.png) 0px -1.23px/100.052% 108.561% no-repeat;
  }
}
.page-footer .menu-item{
  min-width: 90px;
  text-align: center;
  font-family: var(--font-secondary);
}
.page-footer .menu-item a{
  margin: 0px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px){
  .page-footer .menu-item a{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px){
  .page-footer .menu-item a{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .menu-item a{
    font-size: 26px;
  }
}
.page-footer .menu-item a {
  color: var(--text-tertiary-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;
}
.page-footer .copyright{
  --tw-text-opacity: 1;
  color: rgb(216 214 213 / var(--tw-text-opacity, 1));
}
@media (min-width: 768px){
  .page-footer .copyright{
    padding-top: 1rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .copyright{
    padding-top: 0.5rem;
  }
}
.page-footer .copyright a{
  display: inline-block;
  --tw-text-opacity: 1;
  color: rgb(216 214 213 / var(--tw-text-opacity, 1));
}
.page-footer .copyright p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .page-footer .copyright {
    color: #877d78;
    border-top: 1px solid #877d78;
    margin: 40px 15px;
  }
  .page-footer .copyright a {
    color: #877d78;
  }
}
.page-footer .mobile-line-left,
.page-footer .mobile-line-right{
  position: absolute;
  top: 0px;
  left: 1.5rem;
  height: 550px;
  width: 2px;
}
.maincontent .bg-natural-white-left > .page-footer .mobile-line-left,
.maincontent .bg-natural-white-right > .page-footer .mobile-line-left,.maincontent .bg-natural-white-left > 
.page-footer .mobile-line-right,
.maincontent .bg-natural-white-right > 
.page-footer .mobile-line-right {
  position: absolute;
}
.page-footer .mobile-line-left,
.page-footer .mobile-line-right {
  background: url(../../images/mobile-footer-line.png) no-repeat;
}
.page-footer .mobile-line-right{
  right: 1.5rem;
  left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-footer .footer-menu li.middle-part{
  padding-top: 2.25rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px){
  .page-footer .footer-menu li.middle-part{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px){
  .page-footer .footer-menu li.middle-part{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1280px){
  .page-footer .footer-menu li.middle-part{
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .page-footer .footer-menu li.middle-part{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.page-footer .footer-menu li.middle-part {
  border-left: 1px solid #e9e3e1;
  border-right: 1px solid #e9e3e1;
  min-width: 258px;
}
.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  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));
}
.maincontent .bg-natural-white-left.page-footer .i-phone:before,
.maincontent .bg-natural-white-right.page-footer .i-phone:before {
  background-color: #fff;
}
.page-footer .toggle-icon{
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px){
  .page-footer .toggle-icon{
    display: none;
  }
}
.page-footer .line-1 {
  background: url(../images/footer-line1.png) no-repeat;
  background-size: cover;
  height: 1px;
}
.page-footer .line-2 {
  background: url(../images/footer-line2.png) no-repeat;
  background-size: cover;
  height: 1px;
}

.button-close{
  position: absolute;
  top: 0px;
  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;
}

.maincontent .bg-natural-white-left > .button-close,
.maincontent .bg-natural-white-right > .button-close {
  position: absolute;
}

.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;
}

.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%);
}

#faq p {
  margin-bottom: 0;
}
#faq .imageText-component .text-container {
  padding-bottom: 0;
}
#faq .faq-item {
  padding-top: 0.5rem;
}

.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;
}

button.close {
  font-family: "Arial";
}

#recommendSite .close{
  display: none;
}

@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: #e0fcd5 !important;
  text-align: left;
}
.sfmc-subscribe-form .success-message {
  color: var(--text-secondary-color);
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 30px;
}

.swiper-container{
  position: relative;
}

@media (min-width: 320px){
  div.swiper-button-next,
div.swiper-button-prev{
    height: 50px;
    width: 50px;
  }
}

@media (min-width: 1024px){
  div.swiper-button-next,
div.swiper-button-prev{
    height: 70px;
    width: 70px;
  }
}

@media (min-width: 320px) and (max-width: 767px){
  div.swiper-button-next,
div.swiper-button-prev{
    display: none;
  }
}

div.swiper-button-next,
div.swiper-button-prev {
  top: calc(50% - 35px);
}
div.swiper-button-next::after,
div.swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .swiper-horizontal .swiper-slide {
    width: calc(100vw - 100px);
    max-width: 600px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.swiper-button-next {
  background: url(../../images/nextButton.png) no-repeat;
  background-size: contain;
  right: 0px;
}

.swiper-button-prev {
  background: url(../../images/prevButton.png) no-repeat;
  background-size: contain;
  left: 0px;
}

.swiper-pagination-bullet {
  margin-right: 8px;
  opacity: 1;
}

.swiper-pagination{
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.maincontent .bg-natural-white-left > .swiper-pagination,
.maincontent .bg-natural-white-right > .swiper-pagination {
  position: absolute;
}
.swiper-pagination .swiper-pagination-bullet{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  opacity: 1; /* 默认背景色 */
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--bg-primary-color);
}
.swiper-pagination .swiper-pagination-bullet {
  margin-right: 8px;
}

.swiper-pagination-bullet{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}

.swiper-pagination-bullet-active {
  background-color: var(--bg-primary-color);
}

.quantity-decrease{
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.625;
}

.maincontent .bg-natural-white-left.quantity-decrease:before,
.maincontent .bg-natural-white-right.quantity-decrease:before {
  background-color: #fff;
}

.quantity-decrease {
  border-top-left-radius: 8px;
  font-weight: 500;
}

.quantity-increase{
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.maincontent .bg-natural-white-left.quantity-increase:before,
.maincontent .bg-natural-white-right.quantity-increase:before {
  background-color: #fff;
}

.quantity-increase {
  border-top-right-radius: 8px;
}

.quantity-input{
  border-radius: 0px;
  text-align: center;
  font-weight: 700;
  border-bottom: none !important;
  color: var(--text-secondary-color) !important;
  font-family: Hamilton;
  font-size: 20px !important;
  background-color: #fff !important;
}

.quantity-control {
  border-bottom: 2px dashed #bd9a5f;
}

.quick-view-dialog{
  max-height: 70vh;
  min-height: 500px;
  max-width: 72rem;
}
.quick-view-dialog .swiper-slide{
  overflow: hidden;
}
.quick-view-dialog .modal-header {
  border-bottom: none;
}
@media (min-width: 320px) and (max-width: 767px){
  .quick-view-dialog .product{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.quick-view-dialog .product .sales .value{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
@media (min-width: 320px){
  .quick-view-dialog .product .sales .value{
    font-size: 22px;
  }
}
@media (min-width: 1024px){
  .quick-view-dialog .product .sales .value{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.quick-view-dialog .product .sales .value {
  font-family: Hamilton, Arial, Helvetica, sans-serif;
  color: var(--text-secondary-color);
}
.quick-view-dialog .product-name{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media (min-width: 320px){
  .quick-view-dialog .product-name{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px){
  .quick-view-dialog .product-name{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.quick-view-dialog .product-name {
  font-family: Hamilton, Arial, Helvetica, sans-serif;
}
.quick-view-dialog .spec-line{
  margin-top: 30px;
  height: 0.25rem;
  width: 100%;
  background: url(../../images/quickview-line.svg) no-repeat;
}
.quick-view-dialog .sales .value{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
@media (min-width: 1024px){
  .quick-view-dialog .sales .value{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .quick-view-dialog .sales .value{
    font-size: 28px;
  }
}
.quick-view-dialog .sales .value {
  font-family: Hamilton, Arial, Helvetica, sans-serif;
}
.quick-view-dialog #toDetailPage{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
@media (min-width: 320px) and (max-width: 767px){
  .quick-view-dialog #toDetailPage{
    font-size: 22px;
  }
}
.quick-view-dialog #toDetailPage {
  font-family: Hamilton, Arial, Helvetica, sans-serif;
}
.quick-view-dialog #totalPrice{
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 320px) and (max-width: 767px){
  .quick-view-dialog #totalPrice{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.quick-view-dialog #totalPrice {
  font-family: Hamilton, Arial, Helvetica, sans-serif;
  color: var(--text-secondary-color);
}
.quick-view-dialog .size-attribute{
  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;
  gap: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
@media (min-width: 768px){
  .quick-view-dialog .size-attribute{
    height: 65px;
    width: 131px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 320px) and (max-width: 767px){
  .quick-view-dialog .size-attribute{
    height: 50px;
    width: 100px;
    font-size: 22px;
  }
}
.quick-view-dialog .size-attribute {
  color: #333;
  font-family: Hamilton;
  background: url(../../images/button.png) no-repeat;
  background-size: contain;
}
.quick-view-dialog .size-attribute.selected {
  background: url(../../images/button-active.png) no-repeat;
  background-size: contain;
  color: #fff;
}
.quick-view-dialog .size-attribute.unselectable{
  position: relative;
  background: url(../../images/unselect-disabled.png) no-repeat;
  background-size: contain;
  cursor: default;
}
.quick-view-dialog .size-attribute.unselectable::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 30%;
  width: 54px;
  height: 58px;
  background: url(../../images/disable-line.png) no-repeat;
}
@media screen and (max-width: 767.99px) {
  .quick-view-dialog .size-attribute.unselectable::after {
    top: -16px;
    width: 36px;
  }
}
.quick-view-dialog .size-attribute.selected.unselectable {
  background: url(../../images/selected-disable.png) no-repeat;
  background-size: contain;
}
.quick-view-dialog .availability-msg {
  font-family: Hamilton, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 320px) and (max-width: 767px){
  .quick-view-dialog .availability-msg{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.quick-view-dialog .thumb-swiper img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.quick-view-dialog .free-shipping-icon {
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.quick-view-dialog .free-shipping-icon.show {
  opacity: 1;
  visibility: visible;
}
.quick-view-dialog .swiper-thumbs .swiper-slide-thumb-active img {
  border: 1px solid var(--text-dark-red);
  border-radius: 3px;
  overflow: hidden;
}
.quick-view-dialog .color-attribute{
  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;
  border-radius: 9999px;
  background-color: transparent;
  padding: 0.25rem;
  border: 1px solid #999;
}
.quick-view-dialog .color-attribute.selected {
  border-width: 2px;
  border-color: var(--bg-primary-color);
}
.quick-view-dialog .color-attribute span{
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 9999px;
}
.quick-view-dialog .qw-right{
  width: 100%;
  overflow-y: auto;
}
@media (min-width: 768px){
  .quick-view-dialog .qw-right{
    width: 50%;
    padding-left: 2rem;
  }
}
@media (min-width: 1024px){
  .quick-view-dialog .qw-right{
    max-height: 500px;
  }
}
@media (min-width: 1536px){
  .quick-view-dialog .qw-right{
    max-height: 600px;
  }
}

@media (min-width: 320px){
  .product-name{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px){
  .product-name{
    font-size: 3rem;
    line-height: 1;
  }
}

.product-name {
  color: var(--text-dark-red);
}

.modal div.quick-view-dialog {
  -webkit-transform: translateY(calc(-50% - 80px)) !important;
          transform: translateY(calc(-50% - 80px)) !important;
}

@media screen and (max-width: 768px) {
  .quick-view-dialog .modal-body {
    height: 62vh;
    overflow-y: auto;
  }
}
.font-hamilton {
  font-family: "Hamilton", Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.font-hamilton-bold {
  font-family: "Hamilton-Medium", Arial, Helvetica, sans-serif;
}

.font-avenir {
  font-family: "Avenir", Arial, Helvetica, sans-serif;
}

body {
  font-family: "Avenir", Arial, Helvetica, sans-serif;
  color: var(--text-primary-color);
  background: var(--bg-natural-color);
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}

button {
  font-family: "Hamilton";
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.button-base, .button-disabled, .button-secordary, .button-primary, .button-white, .button-orange, .button-orange-1, .button-primary-small{
  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));
  text-transform: uppercase;
  --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);
}

.maincontent .bg-natural-white-left.button-base:before,
.maincontent .bg-natural-white-right.button-base:before,.maincontent .bg-natural-white-left .button-disabled:before,
.maincontent .bg-natural-white-right .button-disabled:before,.maincontent .bg-natural-white-left .button-secordary:before,
.maincontent .bg-natural-white-right .button-secordary:before,.maincontent .bg-natural-white-left .button-primary:before,
.maincontent .bg-natural-white-right .button-primary:before,.maincontent .bg-natural-white-left .button-white:before,
.maincontent .bg-natural-white-right .button-white:before,.maincontent .bg-natural-white-left .button-orange:before,
.maincontent .bg-natural-white-right .button-orange:before,.maincontent .bg-natural-white-left .button-orange-1:before,
.maincontent .bg-natural-white-right .button-orange-1:before,.maincontent .bg-natural-white-left .button-primary-small:before,
.maincontent .bg-natural-white-right .button-primary-small:before {
  background-color: #fff;
}

@media (min-width: 768px){
  .button-base, .button-disabled, .button-secordary, .button-primary, .button-white, .button-orange, .button-orange-1, .button-primary-small{
    height: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 320px) and (max-width: 767px){
  .button-base, .button-disabled, .button-secordary, .button-primary, .button-white, .button-orange, .button-orange-1, .button-primary-small{
    height: 40px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.button-base, .button-disabled, .button-secordary, .button-primary, .button-white, .button-orange, .button-orange-1, .button-primary-small {
  border-radius: 50px;
  color: var(--text-primary-color);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Hamilton", Arial, Helvetica, sans-serif;
}

.button-primary, .button-white, .button-orange, .button-orange-1, .button-primary-small {
  background-color: #fff;
  border: 1px solid var(--text-secondary-color);
  color: var(--text-secondary-color);
  font-weight: 600;
  font-size: 24px;
}
.button-primary:hover, .button-white:hover, .button-orange:hover, .button-orange-1:hover, .button-primary-small:hover {
  background-color: #4c2210;
  color: #fff;
}
@media screen and (max-width: 767.99px) {
  .button-primary, .button-white, .button-orange, .button-orange-1, .button-primary-small {
    font-size: 18px;
  }
}

.text-orange-light {
  color: #4c2210;
}

.text-darker-red {
  color: var(--text-darker-red);
}

.button-primary-small {
  font-size: 16px;
  height: 32px;
  line-height: 32px;
}

.button-secordary {
  background-color: var(--text-secondary-color);
  color: #fff;
  font-weight: 600;
  border: none;
}

.button-disabled {
  background-color: #ccc;
  color: #fff;
  border: none;
  pointer-events: none;
}

.button-orange-1 {
  background-color: #bf5627;
  color: #fff;
  border-color: #d1a66d;
}
@media screen and (max-width: 767.99px) {
  @media (min-width: 320px) and (max-width: 767px){
    .button-orange-1{
      font-size: 1.25rem;
      line-height: 1.75rem;
    }
  }
}

.button-orange {
  background-color: #e4ca94;
  color: #333;
}
.button-orange:hover {
  color: #fff;
}

.button-white {
  background-color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767.99px) {
  .button-white {
    font-size: 22px;
  }
}

.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-orange {
  color: var(--text-orange-color);
}

.text-dark-red {
  color: var(--text-dark-red);
}

.text-blue {
  color: var(--text-blue-color);
}

.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);
}

.title-bg{
  display: inline-block;
  min-width: 230px;
  font-size: 80px;
  text-transform: uppercase;
}

@media (min-width: 320px) and (max-width: 767px){
  .title-bg{
    font-size: 50px;
  }
}

.title-bg {
  min-height: 99px;
  color: var(--text-dark-red);
  padding: 4px 0;
  font-family: "Hamilton", Arial, Helvetica, sans-serif;
}
.title-bg > span {
  position: relative;
  top: 15px;
}

.block-title{
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 320px){
  .block-title{
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 768px){
  .block-title{
    font-size: 3.75rem;
    line-height: 1;
  }
}

@media (min-width: 1280px){
  .block-title{
    font-size: 80px;
  }
}

.block-title {
  font-family: "Hamilton", Arial, Helvetica, sans-serif;
  color: #4c2210;
}

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;
}

.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 {
  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 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;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --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);
}

.maincontent .bg-natural-white-left.toastbox:before,
.maincontent .bg-natural-white-right.toastbox:before {
  background-color: #fff;
}

@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: 700;
}
.i-message.message-success {
  color: var(--text-primary-color);
}
.i-message.message-error {
  color: var(--text-error-color);
}

.custom-radio {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 16px;
}

.custom-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  margin: 0;
}

.radio-mark {
  position: absolute;
  left: 0;
  top: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #b4531b;
  border-radius: 50%;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.custom-radio input[type=radio]:checked + .radio-mark {
  border-width: 4px;
}

.product{
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1rem;
}

.maincontent .bg-natural-white-left.product:before,
.maincontent .bg-natural-white-right.product:before {
  background-color: #fff;
}

.product {
  border: 4px solid #f6dfa4;
  font-family: "Hamilton", Arial, Helvetica, sans-serif;
}

.maincontent {
  overflow: hidden;
}
.maincontent .bg-natural-white-left,
.maincontent .bg-natural-white-right {
  position: relative;
}
.maincontent .bg-natural-white-left:before,
.maincontent .bg-natural-white-right:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 200vw;
  height: 300vh;
  top: -100vh;
  background-color: var(--bg-natural-color);
}
.maincontent .bg-natural-white-left.tw-bg-white:before,
.maincontent .bg-natural-white-right.tw-bg-white:before {
  background-color: #fff;
}
.maincontent .bg-natural-white-left > *,
.maincontent .bg-natural-white-right > * {
  position: relative;
  z-index: 2;
}
.maincontent .bg-natural-white-left > .tw-absolute,
.maincontent .bg-natural-white-right > .tw-absolute {
  position: absolute;
}
@media (min-width: 1024px) {
  .maincontent .bg-natural-white-left {
    padding-right: 30px;
  }
  .maincontent .bg-natural-white-right {
    padding-left: 30px;
  }
}
@media (min-width: 1600px) {
  .maincontent .bg-natural-white-left {
    padding-right: 50px;
  }
  .maincontent .bg-natural-white-right {
    padding-left: 50px;
  }
}
@media (max-width: 1023px) {
  .maincontent .bg-natural-white-left {
    z-index: 2;
  }
  .maincontent .bg-natural-white-left:before {
    height: 100%;
    left: -50vw;
    top: 0;
  }
  .maincontent .bg-natural-white-left:not(tw-pb-0) {
    padding-bottom: 30px;
  }
  .maincontent .bg-natural-white-right:before {
    left: -50vw;
    top: 0;
  }
  .maincontent .bg-natural-white-right:not(tw-pt-0) {
    padding-top: 30px;
  }
  .maincontent .checkout-container .bg-natural-white-left,
  .maincontent .checkout-container .bg-natural-white-right {
    background: transparent !important;
    position: static;
  }
  .maincontent .checkout-container .bg-natural-white-left:before,
  .maincontent .checkout-container .bg-natural-white-right:before {
    display: none;
  }
}

.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%;
}
