/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
@keyframes ox-modal-close-slideout-left {
  from {
    -webkit-transform: none;
    transform: none;
  }
  to {
    -webkit-transform: translateX(-570px);
    transform: translateX(-570px);
  }
}
@keyframes ox-modal-close-slideout-right {
  from {
    -webkit-transform: none;
    transform: none;
  }
  to {
    -webkit-transform: translateX(570px);
    transform: translateX(570px);
  }
}
@keyframes ox-modal-close-slideout-top {
  from {
    -webkit-transform: none;
    transform: none;
  }
  to {
    -webkit-transform: translateY(-300px);
    transform: translateY(-300px);
  }
}
@keyframes ox-modal-active-slideout {
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes ox-modal-close-dd {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes ox-modal-active-dd {
  to {
    opacity: 1;
  }
}
@keyframes ox-modal-active-overlay {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ox-modal-close-overlay {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes ox-modal-active-modal {
  to {
    opacity: 1;
  }
}
@keyframes ox-modal-close-modal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 880;
  overflow: hidden;
  opacity: 0;
  display: flex;
  background: none;
  align-items: center;
  justify-content: center;
}
.ox-modal > div,
.ox-modal .ox-modal-content {
  background-color: #ffffff;
  width: 960px;
  height: 550px;
  overflow: hidden;
  max-height: 100vh;
  box-shadow: 0px 5px 30px -5px rgba(0, 0, 0, 0.11);
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.ox-modal.ox-modal-active {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  animation: ox-modal-active-modal 0.5s;
  animation-fill-mode: forwards;
}
.ox-modal.ox-modal-active > div,
.ox-modal.ox-modal-active .ox-modal-content {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.5s;
  transition: transform 0.5s;
}
.ox-modal.ox-modal-close {
  animation: ox-modal-close-modal 0.3s;
  animation-fill-mode: forwards;
}
/* fix quickview scroll focus ios */
.touch .ox-modal #ox_quickview_wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
/* Slideouts */
.ox-slideout {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  z-index: 890;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: none;
  touch-action: manipulation;
}
.ox-slideout > div,
.ox-slideout .ox-modal-content {
  height: 100%;
  margin: 0;
  overflow-y: auto;
}
.ox-slideout .minicart-items-wrapper {
  height: auto !important;
  overflow-x: unset;
}
.ox-slideout .header__item-dropdown-content .block-compare,
.ox-slideout .header__item-dropdown-content .block-wishlist,
.ox-slideout .block-quotecart #quotecart-content-wrapper,
.ox-slideout .block-minicart #minicart-content-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ox-slideout .block-account > .block-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: translateZ(0);
}
.ox-slideout .block-compare .block-content,
.ox-slideout .block-wishlist .block-content,
.ox-slideout .block-minicart .block-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: translateZ(0);
}
.ox-slideout .block-compare .dropdown-bottom-wrapper,
.ox-slideout .block-wishlist .dropdown-bottom-wrapper,
.ox-slideout .block-minicart .dropdown-bottom-wrapper {
  display: block;
  flex: 1 1 auto;
}
/*
    .ox-slideout--animation-3d{
        perspective: 1300px;
        .ox-slideout-right {
            -webkit-transform: translateZ(100px) translateX(100%) rotateY(-90deg);
            transform: translateZ(100px) translateX(100%) rotateY(-90deg);
            -webkit-transform-origin: right;
            transform-origin: right;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }
    }*/
.minicart--style-modern .ox-slideout-left,
.minicart--style-modern .ox-slideout-right {
  max-width: 570px;
  width: 100%;
  padding: 0;
}
.minicart--style-modern.ox-slideout-right {
  padding-right: 0;
  -webkit-transform: translateX(570px);
  transform: translateX(570px);
}
.minicart--style-modern .ox-slideout-left {
  left: 0;
  -webkit-transform: translateX(-570px);
  transform: translateX(-570px);
}
.ox-slideout-right {
  right: 0;
  -webkit-transform: translateX(450px);
  transform: translateX(450px);
}
.ox-slideout-right.ox-slideout-close {
  animation: ox-modal-close-slideout-right 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0.51, 0.12, 1);
}
.ox-slideout-left {
  left: 0;
  -webkit-transform: translateX(-450px);
  transform: translateX(-450px);
}
.ox-slideout-top {
  width: 100%;
  max-width: 100%;
  height: 300px;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
}
.ox-slideout-top.ox-slideout-close {
  animation: ox-modal-close-slideout-top 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0.51, 0.12, 1);
}
.ox-slideout-active {
  animation: ox-modal-active-slideout 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0.51, 0.12, 1);
}
.ox-slideout-close {
  animation: ox-modal-close-slideout-left 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0.51, 0.12, 1);
}
.ox-modal-overlay,
.ox-slideout-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  z-index: 879;
  transition: .3s opacity,.4s visibility;
  -webkit-transition: .3s opacity,.4s visibility;
  will-change: opacity, visibility;
}
.ox-fixed-slideout .ox-modal-overlay,
.ox-fixed-modal .ox-modal-overlay,
.ox-fixed-slideout .ox-slideout-shadow,
.ox-fixed-modal .ox-slideout-shadow {
  opacity: .8;
  visibility: visible;
}
.ox-fixed-overlay .ox-modal-overlay,
.ox-fixed-overlay .ox-slideout-shadow {
  display: none !important;
}
.ox-fixed {
  width: 100%;
  height: 100%;
}
.ox-fixed-slideout-right {
  overflow-y: hidden;
}
.ox-overlay {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 880;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  overflow-y: hidden;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
.ox-overlay > div,
.ox-overlay .ox-modal-content {
  height: 100%;
  margin: 0;
  overflow-y: auto;
}
.ox-overlay.ox-overlay-active {
  visibility: visible;
  animation: ox-modal-active-overlay 0.5s;
  animation-fill-mode: forwards;
}
.ox-overlay.ox-overlay-close {
  animation: ox-modal-close-overlay 0.5s;
  animation-fill-mode: forwards;
}
/* close button */
.ox-overlay-close-btn {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  z-index: 90;
  transition: transform .3s ease .3s;
  transition-property: transform, -webkit-transform, opacity;
}
.ox-overlay-close-btn span {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}
.ox-overlay-close-btn span:before,
.ox-overlay-close-btn span:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: #000000;
  transform-origin: 50% 50%;
  opacity: 1;
  -moz-transition: -moz-transform ease 0.3s;
  -webkit-transition: -webkit-transform ease 0.3s;
  -o-transition: -o-transform ease 0.3s;
  -ms-transition: -ms-transform ease 0.3s;
  transition: transform ease 0.3s;
}
.ox-overlay-close-btn span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ox-overlay-close-btn span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#ox_quickview_wrapper .ox-overlay-close-btn {
  width: 40px;
  height: 40px;
  background: #000000;
  transition: background .3s ease;
}
#ox_quickview_wrapper .ox-overlay-close-btn span {
  vertical-align: unset;
}
#ox_quickview_wrapper .ox-overlay-close-btn span:before,
#ox_quickview_wrapper .ox-overlay-close-btn span:after {
  background: #ffffff;
}
#ox_quickview_wrapper .ox-overlay-close-btn:hover {
  background: #ffe51e;
}
#ox_quickview_wrapper .ox-overlay-close-btn:hover span:before,
#ox_quickview_wrapper .ox-overlay-close-btn:hover span:after {
  background: #000000;
}
.no-touch .ox-overlay-close-btn:hover span:before,
.no-touch .ox-overlay-close-btn:hover span:after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
@media (max-width: 959px) {
  .quickview-mobile--hide .product-item .ox-quickview-button,
  .quickview-mobile--hide .product-item .button.ox-quickview-button,
  .quickview-mobile--hide .product-item .button.quick-view {
    display: none !important;
  }
  .ox-modal > div,
  .ox-modal .ox-modal-content {
    width: 90%;
    height: 90%;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view,
  body.ox_quickview-catalog_product-view.catalog-product-view {
    overflow: auto !important;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .athlete2_product_info__wrapper,
  body.ox_quickview-catalog_product-view.catalog-product-view .athlete2_product_info__wrapper,
  body.ox-quickview-catalog-product-view.catalog-product-view .column.main,
  body.ox_quickview-catalog_product-view.catalog-product-view .column.main {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product-info-main,
  body.ox_quickview-catalog_product-view.catalog-product-view .product-info-main,
  body.ox-quickview-catalog-product-view.catalog-product-view .product.media,
  body.ox_quickview-catalog_product-view.catalog-product-view .product.media {
    width: 100%;
    overflow: hidden;
    height: auto;
    margin-bottom: 0;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product-info-main #ox-zoom-cursor,
  body.ox_quickview-catalog_product-view.catalog-product-view .product-info-main #ox-zoom-cursor,
  body.ox-quickview-catalog-product-view.catalog-product-view .product.media #ox-zoom-cursor,
  body.ox_quickview-catalog_product-view.catalog-product-view .product.media #ox-zoom-cursor {
    display: none !important;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product.media,
  body.ox_quickview-catalog_product-view.catalog-product-view .product.media {
    padding: 30px 30px 0;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product-info-main,
  body.ox_quickview-catalog_product-view.catalog-product-view .product-info-main {
    padding: 50px 40px 0;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form-discount .g-recaptcha {
  margin-top: 50px !important;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.login-container .g-recaptcha,
.form-login .g-recaptcha,
.form-edit-account .g-recaptcha {
  margin-bottom: 10px !important;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.required-captcha.checkbox {
  position: absolute;
  display: block;
  visibility: visible;
  overflow: hidden;
  opacity: 0;
  width: 1px;
  height: 1px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.block.newsletter .field-recaptcha .field .control:before {
  content: none;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.review-form .field-recaptcha {
  margin-bottom: 10px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form.send.friend .g-recaptcha {
  margin-top: 40px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form.wishlist.share .g-recaptcha {
  margin-bottom: 40px;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap {
  display: inline-block;
  position: relative;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap .admin__action-dropdown-text:after {
  left: -6px;
  right: 0;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap .admin__action-dropdown-menu {
  left: auto;
  right: 0;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap.active .admin__action-dropdown,
.aw-helpdesk2-listing .admin__action-dropdown-wrap._active .admin__action-dropdown {
  border-color: #007bdb;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap.active .admin__action-dropdown-text:after,
.aw-helpdesk2-listing .admin__action-dropdown-wrap._active .admin__action-dropdown-text:after {
  background-color: #ffffff;
  content: '';
  height: 6px;
  position: absolute;
  top: 100%;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap.active .admin__action-dropdown-menu,
.aw-helpdesk2-listing .admin__action-dropdown-wrap._active .admin__action-dropdown-menu {
  display: block;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap._disabled .admin__action-dropdown {
  cursor: default;
}
.aw-helpdesk2-listing .admin__action-dropdown-wrap._disabled:hover .admin__action-dropdown {
  color: #333333;
}
.aw-helpdesk2-listing .admin__action-dropdown {
  background-color: #ffffff;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
  color: #41362f;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -.025em;
  padding: 0.7rem 3.3rem 0.8rem 1.5rem;
  position: relative;
  vertical-align: baseline;
  z-index: 2;
}
.aw-helpdesk2-listing .admin__action-dropdown:hover,
.aw-helpdesk2-listing .admin__action-dropdown:focus {
  background-color: #ffffff;
  color: #060504;
  text-decoration: none;
}
.aw-helpdesk2-listing .admin__action-dropdown:after {
  right: 1.5rem;
}
.aw-helpdesk2-listing .admin__action-dropdown:before {
  margin-right: 1rem;
}
.aw-helpdesk2-listing .admin__action-dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #007bdb;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  display: none;
  line-height: 1.36;
  margin-top: -1px;
  min-width: 120%;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 100%;
  transition: all 0.15s ease;
  z-index: 1;
}
.aw-helpdesk2-listing .admin__action-dropdown-menu > li {
  display: block;
}
.aw-helpdesk2-listing .admin__action-dropdown-menu > li > a {
  color: #333333;
  display: block;
  text-decoration: none;
  padding: 0.6rem 0.5rem;
}
.aw-helpdesk2-listing .selectmenu {
  display: inline-block;
  position: relative;
  text-align: left;
  width: auto;
  border: 1px solid #adadad;
  z-index: 1;
  -webkit-appearance: none;
  background-color: #ffffff;
  border-radius: 1px;
  box-shadow: none;
  color: #303030;
  font-size: 1.4rem;
  font-weight: 400;
  height: auto;
  line-height: 1.36;
  transition: border-color 0.1s linear;
  vertical-align: baseline;
}
.aw-helpdesk2-listing .selectmenu:hover {
  border-color: #878787;
}
.aw-helpdesk2-listing .selectmenu:hover .selectmenu-toggle:before {
  border-color: #878787;
}
.aw-helpdesk2-listing .selectmenu._active {
  border-color: #007bdb;
  z-index: 500;
}
.aw-helpdesk2-listing .selectmenu._active .selectmenu-toggle:after {
  transform: rotate(180deg);
}
.aw-helpdesk2-listing .selectmenu .action-save,
.aw-helpdesk2-listing .selectmenu .action-edit,
.aw-helpdesk2-listing .selectmenu .action-delete {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0 1rem 0 1rem;
}
.aw-helpdesk2-listing .selectmenu .action-save:hover,
.aw-helpdesk2-listing .selectmenu .action-edit:hover,
.aw-helpdesk2-listing .selectmenu .action-delete:hover {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}
.aw-helpdesk2-listing .selectmenu .action-save:before,
.aw-helpdesk2-listing .selectmenu .action-edit:before,
.aw-helpdesk2-listing .selectmenu .action-delete:before {
  content: url('../Aheadworks_Helpdesk2/svg/trash-solid.svg');
  font-family: 'luma-icons';
  display: block;
  min-width: 12px;
}
.aw-helpdesk2-listing .selectmenu .action-edit,
.aw-helpdesk2-listing .selectmenu .action-delete {
  border: 0 solid #ffffff;
  border-left-width: 1px;
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.aw-helpdesk2-listing .selectmenu .action-edit:hover,
.aw-helpdesk2-listing .selectmenu .action-delete:hover {
  border: 0 solid #ffffff;
  border-left-width: 1px;
}
.aw-helpdesk2-listing .selectmenu .action-save:before {
  content: url('../Aheadworks_Helpdesk2/svg/right-arrow.svg');
  font-family: 'luma-icons';
  display: block;
  min-width: 12px;
}
.aw-helpdesk2-listing .selectmenu .action-edit:before {
  content: url('../Aheadworks_Helpdesk2/svg/pencil-solid.svg');
  font-family: 'luma-icons';
  display: block;
  min-width: 12px;
}
.aw-helpdesk2-listing .selectmenu button:not(.primary) {
  box-shadow: none;
}
.aw-helpdesk2-listing .selectmenu-value {
  display: inline-block;
}
.aw-helpdesk2-listing .selectmenu-value input[type='text'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  display: inline;
  margin: 0;
  width: 8rem;
}
body._keyfocus .aw-helpdesk2-listing .selectmenu-value input[type='text']:focus {
  box-shadow: none;
}
.aw-helpdesk2-listing .selectmenu-toggle {
  padding-right: 1.8rem;
  background: transparent;
  border: none !important;
  bottom: 0;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}
.aw-helpdesk2-listing .selectmenu-toggle:focus,
.aw-helpdesk2-listing .selectmenu-toggle:active,
.aw-helpdesk2-listing .selectmenu-toggle:hover {
  background: transparent;
}
.selectmenu._active .aw-helpdesk2-listing .selectmenu-toggle:before {
  border-color: #007bdb;
}
body._keyfocus .aw-helpdesk2-listing .selectmenu-toggle:focus {
  box-shadow: none;
}
.aw-helpdesk2-listing .selectmenu-toggle:before {
  background: #e3e3e3;
  border-left: 1px solid #adadad;
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 3.2rem;
}
.aw-helpdesk2-listing .selectmenu-toggle:after {
  border-color: #000000 transparent transparent transparent;
  border-style: solid;
  border-width: 0.5rem 0.4rem 0 0.4rem;
  content: '';
  height: 0;
  margin-top: -0.2rem;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transition: all .2s linear;
  width: 0;
}
.aw-helpdesk2-listing .selectmenu-items {
  background: #ffffff;
  border: 1px solid #007bdb;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  display: none;
  float: left;
  left: -1px;
  margin-top: 3px;
  max-width: 20rem;
  min-width: calc(100% + 2px);
  position: absolute;
  top: 100%;
}
.aw-helpdesk2-listing .selectmenu-items._active {
  display: block;
}
.aw-helpdesk2-listing .selectmenu-items ul {
  float: left;
  list-style-type: none;
  margin: 0;
  min-width: 100%;
  padding: 0;
}
.aw-helpdesk2-listing .selectmenu-items li {
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  display: flex;
  flex-direction: row;
  transition: background .2s linear;
  margin-bottom: 0;
}
.aw-helpdesk2-listing .selectmenu-items li:hover {
  background: #e3e3e3;
}
.aw-helpdesk2-listing .selectmenu-items li:last-child .selectmenu-item-action {
  color: #007bdb;
  text-decoration: none;
}
.aw-helpdesk2-listing .selectmenu-item {
  position: relative;
  width: 100%;
  z-index: 1;
}
li._edit > .aw-helpdesk2-listing .selectmenu-item {
  display: none;
}
.aw-helpdesk2-listing .selectmenu-item-edit {
  display: none;
  padding: .3rem 4rem .3rem .4rem;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}
li:last-child .aw-helpdesk2-listing .selectmenu-item-edit {
  padding-right: .4rem;
}
.aw-helpdesk2-listing .selectmenu-item-edit .admin__control-text {
  margin: 0;
  width: 5.4rem;
}
li._edit .aw-helpdesk2-listing .selectmenu-item-edit {
  display: block;
}
.aw-helpdesk2-listing .selectmenu-item-action {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: #2a2c2c;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  min-width: 100%;
  padding: 1rem 6rem 1rem 1.5rem;
  text-align: left;
  transition: background .2s linear;
  width: 5rem;
  border: none !important;
  border-radius: 0;
}
.aw-helpdesk2-listing .selectmenu-item-action:hover,
.aw-helpdesk2-listing .selectmenu-item-action:focus {
  background: #e3e3e3;
}
.aw-actions-toolbar {
  float: right;
}
@media (max-width: 768px) {
  .aw-actions-toolbar {
    float: none;
    max-width: 130px;
  }
}
.actions-toolbar .secondary {
  float: none !important;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}
.-am-blocked {
  pointer-events: none;
}
._amcheckout-selectable-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
._amcheckout-selectable-item {
  display: block;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
  border: 1px solid #f9f9f9;
  border-radius: 2px;
  background: #f9f9f9;
  cursor: pointer;
}
._amcheckout-selectable-item:not(:last-of-type) {
  margin-bottom: 15px;
}
._amcheckout-selectable-item:hover {
  box-shadow: 0 2px 8px rgba(56, 77, 108, 0.4);
}
._amcheckout-selectable-item.-selected {
  border-color: #1979c3;
}
@media all and (min-width: 1024px) {
  ._amcheckout-selectable-item {
    width: 48%;
  }
  ._amcheckout-selectable-item:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
}
.ambase-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .ambase-word-break {
  word-break: break-all;
}
.am-visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0;
}
.am-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.ambrands-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .ambrands-word-break {
  word-break: break-all;
}
/**
 * Common
 */
.klarna-payments-method-cell {
  display: table-cell;
  vertical-align: middle;
}
label.klarna-payments-method-cell > span {
  padding-left: 5px;
}
span.klarna-payments-method-cell > img {
  display: block;
}
/**
 * Desktop
 */
/**
 * Mobile
 */
/**
 * Copyright © Magefan (support@magefan.com). All rights reserved.
 * Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
 */
.people-also-searched .block-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
.people-also-searched .list {
  list-style: none;
}
.people-also-searched .item {
  width: 33%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199.98px) {
  .people-also-searched .item {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .people-also-searched .item {
    width: 100%;
    padding-left: 0px;
  }
}
/**
 * Olegnax
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Olegnax.com license that is
 * available through the world-wide-web at this URL:
 * https://www.olegnax.com/license
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Olegnax
 * @package     Olegnax_MegaMenu
 * @copyright   Copyright (c) 2010-2021 Olegnax (http://www.olegnax.com/)
 * @license     https://www.olegnax.com/license
 */
/**
 * Olegnax
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Olegnax.com license that is
 * available through the world-wide-web at this URL:
 * https://www.olegnax.com/license
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Olegnax
 * @package     Olegnax_MegaMenu
 * @copyright   Copyright (c) 2010-2021 Olegnax (http://www.olegnax.com/)
 * @license     https://www.olegnax.com/license
 */
/* Toggle Plus Icon */
@media only screen and (max-width: 1024px) {
  .field-tooltip .field-tooltip-content {
    left: auto;
    right: -10px;
    top: 40px;
  }
  .field-tooltip .field-tooltip-content::before,
  .field-tooltip .field-tooltip-content::after {
    border: 10px solid transparent;
    height: 0;
    left: auto;
    margin-top: -21px;
    right: 10px;
    top: 0;
    width: 0;
  }
  .field-tooltip .field-tooltip-content::before {
    border-bottom-color: #f1f1f1;
  }
  .field-tooltip .field-tooltip-content::after {
    border-bottom-color: #f5f5f5;
    top: 1px;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
*/
@media only screen and (min-device-width: 320px) and (max-device-width: 780px) and (orientation: landscape) {
  .product-video {
    height: 100%;
    width: 81%;
  }
}
@media all and (min-width: 1025px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .abs-product-options-list-desktop dt:after,
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .column .block-addbysku .block-content .box,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    width: 48.8%;
  }
  .abs-blocks-2columns:nth-child(odd),
  .column .block-addbysku .block-content .box:nth-child(odd),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .login-container .block:nth-child(odd),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(odd) {
    clear: left;
    float: left;
  }
  .abs-blocks-2columns:nth-child(even),
  .column .block-addbysku .block-content .box:nth-child(even),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .login-container .block:nth-child(even),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(even),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(even) {
    float: right;
  }
  .abs-reset-left-margin-desktop,
  .column.main .cart-summary .actions-toolbar,
  .cart.table-wrapper .item-actions .actions-toolbar,
  .gift-summary .actions-toolbar,
  .cart.table-wrapper .gift-summary .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar,
  .form-new-agreement .fieldset .legend,
  .form-new-agreement .actions-toolbar,
  .column.main .paypal-review .actions-toolbar,
  .bundle-options-container .legend.title,
  .wishlist-index-index .main .form-wishlist-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-add-invitations .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 75.8%;
    top: 6px;
  }
  .abs-add-fields-desktop .fieldset .field:not(.choice) .control,
  .form-giftregistry-share .fieldset .field:not(.choice) .control,
  .form-giftregistry-edit .fieldset .field:not(.choice) .control,
  .form-add-invitations .fieldset .field:not(.choice) .control,
  .form-create-return .fieldset .field:not(.choice) .control,
  .form.send.friend .fieldset .field:not(.choice) .control {
    width: 50%;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend,
  .column:not(.sidebar-main) form .actions-toolbar,
  .column:not(.sidebar-additional) form .actions-toolbar,
  .login-container .fieldset:after {
    margin-left: 0;
  }
  .abs-visually-hidden-desktop,
  .block-search .label,
  .dashboard-welcome-toggler,
  .block-collapsible-nav .title,
  .modes-label {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:before,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:before,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:before,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:before,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  .login-container:before,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:before,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:before,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:before,
  .header.content:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .toolbar-giftregistry-results:before,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:before,
  .toolbar-wishlist-results:after,
  .account .toolbar:before,
  .account .toolbar:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:after,
  .page-header .header.panel:after,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:after,
  .account .toolbar:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field,
  .product-add-form .fieldset > .field,
  .product-add-form .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label,
  .product-add-form .fieldset > .field:not(.choice) > .label,
  .product-add-form .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control,
  .product-add-form .fieldset > .field:not(.choice) > .control,
  .product-add-form .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label,
  .product-add-form .fieldset > .field > .label,
  .product-add-form .fieldset .fields > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before,
  .product-add-form .fieldset > .field.choice:before,
  .product-add-form .fieldset .fields > .field.choice:before,
  .product-add-form .fieldset > .field.no-label:before,
  .product-add-form .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(:first-child):last-of-type,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-pager-toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results,
  .account .toolbar {
    margin-bottom: 20px;
    position: relative;
  }
  .abs-pager-toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter,
  .account .toolbar .limiter {
    float: right;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount,
  .account .toolbar .toolbar-amount {
    float: left;
    line-height: normal;
    padding: 7px 0 0;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages,
  .account .toolbar .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    float: left;
    position: relative;
    width: 73%;
  }
  .abs-shopping-cart-items-desktop .actions,
  .block-cart-failed .actions,
  .cart-container .form-cart .actions,
  .cart-container .cart-gift-item .actions {
    text-align: right;
  }
  .abs-shopping-cart-items-desktop .action.clear,
  .abs-shopping-cart-items-desktop .action.update,
  .block-cart-failed .action.clear,
  .block-cart-failed .action.update,
  .cart-container .form-cart .action.clear,
  .cart-container .form-cart .action.update,
  .cart-container .cart-gift-item .action.clear,
  .cart-container .cart-gift-item .action.update {
    margin-left: 10px;
  }
  .abs-shopping-cart-items-desktop .action.continue,
  .block-cart-failed .action.continue,
  .cart-container .form-cart .action.continue,
  .cart-container .cart-gift-item .action.continue {
    float: left;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .navigation,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 66.66666667%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 83.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 83.33333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-main {
    padding-right: 0;
    margin-top: 45px;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .page-layout-2columns-left.account .main {
    margin-top: 42px;
  }
  .page-layout-2columns-left.account .sidebar-main {
    margin-top: 42px;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #2a2c2c;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #ffffff;
    line-height: 53px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #ffffff;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #ba977c;
    border-style: solid;
    border-width: 0 0 3px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 20px;
    color: #7d7d7d;
    content: '\e622';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:hover:after {
    color: #2a2c2c;
  }
  .navigation .level0 .submenu {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 700;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #ffffff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #ffffff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #f1f1f1;
    color: #f1f1f1;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    background: #ffffff;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #f5f5f5;
    color: #2a2c2c;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #ba977c;
    border-style: solid;
    border-width: 0 0 0 3px;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 20px;
    color: #7d7d7d;
    content: '\e608';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:hover:after {
    color: #2a2c2c;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e607';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:hover:after {
    color: #2a2c2c;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset > .field {
    margin: 0 0 20px;
    margin: 0 0 29px;
  }
  .fieldset > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .fieldset > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .fieldset > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .fieldset > .field.choice:before,
  .fieldset > .field.no-label:before {
    display: none;
  }
  .fieldset > .field > .label {
    font-weight: normal;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 5px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 700;
    line-height: 20px;
    font-size: 1.6rem;
    color: #ba977c;
    text-decoration: none;
    background: transparent;
    border: 1px solid #f1f1f1;
    border-bottom: none;
    height: 40px;
    padding: 5px 20px 14px 20px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #ba977c;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #ba977c;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #2a2c2c;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: transparent;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: transparent;
    color: #2a2c2c;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 14px;
  }
  .product.data.items > .item.content {
    background: transparent;
    margin-top: 38px;
    padding: 20px 0 0 0;
    border: 1px solid #f1f1f1;
  }
  .product.data.items > .item.title > .switch {
    border: none;
    position: relative;
  }
  .product.data.items > .item.title > .switch:after {
    content: '';
    background: #ba977c;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.2s ease;
    width: 100%;
    transform: scale(0, 1);
    backface-visibility: hidden;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus:after,
  .product.data.items > .item.title:not(.disabled) > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding: 5px 20px 14px 20px;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active:after,
  .product.data.items > .item.title.active > .switch:after,
  .product.data.items > .item.title.active > .switch:focus:after,
  .product.data.items > .item.title.active > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .product.data.items > .item.content {
    border-width: 1px 0 0 0;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .secondary {
    float: right;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 5px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .ox-dropdown.ox-dropdown-active {
    animation: ox-modal-active-dd 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }
  .ox-dropdown.ox-dropdown-close {
    animation: ox-modal-close-dd 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }
  .minicart--style-modern .ox-dropdown {
    width: 570px;
    padding: 0;
    box-shadow: 0px 17px 50px 0px rgba(0, 0, 0, 0.08);
  }
  /* My Account */
  .ox-slideout.ox-links-drop .header.links,
  .ox-dropdown.ox-links-drop .header.links {
    width: 100%;
  }
  .ox-slideout.ox-links-drop .header.links li,
  .ox-dropdown.ox-links-drop .header.links li {
    margin: 0 0 2px 0;
  }
  .ox-slideout.ox-links-drop .header.links li .logged-in,
  .ox-dropdown.ox-links-drop .header.links li .logged-in,
  .ox-slideout.ox-links-drop .header.links li a:not(.button),
  .ox-dropdown.ox-links-drop .header.links li a:not(.button) {
    padding: 7px;
    color: #000;
  }
  .ox-slideout.ox-links-drop .header.links a:not(.button):hover,
  .ox-dropdown.ox-links-drop .header.links a:not(.button):hover,
  .ox-slideout.ox-links-drop .header.links a:not(.button):focus,
  .ox-dropdown.ox-links-drop .header.links a:not(.button):focus {
    background: #000;
    color: #fff;
  }
  .ox-slideout .header.links {
    padding: 30px;
  }
  .minicart--style-modern .ox-slideout .header.links {
    padding: 60px 70px;
  }
  .ox-dropdown.ox-links-drop {
    width: 280px;
  }
  .ox-dropdown.ox-login-drop {
    padding: 0;
    width: 750px;
  }
  .ox-dropdown .block-account > .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .ox-dropdown .block-account .block {
    padding: 30px;
    width: 50%;
    margin: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: wrap;
    align-self: stretch;
    align-content: center;
  }
  .minicart--style-modern .ox-dropdown.ox-links-drop {
    width: 310px;
  }
  .minicart--style-modern .ox-dropdown.ox-links-drop .block-content {
    padding: 40px;
  }
  .minicart--style-modern .ox-dropdown .block-account .block {
    padding: 50px;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #f1f1f1;
    text-align: right;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .aw-heldesk2__agent-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  .aw-heldesk2__agent-container .page-title-wrapper {
    padding-right: 20px;
  }
  .aw_helpdesk2__agent-info {
    width: 40%;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .aw-helpdesk2__form .top-panel {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .checkout-index-index .opc-wrapper.am-opc-wrapper .shipping-address-item {
    width: 50%;
  }
  .am-checkout.-modern .amcheckout-trust-badges {
    justify-content: flex-end;
  }
  /* phpcs:ignore Magento2.Less.AvoidId.IdSelectorUsage */
  #checkout.am-checkout.-modern.-layout-1column .authentication-wrapper {
    min-width: 300px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper {
    flex: inherit;
    width: calc(50% - 7px);
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date,
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    width: 50%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date {
    padding-right: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    padding-left: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title {
    background: #eeeeee;
    color: #363636;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title > .amcheckout-icon {
    background: none;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .subtotal {
    width: 15%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .table-totals {
    margin-left: auto;
    width: 40%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .checkout-payment-method .payment-option-title {
    border: none;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-summary-container .details-qty {
    max-width: 20%;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-checkboxes,
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-comment {
    display: inline-block;
    vertical-align: top;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-checkboxes {
    box-sizing: border-box;
    padding-right: 10px;
    width: 45%;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-comment {
    width: 55%;
  }
  .amcheckout-main-container.-modern.-layout-2columns {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column {
    margin: 0;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-main {
    float: left;
    width: calc(100% - (380px + 60px));
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar {
    float: right;
    transition: all .3s ease;
    width: 380px;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar.-sticky {
    max-height: 100vh;
    overflow: auto;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar .amcheckout-trust-badges {
    justify-content: center;
    margin: 0 0 15px;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar .amcheckout-trust-seal {
    font-size: 12px;
    max-width: 265px;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary {
    background: #ffffff;
    border: 1px solid #d4d4d4;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar {
    margin-bottom: 20px;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout {
    float: none;
    width: 70%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-title {
    background: #f9f9f9;
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .product-item-name {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .subtotal {
    width: auto;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .table-totals {
    margin-left: 0;
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options {
    background: #ffffff;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    display: block;
    width: 100%;
  }
  .amcheckout-sticky-stopper {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
    visibility: hidden;
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns {
    display: flex;
    justify-content: space-between;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-column {
    width: 32%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary .amcheckout-trust-badges {
    justify-content: center;
    margin: 0 0 15px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary .amcheckout-trust-seal {
    font-size: 12px;
    margin: auto;
    max-width: 66%;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-title {
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-email .amcheckout-wrapper {
    flex: auto;
    width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-password,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-password {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item:not(:last-of-type),
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods {
    min-width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .billing-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-payment-methods .payment-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .control {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .input-text._has-datepicker {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date ._has-datepicker ~ .ui-datepicker-trigger {
    margin: 0;
    position: absolute;
    right: 7px;
    top: 7px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .checkout-payment-method .amcheckout-trust-seal {
    max-width: 66%;
  }
  .amconf-matrix-table-wrap .amconf-matrix-title {
    font-size: 14px;
  }
  .amconf-matrix-table-wrap .amconf-matrix-input {
    max-width: 40px;
    padding: 0 5px;
  }
  .amconf-matrix-table-wrap .amconf-text {
    border-right: 1px solid #c4c4c4;
  }
  .amconf-matrix-table-wrap .amconf-cell:last-child .amconf-text {
    border: 0;
  }
  .amgdpr-modal-container .modal-header {
    padding: 40px 50px 20px;
  }
  .amgdpr-modal-container .modal-header .modal-title {
    font-size: 30px;
  }
  .amgdpr-modal-container .modal-content {
    padding: 0 30px 0 50px;
  }
  .amgdpr-modal-container .modal-footer {
    padding: 30px 50px 50px;
  }
  .amgdpr-modal-container .action.action-primary {
    width: auto;
  }
  .amgdprcookie-main-wrapper {
    padding: 0;
  }
  .amgdprcookie-main-wrapper .amgdprcookie-top {
    margin-bottom: 35px;
  }
  .amgdprcookie-main-wrapper .amgdprcookie-head {
    font-size: 34px;
    line-height: normal;
  }
  .amgdprcookie-main-wrapper .amgdprcookie-btn {
    padding: 17px 46px;
    box-shadow: 0 3px 10px rgba(62, 40, 13, 0.15);
    text-transform: none;
    font-size: 20px;
  }
  .amgdprcookie-cookie-container {
    margin-bottom: 30px;
    padding: 25px 0;
  }
  .amgdprcookie-cookie-container .amgdprcookie-caption {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .amgdprcookie-cookie-container .amgdprcookie-toggle-cookie {
    padding-left: 0;
  }
  .amgdprcookie-cookie-container .amgdprcookie-text {
    font-size: 14px;
  }
  .amgdprcookie-cookie-container .amgdprcookie-options {
    display: inline-block;
    background: inherit;
    font-size: 14px;
  }
  .amgdprcookie-groups-modal .amgdprcookie-cookie-container,
  .amgdprcookie-groups-modal .amgdprcookie-header,
  .amgdprcookie-groups-modal .amgdprcookie-text {
    padding: 0;
  }
  .amgdprcookie-modal-container .modal-inner-wrap {
    background: #fff;
    min-width: 400px;
    right: unset;
    width: 21%;
  }
  .amgdprcookie-table .amgdprcookie-cell.desc,
  .amgdprcookie-table .amgdprcookie-title.-wide {
    width: 30%;
  }
  .amgdprcookie-table .amgdprcookie-cell,
  .amgdprcookie-table .amgdprcookie-title {
    width: 15%;
  }
  .amgdprcookie-bar-container .amgdprcookie-buttons-block {
    flex-direction: row;
    margin-bottom: 5px;
  }
  .amgdprcookie-bar-container .amgdprcookie-buttons-block .amgdprcookie-button {
    margin-bottom: 0;
  }
  .amgdprcookie-groups-modal .amgdprcookie-form {
    padding: 0 20px;
  }
  .checkout-index-index .modal-popup.amgdprcookie-modal-container .modal-inner-wrap {
    left: unset;
    margin-left: unset;
    width: 21%;
  }
  .am-brands-fullwidth {
    width: 100% !important;
  }
  .amslider .slide {
    flex-basis: auto;
    margin: 0 20px 20px 0;
    max-width: 32%;
  }
  .ui-tooltip.ui-widget {
    max-width: 450px;
  }
  .filter-options-content a:hover {
    text-decoration: none;
  }
  .catalog-topnav {
    display: block;
  }
  .page-layout-1column .toolbar-products {
    position: inherit !important;
  }
  .filter-options-content .am-filter-price {
    width: 40%;
  }
  .sidebar > .block-category-list {
    margin-bottom: 14px;
  }
  .amasty-catalog-topnav {
    margin-top: 3px;
  }
  .amasty-catalog-topnav.catalog-topnav .filter-options .filter-options-content {
    min-width: 200px;
    z-index: 1001;
  }
  .amasty-catalog-topnav .filter-options {
    margin-bottom: 20px;
    padding: 3px 0;
  }
  .amasty-catalog-topnav .filter-subtitle {
    display: none;
  }
  .amasty-catalog-topnav .amshopby-category-dropdown {
    min-width: 200px;
  }
  .amasty-catalog-topnav .filter-options-item {
    margin-bottom: 0;
  }
  .amasty-catalog-topnav .filter-options-item:first-child .filter-options-title {
    padding-left: 0;
  }
  .amasty-catalog-topnav .filter-options-title {
    padding-right: 5px;
  }
  .amasty-catalog-topnav .filter-options-title:after {
    display: inline-block;
    margin: 0 0 0 15px;
    position: static;
    transform: translateY(-2px);
  }
  .sidebar.sidebar-main.-amshopby-sticky {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options {
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover {
    scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar {
    background: #f0f0f0;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 6px;
    cursor: pointer;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ffffff;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar {
    height: 12px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar-thumb {
    height: 6px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options ::-webkit-scrollbar-track {
    height: 6px;
    width: 6px;
  }
  .filter-options-content .am-filter-price {
    width: 43%;
  }
  .amslider-container.am-swiper-slider {
    width: 85%;
  }
  .amasty-catalog-topnav .filter-options-item .filter-options-content .amshopby-flyout-block .items.amshopby-fly-out-view {
    margin: -11px;
    box-shadow: none;
  }
  .filter-options input[type='checkbox'] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    width: 0;
    position: absolute;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    margin: 0;
    padding: 0 0 0 22px;
    min-height: 12px;
    line-height: 1.2;
    cursor: pointer;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before,
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    content: '';
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before {
    border: 1px solid #e3e3e3;
    background: #ffffff;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    background: #ba977c url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPGRlZnMvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMS42NjkzIDMuNTAwNjFjLS4yMDc4LjAwNjk1LS40MDQ4LjA5ODg1LS41NDkzLjI1NjItMS45NTcwMyAyLjA2NDE1LTMuNDM4ODMgMy43NzY1NS01LjI4MDQxIDUuNzQ3ODNMMy44MTczIDcuNzA0NzRjLS4wNzk5Mi0uMDcxNi0uMTcyNDUtLjEyNTk1LS4yNzIzMy0uMTU5OTItLjA5OTg3LS4wMzM5Ny0uMjA1MTItLjA0NjktLjMwOTc0LS4wMzgwNi0uMTA0NjIuMDA4ODUtLjIwNjU2LjAzOTI5LS4zLjA4OTYtLjA5MzQ1LjA1MDMtLjE3NjU2LjExOTQ4LS4yNDQ1OS4yMDM2LS4wNjgwNC4wODQxMS0uMTE5NjYuMTgxNTEtLjE1MTkzLjI4NjYyLS4wMzIyNy4xMDUxMS0uMDQ0NTUuMjE1ODgtLjAzNjE1LjMyNTk4LjAwODQxLjExMDExLjAzNzM0LjIxNzQuMDg1MTUuMzE1NzQuMDQ3ODEuMDk4MzMuMTEzNTUuMTg1NzkuMTkzNDguMjU3MzlMNS4zNzc3MSAxMS4yOThjLjE1MzE1LjEzNzkuMzUwMTkuMjA5OC41NTE2LjIwMTMuMjAxNDEtLjAwODYuMzkyMzEtLjA5NjkuNTM0NDQtLjI0NzNDOC42MTA3NCA4Ljk4NzU3IDEwLjE0MiA3LjE3NTQ0IDEyLjI1NiA0Ljk0NTc4Yy4xMTY1LS4xMTgzNy4xOTYtLjI3MTIuMjI4MS0uNDM4MjMuMDMyMS0uMTY3MDMuMDE1My0uMzQwMzgtLjA0ODQtLjQ5NzA5LS4wNjM2LS4xNTY3MS0uMTcwOS0uMjg5MzctLjMwNzgtLjM4MDQyLS4xMzY5LS4wOTEwNS0uMjk2OC0uMTM2MTktLjQ1ODYtLjEyOTQzeiIvPgo8L3N2Zz4K) center / 12px;
    content: none;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:hover:before,
  .filter-options input[type='checkbox']:checked + .amshopby-choice:before {
    border-color: #ba977c;
  }
  .filter-options input[type='checkbox']:checked + .amshopby-choice:after {
    content: '';
  }
  ._keyfocus .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  ._keyfocus .filter-options input[type='checkbox']:focus + .amshopby-choice:before,
  .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  .filter-options input[type='checkbox']:focus + .amshopby-choice:before {
    border-color: #ba977c;
  }
  .filter-options input[type='checkbox']:not(:checked).mage-error + .amshopby-choice:before {
    border-color: #f23b3b;
  }
  .am_shopby_apply_filters {
    position: absolute;
    bottom: inherit;
    z-index: 212;
    display: none;
    visibility: hidden;
    padding: 0;
    width: inherit;
  }
  .am_shopby_apply_filters.visible {
    bottom: inherit;
    visibility: visible;
  }
  .am_shopby_apply_filters.-fixed {
    position: fixed;
  }
  .am_shopby_apply_filters.-fixed .am-show-button:before {
    display: none;
  }
  .am-show-button {
    position: relative;
    justify-content: space-between;
    margin: 0 0 10px;
    padding: 12px 10px;
    min-width: 180px;
    width: inherit;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(190, 199, 219, 0.21), 0 6px 25px rgba(190, 199, 219, 0.28);
  }
  .am-show-button > .am-items {
    margin: 0 auto;
  }
  .am-show-button:before {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffffff;
    content: '';
    transform: rotate(45deg);
  }
  .am-show-button.-vertical:before {
    top: calc(50% - (10px / 2));
    right: calc(100% - (10px / 2));
  }
  .am-show-button.-horizontal:before {
    top: calc(100% - (10px / 2));
    left: calc(50% - (10px / 2));
  }
  #amasty-shopby-product-list .amshopby-overlay-block > .amshopby-loader {
    top: 30%;
    transform: translate(-50%, -30%);
  }
  .ambrands-letters-filter .ambrands-letter {
    margin: 0 7px 7px 0;
  }
  .ambrands-letters-list {
    display: flex;
  }
  .ambrands-letters-list .ambrands-letter .ambrands-content {
    margin: 0 -10px;
  }
  .ambrands-letters-list .ambrands-brand-item {
    margin: 0 10px 20px;
  }
  .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 156px;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 10px;
    width: inherit;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 30px;
    width: inherit;
  }
  .ambrands-list-popup {
    position: absolute;
    width: 600px;
    height: 415px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(131, 136, 141, 0.13), 0 10px 15px rgba(131, 136, 141, 0.13);
    opacity: 0;
    transition: all .5s ease;
    pointer-events: none;
  }
  .ambrands-menu-item:hover .ambrands-list-popup,
  .ammenu-item:hover .ambrands-list-popup {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .ambrands-list-container {
    display: flex;
    height: 100%;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter {
    display: block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px 14px 0;
    min-width: calc(((34px + 12px) * 4) + (14px * 2));
    width: calc(((34px + 12px) * 4) + (14px * 2));
    height: 100%;
    background: #fbfbfb;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter {
    display: inline-flex;
    margin: 0 6px 12px;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter.-letter-all {
    margin-bottom: 30px;
    width: calc(100% - 12px);
  }
  .ambrands-popup-items {
    display: inline-block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
  .ambrands-popup-items .ambrands-letters-list {
    width: 100%;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-letter {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .ambrands-popup-items .ambrands-letters-list:last-child .ambrands-letter {
    margin-bottom: 0;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item .ambrands-label {
    max-width: 130px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 102px;
  }
  .ambrands-popup-items .ambrands-letter .ambrands-brand-item .ambrands-empty {
    font-weight: 400;
    font-size: 40px;
  }
  /* Overwriting Magento's padding for the method title to make
       sure our KP methods have the same height as the core methods */
  .klarna-payments-method > .payment-method-title {
    padding: 11.5px 0;
  }
  .hide-on-desktop {
    display: none !important;
  }
  .ox-megamenu .ox-megamenu-navigation {
    padding: 0 0 0 24px;
  }
  .ox-megamenu-navigation {
    min-height: 55px;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown {
    z-index: 6;
  }
  .ox-megamenu-navigation .category-item > a {
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
    background-color: transparent;
    color: #2a2c2c;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: 0;
  }
  .ox-megamenu-navigation .category-item:hover > a {
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
    background-color: #ffffff;
    color: #2a2c2c;
  }
  .ox-megamenu-navigation .category-item.has-active > .level-top,
  .ox-megamenu-navigation .category-item.active > .level-top,
  .ox-megamenu-navigation .category-item.has-active > a,
  .ox-megamenu-navigation .category-item.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-megamenu-navigation .category-item.has-active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.has-active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.has-active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.has-active > a .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.active > a .ox-menu-arrow:after {
    background-color: currentColor;
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
  }
  .ox-megamenu-navigation > .level0 {
    margin: 0;
  }
  .ox-megamenu-navigation > .level0 > .level-top {
    letter-spacing: -0.5px;
    padding: 0 14px;
    min-height: 44px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
    color: #ffffff;
  }
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .level-top {
    background-color: transparent;
    color: #ffffff;
  }
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .level-top .ox-menu-arrow:after {
    background-color: currentColor;
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
  }
  .ox-megamenu-navigation > .level0.has-active > .level-top,
  .ox-megamenu-navigation > .level0.active > .level-top,
  .ox-megamenu-navigation > .level0.has-active > a,
  .ox-megamenu-navigation > .level0.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-megamenu-navigation > .level0.has-active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.has-active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.has-active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.has-active > a .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.active > a .ox-menu-arrow:after {
    background-color: currentColor;
  }
  .ox-megamenu-navigation > .level0 .category-item {
    margin: 0;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item > a {
    border-top: none;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item.active > a {
    border-color: #2a2c2c;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown {
    opacity: 0;
    transition: opacity 0.5s;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown.animate {
    opacity: 1;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown.opened {
    display: block;
  }
  .ox-megamenu .ox-submenu {
    opacity: 0;
    transition: opacity 0.5s;
  }
  .ox-megamenu .ox-submenu.opened {
    display: block !important;
  }
  .ox-megamenu .ox-submenu.animate {
    opacity: 1;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-right"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-right"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-center"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-center"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-right"] {
    position: static;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-center"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-right"] {
    position: relative;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-center"] > .ox-megamenu__dropdown {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-right"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-right"] > .ox-megamenu__dropdown {
    left: auto;
    right: 0;
  }
  .ox-megamenu-navigation ul.ox-megamenu-dd--reverse {
    left: auto !important;
    right: 100% !important;
  }
  .ox-megamenu {
    position: relative;
    z-index: 40;
  }
  .ox-megamenu-navigation {
    margin: 0;
    padding: 0;
    list-style: none none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* Hover and Dont show top border for category columns */
  }
  .ox-megamenu-navigation .ox-dropdown--simple:hover > .ox-megamenu__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .ox-megamenu-navigation > li {
    display: inline-block;
  }
  .ox-megamenu-navigation > li > a .ox-megamenu-label {
    position: absolute;
    display: block;
    top: -7px;
    right: 0;
    word-break: normal;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item.active + .category-item > a {
    border-color: #2a2c2c;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:hover + .category-item > a,
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:hover > a {
    border-color: #ffffff;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:first-child > a {
    border-top: none;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .ox-megamenu__categories .level1.category-item > a {
    border-top: none;
  }
  /* set min width for none menu menu items only? */
  .ox-megamenu__dropdown {
    display: none;
    background: #ffffff;
    padding: 30px;
    min-width: 290px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
  }
  /* Positioning of drop downs */
  .ox-megamenu-navigation .ox-dropdown--megamenu {
    position: static;
  }
  .ox-megamenu-navigation .ox-dropdown--simple {
    position: relative;
  }
  .ox-megamenu-navigation .ox-dropdown--simple .ox-submenu {
    top: -20px;
    left: 80%;
  }
  .ox-dropdown--megamenu {
    /* Hide arrow for megamenu first items */
  }
  .ox-dropdown--megamenu.level1 {
    position: relative;
  }
  .ox-dropdown--megamenu.level1 > .ox-megamenu__dropdown {
    top: -20px;
    left: 80%;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch {
    position: static;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top > .ox-megamenu__dropdown,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > .ox-megamenu__dropdown {
    left: calc(100% - 30px);
    top: 0px;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top > a .ox-menu-arrow,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > a .ox-menu-arrow {
    display: none !important;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > .ox-megamenu__dropdown {
    min-height: 100%;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-right {
    position: relative;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-right > .ox-megamenu__dropdown {
    top: -20px;
    left: 100%;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown {
    padding: 35px;
    width: 100%;
    left: 0;
    font-weight: normal;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > a,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item > a {
    background-color: transparent;
    color: #2a2c2c;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    padding: 7px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    box-sizing: border-box;
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > a:hover,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item > a:hover {
    background-color: #ffffff;
    color: #2a2c2c;
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item.active > a,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item {
    margin: 0;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item > a {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
    color: #2a2c2c;
    background-color: transparent;
    text-transform: unset;
    letter-spacing: 0;
    border-top: none;
    margin: 0;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item > a:hover {
    background-color: #ffffff;
    color: #2a2c2c;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item :first-child > a {
    border-top: none;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu__categories > ul > li > .ox-submenu {
    min-width: 1px;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list.row {
    margin-bottom: -20px;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list.row > li .submenu {
    margin-bottom: 20px;
  }
  .ox-dropdown--megamenu .ox-megamenu-list.ox-megamenu-list--columns-1 {
    display: block;
  }
  .ox-dropdown--megamenu .ox-megamenu-list > .category-item > a > .ox-menu-arrow {
    display: none;
  }
  /* Custom content margin */
  .ox-megamenu-block-top + .ox-megamenu__categories,
  .ox-megamenu-block-top + .row,
  .ox-megamenu-block-bottom {
    margin-top: 30px;
  }
  .ox-dropdown--simple .ox-submenu {
    display: none;
    background: #ffffff;
    padding: 30px;
    min-width: 290px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    z-index: 10;
  }
  .ox-dropdown--simple li:hover > .ox-submenu {
    display: block;
  }
  .ox-megamenu .ox-submenu .li {
    position: relative;
  }
  .ox-megamenu .level2 .ox-submenu {
    display: none;
    background: #ffffff;
    padding: 30px;
    min-width: 290px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    z-index: 10;
    left: 80%;
    top: -20px;
  }
  .ox-megamenu .level2:hover > .ox-submenu {
    display: block;
  }
  /* Parent menu arrows */
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-left: auto;
    width: 9px;
    height: 6px;
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:after,
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:before {
    content: '';
    position: absolute;
    background: currentColor;
    transform: rotate(45deg);
    -webkit-transition: background  0.3s ease-in-out;
    -moz-transition: background  0.3s ease-in-out;
    -ms-transition: background  0.3s ease-in-out;
    transition: background  0.3s ease-in-out;
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:before {
    right: 3px;
    top: 2px;
    width: 6px;
    height: 2px;
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:after {
    right: 2px;
    top: 0;
    width: 2px;
    height: 6px;
  }
  /* Arrow position */
  .ox-megamenu-navigation li.level0.parent > a .ox-menu-arrow {
    margin-left: 6px;
    transform: rotate(0deg);
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow {
    transform: rotate(-90deg);
  }
  /* Category columns */
  .ox-megamenu-list--columns-1 > li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ox-megamenu-list--columns-2 > li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-megamenu-list--columns-3 > li {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-megamenu-list--columns-4 > li {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-megamenu-list--columns-5 > li {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ox-megamenu-list--columns-6 > li {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* Basic Grid Columns */
  .ox-menu-col-1 {
    -ms-flex: 0 0 8.33333333%;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ox-menu-col-2 {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ox-menu-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-menu-col-4 {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-menu-col-5 {
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ox-menu-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-menu-col-7 {
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ox-menu-col-8 {
    -ms-flex: 0 0 66.66666667%;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ox-menu-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ox-menu-col-10 {
    -ms-flex: 0 0 83.33333333%;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ox-menu-col-11 {
    -ms-flex: 0 0 91.66666667%;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ox-menu-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .nav-sections-item-content > .ox-megamenu {
    display: block;
  }
  .block-cart-failed .actions {
    text-align: left;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    float: right;
    position: relative;
    width: 23%;
  }
  .column.main .cart-summary .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper .item .col.item {
    padding: 27px 8px 10px;
  }
  .cart.table-wrapper .item-actions td {
    text-align: right;
  }
  .cart.table-wrapper .product-image-container {
    display: inline-block;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart.table-wrapper .item-actions .actions-toolbar {
    text-align: left;
  }
  .cart .action {
    margin-bottom: 10px;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
    margin: 0 0 1px;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 7px;
    padding-top: 8px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    right: -15px;
    width: 390px;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 22px 0 0;
  }
  .opc-progress-bar-item {
    width: 185px;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 740px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 10px;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 740px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #f1f1f1;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .table-checkout-shipping-method {
    min-width: 500px;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 33.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #ffffff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear .1s, visibility 0s linear .1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear .1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 33.33333333%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 3.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 1024px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field {
    margin: 0 0 20px;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.choice:before {
    padding: 0;
    width: 0;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type .control {
    margin-left: 25.8%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type.no-detection .control {
    margin-left: 0;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-downloadable .product-options-bottom .field.qty + .actions {
    padding-top: 0;
  }
  .gift-message .field {
    margin-bottom: 20px;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    float: right;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .cart.table-wrapper .action-gift {
    float: left;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field > .label {
    margin: 0;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    content: '';
    display: table;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    clear: both;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.choice:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .form-add-invitations .additional,
  .form-add-invitations .field.text {
    margin-top: 29px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .wishlist.window.popup .field {
    margin: 0 0 20px;
  }
  .wishlist.window.popup .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .wishlist.window.popup .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .wishlist.window.popup .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .wishlist.window.popup .field.choice:before,
  .wishlist.window.popup .field.no-label:before {
    display: none;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #ba977c;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field {
    margin-right: 5px;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .field .control {
    width: 100%;
  }
  .block.newsletter .action.subscribe {
    border-radius: 3px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #f1f1f1;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .reward-settings + .actions-toolbar {
    margin-top: -32px;
  }
  .form-create-return .additional .field:last-child {
    margin-top: 29px;
  }
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  #checkout .opc-wrapper .form-login,
  #checkout .opc-wrapper .form-shipping-address,
  #checkout .opc-wrapper .methods-shipping {
    max-width: none;
    padding: 0;
  }
  .form-login .actions-toolbar {
    text-align: left;
  }
  .form-login .actions-toolbar:before,
  .form-login .actions-toolbar:after {
    content: '';
    display: table;
  }
  .form-login .actions-toolbar:after {
    clear: both;
  }
  .form-login .actions-toolbar .secondary {
    float: left;
  }
  .form-login .actions-toolbar .primary,
  .form-login .actions-toolbar .secondary {
    display: inline-block;
  }
  .form-login .actions-toolbar .primary a.action,
  .form-login .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .form-login .actions-toolbar .primary .action {
    margin: 0 25px 0 0;
  }
  .form-login .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .form-shipping-address .fieldset > .field:not(.choice),
  .form-shipping-address .fieldset .fields > .field:not(.choice) {
    margin: 0 0 20px;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .form-shipping-address .fieldset > .field:not(.choice):not(.choice) > .label,
  .form-shipping-address .fieldset .fields > .field:not(.choice):not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    padding: 0;
  }
  .form-shipping-address .fieldset > .field:not(.choice):not(.choice) > .control,
  .form-shipping-address .fieldset .fields > .field:not(.choice):not(.choice) > .control {
    float: none;
    width: auto;
  }
  .form-shipping-address .fieldset > .field:not(.choice) > .label,
  .form-shipping-address .fieldset .fields > .field:not(.choice) > .label {
    margin: 0 0 5px;
    text-align: left;
    display: inline-block;
  }
  .form-shipping-address .fieldset > .field:not(.choice).choice:before,
  .form-shipping-address .fieldset .fields > .field:not(.choice).choice:before,
  .form-shipping-address .fieldset > .field:not(.choice).no-label:before,
  .form-shipping-address .fieldset .fields > .field:not(.choice).no-label:before {
    display: none;
  }
  .form-shipping-address .fieldset > .field:not(.choice) + .fieldset,
  .form-shipping-address .fieldset .fields > .field:not(.choice) + .fieldset {
    clear: both;
  }
  .form-shipping-address .fieldset > .field:nth-last-child(1),
  .form-shipping-address .fieldset .fields > .field:nth-last-child(1),
  .form-shipping-address .fieldset > .field:nth-last-child(2),
  .form-shipping-address .fieldset .fields > .field:nth-last-child(2) {
    margin-bottom: 0;
  }
  .modal-custom .modal-inner-wrap {
    background-color: transparent;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    position: relative;
    width: 40%;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0 0 25px;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input::-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-ms-input-placeholder {
    color: #c2c2c2;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    padding: 5px 0;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    content: '\e615';
    font-family: 'icons-blank-theme';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: inherit;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:hover:before,
  .block-search .action.search:focus:before {
    color: #ffffff;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .login-container .block .login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block .login .actions-toolbar > .secondary {
    float: left;
  }
  .fieldset .fullname .field .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset .fullname .field .control {
    width: 74.2%;
    float: left;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48.8%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 2.4%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .table-order-items .subtotal,
  .table-order-items .amount {
    text-align: right;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .page-title-wrapper .order-date {
    margin-top: -20px;
  }
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .header.panel > .header.links {
    float: right;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none none;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    font-size: 14px;
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li a {
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    padding-left: 5px;
  }
  .header.content {
    padding: 30px 20px 0;
    background-color: #2a2c2c;
  }
  .page-header .panel.wrapper {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .page-header .panel.wrapper a {
    color: #ffffff;
  }
  .page-header .panel.wrapper a:visited {
    color: #ffffff;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    display: inline-block;
  }
  .logo {
    margin: 0 auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content .links {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 50px 0 0;
    vertical-align: top;
  }
  .footer.content .switcher.store {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .products-grid.wishlist .product-items {
    margin: 0;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty .label {
    width: auto;
    display: none;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .wishlist-index-index .product-item-info {
    width: 100%;
  }
  .page-products .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .page-products.page-layout-1column .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .page-products.page-layout-3columns .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .page-layout-1column .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .page-layout-3columns .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .page-products .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
  .page-products.page-layout-1column .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem;
  }
  .page-products.page-layout-3columns .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .products.wrapper ~ .toolbar .pages {
    float: right;
  }
  .toolbar-amount {
    float: left;
  }
  .sorter {
    float: right;
    padding: 4px 0 0;
  }
  .page-products .sorter {
    position: static;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    color: #727878;
    border: 1px solid #f1f1f1;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 3px 5px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-mode:not(.active):hover {
    color: #727878;
    background: #dedede;
  }
  .modes-mode:last-child {
    border-right: 1px solid #f1f1f1;
  }
  .modes-mode.active {
    color: #9ba0a0;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: inherit;
    color: #727878;
    content: '\e60d';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #727878;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: left;
    padding: 4px 0 0;
  }
  .product-info-main .box-tocart .actions,
  .product-options-bottom .box-tocart .actions {
    display: table-cell;
    text-align: center;
    vertical-align: bottom;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 40px;
  }
  .page-layout-1column .product-info-main {
    width: 46%;
    margin-bottom: 40px;
  }
  .page-layout-1column .product.media {
    width: 50%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .block.filter .title {
    display: none;
  }
  .block.filter .content {
    margin: 0 0 15px 0;
    border: 0;
    padding: 20px;
    border-top: 6px solid #ba977c;
    background: #f5f5f5;
  }
  .block.filter .content .options {
    margin: 0;
    font-size: 13px;
  }
  .block.filter .content .options dt {
    font-size: 1.7rem;
    font-weight: 800;
  }
  .block.filter .content .item {
    margin: 0;
  }
  .block.filter .content .item a {
    margin-left: -5px;
    margin-right: -5px;
    padding: 5px 8px 4px;
    display: inline-block;
    line-height: 1.3;
  }
  .block.filter .content .item span.count {
    display: none;
  }
  .block.filter.grid-filter.block {
    background: #f8f8f8;
    padding: 10px;
    margin-bottom: 30px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
  }
  .block.filter.grid-filter .block-title strong {
    display: none;
  }
  .block.filter.grid-filter .filter-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    grid-gap: 2rem;
  }
  .page-layout-1column .filter-options-item.active {
    z-index: 2;
  }
  .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .page-layout-1column .block.widget .products-grid .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .page-layout-3columns .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
  .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .page-layout-1column .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .page-layout-3columns .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
  .abs-products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
  .abs-products-grid .page-products.page-layout-1column .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .page-products.page-layout-3columns .product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .page-layout-1column .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .page-layout-3columns .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .abs-products-grid-wishlist .product-items,
  .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 20px;
  }
  .abs-products-grid-wishlist .product-items .product-item,
  .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .abs-products-grid-wishlist .product-items,
  .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .abs-products-grid-wishlist .product-items .product-item,
  .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .abs-abs-data-tabs {
    position: relative;
    z-index: 1;
  }
  .abs-abs-data-tabs:before,
  .abs-abs-data-tabs:after {
    content: '';
    display: table;
  }
  .abs-abs-data-tabs:after {
    clear: both;
  }
  .abs-abs-data-tabs > .item.title {
    float: left;
    width: auto;
  }
  .abs-abs-data-tabs > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .abs-abs-data-tabs > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .abs-abs-data-tabs > .item.content:before,
  .abs-abs-data-tabs > .item.content:after {
    content: '';
    display: table;
  }
  .abs-abs-data-tabs > .item.content:after {
    clear: both;
  }
  .abs-abs-data-tabs > .item.content.active {
    display: block;
  }
  .abs-abs-data-tabs > .item.title {
    margin: 0 5px 0 0;
  }
  .abs-abs-data-tabs > .item.title > .switch {
    font-weight: 700;
    line-height: 20px;
    font-size: 1.6rem;
    color: #ba977c;
    text-decoration: none;
    background: transparent;
    border: 1px solid #f1f1f1;
    border-bottom: none;
    height: 40px;
    padding: 5px 20px 14px 20px;
  }
  .abs-abs-data-tabs > .item.title > .switch:visited {
    color: #ba977c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title > .switch:hover {
    color: #ba977c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title > .switch:active {
    color: #2a2c2c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:focus,
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:hover {
    background: transparent;
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:active,
  .abs-abs-data-tabs > .item.title.active > .switch,
  .abs-abs-data-tabs > .item.title.active > .switch:focus,
  .abs-abs-data-tabs > .item.title.active > .switch:hover {
    background: transparent;
    color: #2a2c2c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title.active > .switch,
  .abs-abs-data-tabs > .item.title.active > .switch:focus,
  .abs-abs-data-tabs > .item.title.active > .switch:hover {
    padding-bottom: 14px;
  }
  .abs-abs-data-tabs > .item.content {
    background: transparent;
    margin-top: 38px;
    padding: 20px 0 0 0;
    border: 1px solid #f1f1f1;
  }
  .abs-abs-data-tabs > .item.title > .switch {
    border: none;
    position: relative;
  }
  .abs-abs-data-tabs > .item.title > .switch:after {
    content: '';
    background: #ba977c;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.2s ease;
    width: 100%;
    transform: scale(0, 1);
    backface-visibility: hidden;
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:focus:after,
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:active:after,
  .abs-abs-data-tabs > .item.title.active > .switch:after,
  .abs-abs-data-tabs > .item.title.active > .switch:focus:after,
  .abs-abs-data-tabs > .item.title.active > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .abs-abs-data-tabs > .item.content {
    border-width: 1px 0 0 0;
  }
  .page-footer .footer.content .footer-wrapper .col-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-footer .footer.content .footer-wrapper .col-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (min-width: 1024px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .abs-product-options-list-desktop dt:after,
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .column .block-addbysku .block-content .box,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    width: 48.8%;
  }
  .abs-blocks-2columns:nth-child(odd),
  .column .block-addbysku .block-content .box:nth-child(odd),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .login-container .block:nth-child(odd),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(odd) {
    clear: left;
    float: left;
  }
  .abs-blocks-2columns:nth-child(even),
  .column .block-addbysku .block-content .box:nth-child(even),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .login-container .block:nth-child(even),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(even),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(even) {
    float: right;
  }
  .abs-reset-left-margin-desktop,
  .column.main .cart-summary .actions-toolbar,
  .cart.table-wrapper .item-actions .actions-toolbar,
  .gift-summary .actions-toolbar,
  .cart.table-wrapper .gift-summary .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar,
  .form-new-agreement .fieldset .legend,
  .form-new-agreement .actions-toolbar,
  .column.main .paypal-review .actions-toolbar,
  .bundle-options-container .legend.title,
  .wishlist-index-index .main .form-wishlist-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-add-invitations .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 75.8%;
    top: 6px;
  }
  .abs-add-fields-desktop .fieldset .field:not(.choice) .control,
  .form-giftregistry-share .fieldset .field:not(.choice) .control,
  .form-giftregistry-edit .fieldset .field:not(.choice) .control,
  .form-add-invitations .fieldset .field:not(.choice) .control,
  .form-create-return .fieldset .field:not(.choice) .control,
  .form.send.friend .fieldset .field:not(.choice) .control {
    width: 50%;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend,
  .column:not(.sidebar-main) form .actions-toolbar,
  .column:not(.sidebar-additional) form .actions-toolbar,
  .login-container .fieldset:after {
    margin-left: 0;
  }
  .abs-visually-hidden-desktop,
  .block-search .label,
  .dashboard-welcome-toggler,
  .block-collapsible-nav .title,
  .modes-label {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:before,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:before,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:before,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:before,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  .login-container:before,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:before,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:before,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:before,
  .header.content:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .toolbar-giftregistry-results:before,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:before,
  .toolbar-wishlist-results:after,
  .account .toolbar:before,
  .account .toolbar:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:after,
  .page-header .header.panel:after,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:after,
  .account .toolbar:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field,
  .product-add-form .fieldset > .field,
  .product-add-form .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label,
  .product-add-form .fieldset > .field:not(.choice) > .label,
  .product-add-form .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control,
  .product-add-form .fieldset > .field:not(.choice) > .control,
  .product-add-form .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label,
  .product-add-form .fieldset > .field > .label,
  .product-add-form .fieldset .fields > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before,
  .product-add-form .fieldset > .field.choice:before,
  .product-add-form .fieldset .fields > .field.choice:before,
  .product-add-form .fieldset > .field.no-label:before,
  .product-add-form .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(:first-child):last-of-type,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-pager-toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results,
  .account .toolbar {
    margin-bottom: 20px;
    position: relative;
  }
  .abs-pager-toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter,
  .account .toolbar .limiter {
    float: right;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount,
  .account .toolbar .toolbar-amount {
    float: left;
    line-height: normal;
    padding: 7px 0 0;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages,
  .account .toolbar .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    float: left;
    position: relative;
    width: 73%;
  }
  .abs-shopping-cart-items-desktop .actions,
  .block-cart-failed .actions,
  .cart-container .form-cart .actions,
  .cart-container .cart-gift-item .actions {
    text-align: right;
  }
  .abs-shopping-cart-items-desktop .action.clear,
  .abs-shopping-cart-items-desktop .action.update,
  .block-cart-failed .action.clear,
  .block-cart-failed .action.update,
  .cart-container .form-cart .action.clear,
  .cart-container .form-cart .action.update,
  .cart-container .cart-gift-item .action.clear,
  .cart-container .cart-gift-item .action.update {
    margin-left: 10px;
  }
  .abs-shopping-cart-items-desktop .action.continue,
  .block-cart-failed .action.continue,
  .cart-container .form-cart .action.continue,
  .cart-container .cart-gift-item .action.continue {
    float: left;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .navigation,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1920px;
    padding-left: 15px;
    padding-right: 15px;
    width: auto;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 66.66666667%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 83.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 83.33333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-main {
    padding-right: 0;
    margin-top: 45px;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .page-layout-2columns-left.account .main {
    margin-top: 42px;
  }
  .page-layout-2columns-left.account .sidebar-main {
    margin-top: 42px;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #2a2c2c;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #ffffff;
    line-height: 53px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #ffffff;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #ba977c;
    border-style: solid;
    border-width: 0 0 3px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 20px;
    color: #7d7d7d;
    content: '\e622';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:hover:after {
    color: #2a2c2c;
  }
  .navigation .level0 .submenu {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 700;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #ffffff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #ffffff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #f1f1f1;
    color: #f1f1f1;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    background: #ffffff;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #f5f5f5;
    color: #2a2c2c;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #ba977c;
    border-style: solid;
    border-width: 0 0 0 3px;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 20px;
    color: #7d7d7d;
    content: '\e608';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:hover:after {
    color: #2a2c2c;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e607';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:hover:after {
    color: #2a2c2c;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset > .field {
    margin: 0 0 20px;
    margin: 0 0 29px;
  }
  .fieldset > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .fieldset > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .fieldset > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .fieldset > .field.choice:before,
  .fieldset > .field.no-label:before {
    display: none;
  }
  .fieldset > .field > .label {
    font-weight: normal;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 5px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 700;
    line-height: 20px;
    font-size: 1.6rem;
    color: #ba977c;
    text-decoration: none;
    background: transparent;
    border: 1px solid #f1f1f1;
    border-bottom: none;
    height: 40px;
    padding: 5px 20px 14px 20px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #ba977c;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #ba977c;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #2a2c2c;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: transparent;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: transparent;
    color: #2a2c2c;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 14px;
  }
  .product.data.items > .item.content {
    background: transparent;
    margin-top: 38px;
    padding: 20px 0 0 0;
    border: 1px solid #f1f1f1;
  }
  .product.data.items > .item.title > .switch {
    border: none;
    position: relative;
  }
  .product.data.items > .item.title > .switch:after {
    content: '';
    background: #ba977c;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.2s ease;
    width: 100%;
    transform: scale(0, 1);
    backface-visibility: hidden;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus:after,
  .product.data.items > .item.title:not(.disabled) > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding: 5px 20px 14px 20px;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active:after,
  .product.data.items > .item.title.active > .switch:after,
  .product.data.items > .item.title.active > .switch:focus:after,
  .product.data.items > .item.title.active > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .product.data.items > .item.content {
    border-width: 1px 0 0 0;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .secondary {
    float: right;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 5px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .ox-dropdown.ox-dropdown-active {
    animation: ox-modal-active-dd 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }
  .ox-dropdown.ox-dropdown-close {
    animation: ox-modal-close-dd 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }
  .minicart--style-modern .ox-dropdown {
    width: 570px;
    padding: 0;
    box-shadow: 0px 17px 50px 0px rgba(0, 0, 0, 0.08);
  }
  /* My Account */
  .ox-slideout.ox-links-drop .header.links,
  .ox-dropdown.ox-links-drop .header.links {
    width: 100%;
  }
  .ox-slideout.ox-links-drop .header.links li,
  .ox-dropdown.ox-links-drop .header.links li {
    margin: 0 0 2px 0;
  }
  .ox-slideout.ox-links-drop .header.links li .logged-in,
  .ox-dropdown.ox-links-drop .header.links li .logged-in,
  .ox-slideout.ox-links-drop .header.links li a:not(.button),
  .ox-dropdown.ox-links-drop .header.links li a:not(.button) {
    padding: 7px;
    color: #000;
  }
  .ox-slideout.ox-links-drop .header.links a:not(.button):hover,
  .ox-dropdown.ox-links-drop .header.links a:not(.button):hover,
  .ox-slideout.ox-links-drop .header.links a:not(.button):focus,
  .ox-dropdown.ox-links-drop .header.links a:not(.button):focus {
    background: #000;
    color: #fff;
  }
  .ox-slideout .header.links {
    padding: 30px;
  }
  .minicart--style-modern .ox-slideout .header.links {
    padding: 60px 70px;
  }
  .ox-dropdown.ox-links-drop {
    width: 280px;
  }
  .ox-dropdown.ox-login-drop {
    padding: 0;
    width: 750px;
  }
  .ox-dropdown .block-account > .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .ox-dropdown .block-account .block {
    padding: 30px;
    width: 50%;
    margin: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: wrap;
    align-self: stretch;
    align-content: center;
  }
  .minicart--style-modern .ox-dropdown.ox-links-drop {
    width: 310px;
  }
  .minicart--style-modern .ox-dropdown.ox-links-drop .block-content {
    padding: 40px;
  }
  .minicart--style-modern .ox-dropdown .block-account .block {
    padding: 50px;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #f1f1f1;
    text-align: right;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .aw-heldesk2__agent-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  .aw-heldesk2__agent-container .page-title-wrapper {
    padding-right: 20px;
  }
  .aw_helpdesk2__agent-info {
    width: 40%;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .aw-helpdesk2__form .top-panel {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .checkout-index-index .opc-wrapper.am-opc-wrapper .shipping-address-item {
    width: 50%;
  }
  .am-checkout.-modern .amcheckout-trust-badges {
    justify-content: flex-end;
  }
  /* phpcs:ignore Magento2.Less.AvoidId.IdSelectorUsage */
  #checkout.am-checkout.-modern.-layout-1column .authentication-wrapper {
    min-width: 300px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper {
    flex: inherit;
    width: calc(50% - 7px);
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date,
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    width: 50%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.date {
    padding-right: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-delivery-date .field.timepicker {
    padding-left: 10px;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title {
    background: #eeeeee;
    color: #363636;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .amcheckout-title > .amcheckout-icon {
    background: none;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .subtotal {
    width: 15%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .amcheckout-summary-container .table-totals {
    margin-left: auto;
    width: 40%;
  }
  .amcheckout-main-container.-modern .amcheckout-step-container .checkout-payment-method .payment-option-title {
    border: none;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-summary-container .details-qty {
    max-width: 20%;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-checkboxes,
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-comment {
    display: inline-block;
    vertical-align: top;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-checkboxes {
    box-sizing: border-box;
    padding-right: 10px;
    width: 45%;
  }
  .checkout-index-index:not(.amasty-jet-theme) .amcheckout-main-container.-modern.-layout-1column .amcheckout-additional-options .amcheckout-comment {
    width: 55%;
  }
  .amcheckout-main-container.-modern.-layout-2columns {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column {
    margin: 0;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-main {
    float: left;
    width: calc(100% - (380px + 60px));
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar {
    float: right;
    transition: all .3s ease;
    width: 380px;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar.-sticky {
    max-height: 100vh;
    overflow: auto;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar .amcheckout-trust-badges {
    justify-content: center;
    margin: 0 0 15px;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-column.-sidebar .amcheckout-trust-seal {
    font-size: 12px;
    max-width: 265px;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary {
    background: #ffffff;
    border: 1px solid #d4d4d4;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar {
    margin-bottom: 20px;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary > .checkout-payment-method .actions-toolbar .amasty.checkout {
    float: none;
    width: 70%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .amcheckout-title,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-title {
    background: #f9f9f9;
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .product-item-name,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .product-item-name {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .subtotal,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .subtotal {
    width: auto;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-summary-container .table-totals,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-additional-options .table-totals {
    margin-left: 0;
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options {
    background: #ffffff;
  }
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-checkboxes,
  .amcheckout-main-container.-modern.-layout-2columns .amcheckout-step-container .amcheckout-additional-options .amcheckout-comment {
    display: block;
    width: 100%;
  }
  .amcheckout-sticky-stopper {
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
    visibility: hidden;
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns {
    display: flex;
    justify-content: space-between;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-column {
    width: 32%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary .amcheckout-trust-badges {
    justify-content: center;
    margin: 0 0 15px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container.-summary .amcheckout-trust-seal {
    font-size: 12px;
    margin: auto;
    max-width: 66%;
    text-align: center;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-title {
    cursor: default;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-email .amcheckout-wrapper,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-email .amcheckout-wrapper {
    flex: auto;
    width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-form-login .amcheckout-password,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .form-login .amcheckout-password {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item,
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-item:not(:last-of-type),
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-address .shipping-address-details:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods {
    min-width: inherit;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-shipping-methods .amcheckout-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .billing-address-details {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-payment-methods .payment-method:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .control {
    position: relative;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date .input-text._has-datepicker {
    width: 100%;
  }
  .amcheckout-main-container.-modern.-layout-3columns .amcheckout-step-container .amcheckout-delivery-date .field.date ._has-datepicker ~ .ui-datepicker-trigger {
    margin: 0;
    position: absolute;
    right: 7px;
    top: 7px;
  }
  .amcheckout-main-container.-modern.-layout-3columns .checkout-payment-method .amcheckout-trust-seal {
    max-width: 66%;
  }
  .amconf-matrix-table-wrap .amconf-matrix-title {
    font-size: 14px;
  }
  .amconf-matrix-table-wrap .amconf-matrix-input {
    max-width: 40px;
    padding: 0 5px;
  }
  .amconf-matrix-table-wrap .amconf-text {
    border-right: 1px solid #c4c4c4;
  }
  .amconf-matrix-table-wrap .amconf-cell:last-child .amconf-text {
    border: 0;
  }
  .amgdpr-modal-container .modal-header {
    padding: 40px 50px 20px;
  }
  .amgdpr-modal-container .modal-header .modal-title {
    font-size: 30px;
  }
  .amgdpr-modal-container .modal-content {
    padding: 0 30px 0 50px;
  }
  .amgdpr-modal-container .modal-footer {
    padding: 30px 50px 50px;
  }
  .amgdpr-modal-container .action.action-primary {
    width: auto;
  }
  .amgdprcookie-main-wrapper {
    padding: 0;
  }
  .amgdprcookie-main-wrapper .amgdprcookie-top {
    margin-bottom: 35px;
  }
  .amgdprcookie-main-wrapper .amgdprcookie-head {
    font-size: 34px;
    line-height: normal;
  }
  .amgdprcookie-main-wrapper .amgdprcookie-btn {
    padding: 17px 46px;
    box-shadow: 0 3px 10px rgba(62, 40, 13, 0.15);
    text-transform: none;
    font-size: 20px;
  }
  .amgdprcookie-cookie-container {
    margin-bottom: 30px;
    padding: 25px 0;
  }
  .amgdprcookie-cookie-container .amgdprcookie-caption {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .amgdprcookie-cookie-container .amgdprcookie-toggle-cookie {
    padding-left: 0;
  }
  .amgdprcookie-cookie-container .amgdprcookie-text {
    font-size: 14px;
  }
  .amgdprcookie-cookie-container .amgdprcookie-options {
    display: inline-block;
    background: inherit;
    font-size: 14px;
  }
  .amgdprcookie-groups-modal .amgdprcookie-cookie-container,
  .amgdprcookie-groups-modal .amgdprcookie-header,
  .amgdprcookie-groups-modal .amgdprcookie-text {
    padding: 0;
  }
  .amgdprcookie-modal-container .modal-inner-wrap {
    background: #fff;
    min-width: 400px;
    right: unset;
    width: 21%;
  }
  .amgdprcookie-table .amgdprcookie-cell.desc,
  .amgdprcookie-table .amgdprcookie-title.-wide {
    width: 30%;
  }
  .amgdprcookie-table .amgdprcookie-cell,
  .amgdprcookie-table .amgdprcookie-title {
    width: 15%;
  }
  .amgdprcookie-bar-container .amgdprcookie-buttons-block {
    flex-direction: row;
    margin-bottom: 5px;
  }
  .amgdprcookie-bar-container .amgdprcookie-buttons-block .amgdprcookie-button {
    margin-bottom: 0;
  }
  .amgdprcookie-groups-modal .amgdprcookie-form {
    padding: 0 20px;
  }
  .checkout-index-index .modal-popup.amgdprcookie-modal-container .modal-inner-wrap {
    left: unset;
    margin-left: unset;
    width: 21%;
  }
  .am-brands-fullwidth {
    width: 100% !important;
  }
  .amslider .slide {
    flex-basis: auto;
    margin: 0 20px 20px 0;
    max-width: 32%;
  }
  .ui-tooltip.ui-widget {
    max-width: 450px;
  }
  .filter-options-content a:hover {
    text-decoration: none;
  }
  .catalog-topnav {
    display: block;
  }
  .page-layout-1column .toolbar-products {
    position: inherit !important;
  }
  .filter-options-content .am-filter-price {
    width: 40%;
  }
  .sidebar > .block-category-list {
    margin-bottom: 14px;
  }
  .amasty-catalog-topnav {
    margin-top: 3px;
  }
  .amasty-catalog-topnav.catalog-topnav .filter-options .filter-options-content {
    min-width: 200px;
    z-index: 1001;
  }
  .amasty-catalog-topnav .filter-options {
    margin-bottom: 20px;
    padding: 3px 0;
  }
  .amasty-catalog-topnav .filter-subtitle {
    display: none;
  }
  .amasty-catalog-topnav .amshopby-category-dropdown {
    min-width: 200px;
  }
  .amasty-catalog-topnav .filter-options-item {
    margin-bottom: 0;
  }
  .amasty-catalog-topnav .filter-options-item:first-child .filter-options-title {
    padding-left: 0;
  }
  .amasty-catalog-topnav .filter-options-title {
    padding-right: 5px;
  }
  .amasty-catalog-topnav .filter-options-title:after {
    display: inline-block;
    margin: 0 0 0 15px;
    position: static;
    transform: translateY(-2px);
  }
  .sidebar.sidebar-main.-amshopby-sticky {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options {
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover {
    scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar {
    background: #f0f0f0;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 6px;
    cursor: pointer;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ffffff;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar {
    height: 12px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar-thumb {
    height: 6px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options ::-webkit-scrollbar-track {
    height: 6px;
    width: 6px;
  }
  .filter-options-content .am-filter-price {
    width: 43%;
  }
  .amslider-container.am-swiper-slider {
    width: 85%;
  }
  .amasty-catalog-topnav .filter-options-item .filter-options-content .amshopby-flyout-block .items.amshopby-fly-out-view {
    margin: -11px;
    box-shadow: none;
  }
  .filter-options input[type='checkbox'] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    width: 0;
    position: absolute;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    margin: 0;
    padding: 0 0 0 22px;
    min-height: 12px;
    line-height: 1.2;
    cursor: pointer;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before,
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    content: '';
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before {
    border: 1px solid #e3e3e3;
    background: #ffffff;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    background: #ba977c url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPGRlZnMvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMS42NjkzIDMuNTAwNjFjLS4yMDc4LjAwNjk1LS40MDQ4LjA5ODg1LS41NDkzLjI1NjItMS45NTcwMyAyLjA2NDE1LTMuNDM4ODMgMy43NzY1NS01LjI4MDQxIDUuNzQ3ODNMMy44MTczIDcuNzA0NzRjLS4wNzk5Mi0uMDcxNi0uMTcyNDUtLjEyNTk1LS4yNzIzMy0uMTU5OTItLjA5OTg3LS4wMzM5Ny0uMjA1MTItLjA0NjktLjMwOTc0LS4wMzgwNi0uMTA0NjIuMDA4ODUtLjIwNjU2LjAzOTI5LS4zLjA4OTYtLjA5MzQ1LjA1MDMtLjE3NjU2LjExOTQ4LS4yNDQ1OS4yMDM2LS4wNjgwNC4wODQxMS0uMTE5NjYuMTgxNTEtLjE1MTkzLjI4NjYyLS4wMzIyNy4xMDUxMS0uMDQ0NTUuMjE1ODgtLjAzNjE1LjMyNTk4LjAwODQxLjExMDExLjAzNzM0LjIxNzQuMDg1MTUuMzE1NzQuMDQ3ODEuMDk4MzMuMTEzNTUuMTg1NzkuMTkzNDguMjU3MzlMNS4zNzc3MSAxMS4yOThjLjE1MzE1LjEzNzkuMzUwMTkuMjA5OC41NTE2LjIwMTMuMjAxNDEtLjAwODYuMzkyMzEtLjA5NjkuNTM0NDQtLjI0NzNDOC42MTA3NCA4Ljk4NzU3IDEwLjE0MiA3LjE3NTQ0IDEyLjI1NiA0Ljk0NTc4Yy4xMTY1LS4xMTgzNy4xOTYtLjI3MTIuMjI4MS0uNDM4MjMuMDMyMS0uMTY3MDMuMDE1My0uMzQwMzgtLjA0ODQtLjQ5NzA5LS4wNjM2LS4xNTY3MS0uMTcwOS0uMjg5MzctLjMwNzgtLjM4MDQyLS4xMzY5LS4wOTEwNS0uMjk2OC0uMTM2MTktLjQ1ODYtLjEyOTQzeiIvPgo8L3N2Zz4K) center / 12px;
    content: none;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:hover:before,
  .filter-options input[type='checkbox']:checked + .amshopby-choice:before {
    border-color: #ba977c;
  }
  .filter-options input[type='checkbox']:checked + .amshopby-choice:after {
    content: '';
  }
  ._keyfocus .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  ._keyfocus .filter-options input[type='checkbox']:focus + .amshopby-choice:before,
  .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  .filter-options input[type='checkbox']:focus + .amshopby-choice:before {
    border-color: #ba977c;
  }
  .filter-options input[type='checkbox']:not(:checked).mage-error + .amshopby-choice:before {
    border-color: #f23b3b;
  }
  .am_shopby_apply_filters {
    position: absolute;
    bottom: inherit;
    z-index: 212;
    display: none;
    visibility: hidden;
    padding: 0;
    width: inherit;
  }
  .am_shopby_apply_filters.visible {
    bottom: inherit;
    visibility: visible;
  }
  .am_shopby_apply_filters.-fixed {
    position: fixed;
  }
  .am_shopby_apply_filters.-fixed .am-show-button:before {
    display: none;
  }
  .am-show-button {
    position: relative;
    justify-content: space-between;
    margin: 0 0 10px;
    padding: 12px 10px;
    min-width: 180px;
    width: inherit;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(190, 199, 219, 0.21), 0 6px 25px rgba(190, 199, 219, 0.28);
  }
  .am-show-button > .am-items {
    margin: 0 auto;
  }
  .am-show-button:before {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffffff;
    content: '';
    transform: rotate(45deg);
  }
  .am-show-button.-vertical:before {
    top: calc(50% - (10px / 2));
    right: calc(100% - (10px / 2));
  }
  .am-show-button.-horizontal:before {
    top: calc(100% - (10px / 2));
    left: calc(50% - (10px / 2));
  }
  #amasty-shopby-product-list .amshopby-overlay-block > .amshopby-loader {
    top: 30%;
    transform: translate(-50%, -30%);
  }
  .ambrands-letters-filter .ambrands-letter {
    margin: 0 7px 7px 0;
  }
  .ambrands-letters-list {
    display: flex;
  }
  .ambrands-letters-list .ambrands-letter .ambrands-content {
    margin: 0 -10px;
  }
  .ambrands-letters-list .ambrands-brand-item {
    margin: 0 10px 20px;
  }
  .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 156px;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 10px;
    width: inherit;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 30px;
    width: inherit;
  }
  .ambrands-list-popup {
    position: absolute;
    width: 600px;
    height: 415px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(131, 136, 141, 0.13), 0 10px 15px rgba(131, 136, 141, 0.13);
    opacity: 0;
    transition: all .5s ease;
    pointer-events: none;
  }
  .ambrands-menu-item:hover .ambrands-list-popup,
  .ammenu-item:hover .ambrands-list-popup {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .ambrands-list-container {
    display: flex;
    height: 100%;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter {
    display: block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px 14px 0;
    min-width: calc(((34px + 12px) * 4) + (14px * 2));
    width: calc(((34px + 12px) * 4) + (14px * 2));
    height: 100%;
    background: #fbfbfb;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter {
    display: inline-flex;
    margin: 0 6px 12px;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter.-letter-all {
    margin-bottom: 30px;
    width: calc(100% - 12px);
  }
  .ambrands-popup-items {
    display: inline-block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
  .ambrands-popup-items .ambrands-letters-list {
    width: 100%;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-letter {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .ambrands-popup-items .ambrands-letters-list:last-child .ambrands-letter {
    margin-bottom: 0;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item .ambrands-label {
    max-width: 130px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 102px;
  }
  .ambrands-popup-items .ambrands-letter .ambrands-brand-item .ambrands-empty {
    font-weight: 400;
    font-size: 40px;
  }
  /* Overwriting Magento's padding for the method title to make
       sure our KP methods have the same height as the core methods */
  .klarna-payments-method > .payment-method-title {
    padding: 11.5px 0;
  }
  .hide-on-desktop {
    display: none !important;
  }
  .ox-megamenu .ox-megamenu-navigation {
    padding: 0 0 0 24px;
  }
  .ox-megamenu-navigation {
    min-height: 55px;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown {
    z-index: 6;
  }
  .ox-megamenu-navigation .category-item > a {
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
    background-color: transparent;
    color: #2a2c2c;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: 0;
  }
  .ox-megamenu-navigation .category-item:hover > a {
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
    background-color: #ffffff;
    color: #2a2c2c;
  }
  .ox-megamenu-navigation .category-item.has-active > .level-top,
  .ox-megamenu-navigation .category-item.active > .level-top,
  .ox-megamenu-navigation .category-item.has-active > a,
  .ox-megamenu-navigation .category-item.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-megamenu-navigation .category-item.has-active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.has-active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.has-active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.has-active > a .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.active > a .ox-menu-arrow:after {
    background-color: currentColor;
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
  }
  .ox-megamenu-navigation > .level0 {
    margin: 0;
  }
  .ox-megamenu-navigation > .level0 > .level-top {
    letter-spacing: -0.5px;
    padding: 0 14px;
    min-height: 44px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
    color: #ffffff;
  }
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .level-top {
    background-color: transparent;
    color: #ffffff;
  }
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .level-top .ox-menu-arrow:after {
    background-color: currentColor;
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
  }
  .ox-megamenu-navigation > .level0.has-active > .level-top,
  .ox-megamenu-navigation > .level0.active > .level-top,
  .ox-megamenu-navigation > .level0.has-active > a,
  .ox-megamenu-navigation > .level0.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-megamenu-navigation > .level0.has-active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.active > .level-top .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.has-active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.active > a .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.has-active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.active > .level-top .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.has-active > a .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.active > a .ox-menu-arrow:after {
    background-color: currentColor;
  }
  .ox-megamenu-navigation > .level0 .category-item {
    margin: 0;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item > a {
    border-top: none;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item.active > a {
    border-color: #2a2c2c;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown {
    opacity: 0;
    transition: opacity 0.5s;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown.animate {
    opacity: 1;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown.opened {
    display: block;
  }
  .ox-megamenu .ox-submenu {
    opacity: 0;
    transition: opacity 0.5s;
  }
  .ox-megamenu .ox-submenu.opened {
    display: block !important;
  }
  .ox-megamenu .ox-submenu.animate {
    opacity: 1;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-right"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-right"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-center"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-center"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-right"] {
    position: static;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-left"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-center"],
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-right"] {
    position: relative;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-center"] > .ox-megamenu__dropdown {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-right"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="item-right"] > .ox-megamenu__dropdown {
    left: auto;
    right: 0;
  }
  .ox-megamenu-navigation ul.ox-megamenu-dd--reverse {
    left: auto !important;
    right: 100% !important;
  }
  .ox-megamenu {
    position: relative;
    z-index: 40;
  }
  .ox-megamenu-navigation {
    margin: 0;
    padding: 0;
    list-style: none none;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* Hover and Dont show top border for category columns */
  }
  .ox-megamenu-navigation .ox-dropdown--simple:hover > .ox-megamenu__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .ox-megamenu-navigation > li {
    display: inline-block;
  }
  .ox-megamenu-navigation > li > a .ox-megamenu-label {
    position: absolute;
    display: block;
    top: -7px;
    right: 0;
    word-break: normal;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item.active + .category-item > a {
    border-color: #2a2c2c;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:hover + .category-item > a,
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:hover > a {
    border-color: #ffffff;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:first-child > a {
    border-top: none;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .ox-megamenu__categories .level1.category-item > a {
    border-top: none;
  }
  /* set min width for none menu menu items only? */
  .ox-megamenu__dropdown {
    display: none;
    background: #ffffff;
    padding: 30px;
    min-width: 290px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
  }
  /* Positioning of drop downs */
  .ox-megamenu-navigation .ox-dropdown--megamenu {
    position: static;
  }
  .ox-megamenu-navigation .ox-dropdown--simple {
    position: relative;
  }
  .ox-megamenu-navigation .ox-dropdown--simple .ox-submenu {
    top: -20px;
    left: 80%;
  }
  .ox-dropdown--megamenu {
    /* Hide arrow for megamenu first items */
  }
  .ox-dropdown--megamenu.level1 {
    position: relative;
  }
  .ox-dropdown--megamenu.level1 > .ox-megamenu__dropdown {
    top: -20px;
    left: 80%;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch {
    position: static;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top > .ox-megamenu__dropdown,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > .ox-megamenu__dropdown {
    left: calc(100% - 30px);
    top: 0px;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top > a .ox-menu-arrow,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > a .ox-menu-arrow {
    display: none !important;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > .ox-megamenu__dropdown {
    min-height: 100%;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-right {
    position: relative;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-right > .ox-megamenu__dropdown {
    top: -20px;
    left: 100%;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown {
    padding: 35px;
    width: 100%;
    left: 0;
    font-weight: normal;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > a,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item > a {
    background-color: transparent;
    color: #2a2c2c;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    padding: 7px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    box-sizing: border-box;
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > a:hover,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item > a:hover {
    background-color: #ffffff;
    color: #2a2c2c;
    -webkit-transition: all 10ms ease-in-out;
    -moz-transition: all 10ms ease-in-out;
    -ms-transition: all 10ms ease-in-out;
    transition: all 10ms ease-in-out;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item.active > a,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item {
    margin: 0;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item > a {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 8px;
    color: #2a2c2c;
    background-color: transparent;
    text-transform: unset;
    letter-spacing: 0;
    border-top: none;
    margin: 0;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item > a:hover {
    background-color: #ffffff;
    color: #2a2c2c;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item :first-child > a {
    border-top: none;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .category-item.active > a {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu__categories > ul > li > .ox-submenu {
    min-width: 1px;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list.row {
    margin-bottom: -20px;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list.row > li .submenu {
    margin-bottom: 20px;
  }
  .ox-dropdown--megamenu .ox-megamenu-list.ox-megamenu-list--columns-1 {
    display: block;
  }
  .ox-dropdown--megamenu .ox-megamenu-list > .category-item > a > .ox-menu-arrow {
    display: none;
  }
  /* Custom content margin */
  .ox-megamenu-block-top + .ox-megamenu__categories,
  .ox-megamenu-block-top + .row,
  .ox-megamenu-block-bottom {
    margin-top: 30px;
  }
  .ox-dropdown--simple .ox-submenu {
    display: none;
    background: #ffffff;
    padding: 30px;
    min-width: 290px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    z-index: 10;
  }
  .ox-dropdown--simple li:hover > .ox-submenu {
    display: block;
  }
  .ox-megamenu .ox-submenu .li {
    position: relative;
  }
  .ox-megamenu .level2 .ox-submenu {
    display: none;
    background: #ffffff;
    padding: 30px;
    min-width: 290px;
    position: absolute;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    z-index: 10;
    left: 80%;
    top: -20px;
  }
  .ox-megamenu .level2:hover > .ox-submenu {
    display: block;
  }
  /* Parent menu arrows */
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-left: auto;
    width: 9px;
    height: 6px;
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:after,
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:before {
    content: '';
    position: absolute;
    background: currentColor;
    transform: rotate(45deg);
    -webkit-transition: background  0.3s ease-in-out;
    -moz-transition: background  0.3s ease-in-out;
    -ms-transition: background  0.3s ease-in-out;
    transition: background  0.3s ease-in-out;
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:before {
    right: 3px;
    top: 2px;
    width: 6px;
    height: 2px;
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow:after {
    right: 2px;
    top: 0;
    width: 2px;
    height: 6px;
  }
  /* Arrow position */
  .ox-megamenu-navigation li.level0.parent > a .ox-menu-arrow {
    margin-left: 6px;
    transform: rotate(0deg);
  }
  .ox-megamenu-navigation li.parent > a .ox-menu-arrow {
    transform: rotate(-90deg);
  }
  /* Category columns */
  .ox-megamenu-list--columns-1 > li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ox-megamenu-list--columns-2 > li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-megamenu-list--columns-3 > li {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-megamenu-list--columns-4 > li {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-megamenu-list--columns-5 > li {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ox-megamenu-list--columns-6 > li {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* Basic Grid Columns */
  .ox-menu-col-1 {
    -ms-flex: 0 0 8.33333333%;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ox-menu-col-2 {
    -ms-flex: 0 0 16.66666667%;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ox-menu-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-menu-col-4 {
    -ms-flex: 0 0 33.33333333%;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-menu-col-5 {
    -ms-flex: 0 0 41.66666667%;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ox-menu-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-menu-col-7 {
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ox-menu-col-8 {
    -ms-flex: 0 0 66.66666667%;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ox-menu-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ox-menu-col-10 {
    -ms-flex: 0 0 83.33333333%;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ox-menu-col-11 {
    -ms-flex: 0 0 91.66666667%;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ox-menu-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .nav-sections-item-content > .ox-megamenu {
    display: block;
  }
  .block-cart-failed .actions {
    text-align: left;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    float: right;
    position: relative;
    width: 23%;
  }
  .column.main .cart-summary .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper .item .col.item {
    padding: 27px 8px 10px;
  }
  .cart.table-wrapper .item-actions td {
    text-align: right;
  }
  .cart.table-wrapper .product-image-container {
    display: inline-block;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart.table-wrapper .item-actions .actions-toolbar {
    text-align: left;
  }
  .cart .action {
    margin-bottom: 10px;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
    margin: 0 0 1px;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 7px;
    padding-top: 8px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    right: -15px;
    width: 390px;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 22px 0 0;
  }
  .opc-progress-bar-item {
    width: 185px;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 740px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 10px;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 740px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #f1f1f1;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .table-checkout-shipping-method {
    min-width: 500px;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 33.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #ffffff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear .1s, visibility 0s linear .1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear .1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 33.33333333%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 3.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 1024px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field {
    margin: 0 0 20px;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.choice:before {
    padding: 0;
    width: 0;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type .control {
    margin-left: 25.8%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type.no-detection .control {
    margin-left: 0;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-downloadable .product-options-bottom .field.qty + .actions {
    padding-top: 0;
  }
  .gift-message .field {
    margin-bottom: 20px;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    float: right;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .cart.table-wrapper .action-gift {
    float: left;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field > .label {
    margin: 0;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    content: '';
    display: table;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    clear: both;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.choice:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .form-add-invitations .additional,
  .form-add-invitations .field.text {
    margin-top: 29px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .wishlist.window.popup .field {
    margin: 0 0 20px;
  }
  .wishlist.window.popup .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .wishlist.window.popup .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .wishlist.window.popup .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .wishlist.window.popup .field.choice:before,
  .wishlist.window.popup .field.no-label:before {
    display: none;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #ba977c;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field {
    margin-right: 5px;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .field .control {
    width: 100%;
  }
  .block.newsletter .action.subscribe {
    border-radius: 3px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #f1f1f1;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .reward-settings + .actions-toolbar {
    margin-top: -32px;
  }
  .form-create-return .additional .field:last-child {
    margin-top: 29px;
  }
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  #checkout .opc-wrapper .form-login,
  #checkout .opc-wrapper .form-shipping-address,
  #checkout .opc-wrapper .methods-shipping {
    max-width: none;
    padding: 0;
  }
  .form-login .actions-toolbar {
    text-align: left;
  }
  .form-login .actions-toolbar:before,
  .form-login .actions-toolbar:after {
    content: '';
    display: table;
  }
  .form-login .actions-toolbar:after {
    clear: both;
  }
  .form-login .actions-toolbar .secondary {
    float: left;
  }
  .form-login .actions-toolbar .primary,
  .form-login .actions-toolbar .secondary {
    display: inline-block;
  }
  .form-login .actions-toolbar .primary a.action,
  .form-login .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .form-login .actions-toolbar .primary .action {
    margin: 0 25px 0 0;
  }
  .form-login .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .form-shipping-address .fieldset > .field:not(.choice),
  .form-shipping-address .fieldset .fields > .field:not(.choice) {
    margin: 0 0 20px;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .form-shipping-address .fieldset > .field:not(.choice):not(.choice) > .label,
  .form-shipping-address .fieldset .fields > .field:not(.choice):not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    padding: 0;
  }
  .form-shipping-address .fieldset > .field:not(.choice):not(.choice) > .control,
  .form-shipping-address .fieldset .fields > .field:not(.choice):not(.choice) > .control {
    float: none;
    width: auto;
  }
  .form-shipping-address .fieldset > .field:not(.choice) > .label,
  .form-shipping-address .fieldset .fields > .field:not(.choice) > .label {
    margin: 0 0 5px;
    text-align: left;
    display: inline-block;
  }
  .form-shipping-address .fieldset > .field:not(.choice).choice:before,
  .form-shipping-address .fieldset .fields > .field:not(.choice).choice:before,
  .form-shipping-address .fieldset > .field:not(.choice).no-label:before,
  .form-shipping-address .fieldset .fields > .field:not(.choice).no-label:before {
    display: none;
  }
  .form-shipping-address .fieldset > .field:not(.choice) + .fieldset,
  .form-shipping-address .fieldset .fields > .field:not(.choice) + .fieldset {
    clear: both;
  }
  .form-shipping-address .fieldset > .field:nth-last-child(1),
  .form-shipping-address .fieldset .fields > .field:nth-last-child(1),
  .form-shipping-address .fieldset > .field:nth-last-child(2),
  .form-shipping-address .fieldset .fields > .field:nth-last-child(2) {
    margin-bottom: 0;
  }
  .modal-custom .modal-inner-wrap {
    background-color: transparent;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    position: relative;
    width: 40%;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0 0 25px;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input::-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-ms-input-placeholder {
    color: #c2c2c2;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    padding: 5px 0;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: #ffffff;
    content: '\e615';
    font-family: 'icons-blank-theme';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: inherit;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:hover:before,
  .block-search .action.search:focus:before {
    color: #ffffff;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .login-container .block .login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block .login .actions-toolbar > .secondary {
    float: left;
  }
  .fieldset .fullname .field .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset .fullname .field .control {
    width: 74.2%;
    float: left;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48.8%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 2.4%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .table-order-items .subtotal,
  .table-order-items .amount {
    text-align: right;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .page-title-wrapper .order-date {
    margin-top: -20px;
  }
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .header.panel > .header.links {
    float: right;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none none;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    font-size: 14px;
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li a {
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    padding-left: 5px;
  }
  .header.content {
    padding: 30px 20px 0;
    background-color: #2a2c2c;
  }
  .page-header .panel.wrapper {
    background-color: #2a2c2c;
    color: #ffffff;
  }
  .page-header .panel.wrapper a {
    color: #ffffff;
  }
  .page-header .panel.wrapper a:visited {
    color: #ffffff;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    display: inline-block;
  }
  .logo {
    margin: 0 auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content .links {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 50px 0 0;
    vertical-align: top;
  }
  .footer.content .switcher.store {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .products-grid.wishlist .product-items {
    margin: 0;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty .label {
    width: auto;
    display: none;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .wishlist-index-index .product-item-info {
    width: 100%;
  }
  .page-products .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .page-products.page-layout-1column .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .page-products.page-layout-3columns .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .page-layout-1column .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .page-layout-3columns .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .page-products .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
  .page-products.page-layout-1column .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem;
  }
  .page-products.page-layout-3columns .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .products.wrapper ~ .toolbar .pages {
    float: right;
  }
  .toolbar-amount {
    float: left;
  }
  .sorter {
    float: right;
    padding: 4px 0 0;
  }
  .page-products .sorter {
    position: static;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    color: #727878;
    border: 1px solid #f1f1f1;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 3px 5px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-mode:not(.active):hover {
    color: #727878;
    background: #dedede;
  }
  .modes-mode:last-child {
    border-right: 1px solid #f1f1f1;
  }
  .modes-mode.active {
    color: #9ba0a0;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: inherit;
    color: #727878;
    content: '\e60d';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #727878;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: left;
    padding: 4px 0 0;
  }
  .product-info-main .box-tocart .actions,
  .product-options-bottom .box-tocart .actions {
    display: table-cell;
    text-align: center;
    vertical-align: bottom;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 40px;
  }
  .page-layout-1column .product-info-main {
    width: 46%;
    margin-bottom: 40px;
  }
  .page-layout-1column .product.media {
    width: 50%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .block.filter .title {
    display: none;
  }
  .block.filter .content {
    margin: 0 0 15px 0;
    border: 0;
    padding: 20px;
    border-top: 6px solid #ba977c;
    background: #f5f5f5;
  }
  .block.filter .content .options {
    margin: 0;
    font-size: 13px;
  }
  .block.filter .content .options dt {
    font-size: 1.7rem;
    font-weight: 800;
  }
  .block.filter .content .item {
    margin: 0;
  }
  .block.filter .content .item a {
    margin-left: -5px;
    margin-right: -5px;
    padding: 5px 8px 4px;
    display: inline-block;
    line-height: 1.3;
  }
  .block.filter .content .item span.count {
    display: none;
  }
  .block.filter.grid-filter.block {
    background: #f8f8f8;
    padding: 10px;
    margin-bottom: 30px;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
  }
  .block.filter.grid-filter .block-title strong {
    display: none;
  }
  .block.filter.grid-filter .filter-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    grid-gap: 2rem;
  }
  .page-layout-1column .filter-options-item.active {
    z-index: 2;
  }
  .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
  .page-layout-1column .block.widget .products-grid .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .page-layout-3columns .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
  .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .page-layout-1column .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .page-layout-3columns .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
  .abs-products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
  .abs-products-grid .page-products.page-layout-1column .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .page-products.page-layout-3columns .product-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .page-layout-1column .product-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .abs-products-grid .page-layout-3columns .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .abs-products-grid-wishlist .product-items,
  .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 20px;
  }
  .abs-products-grid-wishlist .product-items .product-item,
  .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .abs-products-grid-wishlist .product-items,
  .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items,
  .wishlist-index-index .products-grid.wishlist .product-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .abs-products-grid-wishlist .product-items .product-item,
  .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item,
  .wishlist-index-index .products-grid.wishlist .product-items .product-item {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .abs-abs-data-tabs {
    position: relative;
    z-index: 1;
  }
  .abs-abs-data-tabs:before,
  .abs-abs-data-tabs:after {
    content: '';
    display: table;
  }
  .abs-abs-data-tabs:after {
    clear: both;
  }
  .abs-abs-data-tabs > .item.title {
    float: left;
    width: auto;
  }
  .abs-abs-data-tabs > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .abs-abs-data-tabs > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .abs-abs-data-tabs > .item.content:before,
  .abs-abs-data-tabs > .item.content:after {
    content: '';
    display: table;
  }
  .abs-abs-data-tabs > .item.content:after {
    clear: both;
  }
  .abs-abs-data-tabs > .item.content.active {
    display: block;
  }
  .abs-abs-data-tabs > .item.title {
    margin: 0 5px 0 0;
  }
  .abs-abs-data-tabs > .item.title > .switch {
    font-weight: 700;
    line-height: 20px;
    font-size: 1.6rem;
    color: #ba977c;
    text-decoration: none;
    background: transparent;
    border: 1px solid #f1f1f1;
    border-bottom: none;
    height: 40px;
    padding: 5px 20px 14px 20px;
  }
  .abs-abs-data-tabs > .item.title > .switch:visited {
    color: #ba977c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title > .switch:hover {
    color: #ba977c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title > .switch:active {
    color: #2a2c2c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:focus,
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:hover {
    background: transparent;
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:active,
  .abs-abs-data-tabs > .item.title.active > .switch,
  .abs-abs-data-tabs > .item.title.active > .switch:focus,
  .abs-abs-data-tabs > .item.title.active > .switch:hover {
    background: transparent;
    color: #2a2c2c;
    text-decoration: none;
  }
  .abs-abs-data-tabs > .item.title.active > .switch,
  .abs-abs-data-tabs > .item.title.active > .switch:focus,
  .abs-abs-data-tabs > .item.title.active > .switch:hover {
    padding-bottom: 14px;
  }
  .abs-abs-data-tabs > .item.content {
    background: transparent;
    margin-top: 38px;
    padding: 20px 0 0 0;
    border: 1px solid #f1f1f1;
  }
  .abs-abs-data-tabs > .item.title > .switch {
    border: none;
    position: relative;
  }
  .abs-abs-data-tabs > .item.title > .switch:after {
    content: '';
    background: #ba977c;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.2s ease;
    width: 100%;
    transform: scale(0, 1);
    backface-visibility: hidden;
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:focus:after,
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .abs-abs-data-tabs > .item.title:not(.disabled) > .switch:active:after,
  .abs-abs-data-tabs > .item.title.active > .switch:after,
  .abs-abs-data-tabs > .item.title.active > .switch:focus:after,
  .abs-abs-data-tabs > .item.title.active > .switch:hover:after {
    width: 100%;
    transform: scale(1, 1);
  }
  .abs-abs-data-tabs > .item.content {
    border-width: 1px 0 0 0;
  }
  .page-footer .footer.content .footer-wrapper .col-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-footer .footer.content .footer-wrapper .col-items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (min-width: 1440px), print {
  .amslider .wrapper {
    justify-content: center;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: none;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .sidebar .product-items .product-item-details {
    margin-left: 85px;
  }
}
.abs-form-autofill textarea:-webkit-autofill,
.abs-form-autofill textarea:-webkit-autofill:hover,
.abs-form-autofill textarea:-webkit-autofill:focus,
.abs-form-autofill textarea:-webkit-autofill:active,
.abs-form-autofill select:-webkit-autofill,
.abs-form-autofill select:-webkit-autofill:hover,
.abs-form-autofill select:-webkit-autofill:focus,
.abs-form-autofill select:-webkit-autofill:active,
.abs-form-autofill input:-webkit-autofill,
.abs-form-autofill input:-webkit-autofill:hover,
.abs-form-autofill input:-webkit-autofill:focus,
.abs-form-autofill input:-webkit-autofill:active {
  -webkit-text-fill-color: #2a2c2c;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
/* Change text in autofill text box */
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #2a2c2c;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
[data-content-type='html'] {
  display: contents;
  word-wrap: break-word;
}
.block-static-block.widget,
.block-cms-link.widget {
  margin-bottom: 0;
}
.product-reviews-summary {
  margin-bottom: 10px;
}
.product-reviews-summary .reviews-actions a {
  color: #ba977c;
}
.block.crosssell .content {
  padding: 0;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
.page.messages .messages {
  position: fixed;
  top: 170px;
  right: 35px;
  margin-bottom: 30px;
  padding-bottom: 0;
  max-width: 400px;
  z-index: 999;
  pointer-events: none;
}
.page.messages .messages .message {
  -moz-animation: bounceOutRight 1.5s ease-in 4s forwards;
  -webkit-animation: bounceOutRight 1.5s ease-in 4s forwards;
  -o-animation: bounceOutRight 1.5s ease-in 4s forwards;
  animation: bounceOutRight 1.5s ease-in 4s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.page.messages .messages .message > *:first-child:before {
  content: none;
}
.page.messages .messages .message a {
  color: #2a2c2c;
  text-decoration: underline;
}
.page.messages .messages .message a:hover {
  color: #2a2c2c;
  text-decoration: underline;
}
.message {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffff;
  border-radius: 5px;
  pointer-events: auto;
  line-height: 20px;
  -webkit-box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  -moz-box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
}
.message.success {
  color: #270;
  background-color: #ffffff;
  border-left: 5px solid #270;
}
.message.error {
  color: #d8000c;
  background-color: #ffffff;
  border-left: 5px solid #d8000c;
}
.message.info.empty {
  color: #9F6000 !important;
  background-color: #ffffff !important;
  border-left: 5px solid #9F6000 !important;
}
.message.notice,
.message.info {
  background-color: #ffffff;
  border-left: 5px solid #059;
}
.message.warning {
  color: #9F6000;
  background-color: #ffffff;
  border-left: 5px solid #9F6000;
}
.example-message-4 {
  margin: 0 0 10px;
  padding: 20px;
  display: block;
  line-height: 1.2em;
  font-size: 2rem;
  background: #ffffff;
  border-color: #227700;
  color: #227700;
  position: relative;
  padding-left: 40px;
  border-width: 4px;
  border-radius: 10px;
}
.example-message-4 a {
  color: #0000ff;
}
.example-message-4 a:hover {
  color: #000099;
}
.example-message-4 a:active {
  color: #000066;
}
.example-message-4:before {
  background: #227700;
  width: 30px;
  content: '';
  display: block;
  height: 100%;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 0;
}
.example-message-4 > *:first-child:before {
  margin-top: -5px;
  content: '';
  overflow: hidden;
  position: absolute;
  top: 50%;
}
.example-message-4 > *:first-child:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 6rem;
  line-height: 6rem;
  color: #ffffff;
  content: '\e610';
  font-family: 'icons-blank-theme';
  margin: -3rem 0 0;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  left: 0;
  top: 50%;
  width: 30px;
  position: absolute;
  text-align: center;
}
.example-message-4:before {
  left: 0;
}
.example-message-4 > *:first-child:before {
  border: 5px solid transparent;
  height: 0;
  width: 0;
  border-left-color: #227700;
  left: 30px;
}
.example-message-4 > *:first-child:after {
  left: 0;
}
.custom-message-info {
  margin: 0 0 10px;
  padding: 20px;
  display: block;
  line-height: 1.2em;
  font-size: 2rem;
  background: #ffffff;
  border-color: #227700;
  color: #227700;
  position: relative;
  padding-left: 40px;
  border-radius: 5px;
  pointer-events: auto;
  line-height: 20px;
  -webkit-box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  -moz-box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
  box-shadow: -1px 1px 6px rgba(30, 32, 40, 0.3);
}
.custom-message-info a {
  color: #0000ff;
}
.custom-message-info a:hover {
  color: #000099;
}
.custom-message-info a:active {
  color: #000066;
}
.custom-message-info:before {
  background: #227700;
  width: 30px;
  content: '';
  display: block;
  height: 100%;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 0;
}
.custom-message-info > *:first-child:before {
  margin-top: -5px;
  content: '';
  overflow: hidden;
  position: absolute;
  top: 50%;
}
.custom-message-info > *:first-child:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 6rem;
  line-height: 6rem;
  color: #ffffff;
  content: '\e610';
  font-family: 'icons-blank-theme';
  margin: -3rem 0 0;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  left: 0;
  top: 50%;
  width: 30px;
  position: absolute;
  text-align: center;
}
.custom-message-info:before {
  left: 0;
}
.custom-message-info > *:first-child:before {
  border: 5px solid transparent;
  height: 0;
  width: 0;
  border-left-color: #227700;
  left: 30px;
}
.custom-message-info > *:first-child:after {
  left: 0;
}
.message.info.empty {
  margin: 0 0 10px;
  padding: 20px;
  display: block;
  line-height: 1.2em;
  font-size: 2rem;
  background: #fdf0d5;
  color: #6f4400;
  padding-left: 60px;
  position: relative;
}
.message.info.empty a {
  color: #ba977c;
}
.message.info.empty a:hover {
  color: #2a2c2c;
}
.message.info.empty a:active {
  color: #2a2c2c;
}
.message.info.empty > *:first-child:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 6rem;
  line-height: 6rem;
  color: #c07600;
  content: '\e602';
  font-family: 'icons-blank-theme';
  margin: -3rem 0 0;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  left: 0;
  top: 50%;
  width: 60px;
  position: absolute;
  text-align: center;
}
.cms-page-view .cms-content table > tbody > tr:nth-child(even) > td,
.cms-page-view .cms-content table > tbody > tr:nth-child(even) > th {
  background: #f5f5f5;
  color: #2a2c2c;
}
.sidebar.sidebar-additional .block {
  padding: 14px;
  border: 1px solid #f1f1f1;
}
.sidebar.sidebar-additional .block .actions-toolbar > .primary .action {
  line-height: 1.6rem;
}
.sidebar.sidebar-additional .block .actions-toolbar > .secondary .action {
  line-height: 1.6rem;
  color: #ba977c;
  font-weight: 600;
}
.oti:before {
  font-weight: normal;
  font-style: normal;
}
.oti-18px.oti-set,
.oti-18px.oti:before {
  font-size: 18px;
}
.oti-24px.oti-set,
.oti-24px.oti:before {
  font-size: 24px;
}
.oti-36px.oti-set,
.oti-36px.oti:before {
  font-size: 36px;
}
.oti-48px.oti-set,
.oti-48px.oti:before {
  font-size: 48px;
}
.oti-dark:before {
  color: rgba(0, 0, 0, 0.54);
}
.oti-dark.oti-inactive:before {
  color: rgba(0, 0, 0, 0.26);
}
.oti-light:before {
  color: #fff;
}
.oti-light.oti-inactive:before {
  color: rgba(255, 255, 255, 0.3);
}
.oti-rotate-45:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.oti-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.oti-rotate-135:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.oti-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.oti-rotate-225:before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.oti-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.oti-rotate-315:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.oti-flip-h:before {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
.oti-flip-v:before {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipV;
  -ms-filter: "FlipV";
}
.oti-spin:before {
  -webkit-animation: oti-spin 2s infinite linear;
  animation: oti-spin 2s infinite linear;
}
@-webkit-keyframes oti-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes oti-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.minicart-wrapper .swatch-option.text {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.minicart-wrapper .swatch-option.text:hover {
  color: var(--primary-color);
}
/* Apply the filter directly on the body tag */
/* Or apply it via media query */
/**
 * Pixlogix Flexibleforms
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 *
 * @category  Pixlogix
 * @package   Pixlogix_Flexibleforms
 * @copyright Copyright (c) Pixlogix Flexibleforms (https://www.pixlogix.com/)
 * @license   http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 * @author    Pixlogix Team <support@pixlogix.com>
 */
/*----------------------------------------------------------------------------------
Device 1440 and higher
------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
Device 1024 and higher
------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
Mobile Device 640 and higher  
------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
Mobile Device 640 and lower  
------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
Mobile Device 480 and lower  
------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------
pflfo-form-inquiry-button 29-06-2023
------------------------------------------------------------------------------------*/
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}
.pflfo-form-inquiry-button {
  margin-top: -15px;
  margin-bottom: 20px;
  padding: 14px 17px;
  font-size: 16px;
}
.modal-popup .modal-inner-wrap {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .modal-popup.modal-slide {
    left: 0;
    padding: 40px 20px;
  }
  .modal-popup.modal-slide .modal-inner-wrap {
    position: relative;
  }
  .product-add-form .pflfo-product-inquiry-wrapper .pflfo-form-inquiry-button {
    max-width: 100% !important;
  }
}
.product-add-form .box-tocart .action.tocart {
  margin-bottom: 0;
}
.product-add-form .pflfo-product-inquiry-wrapper .pflfo-form-inquiry-button {
  margin-top: 0;
  padding: 17px;
  max-width: 243px;
  width: 100%;
  font-size: 18px;
}
.product-info-main .box-tocart {
  margin-bottom: 0;
}
