/**
 * Copyright © 2013-2017 Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
body[class^="genex-checkout-"] {
  background-color: #f2f2f2;
}
body[class^="genex-checkout-"] .card {
  margin-bottom: 10px;
  box-shadow: 0 2px 7.5px #33333315;
}
body[class^="genex-checkout-"] .btn-next {
  display: inline-block;
  background: #fd9df6;
  color: #071C33;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
}
body[class^="genex-checkout-"] .btn-next.disabled {
  background: #cdcdcd;
  cursor: not-allowed;
}
body[class^="genex-checkout-"] .flex-row {
  gap: 5px;
}
body[class^="genex-checkout-"] .inline-spinner {
  height: 15px;
  width: 15px;
  border: 2px solid #00a2d5;
  border-top-color: #cbcbcb;
  border-radius: 100%;
  margin: auto;
  animation: round 2s linear infinite;
  transition: opacity 0.25s ease;
  opacity: 0;
  position: absolute;
}
body[class^="genex-checkout-"] .inline-spinner.enabled {
  opacity: 100%;
  position: relative;
}
@keyframes round {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body[class^="genex-checkout-"] .page-wrapper .header.content {
  display: none;
}
body[class^="genex-checkout-"] .page-wrapper main#maincontent.page-main {
  margin-top: 50px;
}
body[class^="genex-checkout-"] .promotion-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body[class^="genex-checkout-"] .promotion-group-header h5 {
  margin-top: 0;
  margin-bottom: 0;
  flex-grow: 1;
}
body[class^="genex-checkout-"] .promotion-group-header select {
  max-width: 320px;
}
body[class^="genex-checkout-"] table tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle !important;
}
body[class^="genex-checkout-"] table tbody tr:nth-child(odd) td {
  background: #f2f2f2;
}
body[class^="genex-checkout-"] table tfoot tr td {
  text-align: right;
}
body[class^="genex-checkout-"] .checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
body[class^="genex-checkout-"] .checkout-steps .step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #aaa;
  color: #aaa;
}
body[class^="genex-checkout-"] .checkout-steps .step span {
  display: flex;
  background: #f2f2f2;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
}
body[class^="genex-checkout-"] .checkout-steps .step.active {
  font-weight: bold;
  border-bottom: 2px solid #fd9df6;
  color: #071C33;
}
body[class^="genex-checkout-"] .checkout-steps .step.active span {
  background-color: #fd9df6;
  color: #071C33;
  font-weight: bold;
}
#icon-block > div.minicart-wrapper > div:before {
  display: none !important;
}
main#maincontent {
  transition: all 0.2s ease;
}
main#maincontent.blur {
  filter: blur(2px);
}
#minicart-content-wrapper {
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.25);
}
#minicart-content-wrapper:before {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
#minicart-content-wrapper div.block-title {
  padding-left: 20px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  z-index: 101;
}
#minicart-content-wrapper div.block-title i.fa {
  cursor: pointer;
}
#minicart-content-wrapper div.block-title i.fa.fa-trash {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
}
#minicart-content-wrapper div.block-title i.fa.fa-trash:hover {
  color: #ffffff;
}
#minicart-content-wrapper #mini-cart > li.item.product.product-item {
  cursor: default;
}
#minicart-content-wrapper .dialog-splash {
  pointer-events: none;
  background: #000;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  transition: opacity 0.25s ease;
}
#minicart-content-wrapper .dialog-splash.active {
  pointer-events: all;
  opacity: 0.25;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog {
  position: relative;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content {
  position: absolute;
  color: #333;
  font-size: 12pt;
  top: 0;
  z-index: 100;
  background: #ffff;
  left: 0;
  right: 0;
  padding: 10px;
  transform: translateY(-120%);
  transition: all 0.2s ease;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content.active {
  transform: translateY(0);
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  pointer-events: none;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content .dialog-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content .dialog-actions div.btn-cancel,
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content .dialog-actions div.btn-delete {
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content .dialog-actions div.btn-cancel {
  border: 1px solid #333;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content .dialog-actions div.btn-delete {
  background-color: maroon;
  color: #fff;
}
#minicart-content-wrapper .remove-all-items-confirm-dialog .confirm-dialog-content p {
  font-size: 12pt;
}
body.cms-dashboard .sections.nav-sections {
  display: none;
}
body.cms-dashboard main#maincontent {
  display: flex;
  flex-direction: column;
}
body.cms-dashboard main#maincontent .column.main {
  margin-top: -10px;
  background: #2a7298;
}
body.cms-dashboard main#maincontent .columns,
body.cms-dashboard main#maincontent .column.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
body.cms-dashboard main#maincontent .columns section,
body.cms-dashboard main#maincontent .column.main section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  gap: 10px;
}
body.cms-dashboard h4 {
  text-align: center;
}
body.cms-dashboard .carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}
body.cms-dashboard .carousel .pagination-indicators {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
body.cms-dashboard .carousel .pagination-indicators .pagination-indicator {
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: #cdcdcd;
  cursor: pointer;
}
body.cms-dashboard .carousel .pagination-indicators .pagination-indicator.active {
  background: #fff;
  border: 1px solid #cdcdcd;
}
body.cms-dashboard .carousel img {
  max-width: 100%;
  min-width: 800px;
  border: 1px solid #cdcdcd;
}
@media screen and (max-width: 900px) {
  body.cms-dashboard .carousel img {
    min-width: 90vw;
    max-width: 90vw;
  }
}
body.account {
  background: #f2f2f2;
}
body.account div.page-header-card {
  margin-left: unset;
}
body.account .block-collapsible-nav .content {
  background-color: #f2f2f2 !important;
}
body.account main#maincontent.page-main {
  margin-top: 80px;
}
body.account div.card {
  margin-bottom: 10px;
}
body.account .page-header-card {
  margin-left: unset;
  margin-right: unset;
}
body.account main#maincontent {
  display: flex;
  flex-direction: column;
}
body.account div.table-wrapper table.history tr:nth-child(even) {
  background: #f2f2f2;
}
body.account div.table-wrapper table.history tr:nth-child(odd) {
  background: #fff;
}
body.account .sidebar.sidebar-main .c-sidebar.c-sidebar--categories div.block-collapsible-nav ul.nav.items {
  margin-top: 70px;
  border-right: 1px solid #c9c9c9;
}
body.account .sidebar.sidebar-main .c-sidebar.c-sidebar--categories div.block-collapsible-nav ul.nav.items li.nav.item {
  background: none !important;
  box-shadow: none;
  text-align: right;
}
body.account .sidebar.sidebar-main .c-sidebar.c-sidebar--categories div.block-collapsible-nav ul.nav.items li.nav.item strong,
body.account .sidebar.sidebar-main .c-sidebar.c-sidebar--categories div.block-collapsible-nav ul.nav.items li.nav.item a {
  color: #333 !important;
  border-right: 5px solid transparent;
}
body.account .sidebar.sidebar-main .c-sidebar.c-sidebar--categories div.block-collapsible-nav ul.nav.items li.nav.item.current strong,
body.account .sidebar.sidebar-main .c-sidebar.c-sidebar--categories div.block-collapsible-nav ul.nav.items li.nav.item.current a {
  border-left: none !important;
  border-right: 5px solid #fd9df6 !important;
  font-weight: 900;
  padding-right: 10px;
}
.pxc-code-validator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 530px;
  border: 1px solid #cdcdcd;
  border-radius: 25px;
  padding: 20px 20px 25px;
  margin: auto;
}
.pxc-code-validator input {
  max-width: 40px;
  border: none;
  border-bottom: 1px solid #cdcdcd;
  box-shadow: none !important;
  outline: none !important;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
}
.pxc-code-validator span.dash {
  border-bottom: 3px solid #071c33;
  min-width: 15px;
}
ul.pxc-password-requirements {
  padding-left: 15px;
  margin-bottom: 0;
}
ul.pxc-password-requirements li {
  margin-top: 0;
  margin-bottom: 0;
}
ul.pxc-password-requirements li:first-child {
  margin-top: 5px;
  list-style: none;
  margin-bottom: 5px;
}
ul.pxc-password-requirements li.rule-satisfied {
  font-weight: bold;
  color: green;
}
.validation-message {
  color: red;
  font-weight: bold;
}
img.lazy-load {
  display: none;
}
body.cms-process-order,
body.cms-orders,
body.cms-orders-processed {
  background: #f2f2f2;
}
body.cms-process-order div.card.genex-order-processing,
body.cms-orders div.card.genex-order-processing,
body.cms-orders-processed div.card.genex-order-processing {
  border-top: none;
  margin-bottom: 75px;
}
body.cms-process-order main#maincontent,
body.cms-orders main#maincontent,
body.cms-orders-processed main#maincontent {
  margin-left: auto;
  margin-right: auto;
  max-width: 2000px;
}
body.cms-process-order div.header-container,
body.cms-orders div.header-container,
body.cms-orders-processed div.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
body.cms-process-order div.header-container h2,
body.cms-orders div.header-container h2,
body.cms-orders-processed div.header-container h2 {
  margin-top: unset;
}
body.cms-process-order .flex-row,
body.cms-orders .flex-row,
body.cms-orders-processed .flex-row {
  display: flex;
  gap: 10px;
}
body.cms-process-order .go,
body.cms-orders .go,
body.cms-orders-processed .go {
  display: flex;
  align-items: end;
}
body.cms-process-order .date-range,
body.cms-orders .date-range,
body.cms-orders-processed .date-range {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: right;
}
@media (min-width: 768px) {
  body.cms-process-order .date-range,
  body.cms-orders .date-range,
  body.cms-orders-processed .date-range {
    display: grid;
    grid-template-columns: 150px 150px 50px;
  }
}
body.cms-process-order .toprow,
body.cms-orders .toprow,
body.cms-orders-processed .toprow {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: end;
}
@media (min-width: 768px) {
  body.cms-process-order .toprow,
  body.cms-orders .toprow,
  body.cms-orders-processed .toprow {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
body.cms-process-order .dataTables_filter input,
body.cms-orders .dataTables_filter input,
body.cms-orders-processed .dataTables_filter input {
  width: 250px;
  margin-left: 0 !important;
}
body.cms-process-order .dataTables_wrapper .dataTables_filter,
body.cms-orders .dataTables_wrapper .dataTables_filter,
body.cms-orders-processed .dataTables_wrapper .dataTables_filter {
  float: none !important;
  text-align: left;
}
body.cms-process-order .btn-export,
body.cms-orders .btn-export,
body.cms-orders-processed .btn-export {
  margin-left: auto;
  margin-right: 10px;
}
body.cms-process-order div.tabs,
body.cms-orders div.tabs,
body.cms-orders-processed div.tabs {
  display: flex;
  align-items: center;
  background: #ddd;
  border-left: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  border-top: 1px solid #cdcdcd;
  user-select: none;
}
body.cms-process-order div.tabs div,
body.cms-orders div.tabs div,
body.cms-orders-processed div.tabs div {
  padding: 20px;
  background: #eee;
  border-bottom: 2px solid transparent;
}
body.cms-process-order div.tabs div.tab,
body.cms-orders div.tabs div.tab,
body.cms-orders-processed div.tabs div.tab {
  font-weight: bold;
}
body.cms-process-order div.tabs div.tab a,
body.cms-orders div.tabs div.tab a,
body.cms-orders-processed div.tabs div.tab a {
  padding: 20px;
  margin: -20px;
  text-decoration: none;
  color: #333;
}
body.cms-process-order div.tabs div.tab.active,
body.cms-orders div.tabs div.tab.active,
body.cms-orders-processed div.tabs div.tab.active,
body.cms-process-order div.tabs div.tab:hover,
body.cms-orders div.tabs div.tab:hover,
body.cms-orders-processed div.tabs div.tab:hover {
  background: #fff;
  border-bottom: 2px #fd9df6 solid;
}
body.cms-process-order .processing-bar {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
body.cms-process-order input#csv {
  display: none;
}
body.cms-process-order button#uploadCsv {
  margin-right: auto;
}
body.cms-process-order .header-row {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
}
body.cms-process-order .header-row > div {
  display: flex;
}
body.cms-process-order .header-row h2 {
  margin-bottom: 5px;
}
body.cms-process-order .header-row > div:first-child {
  flex-direction: column;
}
body.cms-process-order .header-row > div {
  padding-bottom: 5px;
}
body.cms-process-order .header-row > div:last-child > * {
  margin-top: auto;
}
body.cms-process-order .header-row button {
  background: #fff;
  border: 1px solid #082d4d;
  color: #082d4d;
}
body.cms-process-order .header-row button:hover {
  background: #082d4d;
  color: #fff;
}
body.cms-process-order table.sup_orders {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  overflow: hidden;
}
body.cms-process-order .sup_orders td,
body.cms-process-order .sup_orders thead tr:last-of-type th {
  border-top: 1px solid #ECF0F1;
  padding: 10px;
}
body.cms-process-order .sup_orders td {
  border-left: 1px solid #ECF0F1;
  border-right: 1px solid #ECF0F1;
}
body.cms-process-order .sup_orders thead tr:last-of-type th {
  background-color: #082d4d;
  color: #fff;
}
body.cms-process-order .sup_orders tr:nth-of-type(even) td {
  background-color: #d8ebfb;
}
body.cms-promotion .product-item-info {
  width: 250px !important;
}
body.cms-promotion .product-item .price-box {
  margin: 10px 0 25px;
}
body.cms-promotion .products-list .tocart {
  height: 32px;
}
body.cms-promotion .promo-tag {
  grid-column: span 2;
  color: #fff;
  height: 20px;
  padding: 3px 7px;
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
  width: max-content;
  margin: 5px 0;
}
body.cms-promotion .promo-tag a {
  color: #fff;
}
body.cms-promotion .product-item .tocart {
  height: 32px;
  border-radius: 5px;
}
body.cms-promotion .product.details.product-item-details {
  grid-template-columns: repeat(auto-fit, minmax(35px, 1fr)) !important;
}
body.cms-promotion div.products.wrapper.grid.products-grid > ol {
  gap: 10px;
}
body.cms-promotion .products-grid li.item.product.product-item {
  cursor: auto !important;
  height: 400px !important;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto !important;
}
body.cms-promotion td.product-image {
  max-width: 55px;
  text-align: center;
}
body.cms-promotion td.list-price {
  font-size: 12pt;
}
body.cms-promotion .strikethrough {
  text-decoration: line-through;
}
body.cms-promotion td.discount-price {
  font-weight: bold;
  font-size: 14pt;
  color: red;
}
body.cms-promotion div.add-to-cart-cell-inner {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
body.cms-promotion td.product-name {
  font-size: 14pt;
  font-weight: bold;
}
body.cms-promotion td.moq {
  font-size: 12pt;
}
body.cms-promotion td.add-to-cart-cell {
  text-align: center;
}
body.cms-promotion td .disclaimer {
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-decoration: none !important;
  color: #555;
  font-weight: normal;
}
body.cms-promotion tr:hover td .disclaimer {
  opacity: 1;
}
body.cms-promotion table.promo-products-table {
  border-collapse: separate;
  gap: 0;
}
body.cms-promotion table.promo-products-table form {
  display: flex;
}
body.cms-promotion table.promo-products-table form input {
  min-width: 50px;
  padding-left: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
  font-size: 12pt;
  font-weight: bold;
}
body.cms-promotion table.promo-products-table form button.action.tocart.primary {
  border: none;
  border-radius: 0 10px 10px 0;
  white-space: nowrap;
}
body.cms-promotion table.promo-products-table tbody tr td {
  vertical-align: middle;
}
body.cms-promotion table.promo-products-table th {
  background: #fff;
}
body.cms-promotion table.promo-products-table tr.odd td {
  background: #f2f2f2;
}
body.cms-promotion table.promo-products-table tr:last-of-type th {
  border-bottom: 1px solid #cdcdcd;
}
body.cms-promotion table.promo-products-table thead tr.promo-summary-header .inner {
  max-height: 0;
  opacity: 0;
  user-select: none;
  transition: all 0.25s ease;
}
body.cms-promotion table.promo-products-table thead.pxc-stuck tr.promo-summary-header .inner {
  max-height: 200px;
  opacity: 1;
}
body.cms-promotion .card.promo-details {
  display: flex;
  flex-flow: row wrap;
  grid-gap: 30px;
  margin-bottom: 10px;
}
body.cms-promotion .card.promo-details .left {
  margin-left: auto;
  margin-right: auto;
}
body.cms-promotion .card.promo-details .right {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
body.cms-promotion .card.promo-details .right h5 {
  margin-top: unset;
}
body.cms-promotion #promo-banner-wrapper,
body.cms-promotion .box-3 {
  display: flex;
  justify-content: left;
  align-items: start;
}
body.cms-promotion .promotion-title h3 {
  margin-bottom: unset;
}
body.cms-promotion .promotion-title .subtitles {
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-size: 12pt;
  color: #555;
  margin-bottom: 20px;
  border-bottom: 1px solid #cdcdcd;
}
body.cms-promotion .promo-summary {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
body.cms-promotion .box-3 {
  flex-flow: row wrap;
  justify-content: start;
}
body.cms-promotion .wholesaler-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
body.cms-register p.small-help-text {
  margin-top: 10px;
  font-size: 12px;
}
body.cms-register p.small-help-text a {
  cursor: pointer;
}
body.cms-register .container {
  display: flex;
  flex-direction: row-reverse;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
}
body.cms-register form > div {
  margin-bottom: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
}
body.cms-register form > div.inline {
  flex-direction: row;
  gap: 5px;
}
body.cms-register form > div.inline > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
body.cms-register form input {
  width: 100%;
  border-radius: 5px !important;
}
body.cms-register .left,
body.cms-register .right {
  flex-basis: 0%;
  position: relative;
  min-height: 100%;
}
body.cms-register .left {
  overflow: hidden;
  background-size: cover;
}
body.cms-register .left img {
  position: absolute;
  left: 30%;
  min-height: 100%;
  max-width: unset;
  transform: translateX(-70%);
}
body.cms-register .right {
  display: flex;
  flex-direction: column;
  background: #071C33;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  flex-basis: 25%;
}
body.cms-register .right .card {
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
}
body.cms-register img#app-logo,
body.cms-register img#pxc-logo {
  max-height: 100px;
  padding-left: 30px;
}
body.cms-register img#pxc-logo {
  max-width: 250px;
}
body.cms-register .logo-lockup {
  margin: auto;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: center;
}
body.cms-register .wholesaler-selector {
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border: 2px solid #cdcdcd;
  border-radius: 15px;
  gap: 2.5px;
}
body.cms-register .wholesaler-selector:before {
  content: 'Select Primary Wholesaler';
  position: absolute;
  background: #fff;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  padding: 0 10px;
}
body.cms-register .wholesaler-selector img {
  max-height: 40px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease, border 0.25s ease;
  padding: 7.5px;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 15px;
}
body.cms-register .wholesaler-selector img:hover,
body.cms-register .wholesaler-selector img.active {
  filter: grayscale(0);
  opacity: 1;
  border: 2px solid #2eafe5;
}
body.cms-register button.register.cta {
  background: #fd9df6;
  color: #071C33;
  border-radius: 20px;
  padding: 10px;
  border-color: #fd9df6 !important;
  font-weight: bolder;
  margin-left: auto;
  margin-right: auto;
  min-width: 40%;
}
body.cms-register .error-message {
  margin-top: 10px;
  display: inline-block;
  background: lightpink;
  padding: 5px 10px;
  border: 1px solid red;
  border-radius: 23px;
}
body.replenishments-plans-manage .columns .column.main {
  float: none !important;
  width: auto !important;
}
body.replenishments-plans-manage .columns .sidebar.sidebar-main {
  float: none !important;
  display: none;
}
body[class*="replenishments-"] input[type="text"]:disabled,
body[class*="replenishments-"] input[type="password"]:disabled,
body[class*="replenishments-"] input[type="url"]:disabled,
body[class*="replenishments-"] input[type="tel"]:disabled,
body[class*="replenishments-"] input[type="search"]:disabled,
body[class*="replenishments-"] input[type="number"]:disabled,
body[class*="replenishments-"] input[type="datetime"]:disabled,
body[class*="replenishments-"] input[type="email"]:disabled,
body[class*="replenishments-"] select:disabled {
  opacity: 0.85;
}
body[class*="replenishments-"] select.account-selector {
  min-width: 100px;
}
body[class*="replenishments-"] select.account-selector:disabled {
  cursor: not-allowed;
}
body[class*="replenishments-"] input {
  padding: 2px;
  min-width: 75px;
}
body[class*="replenishments-"] table {
  border-collapse: separate;
  border-spacing: 0;
}
body[class*="replenishments-"] table thead tr:nth-child(2) th {
  border-bottom: 1px solid #cdcdcd;
}
body[class*="replenishments-"] table tbody tr.odd {
  background-color: #f2f2f2;
}
body[class*="replenishments-"] table tbody tr.error {
  border: 1px solid red;
}
body[class*="replenishments-"] table tbody tr.error td {
  border-top: 1px solid red;
}
body[class*="replenishments-"] table tbody tr.error td:first-child {
  border-left: 1px solid red;
}
body[class*="replenishments-"] table tbody tr.error td:last-child {
  border-right: 1px solid red;
}
body[class*="replenishments-"] table tbody tr.validation-row td {
  border: 1px solid red;
  border-top: unset;
  text-align: right;
  background-color: #e59696;
  color: white;
}
body[class*="replenishments-"] table td {
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: middle;
}
body[class*="replenishments-"] table tfoot tr td {
  padding: 20px;
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #cdcdcd;
}
body[class*="replenishments-"] .save-changes-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
  font-weight: bold;
}
body[class*="replenishments-"] .save-changes-bar span.changes-count {
  margin-right: auto;
}
body[class*="replenishments-"] .save-changes-bar .btn-save-changes {
  margin-left: unset;
  border: 1px solid #fd9df6;
  background-color: #fd9df6;
  color: #414b50;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: normal;
  transition: all 0.2s ease;
}
body[class*="replenishments-"] .save-changes-bar .btn-save-changes:hover {
  background-color: #fff;
  color: #fd9df6;
}
body[class*="replenishments-"] table.replenishments-list td:first-child {
  border-right: 1px solid #cdcdcd;
}
body[class*="replenishments-"] table.replenishments-list td:nth-child(2) {
  padding-left: 30px;
}
body[class*="replenishments-"] div.btn-save-changes,
body[class*="replenishments-"] div.btn-add-once,
body[class*="replenishments-"] div.btn-add-all,
body[class*="replenishments-"] a.manage-plan {
  cursor: pointer;
  user-select: none;
  color: #FFFFFF;
  background-color: #0a6c9f;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  margin-left: auto;
  white-space: nowrap;
}
body[class*="replenishments-"] div.btn-save-changes:hover,
body[class*="replenishments-"] div.btn-add-once:hover,
body[class*="replenishments-"] div.btn-add-all:hover,
body[class*="replenishments-"] a.manage-plan:hover {
  text-decoration: none;
}
body[class*="replenishments-"] div.btn-discard-changes {
  cursor: pointer;
  user-select: none;
}
body[class*="replenishments-"] div.btn-discard-changes:hover {
  text-decoration: underline;
}
body[class*="replenishments-"] input[disabled] {
  cursor: not-allowed;
}
.pxc-ui-toggle {
  display: flex;
  background: #DFDFDF;
  overflow: hidden;
  border-radius: 10px;
  font-weight: bold;
  user-select: none;
}
.pxc-ui-toggle .pxc-ui-toggle-option {
  text-align: center;
  padding: 5px 10px;
  cursor: pointer;
  flex-grow: 1;
  transition: all 0.2s ease;
}
.pxc-ui-toggle .pxc-ui-toggle-option.active,
.pxc-ui-toggle .pxc-ui-toggle-option:hover {
  background-color: #6A8193;
  color: #fff;
}
.pxc-ui-toggle .pxc-ui-toggle-option.active {
  cursor: initial;
}
.hide-until-loaded {
  display: none;
}
table#replenPlan .btn-add-all {
  display: none;
}
table#replenPlan.filter-mode-manual .btn-add-all {
  display: unset;
}
body.account.customer-account-wallet .card.page-header-card {
  margin: unset;
}
body.account.customer-account-wallet .wallet {
  display: grid;
  grid-template-columns: repeat(auto-fill, 380px);
  grid-gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}
body.account.customer-account-wallet .wallet > div {
  max-width: 330px;
  align-self: center;
  justify-self: center;
}
body.account.customer-account-wallet .wallet div.card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.account.customer-account-wallet div.button-bar {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}
body.account.customer-account-wallet div.button-bar > div {
  user-select: none;
  text-align: center;
}
body.account.customer-account-wallet div.button-bar div.default-payment {
  text-align: center;
  flex-grow: 1;
}
body.account.customer-account-wallet div.button-bar div.button {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #414b50;
  background: #fd9df6;
  font-weight: bold;
  border-radius: 20px;
}
body.account.customer-account-wallet div.button-bar i.fa {
  color: #999;
  cursor: pointer;
}
body.account.customer-account-wallet div.button-bar i.fa:hover {
  color: indianred;
}
body.account.customer-account-wallet .wallet-card {
  user-select: none;
  position: relative;
  background: #cdcdcd;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
  min-height: 160px;
  min-width: 290px;
  transition: all 0.2s ease;
  box-shadow: 1px 0px 46px 0px rgba(0, 0, 0, 0);
  border: 1px solid #cdcdcd;
  -webkit-font-smoothing: subpixel-antialiased;
  backface-visibility: hidden;
  transform: translateZ(0);
  font-weight: bold;
  font-size: 12pt;
}
body.account.customer-account-wallet .wallet-card:hover {
  transform: perspective(1px) scale(1.025);
  box-shadow: 1px 10px 46px 0px rgba(0, 0, 0, 0.25);
}
body.account.customer-account-wallet .wallet-card.add {
  font-weight: bold;
  cursor: pointer;
  align-items: center;
  color: #555;
  gap: 10px;
  background: unset;
  border: unset;
  max-width: 200px;
  margin: auto;
}
body.account.customer-account-wallet .wallet-card .card-logo {
  position: absolute;
  top: 5px;
  right: 10px;
  max-width: 70px;
}
body.account.customer-account-wallet .wallet-card img.card-chip {
  max-width: 40px;
}
body.account.customer-account-wallet .wallet-card.bank-account {
  background-color: #f2f2f2;
  border-radius: unset;
}
body.account.customer-account-wallet .wallet-card.bank-account .card-logo {
  max-height: 40px;
  padding: 10px;
  right: 10px;
  top: unset;
}
body.account.customer-account-wallet .wallet-card .label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: normal;
}
body.account.customer-account-wallet .wallet-card.visa {
  background: #1A1F71;
  background: radial-gradient(at right top, #4673be, #13164d);
  color: #fff;
}
body.account.customer-account-wallet .wallet-card.visa .card-logo {
  filter: invert(100%);
}
body.account.customer-account-wallet .wallet-card.mastercard {
  background: #FFFFFF;
  background: radial-gradient(at right top, #ffffff, #959595);
}
body.account.customer-account-wallet .wallet-card.american-express {
  background: #4D8282;
  background: radial-gradient(at right top, #4d8282, #1b2d2d);
  color: #f2f2f2;
}
body.account.customer-account-wallet .wallet-card.american-express .card-logo {
  top: unset;
  bottom: 5px;
}
body.account.customer-account-wallet table.wallet-payment-listing {
  background: #fff;
  border-left: 1px solid #cdcdcd;
  border-right: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  border-collapse: separate;
  margin-bottom: 50px;
}
body.account.customer-account-wallet table.wallet-payment-listing tr:nth-child(even) {
  background: #f2f2f2;
}
body.account.customer-account-wallet table.wallet-payment-listing thead {
  position: sticky;
  background-color: #fff;
}
body.account.customer-account-wallet table.wallet-payment-listing thead th {
  border-bottom: 1px solid #cdcdcd;
}
body.account.customer-account-wallet table.wallet-payment-listing thead th:last-child {
  text-align: center;
}
body.account.customer-account-wallet table.wallet-payment-listing tbody tr {
  cursor: pointer;
  transition: all 0.2s ease;
}
body.account.customer-account-wallet table.wallet-payment-listing tbody tr td {
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
}
body.account.customer-account-wallet table.wallet-payment-listing tbody tr td:last-child {
  text-align: center;
}
body.account.customer-account-wallet table.wallet-payment-listing tbody tr:hover {
  background: rgba(10, 108, 159, 0.1);
}
body.account.customer-account-wallet table.wallet-payment-listing tbody tr:hover td {
  border-color: #0a6c9f;
}
body.account.customer-account-wallet td span.status.scheduled {
  color: #414b50;
  background: #fd9df6;
  font-size: 12px;
  padding: 5px 7.5px;
  text-align: center;
  border-radius: 20px;
  font-weight: bold;
}
body.account.customer-account-wallet .payments-header {
  position: sticky;
  top: 72px;
  border-bottom: unset;
  gap: 10px;
}
body.account.customer-account-wallet .payments-header input#search {
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes any shadow effects */
  border: unset;
}
body.account.customer-account-wallet .payments-header .search-wrapper {
  border-bottom: 1px solid #cdcdcd;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-details-modal {
  max-width: 600px;
  margin: auto;
}
.payment-details-modal header.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-details-modal footer.modal-footer {
  align-items: center;
  justify-content: center;
}
.payment-details-modal .modal-inner-wrap {
  border-radius: 20px;
}
.payment-details-modal h1.modal-title {
  text-align: center;
}
.payment-details-modal table.detailsTable tr:nth-of-type(even) {
  background-color: rgba(10, 108, 159, 0.1);
}
.payment-details-modal table.detailsTable td {
  text-align: right !important;
}
.zpModal {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: unset;
}
._error .order-account-form__characters {
  color: #ed8380;
}
.checkout-payment-method .payment-option._collapsible.account .payment-option-content {
  display: block;
}
._error .order-comment-form__characters {
  color: #ed8380;
}
.checkout-payment-method .payment-option._collapsible.comment .payment-option-content {
  display: block;
}
body[class*="genex-payments-"] main {
  max-width: 1800px !important;
}
body[class*="genex-payments-"] div.refresh-button {
  margin-left: auto;
  color: #9b9b9b;
  cursor: pointer;
  transition: color 0.25s ease;
}
body[class*="genex-payments-"] div.refresh-button:hover {
  color: #333;
}
body[class*="genex-payments-"] div.table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
body[class*="genex-payments-"] div.table-header h4 {
  flex-grow: 1;
  margin-bottom: unset;
}
body[class*="genex-payments-"] div.table-header div.search-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #cdcdcd;
}
body[class*="genex-payments-"] div.table-header div.search-wrapper i.fa-search {
  cursor: pointer;
  color: #c2c2c2;
}
body[class*="genex-payments-"] div.table-header div.search-wrapper input#search {
  font-size: 14pt;
  border: none;
  outline: none;
}
body[class*="genex-payments-"] div.table-header div.search-wrapper input#search:focus {
  outline: none;
  box-shadow: none;
}
body[class*="genex-payments-"] table {
  background: #fff;
  border: 1px solid #cdcdcd;
  border-collapse: separate;
}
body[class*="genex-payments-"] table thead tr {
  background-color: #FFFFFF;
}
body[class*="genex-payments-"] table thead tr:last-of-type th {
  border-bottom: 1px solid #cdcdcd;
}
body[class*="genex-payments-"] table td {
  vertical-align: middle;
}
body[class*="genex-payments-"] table td.actions div.actions-cell {
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  justify-content: flex-end;
}
body[class*="genex-payments-"] table td.actions div.actions-cell .btn {
  min-width: 100%;
}
body[class*="genex-payments-"] table div.btn {
  cursor: pointer;
  padding: 5px 10px;
  background: #ddd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
body[class*="genex-payments-"] table div.btn.btn-process,
body[class*="genex-payments-"] table div.btn.btn-reprocess {
  background-color: #0a6c9f;
  color: #fff;
}
body[class*="genex-payments-"] table div.btn.btn-check-status {
  background-color: #ffc767;
}
body[class*="genex-payments-"] table div.btn.btn-mark-delinquent {
  background-color: maroon;
  color: #fff;
}
body[class*="genex-payments-"] table tbody tr td {
  padding: 20px 10px;
}
body[class*="genex-payments-"] table tbody tr.odd {
  background-color: #f2f2f2;
}
body[class*="genex-payments-"] table tbody tr.details-row td {
  padding: unset;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.transaction-details {
  display: none;
  overflow: hidden;
  border-bottom: 1px solid #cdcdcd;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.transaction-details.active {
  display: initial;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.transaction-details > div {
  padding: 10px;
}
body[class*="genex-payments-"] table tbody tr.details-row td textarea {
  min-height: 44px;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.pills {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.pills > div {
  background: #ddd;
  border-radius: 5px;
  padding: 5px;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.pills > div > div:first-of-type {
  font-weight: bold;
}
body[class*="genex-payments-"] table tbody tr.details-row td div.pills > div.error {
  border: 1px solid maroon;
  background-color: #e59696;
  color: maroon;
}
body[class*="genex-payments-"] .button {
  display: inline-block;
  border: 1px solid #0a6c9f;
  color: #0a6c9f;
  padding: 5px 10px;
  user-select: none;
  cursor: pointer;
  border-radius: 5px;
}
body[class*="genex-payments-"] .button:hover {
  background-color: #0a6c9f;
  color: #fff;
}
body[class*="genex-payments-"] .card.action-card,
body[class*="genex-payments-"] .action-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}
body[class*="genex-payments-"] input[type="checkbox"] {
  accent-color: #0a6c9f;
  pointer-events: none;
}
body[class*="genex-payments-"] .tabs {
  display: flex;
  flex-direction: row;
  background: #ddd;
  margin: -11px -10px 10px;
}
body[class*="genex-payments-"] .tabs > div {
  padding: 20px;
  cursor: pointer;
  font-weight: normal;
}
body[class*="genex-payments-"] .tabs > div.active {
  font-weight: bold;
  border-bottom: 2px solid #fd9df6;
  background: #fff;
}
@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: 768px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .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;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .abs-discount-block-desktop .block,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .block-addresses-list .items.addresses > .item,
  .form-address-edit .fieldset,
  .form-edit-account .fieldset,
  .storecredit .block,
  .paypal-review-discount .block,
  .cart-discount .block {
    width: 48%;
  }
  .abs-discount-block-desktop .block:nth-child(1),
  .login-container .block:nth-child(1),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(1),
  .block-addresses-list .items.addresses > .item:nth-child(1),
  .form-address-edit .fieldset:nth-child(1),
  .form-edit-account .fieldset:nth-child(1),
  .storecredit .block:nth-child(1),
  .paypal-review-discount .block:nth-child(1),
  .cart-discount .block:nth-child(1) {
    clear: left;
    float: left;
  }
  .abs-discount-block-desktop .block:nth-child(2),
  .login-container .block:nth-child(2),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2),
  .block-addresses-list .items.addresses > .item:nth-child(2),
  .form-address-edit .fieldset:nth-child(2),
  .form-edit-account .fieldset:nth-child(2),
  .storecredit .block:nth-child(2),
  .paypal-review-discount .block:nth-child(2),
  .cart-discount .block:nth-child(2) {
    float: right;
  }
  .abs-discount-block-desktop .block:nth-child(2) + *,
  .login-container .block:nth-child(2) + *,
  .account .column.main .block:not(.widget) .block-content .box:nth-child(2) + *,
  .block-addresses-list .items.addresses > .item:nth-child(2) + *,
  .form-address-edit .fieldset:nth-child(2) + *,
  .form-edit-account .fieldset:nth-child(2) + *,
  .storecredit .block:nth-child(2) + *,
  .paypal-review-discount .block:nth-child(2) + *,
  .cart-discount .block:nth-child(2) + * {
    clear: both;
  }
  .abs-margin-for-blocks-and-widgets-desktop,
  .page-main .block,
  .customer-review .product-details {
    margin-bottom: 50px;
  }
  .abs-reset-left-margin-desktop,
  .column.main .paypal-review .actions-toolbar,
  .column.main .block-giftregistry-shared-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-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 90%;
  }
  .abs-add-fields-desktop .fieldset .field .control,
  .form-giftregistry-share .fieldset .field .control,
  .form-giftregistry-edit .fieldset .field .control,
  .form-create-return .fieldset .field .control,
  .form.send.friend .fieldset .field .control {
    width: auto;
  }
  .abs-margin-for-forms-desktop {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .block-collapsible-nav .title {
    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,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .paypal-review-discount:before,
  .paypal-review-discount:after,
  .order-review-form:before,
  .order-review-form:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .login-container:before,
  .login-container:after,
  .account .page-title-wrapper:before,
  .account .page-title-wrapper: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,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:before,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:before,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:before,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:before,
  .order-links:after,
  .account .column.main .block.block-order-details-view:before,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:before,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:before,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .header.content:before,
  .header.content:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .paypal-review .block-content:after,
  .paypal-review-discount:after,
  .order-review-form:after,
  .block-cart-failed .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .page-title-wrapper:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .data.table .gift-wrapping .nested:after,
  .data.table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .magento-rma-guest-returns .column.main .block.block-order-details-view:after,
  .order-links:after,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:after,
  .page-header .header.panel:after,
  .header.content:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .abs-shopping-cart-items-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional,
  .bundle-options-container .block-bundle-summary,
  .block.crosssell,
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    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 {
    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 {
    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 {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label {
    margin: 0 0 8px;
    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 {
    display: none;
  }
  .abs-form-field-column-2 .fieldset .field,
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field,
  .form-create-return .fieldset .field,
  .form.send.friend .fieldset .field {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .abs-form-field-column-2 .fieldset .field + .fieldset,
  .form-giftregistry-share .fieldset .field + .fieldset,
  .form-giftregistry-edit .fieldset .field + .fieldset,
  .form-create-return .fieldset .field + .fieldset,
  .form.send.friend .fieldset .field + .fieldset {
    clear: both;
  }
  .form-giftregistry-share .fieldset .field:nth-last-child(1),
  .form-giftregistry-share .fieldset .field:nth-last-child(2),
  .form-giftregistry-edit .fieldset .field:nth-last-child(1),
  .form-giftregistry-edit .fieldset .field:nth-last-child(2),
  .form-create-return .fieldset .field:nth-last-child(1),
  .form-create-return .fieldset .field:nth-last-child(2),
  .form.send.friend .fieldset .field:nth-last-child(1),
  .form.send.friend .fieldset .field:nth-last-child(2) {
    margin-bottom: 0;
  }
  .abs-form-field-column-2 .fieldset .field .field,
  .form-giftregistry-share .fieldset .field .field,
  .form-giftregistry-edit .fieldset .field .field,
  .form-create-return .fieldset .field .field,
  .form.send.friend .fieldset .field .field {
    padding: 0;
    width: 100%;
  }
  .abs-form-field-revert-column-1 {
    width: 100%;
  }
  .abs-forms-general-desktop,
  .form-giftcard-redeem,
  .form-giftregistry-create {
    max-width: 500px;
  }
  .abs-forms-general-desktop .legend,
  .form-giftcard-redeem .legend,
  .form-giftregistry-create .legend {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-forms-general-desktop .legend + br,
  .form-giftcard-redeem .legend + br,
  .form-giftregistry-create .legend + br {
    display: none;
  }
  .abs-revert-side-paddings,
  .checkout-cart-index .page-title-wrapper,
  .cart-summary .block .content,
  .cart-empty {
    padding-left: 0;
    padding-right: 0;
  }
  .abs-account-block-font-size,
  .block-addresses-list address,
  .box-billing-address .box-content,
  .box-shipping-address .box-content,
  .box-information .box-content,
  .block-balance-giftcard .block-content,
  .block-reviews-dashboard .product-name {
    font-size: 1.6rem;
  }
  .abs-account-table-margin-desktop,
  .table-wrapper.balance-history,
  .table-wrapper.reward-history,
  .table-wrapper.orders-recent {
    margin-top: -25px;
  }
  .abs-action-print {
    display: inline-block;
    text-decoration: none;
  }
  .abs-action-print:before {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 16px;
    color: inherit;
    content: '\e624';
    font-family: 'luma-icons';
    margin: 0 4px 0 0;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .abs-no-display-desktop,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-status-desktop,
  .return-status,
  .order-status {
    margin-top: 6px;
    padding: 5px 10px;
  }
  .abs-title-orders-desktop .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-returns .page-main .page-title-wrapper .order-date,
  .magento-rma-returns-view .page-main .page-title-wrapper .order-date,
  .account .page-main .page-title-wrapper .order-date,
  [class^='sales-guest-'] .page-main .page-title-wrapper .order-date,
  .sales-guest-view .page-main .page-title-wrapper .order-date {
    margin: -14px 0 18px;
  }
  .abs-table-bordered-desktop {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > tbody > tr > th,
  .abs-table-bordered-desktop > tfoot > tr > th,
  .abs-table-bordered-desktop > thead > tr > td,
  .abs-table-bordered-desktop > tbody > tr > td,
  .abs-table-bordered-desktop > tfoot > tr > td {
    border: none;
  }
  .abs-table-bordered-desktop > thead > tr > th,
  .abs-table-bordered-desktop > thead > tr > td {
    border-bottom: 1px solid #cccccc;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    position: relative;
  }
  .abs-pager-toolbar .toolbar-amount,
  .abs-pager-toolbar .limiter,
  .account .toolbar .toolbar-amount,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .toolbar-amount,
  .toolbar-wishlist-results .limiter {
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    line-height: 30px;
    padding: 0;
  }
  .abs-pager-toolbar .pages,
  .account .toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .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 {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 4%;
    position: relative;
  }
  .abs-discount-block-desktop .block > .title,
  .paypal-review-discount .block > .title,
  .cart-discount .block > .title {
    border: 0;
    padding: 0 0 10px;
  }
  .abs-discount-block-desktop .block > .title strong,
  .paypal-review-discount .block > .title strong,
  .cart-discount .block > .title strong {
    font-size: 1.6rem;
  }
  .abs-discount-block-desktop .block .content,
  .paypal-review-discount .block .content,
  .cart-discount .block .content {
    padding: 0 0 20px;
  }
  .abs-discount-block-desktop .actions-toolbar .secondary,
  .paypal-review-discount .actions-toolbar .secondary,
  .cart-discount .actions-toolbar .secondary {
    bottom: -30px;
    left: 0;
    position: absolute;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .navigation,
  .breadcrumbs,
  .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: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    width: auto;
  }
  .page-main {
    width: 100%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .ie9 .page-main {
    width: auto;
  }
  .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: 58.33333333%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 79.16666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 79.16666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 20.83333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 20.83333333%;
    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: 20.83333333%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 20.83333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
    padding-right: 2%;
  }
  .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: block !important;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #f0f0f0;
    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 .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0 > .level-top {
    color: #575757;
    line-height: 47px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 3px;
    color: #333333;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0 .submenu {
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 400;
    min-width: 230px;
    padding: 15px 0;
    display: none;
    left: 0;
    margin: 0 !important;
    padding: 0;
    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: #cccccc;
    color: #cccccc;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #e8e8e8;
    color: #333333;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 0 3px;
    color: #333333;
  }
  .navigation .level0 .submenu .submenu {
    top: 0 !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .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;
  }
  .legend {
    border-bottom: 1px solid #c5c5c5;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
    border-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .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 -1px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 400;
    line-height: 40px;
    font-size: 1.4rem;
    color: #7d7d7d;
    text-decoration: none;
    background: #f6f6f6;
    border: 1px solid #cccccc;
    border-bottom: none;
    height: 40px;
    padding: 1px 35px 1px 35px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #333333;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: #ffffff;
  }
  .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: #ffffff;
    color: #333333;
  }
  .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: 2px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 43px;
    padding: 35px 35px 35px 35px;
    border: 1px solid #cccccc;
  }
  .product.data.items .item.title a:after {
    display: none;
  }
  .actions-toolbar {
    text-align: left;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .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 15px 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;
  }
  .popup-content .fieldset .actions-toolbar .secondary {
    display: inline-block;
    float: none;
  }
  .popup-content .fieldset .actions-toolbar .action.cancel {
    margin-top: 6px;
  }
  .payment-method-braintree .cvv .field-tooltip {
    left: 6rem;
  }
  .braintree-paypal-account {
    border-color: #cccccc;
    border-style: solid;
    border-width: 1px 0;
    display: inline-block;
    width: 50%;
  }
  .account .table-credit-cards .col.actions {
    width: 100px;
  }
  .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;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #cccccc;
  }
  .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 .table-paypal-review-items .col.price,
  .paypal-review .table-paypal-review-items .col.qty {
    text-align: center;
  }
  .paypal-review .table-paypal-review-items .col.item {
    width: 60%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .paypal-review-discount {
    border-top: 1px solid #cccccc;
  }
  .paypal-review-discount .block {
    margin-bottom: 15px;
  }
  .paypal-review-discount .block.giftcard.active {
    padding-bottom: 40px;
  }
  .paypal-review-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .paypal-review-discount .block .content {
    padding-bottom: 0;
  }
  .order-review-form .actions-toolbar > .primary {
    float: right;
  }
  .order-review-form .action.primary {
    margin-right: 0;
  }
  .block-cart-failed .secondary .action {
    margin: 0;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-actions .action.primary.customize {
    width: auto;
  }
  .bundle-options-container .legend.title {
    font-size: 40px;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    margin-top: 66px;
    padding: 10px 20px;
    position: relative;
    width: 40%;
  }
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper,
  .bundle-options-container .block-bundle-summary .price-box .price-wrapper > .price {
    color: #575757;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee {
    color: #575757;
  }
  .bundle-options-container .block-bundle-summary .price-container .weee .price {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .bundle-options-container .block-bundle-summary .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .bundle-options-container .block-bundle-summary .box-tocart .action.primary {
    margin-right: 1%;
    width: 49%;
  }
  .bundle-options-container .block-bundle-summary .product-addto-links {
    text-align: left;
  }
  .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%;
  }
  .page-products .products-grid .product-item {
    width: 33.33333333%;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    width: 25%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    width: 50%;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .toolbar-amount {
    display: block;
    float: left;
    position: static;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
    margin-bottom: 0;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    background-color: #f0f0f0;
    box-shadow: inset 0 1px 0 0 #ffffff, inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    color: #7d7d7d;
    border: 1px solid #cccccc;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-label + .modes-mode {
    border-radius: 3px 0 0 3px;
  }
  .modes-mode:hover {
    color: #7d7d7d;
    background: #ebebeb;
  }
  .modes-mode:last-child {
    border-radius: 0 3px 3px 0;
    border-right: 1px solid #cccccc;
  }
  .modes-mode.active {
    box-shadow: inset 0 1px 0 0 rgba(204, 204, 204, 0.8), inset 0 -1px 0 0 rgba(204, 204, 204, 0.3);
    background: #dedede;
    color: #9e9e9e;
  }
  .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;
    font-size: 16px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .page-products .sorter {
    position: static;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .limiter {
    float: right;
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
  }
  .product-info-main .page-title-wrapper h1 {
    margin-bottom: 15px;
  }
  .product-info-main .product-add-form {
    padding-top: 20px;
  }
  .box-tocart .action.tocart {
    margin-bottom: 0;
    margin-right: 1%;
    width: 49%;
  }
  .product-social-links {
    text-align: left;
  }
  .product-options-bottom .price-box .price-container,
  .product-info-price .price-box .price-container {
    font-size: 21px;
  }
  .product-options-bottom .price-box .price-container .price,
  .product-info-price .price-box .price-container .price {
    font-size: 36px;
    line-height: 36px;
  }
  .product-options-bottom .price-box .price-including-tax + .price-excluding-tax .price,
  .product-info-price .price-box .price-including-tax + .price-excluding-tax .price {
    font-size: 1.4rem;
    line-height: 16px;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 25px;
  }
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column .product.media {
    width: 57%;
  }
  .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%;
  }
  .product-add-form .product-options-wrapper .field:not(.date) > .control {
    width: 80%;
  }
  .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;
  }
  .compare.wrapper {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none none;
  }
  .compare.wrapper .action.compare {
    line-height: 32px;
    color: #333333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:visited {
    color: #333333;
    text-decoration: none;
  }
  .compare.wrapper .action.compare:hover {
    color: #333333;
    text-decoration: underline;
  }
  .compare.wrapper .action.compare:active {
    color: #333333;
    text-decoration: underline;
  }
  .compare.wrapper .counter.qty {
    color: #7d7d7d;
  }
  .compare.wrapper .counter.qty:before {
    content: '(';
  }
  .compare.wrapper .counter.qty:after {
    content: ')';
  }
  .block-search {
    float: right;
    padding-left: 15px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
  .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;
    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;
    font-size: 16px;
    line-height: 32px;
    color: #8f8f8f;
    content: '\e615';
    font-family: 'luma-icons';
    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: #333333;
  }
  .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 {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:focus:before {
    color: #333333;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .checkout-cart-index .page-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cart-container .form-cart .actions.main {
    text-align: right;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-summary {
    width: 25%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    padding: 1px 20px 25px;
    position: relative;
  }
  .cart-summary > .title {
    display: block;
  }
  .cart-summary .fieldset .actions-toolbar {
    margin-left: 0;
  }
  .cart-summary .fieldset .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block > .title {
    padding-left: 0;
  }
  .cart-summary .block > .title:after {
    right: 3px;
  }
  .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 8px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart-summary .checkout-methods-items {
    padding: 0;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper tbody td {
    padding-top: 20px;
  }
  .cart.table-wrapper .item .col.item {
    padding: 20px 8px 20px 0;
  }
  .cart.table-wrapper .item-actions td {
    padding: 0;
  }
  .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 {
    padding-bottom: 35px;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart-discount {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    border: 0;
    box-sizing: border-box;
    padding-right: 4%;
  }
  .cart-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .block.crosssell {
    width: 75%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding: 0 4% 0 0;
  }
  .block.crosssell .products-grid .product-item {
    width: 25%;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    right: -15px;
    width: 390px;
  }
  .minilist .action.delete:before,
  .minicart-wrapper .action.edit:before {
    font-size: 16px;
    line-height: inherit;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .opc-estimated-wrapper {
    display: none;
  }
  .opc-progress-bar {
    margin: 0 0 20px;
    counter-reset: i;
    display: block;
    font-size: 0;
  }
  .opc-progress-bar-item {
    margin: 0 0 10px;
    width: 185px;
    display: inline-block;
    position: relative;
    text-align: center;
    vertical-align: top;
  }
  .opc-progress-bar-item:before {
    background: #e4e4e4;
    top: 19px;
    transition: background 0.3s;
    content: '';
    height: 7px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .opc-progress-bar-item:first-child:before {
    border-radius: 6px 0 0 6px;
  }
  .opc-progress-bar-item:last-child:before {
    border-radius: 0 6px 6px 0;
  }
  .opc-progress-bar-item > span {
    display: inline-block;
    padding-top: 45px;
    width: 100%;
    word-wrap: break-word;
    color: #e4e4e4;
    font-weight: 300;
    font-size: 1.8rem;
  }
  .opc-progress-bar-item > span:before,
  .opc-progress-bar-item > span:after {
    background: #e4e4e4;
    height: 38px;
    margin-left: -19px;
    transition: background 0.3s;
    width: 38px;
    border-radius: 50%;
    content: '';
    left: 50%;
    position: absolute;
    top: 0;
  }
  .opc-progress-bar-item > span:after {
    background: #ffffff;
    height: 26px;
    margin-left: -13px;
    top: 6px;
    width: 26px;
    content: counter(i);
    counter-increment: i;
    color: #333333;
    font-weight: 600;
    font-size: 1.8rem;
  }
  .opc-progress-bar-item._complete {
    cursor: pointer;
  }
  .opc-progress-bar-item._complete:hover:before {
    background: #d7d7d7;
  }
  .opc-progress-bar-item._complete:hover > span:before {
    background: #d7d7d7;
  }
  .opc-progress-bar-item._complete > span {
    color: #1979c3;
  }
  .opc-progress-bar-item._complete > span:after {
    font-family: 'luma-icons';
    content: '\e610';
  }
  .opc-progress-bar-item._active:before {
    background: #ff5501;
  }
  .opc-progress-bar-item._active > span {
    color: #333333;
  }
  .opc-progress-bar-item._active > span:before {
    background: #ff5501;
  }
  .opc-progress-bar-item._active > span:after {
    font-family: 'luma-icons';
    content: '\e610';
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 500px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 20px;
  }
  .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: 500px;
  }
  .opc-wrapper .form-login {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 20px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .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: 2.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: 768px;
    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-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;
  }
  .login-container .block.login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block.login .actions-toolbar > .secondary {
    float: left;
  }
  .login-container .fieldset > .field > .control {
    width: 55%;
  }
  .form-create-account .fieldset-fullname .fields .field {
    float: left;
    margin: 0 10px 10px 0;
  }
  .form-create-account .fieldset-fullname .field-name-prefix,
  .form-create-account .fieldset-fullname .field-name-suffix {
    width: 50px;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account {
    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%;
  }
  .account .data.table {
    margin-bottom: 0;
  }
  .account .data.table .col.actions {
    white-space: nowrap;
  }
  .block-addresses-list .items.addresses > .item {
    margin-bottom: 20px;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .form-edit-account .fieldset .fieldset {
    margin-bottom: 20px;
    width: 100%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .storecredit .block-balance-history {
    width: 100%;
  }
  .table-balance-history .col {
    width: 25%;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final {
    font-size: 21px;
  }
  .page-product-giftcard .product-info-main .price-box .price-container.price-final .price {
    font-size: 36px;
    line-height: 36px;
  }
  .page-product-giftcard .product-info-main .product-info-stock-sku {
    padding-bottom: 0;
  }
  .page-product-giftcard .product-info-main .product-reviews-summary {
    float: none;
  }
  .page-product-giftcard .product-add-form {
    margin-top: -20px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) {
    margin: 0 0 20px;
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    margin: 0 0 8px;
    display: inline-block;
  }
  .page-product-giftcard .product-add-form .field:not(.text):last-child {
    margin-bottom: 0;
  }
  .page-product-giftcard .product-add-form .field:not(.text) + .fieldset {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label {
    font-weight: 600;
  }
  .page-product-giftcard .product-add-form .field:not(.text) > .label + br {
    display: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .choice input {
    vertical-align: top;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:before,
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    content: '';
    display: table;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group:after {
    clear: both;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group .field {
    box-sizing: border-box;
    float: left;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-2 .field {
    width: 50% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-3 .field {
    width: 33.3% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-4 .field {
    width: 25% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .fields.group.group-5 .field {
    width: 20% !important;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    width: 100%;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon textarea,
  .page-product-giftcard .product-add-form .field:not(.text) .addon select,
  .page-product-giftcard .product-add-form .field:not(.text) .addon input {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    display: inline-block;
    margin: 0;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter {
    background: #ffffff;
    background-clip: padding-box;
    border: 1px solid #c2c2c2;
    border-radius: 1px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    height: 32px;
    line-height: 1.42857143;
    padding: 0 9px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:disabled,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:disabled {
    opacity: 0.5;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-moz-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-moz-placeholder {
    color: #c2c2c2;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore::-webkit-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter::-webkit-input-placeholder {
    color: #c2c2c2;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore:-ms-input-placeholder,
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addafter:-ms-input-placeholder {
    color: #c2c2c2;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .addon .addbefore {
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .additional {
    margin-top: 10px;
  }
  .page-product-giftcard .product-add-form .field:not(.text).required > .label:after,
  .page-product-giftcard .product-add-form .field:not(.text)._required > .label:after {
    content: '*';
    color: #e02b27;
    font-size: 1.2rem;
    margin: 0 0 0 5px;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note {
    font-size: 1.2rem;
    margin: 3px 0 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
  }
  .page-product-giftcard .product-add-form .field:not(.text) .note:before {
    -webkit-font-smoothing: antialiased;
    font-size: 24px;
    line-height: 12px;
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(odd) {
    padding-right: 25px;
  }
  .page-product-giftcard .product-add-form .field:not(.text):nth-child(even) {
    padding-right: 0;
  }
  .page-product-giftcard .product-add-form .product-options-wrapper .field:not(.date) > .control {
    width: auto;
  }
  .gift-message .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .gift-message .field > .label {
    margin: 0;
  }
  .gift-message .field:before,
  .gift-message .field:after {
    content: '';
    display: table;
  }
  .gift-message .field:after {
    clear: both;
  }
  .gift-message .field.choice:before,
  .gift-message .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .gift-message .field .description {
    padding: 6px 15px 0 0;
    text-align: left;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .gift-message .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: left;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .gift-message .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
    margin-right: 0;
  }
  .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;
  }
  .gift-item-block .title {
    padding: 20px 0;
  }
  .item-gift td {
    padding-left: 0;
    padding-right: 0;
  }
  .cart.table-wrapper .action-gift {
    float: left;
    display: inline-block;
    text-decoration: none;
  }
  .cart.table-wrapper .action-gift:after {
    -webkit-font-smoothing: antialiased;
    font-size: 1.2rem;
    line-height: 20px;
    color: #8f8f8f;
    content: '\e622';
    font-family: 'luma-icons';
    margin: 0 0 0 10px;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .cart.table-wrapper .action-gift:hover:after {
    color: #333333;
  }
  .cart.table-wrapper .action-gift:active:after {
    color: #8f8f8f;
  }
  .cart.table-wrapper .action-gift._active:after {
    content: '\e621';
  }
  .cart.table-wrapper .gift-options .actions-toolbar {
    clear: both;
    padding: 0;
    position: static;
  }
  .cart-container .cart-gift-item {
    margin-bottom: 20px;
  }
  .cart-container .cart-gift-item .gift-options,
  .cart-container .cart-gift-item .gift-summary {
    padding-bottom: 20px;
  }
  .form-giftregistry-share .fieldset .field,
  .form-giftregistry-edit .fieldset .field {
    width: 45%;
  }
  .form-giftregistry-edit .fieldset.shipping_address .fieldset {
    margin-top: 20px;
  }
  .table-giftregistry .col.create {
    white-space: nowrap;
  }
  .table-giftregistry .col.message {
    width: 40%;
  }
  .table-giftregistry .col.actions {
    width: 30%;
  }
  .table-giftregistry-items .col.note {
    width: 30%;
  }
  .account .data.table.table-giftregistry-items > thead > tr > th,
  .account .data.table.table-giftregistry-items > tbody > tr > th,
  .account .data.table.table-giftregistry-items > tfoot > tr > th,
  .account .data.table.table-giftregistry-items > thead > tr > td,
  .account .data.table.table-giftregistry-items > tbody > tr > td,
  .account .data.table.table-giftregistry-items > tfoot > tr > td {
    border-top: 1px solid #cccccc;
  }
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > th,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > th,
  .account .data.table.table-giftregistry-items > caption + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > colgroup + thead > tr:first-child > td,
  .account .data.table.table-giftregistry-items > thead:first-child > tr:first-child > td {
    border-top: 0;
  }
  .account .data.table.table-giftregistry-items > tbody + tbody {
    border-top: 1px solid #cccccc;
  }
  .account .data.table.table-giftregistry-items th {
    border-bottom: 0;
  }
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > td,
  .account .data.table.table-giftregistry-items > tbody > tr:nth-child(even) > th {
    background: none;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset .field.name,
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0 12px 0 0;
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
    vertical-align: top;
    margin-bottom: auto;
  }
  .form-giftregistry-search .fieldset .field.name + .fieldset,
  .form-giftregistry-search .fieldset .field.lastname + .fieldset {
    clear: both;
  }
  .form-giftregistry-search .fieldset .field.lastname {
    padding: 0;
  }
  .block-giftregistry-shared-items .item {
    border-bottom: 1px solid #cccccc;
    border-top: 0;
  }
  .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-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .page-product-grouped .product-info-price {
    float: none;
  }
  .page-product-grouped .minimal-price {
    margin-top: -8px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .filter.block {
    margin-bottom: 40px;
  }
  .filter-title {
    display: none;
  }
  .filter-content .item {
    margin: 10px 0;
  }
  .filter-actions {
    margin-bottom: 30px;
  }
  .filter.active .filter-options,
  .filter-options {
    background: transparent;
    clear: both;
    display: block;
    overflow: initial;
    position: static;
  }
  .filter-subtitle {
    display: block;
    position: static;
  }
  .page-layout-1column .toolbar-products {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .page-layout-1column .products ~ .toolbar-products {
    position: static;
  }
  .page-layout-1column.page-with-filter .column.main {
    padding-top: 45px;
    position: relative;
    z-index: 1;
  }
  .page-layout-1column .filter.block {
    border-top: 1px solid #cccccc;
  }
  .page-layout-1column .filter-content {
    margin-top: 10px;
  }
  .page-layout-1column .filter-subtitle {
    display: none;
  }
  .page-layout-1column .filter-options-item {
    border: 0;
    display: inline-block;
    margin-right: 25px;
    position: relative;
  }
  .page-layout-1column .filter-options-item.active {
    z-index: 2;
  }
  .page-layout-1column .filter-options-item.active .filter-options-content {
    visibility: visible;
  }
  .page-layout-1column .filter-options-item.active:hover {
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after,
  .page-layout-1column .filter-options-item.active:before {
    border: 8px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #000000;
    bottom: -1px;
    content: '';
    display: block;
    left: 5px;
    position: absolute;
    z-index: 3;
  }
  .page-layout-1column .filter-options-item.active:after {
    border-bottom-color: #ffffff;
    margin-top: 2px;
    z-index: 4;
  }
  .page-layout-1column .filter-options-title {
    padding: 0 20px 0 0;
  }
  .page-layout-1column .filter-options-title:after {
    right: 2px;
    top: 3px;
    z-index: 3;
  }
  .page-layout-1column .filter-options-content {
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    -ms-box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    box-shadow: 0 3px 5px 0 rgba(50, 50, 50, 0.75);
    border: 1px solid #cccccc;
    padding: 5px 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 180px;
    z-index: 2;
  }
  .page-layout-1column .filter-options-content .item {
    margin: 0;
    padding: 5px;
  }
  .page-layout-1column .filter-options-content .item a {
    margin-left: 0;
  }
  .page-layout-1column .filter-options-content .item:hover {
    background-color: #e8e8e8;
  }
  .page-layout-1column .filter-current {
    display: inline;
    line-height: 35px;
  }
  .page-layout-1column .filter-current-subtitle {
    color: #7d7d7d;
    display: inline;
    font-size: 14px;
    font-weight: normal;
    padding: 0;
  }
  .page-layout-1column .filter-current-subtitle:after {
    content: ':';
  }
  .page-layout-1column .filter-current .item,
  .page-layout-1column .filter-current .items {
    display: inline;
  }
  .page-layout-1column .filter-current .item {
    margin-right: 25px;
    white-space: nowrap;
  }
  .page-layout-1column .filter-current .action.remove {
    line-height: normal;
  }
  .page-layout-1column .filter-actions {
    display: inline;
    white-space: nowrap;
  }
  .page-layout-1column .filter-actions ~ .filter-options {
    margin-top: 25px;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .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 #ff5501;
    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 {
    width: 34%;
  }
  .product-reviews-summary {
    margin-bottom: 15px;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .product-reviews-summary .reviews-actions {
    font-size: 14px;
    margin-top: 3px;
  }
  .form-create-return .fieldset .field {
    width: 45%;
  }
  .magento-rma-guest-returns .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-returns-tracking .block-title .action {
    margin: 12px 0 0 30px;
  }
  .block-returns-tracking .block-title .action.track {
    float: right;
  }
  .order-links .item {
    float: left;
    margin: 0 -1px 0 0;
  }
  .order-links .item a {
    padding: 1px 35px;
  }
  .order-links .item strong {
    border-bottom: 0;
    margin-bottom: -1px;
    padding: 1px 35px 2px 35px;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 25%;
  }
  .block-order-details-comments {
    margin: 0 0 60px;
  }
  .block-order-details-comments .comment-date {
    clear: left;
    float: left;
    margin-right: 50px;
    max-width: 90px;
  }
  .block-order-details-comments .comment-content {
    overflow: hidden;
  }
  .order-details-items {
    margin-top: -1px;
    padding: 25px;
  }
  .order-details-items .col.name {
    padding-left: 0;
  }
  .order-details-items .col.price {
    text-align: center;
  }
  .order-details-items .col.subtotal {
    text-align: right;
  }
  .order-details-items tbody td {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .order-details-items tfoot .amount,
  .order-details-items tfoot .mark {
    text-align: right;
  }
  .order-details-items.ordered .order-title {
    display: none;
  }
  .table-order-items tbody .col.label,
  .table-order-items tbody .col.value {
    padding-left: 0;
  }
  .table-order-items.invoice .col.qty,
  .table-order-items.shipment .col.qty {
    text-align: center;
  }
  .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;
  }
  .form.send.friend {
    width: 60%;
  }
  .form.send.friend .fieldset .field {
    width: 45%;
  }
  .form.send.friend .fieldset .field.text {
    width: 90%;
  }
  html,
  body {
    height: 100%;
  }
  .ie9 body {
    background-color: #8f8f8f;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper {
    border-bottom: 1px solid #e8e8e8;
    background-color: #7e807e;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    float: right;
    margin-left: 15px;
    margin-right: -6px;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .customer-welcome {
    display: inline-block;
    position: relative;
  }
  .customer-welcome:before,
  .customer-welcome:after {
    content: '';
    display: table;
  }
  .customer-welcome:after {
    clear: both;
  }
  .customer-welcome .action.switch {
    padding: 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch:after {
    -webkit-font-smoothing: antialiased;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch:active:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active {
    display: inline-block;
    text-decoration: none;
  }
  .customer-welcome .action.switch.active > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .customer-welcome .action.switch.active:after {
    -webkit-font-smoothing: antialiased;
    font-size: 10px;
    line-height: 22px;
    color: inherit;
    content: '\e621';
    font-family: 'luma-icons';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .customer-welcome .action.switch.active:hover:after {
    color: inherit;
  }
  .customer-welcome .action.switch.active:active:after {
    color: inherit;
  }
  .customer-welcome ul {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    margin-top: 4px;
    min-width: 100%;
    z-index: 101;
    box-sizing: border-box;
    display: none;
    top: 100%;
    right: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
  }
  .customer-welcome ul li {
    margin: 0;
    padding: 0;
  }
  .customer-welcome ul li:hover {
    background: #e8e8e8;
    cursor: pointer;
  }
  .customer-welcome ul:before,
  .customer-welcome ul:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }
  .customer-welcome ul:before {
    border: 6px solid;
    border-color: transparent transparent #ffffff transparent;
    z-index: 99;
  }
  .customer-welcome ul:after {
    border: 7px solid;
    border-color: transparent transparent #bbbbbb transparent;
    z-index: 98;
  }
  .customer-welcome ul:before {
    right: 10px;
    top: -12px;
  }
  .customer-welcome ul:after {
    right: 9px;
    top: -14px;
  }
  .customer-welcome.active {
    overflow: visible;
  }
  .customer-welcome.active ul {
    display: block;
    position: absolute;
  }
  .customer-welcome li a {
    color: #333333;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    padding: 8px;
  }
  .customer-welcome li a:visited {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome li a:hover {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome li a:active {
    color: #333333;
    text-decoration: none;
  }
  .customer-welcome .customer-name {
    cursor: pointer;
  }
  .customer-welcome .customer-menu {
    display: none;
  }
  .customer-welcome .action.switch {
    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;
    color: #ffffff;
  }
  .customer-welcome .action.switch:focus,
  .customer-welcome .action.switch:active {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch:hover {
    background: none;
    border: none;
  }
  .customer-welcome .action.switch.disabled,
  .customer-welcome .action.switch[disabled],
  fieldset[disabled] .customer-welcome .action.switch {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
  }
  .customer-welcome .header.links {
    min-width: 175px;
  }
  .customer-welcome.active .action.switch:after {
    content: '\e621';
  }
  .customer-welcome.active .customer-menu {
    display: block;
  }
  .customer-welcome .greet {
    display: none;
  }
  .header.panel > .header.links {
    margin: 0;
    padding: 0;
    list-style: none none;
    float: right;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li > a {
    display: inline-block;
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    color: #ffffff;
    padding-left: 5px;
  }
  .header.panel > .header.links > .authorization-link:after {
    content: attr(data-label);
    display: inline-block;
    margin: 0 -5px 0 5px;
  }
  .header.panel > .header.links > .customer-welcome + .authorization-link {
    display: none;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .logo {
    margin: -8px auto 25px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .page-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    min-height: 100%;
    position: relative;
    transition: margin 0.3s ease-out 0s;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
  }
  .ie10 .page-wrapper,
  .ie11 .page-wrapper {
    height: 100%;
  }
  .page-footer {
    background: #f4f4f4;
    margin-top: auto;
    padding-bottom: 25px;
  }
  .page-footer .switcher .options ul.dropdown {
    bottom: -10px;
    left: 100%;
    margin: 0 0 0 20px;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before,
  .page-footer .switcher .options ul.dropdown:after {
    bottom: 13px;
    left: auto;
    right: 100%;
    top: auto;
  }
  .page-footer .switcher .options ul.dropdown:before {
    border-color: transparent #ffffff transparent transparent;
  }
  .page-footer .switcher .options ul.dropdown:after {
    border-color: transparent #bbbbbb transparent transparent;
    margin: 0 0 -1px -1px;
  }
  .footer.content {
    border-top: none;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content ul {
    padding-right: 50px;
  }
  .footer.content .switcher.store {
    display: block;
    margin: 0;
  }
  .footer.content .links {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .footer.content .links li {
    background: transparent;
    border: none;
    font-size: 14px;
    margin: 0 0 8px;
    padding: 0;
  }
  .footer.content .links a,
  .footer.content .links strong {
    display: inline;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .products-grid.wishlist .product-item-info:hover .product-item-inner {
    display: block;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item-actions > * {
    display: inline-block;
    margin-bottom: 7px;
    margin-top: 7px;
  }
  .products-grid.wishlist .product-item .fieldset {
    display: table;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty,
  .products-grid.wishlist .product-item .fieldset .product-item-actions {
    display: table-cell;
    vertical-align: bottom;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .products-grid.wishlist .product-item .tocart {
    width: auto;
  }
  .wishlist-index-index .product-item-info {
    width: auto;
  }
  .wishlist-index-index .product-item-inner {
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-top: none;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.3);
    display: none;
    left: 0;
    margin: 9px 0 0 -1px;
    padding: 0 9px 9px;
    position: absolute;
    right: -1px;
    z-index: 2;
  }
  .wishlist-index-index .product-item-inner .comment-box {
    margin-top: -18px;
  }
  .block.widget .products-grid .product-item {
    width: 33.33333333%;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    width: 25%;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
}
@media all and (min-width: 769px), print {
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
}
@media all and (min-width: 1024px), print {
  .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .products-grid .product-item {
    width: 16.66666667%;
  }
  .page-layout-3columns .products-grid .product-item {
    width: 25%;
  }
  .page-products .products-grid .product-items {
    margin: 0;
  }
  .page-products .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .page-products .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    margin-left: 0;
    width: 20%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    margin-left: 1%;
    width: 32.667%;
  }
  .page-products.page-layout-3columns .products-grid .product-item:nth-child(3n) {
    margin-left: 1%;
  }
  .page-products.page-layout-3columns .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .box-tocart .paypal:first-of-type {
    margin-top: 13px;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #cccccc;
    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;
  }
  .wishlist-index-index .products-grid .product-items {
    margin: 0;
  }
  .wishlist-index-index .products-grid .product-item {
    margin-bottom: 20px;
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .wishlist-index-index .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .block.widget .products-grid .product-item {
    width: 20%;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: calc((100% - 5 * (100%/6)) / 4);
    width: 16.66666667%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: calc((100% - 5 * (100%/6)) / 4);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(5n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 25%;
  }
  .block.widget .products-grid .product-items {
    margin: 0;
  }
  .block.widget .products-grid .product-item {
    margin-left: calc((100% - 4 * 24.439%) / 3);
    padding: 0;
    width: 24.439%;
  }
  .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
}
@media all and (min-width: 1440px), print {
  .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;
  }
}
body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10pt;
}
p {
  font-size: 10pt;
}
h1 {
  font-weight: 600;
  font-size: 48px;
}
h2 {
  font-weight: 600;
  font-size: 40px;
}
h3 {
  font-weight: 600;
  font-size: 32px;
}
h4 {
  font-weight: 600;
  font-size: 26px;
}
h5 {
  font-weight: 600;
  font-size: 20px;
}
h6 {
  font-weight: 600;
  font-size: 14px;
}
caption {
  font-style: italic;
  font-size: 8px;
}
.products-list .actions-primary {
  display: flex;
  grid-gap: 30px;
  align-items: flex-end;
}
.list .product-item .price-box {
  margin: 5px 0;
}
.list-pde {
  margin: 5px 0;
}
.products-grid .product-item-info {
  box-shadow: none !important;
  border: none !important;
}
.products-grid .moq-tag {
  grid-column: span 2;
}
.products-grid .modal-product {
  margin-top: 5px;
  grid-column: span 1;
  text-align: center;
}
/*.products-list .weltpixel_quickview_button_v1, .products-grid .weltpixel_quickview_button_v2 {
    display: block !important;
}

.products-list .weltpixel_quickview_button_v2, .products-grid .weltpixel_quickview_button_v1 {
    display: none !important;
}

.products-grid .weltpixel_quickview_button_v2 {
	margin-top:1px;
	grid-column: span 1;
	text-align:center;
}

.products-grid .weltpixel_quickview_button_v2 span {
	display:none;
}

.products-grid .weltpixel_quickview_button_v2:before {
 	    -webkit-font-smoothing: antialiased;
    	font-size: 26px;
    	padding-top:2px;
    	font-weight: 900 !important;
    	line-height: 28px;
    	color: #1979c3;
    	content: '\f05a';
    	font-family: 'Font Awesome 5 Free';
    	margin: 0;
    	vertical-align: top;
    	display: inline-block;
    	font-weight: normal;
    	overflow: hidden;
    	speak: none;
    	text-align: center;
}*/
.products-grid .product-item-info:not(:hover):not(.active) .product-item-inner {
  overflow: visible !important;
  width: 100% !important;
  margin: 0;
}
.products-grid .item.product.product-item {
  height: 100% !important;
}
.main-login {
  margin: 0;
  float: none !important;
  background-color: #efeeee;
  overflow: hidden;
}
.main-login fieldset.login {
  background-color: #00a2d5;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.main-login .main-email {
  border-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 50px;
  border-bottom: 0;
}
.main-login .main-pass {
  border-color: #fff;
  border-top: 1px solid #c2c2c2;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 50px;
}
.main-login .email .control,
.main-login .password .control {
  margin-right: 0;
  width: 100% !important;
}
.main-login .email,
.main-login .password {
  margin-right: 0;
  width: 100% !important;
}
.main-login .actions-toolbar .primary,
.main-login .actions-toolbar .primary .login {
  width: 100% !important;
}
.main-login .email .control:before {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 50px;
  color: #c2c2c2;
  content: '\e61d';
  font-family: 'luma-icons';
  margin: 0 0 0 8px;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  position: absolute;
}
.main-login .password .control:before {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 900 !important;
  line-height: 50px;
  color: #c2c2c2;
  content: '\f023';
  font-family: 'Font Awesome 5 Free';
  margin: 0 0 0 9px;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  position: absolute;
}
.main-login .main-email,
.main-login .main-pass {
  padding-left: 35px;
}
.main-login .email {
  margin-bottom: 0;
}
.block-content h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
button.login {
  padding: 20px;
}
.side-content h3 {
  color: #373330;
  text-align: center;
  position: relative;
  top: 35%;
}
.main-login > .side-content {
  display: none;
}
.main-login > .block-content {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .main-login {
    margin: 6% auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px 0 #888888;
    background-color: #efeeee;
    /*		display: grid;  grid-gap: 0px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  }
  .main-login .login {
    padding: 20px;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .main-login fieldset.login {
    padding: 20px 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .main-login fieldset.login {
    padding: 20px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .main-login fieldset.login {
    /*padding:20px 20px 50px 20px;*/
    padding: 20px 80px 50px 80px;
  }
  /*	.main-login .side-content {
            display:block;
        }
        .main-login .block-content {
            display:block;
            width:300px;
        }
    */
}
#main-login-page .page-main {
  padding: 0 !important;
}
.page-main {
  margin-top: 130px;
}
.page-products .page-main {
  padding: 0 !important;
  max-width: 100% !important;
}
/*
.page-products .column.main {
    background-color: #eee;
    padding: 20px;
}*/
.page-products .products-list ol {
  left: 20px;
}
.page-products .modes {
  top: 10px;
  right: 100px;
  position: relative;
  float: right !important;
  z-index: 999;
}
.modes-mode {
  background-color: transparent !important;
  border: 1px solid transparent;
  box-shadow: none;
}
.mode-list:before {
  font-size: 17px;
  font-weight: 900 !important;
  line-height: 1;
  color: inherit;
  content: '\f03a' !important;
  font-family: 'Font Awesome 5 Free' !important;
  margin: 0;
  vertical-align: top;
  display: inline-block;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.modes-mode:last-child {
  border-right: 1px solid transparent !important;
}
.modes-mode.active {
  border: 1px solid #082d4d !important;
  border-radius: 0 !important;
  box-shadow: none;
}
.modes-mode:before {
  color: #082d4d !important;
}
.page-products .column.main {
  border-left: 1px solid #cdcdcd;
  border-right: 0;
}
.products-list {
  background-color: #fff;
}
#main-login-page .panel,
#main-login-page .minicart-wrapper,
#main-login-page .block-search,
#main-login-page .nav-toggle,
#main-login-page .footer {
  display: none;
}
#main-login-page .page-header {
  border-bottom: 0;
}
.page-header {
  position: fixed;
  z-index: 800;
  width: 100%;
}
#main-login-page .logo {
  float: none;
  margin: 0 auto;
  display: block;
  width: 299px;
}
/* Product Listing Page */
.qty {
  width: 55px !important;
}
.filter-content .item {
  margin: 6px 0;
}
@media screen and (min-width: 500px) {
  .products-list .product-image-photo {
    max-width: 80px !important;
    width: 100% !important;
  }
  .products-list .product-item-info {
    display: table-row;
  }
  li.item.product.product-item {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 499px) {
  .products-list .product-image-photo {
    width: 240px !important;
    margin: 0 auto;
  }
  .products-list .product-item-info {
    border-bottom: 1px solid #abc;
    display: grid;
    grid-gap: 0px;
    grid-template-columns: repeat(auto-fit, minmax(calc(90vw), 1fr));
  }
  .products-list .product-image-container {
    width: calc(90vw) !important;
  }
  .products-list .product-item-photo {
    padding: 0 10px 10px 0;
    width: 100%;
  }
}
.customer-welcome .customer-name > span {
  display: none;
}
.customer-welcome {
  display: none !important;
}
/*.customer-welcome .action.switch:after, .customer-welcome.active .action.switch:after {
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    font-weight:900;
    line-height: 28px;
    color: inherit;
    content: '\f007';
    font-family: 'Font Awesome 5 Free';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
*/
.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
  color: #fff;
}
.minicart-wrapper .action.showcart:hover:before,
.minicart-wrapper .action.showcart.active:hover:before {
  color: #fff;
}
.page-header .panel.wrapper {
  border-bottom: none;
  /*background-color: #333333;*/
  background-color: #061b33;
  height: 130px;
  padding-top: 0;
  background-image: url('../images/arrow-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.top-header-block,
.bottom-header-block {
  width: 100%;
  height: 40px;
}
.bottom-header-block {
  display: grid;
  grid-template-columns: auto auto auto;
}
.top-header-block {
  /*	margin-bottom:10px;*/
  /*margin-top: 10px;*/
}
.header.content > li {
  margin-top: 5px;
  margin-right: 20px;
  float: right;
  list-style: none;
}
.header.content > li a {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
}
.header.content .authorization-link a {
  background-color: #1979c3;
}
.header.content > li a:hover {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.top-left {
  /*float:left;*/
  height: 100%;
  /*width:420px;*/
}
.top-product-link li {
  list-style: none;
  height: 100%;
  margin-right: 25px;
}
.top-product-link a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-size: 12pt;
}
.top-product-link li:hover {
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.top-product-link li.current {
  border-bottom: 2px solid #fff;
}
.product.actions.product-item-actions {
  display: block !important;
}
@media screen and (max-width: 499px) {
  .product.details.product-item-details {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .top-product-link {
    display: none;
  }
  .block-search {
    float: left;
    margin-right: 0;
    margin-left: 15px;
    width: 275px;
  }
  .field.search .control {
    position: absolute;
    top: 5px;
  }
  .counter.qty {
    display: none !important;
  }
}
@media screen and (min-width: 500px) {
  .products-list .product.details.product-item-details,
  .products-grid .product.details.product-item-details {
    display: grid;
    grid-gap: 0px;
    grid-template-columns: repeat(auto-fit, minmax(35px, 1fr));
    margin: 20px 0 0 0;
  }
  .products-grid .product.details.product-item-details {
    max-width: 750px;
    grid-template-rows: auto 60px auto 50px;
  }
  .products-list .product.details.product-item-details {
    max-width: 1000px;
    grid-template-rows: repeat(1, 1fr);
  }
  .top-product-link {
    display: block;
  }
  .block-search {
    width: 275px;
    margin-right: 15px;
    margin-left: 0;
  }
  .counter.qty {
    display: inline-block;
  }
}
.level2.active > a,
.level1.active > a,
.level0.active > a {
  font-weight: 700;
}
/*@media screen and (max-width:768px){
	.customer-welcome:before, .customer-welcome:after {
    	content: '';
    	display: table;
	}
	.customer-welcome:after {
    	clear: both;
	}
	.customer-welcome .action.switch:after, .customer-welcome.active .action.switch:after {
    	-webkit-font-smoothing: antialiased;
    	font-size: 20px;
    	font-weight: 900;
    	line-height: 28px;
    	color: inherit;
    	content: '\f007';
    	font-family: 'Font Awesome 5 Free';
    	margin: 0;
    	vertical-align: top;
    	display: inline-block;
    	font-weight: normal;
    	overflow: hidden;
    	speak: none;
    	text-align: center;
	}
	.panel.header .links, .panel.header .switcher {
    	display: inline-block !important;
	}
	.customer-welcome .customer-menu {
		display:none;
	}
	.customer-name {
		display:inline-block;
	}

	.customer-welcome .action.switch {
	    background: none !important;
	    border: 0 !important;
	    color: #ffffff !important;
	    cursor: pointer !important;
	    display: inline-block !important;
	    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	    font-weight: 600;
	    margin: 0 !important;
	    padding: 0 !important;
	    font-size: 1.4rem;
	    line-height: 1.6rem;
	    box-sizing: content-box !important;
	    vertical-align: middle;
	}

}
*/
/*.header.links > .authorization-link {
	display: none !important;
}*/
.product-item .tocart {
  padding-bottom: 9px !important;
  padding-top: 8px !important;
  vertical-align: top !important;
}
.page-with-filter .toolbar-amount {
  display: none;
}
.catalog-category-view .sections.nav-sections,
.catalogsearch-result-index .sections.nav-sections {
  display: none;
}
.catalog-category-view .sidebar {
  /*border-right:8px solid #082d4d;*/
}
.catalog-category-view .page-footer {
  border-top: 3px solid #082d4d;
}
/*.page-layout-2columns-left .column.main {
 	border-left:12px solid #082d4d;
 }*/
.products-list .product-item-photo {
  padding: 0 !important;
}
/*@media screen and (min-width:1000px){
.main-settings, .main-help, .minicart-wrapper, .header.links {
	float:right;
	margin:0 8px;
}
}

@media screen and (min-width:0) and (max-width:999px){
.main-settings, .main-help, .minicart-wrapper, .header.links {
	float:right !important;
	margin:0 8px !important;
	position:relative !important;
	top:45px !important;
}
}*/
.main-settings li,
.main-help li {
  list-style: none;
}
.main-settings a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900 !important;
  line-height: 28px;
  color: #fff;
  content: '\f013';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.main-help a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
  color: #fff;
  content: '\f059';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.panel.header {
  /*display: grid;  grid-gap: 250px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;	*/
}
.main-icon-block {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto 25px 25px;
  /*	padding-right:160px;*/
}
.top-product-link {
  /*grid-column: span 1;*/
  float: left;
  padding-top: 5px;
  height: 30px;
}
.block-search {
  padding-left: 3%;
  float: left !important;
}
.main-icon-block {
  /*grid-column: span 1;*/
  float: right;
}
.greet.welcome {
  list-style: none;
  padding-top: 8px;
}
.panel.header {
  padding-top: 20px !important;
}
/*.header.panel > .header.links {
	display: none !important;
}*/
.minicart-wrapper {
  /*	grid-column: span 4;*/
  float: none !important;
}
/*.header.links {
	float:none !important;
	margin-left:0 !important;
}*/
/*.header.panel > .header.links > li {
    margin: 0 !important;
}
*/
.header.panel:before {
  content: none !important;
  display: none !important;
}
.top-logout li,
.top-account li {
  list-style: none;
}
.top-logout a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900 !important;
  line-height: 28px;
  color: #fff;
  content: '\f2f5';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.top-account a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900 !important;
  line-height: 28px;
  color: #fff;
  content: '\f007';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.special-block {
  height: 26px;
  width: 50px;
  /*background-color:red;*/
  /*color:#fff;*/
  background-image: url('../images/sale.png');
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
}
.toolbar-products .pages {
  display: block !important;
}
.pages a {
  font-size: 1.6rem;
}
.pages span {
  font-size: 1.6rem;
}
.products-grid {
  padding-top: 30px;
}
.products-grid > .products {
  padding-left: 20px;
}
@media screen and (min-width: 1065px) {
  .toolbar {
    margin-bottom: 0 !important;
    height: 0px;
  }
  .toolbar-products .pages {
    display: block !important;
    /*    float: right;
            top: -40px;*/
    position: relative;
  }
  .toolbar-products .pages.store {
    top: 8px;
    float: right;
    right: 150px;
  }
  .pages.store a.page:visited {
    color: #000;
  }
  .pages.store a.page {
    color: #000;
  }
  .pages.store a.page:hover {
    color: #999;
  }
  .column.main div:nth-of-type(4) .pages .action {
    color: #000 !important;
  }
  .pages .action {
    box-shadow: none;
    border: 0;
    background: none;
    color: #fff !important;
  }
  .pages .action:hover {
    background: none;
  }
  .column.main div:nth-of-type(4) .pages a {
    color: #000 !important;
  }
  .field.limiter {
    padding-right: 10%;
  }
  .column.main div:nth-of-type(4) .pages {
    top: 0;
    padding-right: 10%;
    float: right;
  }
  .column.main div:nth-of-type(4) .pages .action.next:hover:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.next:visitied:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.next:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.previous:hover:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.previous:visitied:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.previous:before {
    color: #000 !important;
  }
  /*.pages .action.next:hover:before {
        color: #fff !important;
    }
    .pages .action.next:visited:before {
        color: #fff !important;
    }
    .pages .action.next:before {
        color: #fff !important;
    }

    .pages .action.previous:hover:before {
        color: #fff !important;
    }
    .pages .action.previous:visited:before {
        color: #fff !important;
    }
    .pages .action.previous:before {
        color: #fff !important;
    }

    .pages a.page:visited {
        color: #fff;
    }
    .pages a.page {
        color: #fff;
    }
    .pages a.page:hover {
        color:#fefefe;
    }*/
}
/*.top-left{
	display: grid;  grid-gap: 0px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}*/
.top-alt-logo {
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
  width: 240px;
  height: 50px;
  margin-bottom: 15px;
}
.top-alt-logo li {
  list-style: none;
}
.toolbar-sorter.sorter {
  display: none;
}
.sidebar .o-list {
  display: block;
}
/*.page-products .c-sidebar.c-sidebar--categories {
	padding-top:30px;
}*/
.c-sidebar.c-sidebar--categories h3 {
  display: none;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.sidebar .o-list li {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 5px !important;
}
.sidebar .o-list li a {
  color: #494949;
}
#content1 > ul > li:nth-child(n+2) > a {
  /*margin-top:25px;*/
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
}
.level0 > span {
  margin-top: 25px;
}
.level1 > ul,
.level1.active > ul {
  display: grid !important;
  grid-template-columns: 1fr;
  padding-inline-start: 0px;
}
#content1 > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#content1 > ul > li:nth-child(n+2) {
  grid-column: span 2;
  padding-top: 20px;
}
.page-products .sidebar-main {
  padding-right: 0;
  max-width: 300px;
}
.page-products .sidebar-additional {
  max-width: 350px;
  padding: 0 15px !important;
  float: none;
  width: 100%;
}
.sidebar-additional .product-items .product-item-info {
  width: 240px;
}
.sidebar-additional .product-items .product-item-info .product-item-photo {
  position: relative !important;
}
.page-products .columns {
  display: flex;
}
/*.sidebar-additional .product-item-details {
    display: flex !important;
    max-width: 400px !important;
    flex-wrap: wrap !important;
    grid-gap: 10px !important;
}*/
.page-layout-3columns .column.main {
  flex: 2;
}
.sidebar-additional .products-grid {
  padding-top: 0 !important;
}
/*.page-layout-3columns .products-grid .product-item {
	width: 24.439% !important;
}*/
.products-grid ol.product-items {
  display: flex;
  flex-wrap: wrap;
}
/*.sidebar-additional .product-item > div {
	display: flex;
	flex-wrap: wrap;
}*/
.c-sidebar.c-sidebar--categories {
  /*
    label[for*='1']:before { content: '\f1cb'; }
    label[for*='2']:before { content: '\f17d'; }
    label[for*='3']:before { content: '\f16c'; }
    label[for*='4']:before { content: '\f171'; }
    label[for*='4']:before { content: '\f171'; }
    */
}
.c-sidebar.c-sidebar--categories p:not(:last-child) {
  margin: 0 0 20px;
}
.c-sidebar.c-sidebar--categories section {
  display: none;
  padding: 30px 0px 20px 0px;
  width: 100%;
  /*  border-bottom: 1px solid #abc;*/
  /*  border-top: 1px solid #abc;
          border-right: 1px solid #abc;
          border-left: 1px solid #abc;*/
}
.c-sidebar.c-sidebar--categories input {
  display: none;
}
.c-sidebar.c-sidebar--categories label {
  width: 30%;
  /*  flex-grow:1; */
  -webkit-transition: flex-grow 0.2s linear;
  -moz-transition: flex-grow 0.2s linear;
  -o-transition: flex-grow 0.2s linear;
  -ms-transition: flex-grow 0.2s linear;
  transition: flex-grow 0.2s linear;
  margin: 0 0 -1px;
  padding: 5px 3px;
  font-weight: 600;
  text-align: center;
  color: #abc;
  border: 1px solid transparent;
  border-bottom: 2px solid #eee;
}
.c-sidebar.c-sidebar--categories label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}
.c-sidebar.c-sidebar--categories label:hover {
  color: #789;
  cursor: pointer;
}
.c-sidebar.c-sidebar--categories input:checked + label {
  color: #0af;
  width: 30%;
  border-bottom: 2px solid #0af;
  -webkit-transition: flex-grow 0.2s linear;
  -moz-transition: flex-grow 0.2s linear;
  -o-transition: flex-grow 0.2s linear;
  -ms-transition: flex-grow 0.2s linear;
  transition: flex-grow 0.2s linear;
  /*  border: 1px solid #abc;
          border-top: 2px solid #0af;
          border-bottom: 1px solid #fff;
        */
}
.c-sidebar.c-sidebar--categories #tab1:checked ~ #content1,
.c-sidebar.c-sidebar--categories #tab2:checked ~ #content2,
.c-sidebar.c-sidebar--categories #tab3:checked ~ #content3,
.c-sidebar.c-sidebar--categories #tab4:checked ~ #content4 {
  display: block;
}
@media screen and (max-width: 800px) {
  .c-sidebar.c-sidebar--categories label {
    font-size: 0;
  }
  .c-sidebar.c-sidebar--categories label:before {
    margin: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .c-sidebar.c-sidebar--categories label {
    padding: 15px;
  }
}
/*.page-layout-2columns-left .sidebar-main, .page-layout-2columns-left .sidebar-additional {
	width: 21.4%;
}

.page-layout-2columns-left .column.main {
	width: 78%;
}*/
.side-head-container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .block-collapsible-nav .content {
    background: #fff;
    padding: 5px 0;
  }
  .block-collapsible-nav .item.current > strong {
    border-color: #ff5501;
    color: #fff;
    font-weight: 600;
  }
  .block-collapsible-nav .content li {
    background-color: #082d4d;
    color: #fff !important;
    margin-bottom: 15px;
    height: 40px;
    box-shadow: 2px 2px 7px 0 #888888;
  }
  .block-collapsible-nav .content li:hover {
    background: #6c6b76 !important;
  }
  .block-collapsible-nav .item a,
  .block-collapsible-nav .item strong {
    color: #fff !important;
    padding: 11px 18px 11px 15px !important;
  }
  .block-collapsible-nav .item a:hover {
    background-color: transparent;
  }
}
/*
body.account .column.main {
	float:left;
	padding-right:25px;
}

body.account .sidebar.sidebar-main {
	float:right;
	padding-right:0;
}*/
body.account h1 {
  font-size: 32px;
}
.field.field-wholesaler_1,
.field.field-wholesaler_2,
.field.field-wholesaler_3 {
  float: left;
  width: 30%;
}
.field.field-wholesaler_1_acct,
.field.field-wholesaler_2_acct,
.field.field-wholesaler_3_acct {
  float: right;
  width: 60%;
}
.multicheckout .action.primary,
.order-review-form .action.primary,
.bundle-actions .action.primary.customize,
.bundle-options-container .block-bundle-summary .box-tocart .action.primary,
.box-tocart .action.tocart,
.cart-summary .checkout-methods-items .action.primary.checkout,
.block-minicart .block-content > .actions > .primary .action.primary,
.methods-shipping .actions-toolbar .action.primary,
.block-authentication .action.action-register,
.block-authentication .action.action-login,
.checkout-payment-method .payment-method-content > .actions-toolbar > .primary .action.primary,
.form-address-edit .actions-toolbar .action.primary {
  line-height: 1.6rem;
  padding: 7px 15px;
  font-size: 1.4rem;
}
.product-info-price .price-box .price-container .price {
  font-size: 22px;
  line-height: 22px;
}
.weltpixel-quickview-catalog-product-view .box-tocart .action.tocart {
  width: 49%;
  float: left;
}
.fieldset.login .field.note h3 {
  text-align: center;
}
.fieldset.login h3 {
  text-align: left;
}
.fieldset.login h3 a {
  color: #fff;
}
.action.remind span {
  color: #fff;
}
.product.attribute.sku strong,
.product.attribute.sku .value {
  font-weight: 700 !important;
}
#onestepcheckout-page .opc-wrapper {
  display: none !important;
}
#onestepcheckout-page #opc-sidebar {
  width: 50% !important;
  float: left;
}
.customer-account-edit .field-prod_page,
.customer-account-edit .field-product_view {
  display: none;
}
.customer-wholesalers-index .field-name-firstname,
.customer-wholesalers-index .field-name-lastname {
  display: none;
}
.customer-wholesalers-index .form-newsletter-manage {
  margin-top: 30px;
}
.products-grid .product-item-info .product-item-inner {
  display: block !important;
}
.products-grid .product-item-inner {
  position: relative !important;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  right: auto;
}
.products-grid .product-item-info:hover {
  padding: 0;
  margin: 0;
}
#onestepcheckout-page .details-qty .field {
  width: 100px !important;
}
#onestepcheckout-page .details-qty .qty-control {
  padding-left: 10px !important;
}
.product-info-main .product-info-stock-sku div {
  padding-bottom: 8px;
}
.page-footer {
  min-height: 150px;
}
.page-footer .newsletter,
.page-footer .links {
  display: none !important;
}
.amasty-xsearch-form {
  width: 110px;
}
.report-grid {
  display: grid;
  grid-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto;
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
}
.report-grid > a > div {
  min-height: 150px;
  padding: 20px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  background-color: #fff;
  position: relative;
}
.report-grid a {
  color: #777;
}
.report-grid a:hover {
  text-decoration: none;
}
.report-grid h4 {
  margin-top: 0;
}
.report-grid > a:hover > div {
  -webkit-transition: box-shadow 0.2s ease;
  -moz-transition: box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  -ms-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.16), 0 4px 8px 0 rgba(0, 0, 0, 0.26);
}
.cms-reports .page-wrapper {
  background-color: #f5f5f5;
}
.report-grid i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #082d4d;
}
.dt-buttons {
  margin-top: 15px !important;
}
.dt-button {
  font-size: 1.8em !important;
  line-height: 1 !important;
  background-image: none !important;
  padding: 5px !important;
  background-color: #fff !important;
  border: none !important;
}
button.dt-button:hover:not(.disabled),
div.dt-button:hover:not(.disabled),
a.dt-button:hover:not(.disabled) {
  background-image: none !important;
  background-color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
button.dt-button:active:not(.disabled):hover:not(.disabled),
button.dt-button.active:not(.disabled):hover:not(.disabled),
div.dt-button:active:not(.disabled):hover:not(.disabled),
div.dt-button.active:not(.disabled):hover:not(.disabled),
a.dt-button:active:not(.disabled):hover:not(.disabled),
a.dt-button.active:not(.disabled):hover:not(.disabled) {
  box-shadow: none !important;
}
button:not(.primary) {
  box-shadow: none !important;
}
.btn-sub {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
  background-color: #1979c3;
}
input[type="submit"]:hover.btn-sub {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.btn-cont a {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
  background-color: #1979c3;
}
.btn-cont {
  list-style: none;
  margin-top: 30px;
}
.btn-cont a:hover {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.btn-upload {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
  background-color: #1979c3;
}
.btn-upload:hover {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
#progress-wrp {
  border: 1px solid #0099CC;
  padding: 1px;
  position: relative;
  border-radius: 3px;
  margin: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}
#progress-wrp .progress-bar {
  height: 20px;
  border-radius: 3px;
  background-color: #f39ac7;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}
#progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}
#onestepcheckout-page .field .control select {
  padding: 5px 10px 4px !important;
  border: 1px solid #ccc !important;
  background: #ffffff url('../images/select-bg.svg') no-repeat 100% 45%;
}
.pdeoverlay {
  max-width: 600px;
  width: 90%;
  position: fixed;
  top: 10%;
  margin: 0 auto;
}
/* DivTable.com */
.divTable {
  margin-top: 20px;
  display: table;
  width: 100%;
}
.divTableRow {
  display: table-row;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
}
.divTableCell,
.divTableCell2,
.divTableHead {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}
.divTableCell2 {
  text-align: center;
}
.divTableCell,
.divTableHead {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
  font-weight: bold;
}
.divTableFoot {
  background-color: #EEE;
  display: table-footer-group;
  font-weight: bold;
}
.divTableBody {
  display: table-row-group;
}
.home-button {
  width: 110px;
  margin: 20px auto;
  border: 2px solid #0d2e4d;
  background-color: #fff;
  color: #0d2e4d !important;
  font-weight: 700;
  font-size: 1.4em;
  padding: 15px 35px;
  border-radius: 10px;
  display: block;
}
.home-button:hover {
  background-color: #0d2e4d;
  color: #fff !important;
  text-decoration: none;
}
.totals.shipping.excl {
  display: none !important;
}
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}
.tabset .tab-panel {
  display: none;
}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}
/*
 Styling
*/
.tabset > label {
  position: relative;
  display: inline-block;
  padding: 30px 15px 15px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}
/*.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}*/
.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}
.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  font-weight: 700;
}
.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
.minicart-wrapper .action.showcart .counter.qty {
  background: #2eafe5 !important;
}
button {
  background: #fff;
  border: 1px solid #061b33;
  color: #061b33;
}
button:hover,
button.active {
  background: #061b33;
  color: #fff;
}
#products tr:nth-child(odd) {
  background-color: #c6c6c6;
}
#products tr:first-child {
  background-color: #061b33;
  color: #fff;
}
#products td,
#products th {
  vertical-align: middle;
}
button.secondary {
  color: #fff;
  background-color: #2eafe5;
}
button.secondary:hover {
  background-color: #061b33;
  color: #fff;
  border-color: #2eafe5;
}
a > button {
  width: 100%;
  height: 100%;
}
a:hover > button {
  text-decoration: none;
}
.selector {
  height: 45px;
}
.selector.selected {
  background: #061b33;
  color: #fff;
}
.header-container {
  grid-template-columns: repeat(8, 140px);
  grid-template-rows: 75px;
  display: grid;
  grid-gap: 0.5rem;
  grid-auto-flow: row;
  justify-content: space-around;
  padding-top: 10px;
  margin-bottom: 50px;
  align-items: end;
}
.header-container h2 {
  margin-bottom: 0;
}
#paymentContainer .payment {
  display: none;
}
#paymentContainer .payment.active {
  display: block;
}
#paymentContainer #change-payment {
  cursor: pointer;
}
#paymentContainer .changing {
  cursor: pointer;
  text-decoration: underline;
}
#paymentContainer {
  display: grid;
  grid-template-columns: 250px 50px;
}
.add-to-cart-popup {
  z-index: 999;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.add-to-cart-popup .modal-inner-wrap,
.tga-popup .modal-inner-wrap {
  width: 100%;
  margin: 0;
}
.tga-popup {
  z-index: 999;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#agree-error,
#signature-error {
  display: none;
  color: #ea4335;
}
input[type="date"] {
  background: #fff;
  background-clip: padding-box;
  border: 1px solid #c2c2c2;
  border-radius: 1px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 32px;
  line-height: 1.42857143;
  padding: 0 9px;
  vertical-align: baseline;
  width: 100%;
  box-sizing: border-box;
}
.product-item .old-price {
  text-decoration: line-through;
}
.totals.sub.incl {
  display: none;
}
.error-btn,
.error-btn:hover {
  background-color: #dc3545;
  color: #fff;
}
.detailsPopup {
  max-width: 1600px;
  margin: 0 auto;
}
.detailsPopup .product.data.items .item.title.active > .switch {
  background: #fff;
  color: #333;
  padding-bottom: 2px;
}
.detailsPopup .product.data.items .item.title > .switch {
  font-weight: 400;
  line-height: 40px;
  font-size: 1.4rem;
  color: #7d7d7d;
  text-decoration: none;
  background: #f6f6f6;
  border: 1px solid #ccc;
  border-bottom: none;
  height: 40px;
  padding: 1px 35px 1px 35px;
  display: block;
  position: relative;
  z-index: 2;
}
.detailsPopup .product.data.items .item.title:last-of-type > .switch {
  border-bottom: 1px solid #ccc;
}
.detailsPopup .product.data.items .item.title {
  width: 200px;
  /*float: none;*/
  /*margin-left: ~"calc(100% - 200px)";*/
}
.detailsPopup .product.data.items .item.content {
  /*	margin: 0 200px 0 0 !important;*/
  margin: 0;
  background: #fff;
  padding: 0 35px 35px 35px;
  /*border: 1px solid #ccc;*/
  display: block;
  /*width: ~"calc(100% - 200px)";*/
  height: auto;
  box-sizing: border-box;
  top: 0;
  left: 0;
}
.detailsPopup .product.data.items {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}
.detailsPopup #tab-summary span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
}
.detailsPopup #tab-summary span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
}
@media screen and (min-width: 750px) {
  .detailsPopup .product.data.items .item.content {
    /*margin: 0 0 0 50px;*/
    margin: 0;
    min-height: 350px;
    position: relative;
  }
}
.promo-tag {
  background-color: #dc3545;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 7px;
  margin-left: 5px;
}
.pde-tag {
  background-color: #1979c3;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 7px;
}
.detailsPopup #tab-pde span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 18px;
}
.moq-tag {
  background-color: #1979c3;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 7px;
  /*grid-column: span 2;*/
  height: 20px;
  margin: 5px;
  width: max-content;
}
.detailsPopup #products tbody tr:first-child {
  background-color: #c6c6c6;
  color: #333;
}
.detailsPopup #summary-content tr > td {
  padding: 11px 0px;
}
.detailsPopup #summary-price {
  margin: 2rem 0 0 0;
}
.detailsPopup .moq-tag {
  margin: 1.4rem 0 0 0;
}
.detailsPopup #products tr td + td,
.detailsPopup #products tr th + th {
  text-align: center;
}
.pde-container {
  position: relative;
}
.pde-container > a {
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin-top: -25%;
}
.cms-promotion .price {
  color: #dc3545;
}
.cms-promotion .action.tocart.primary {
  background-color: #dc3545;
}
/*START 2024 UI Update changes*/
.sidebar section#content1 {
  display: none;
}
.hide {
  display: none !important;
}
.header-banner {
  display: none !important;
}
.page-products .page-header {
  position: sticky;
  top: 0;
}
body > div.page-wrapper > header > div.panel.wrapper {
  padding: 10px;
}
body > div.page-wrapper > header > div.panel.wrapper > div.panel.header {
  display: flex;
  padding: 10px;
  max-width: unset;
  flex-grow: 1;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block {
  display: flex;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.top-header-block {
  margin-left: 10px;
  width: unset;
  margin-right: 10px;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > div.top-left {
  display: flex;
  order: 2;
  flex-grow: 1;
  gap: 5.8em;
  padding-left: 25px;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > div.header-filter {
  order: 2;
  margin-left: auto;
  flex-grow: 1;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > .main-icon-block {
  order: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  gap: 15px;
}
body > div.page-wrapper > header > div.panel.wrapper {
  background-image: none;
  height: auto;
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > div.main-icon-block > div.minicart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14pt;
}
body > div.page-wrapper > header .greet.welcome {
  display: none;
}
body > div.page-wrapper > header .top-product-link a {
  font-size: 12pt;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
body > div.page-wrapper > header #category-filter-form {
  display: flex;
  flex-grow: 1;
}
body > div.page-wrapper > header #category-filter-form > div.form-search {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}
body > div.page-wrapper > header #category-filter-form > div > button {
  height: 100% !important;
  border: none !important;
  margin-bottom: 0 !important;
  border-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-right: 20px !important;
  padding-left: 15px !important;
  border-top: 1px solid #f2f2f2 !important;
  border-right: 1px solid #f2f2f2 !important;
  border-bottom: 1px solid #f2f2f2 !important;
}
body > div.page-wrapper > header #category-filter-form > div > button i {
  font-size: 16pt !important;
}
body > div.page-wrapper > header #category-filter-form #tooltipButton {
  display: none;
}
body > div.page-wrapper > header #category-filter-form input#category-filter-input {
  width: unset;
  flex-grow: 1;
  border: none;
  border-radius: 25px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 10px;
  padding-left: 20px !important;
  height: unset !important;
  font-size: 12pt;
}
body > div.page-wrapper > header #category-filter-form input#category-filter-input:focus {
  box-shadow: unset !important;
}
.side-head-container #content1 {
  padding-top: unset;
}
.side-head-container #content1 ul {
  display: block;
}
.side-head-container #content1 > ul {
  background: #ffffff;
  margin-right: 15px;
  border: 1px solid #cdcdcd;
  padding: 10px;
}
label[title="Categories"],
label[title="Stores"],
label[title="Suppliers"] {
  display: none !important;
}
.page-products .page-main {
  background: #f2f2f2;
  margin-top: unset !important;
  padding: 15px !important;
}
.page-products #maincontent {
  border-bottom: none !important;
}
.page-products > footer {
  border-top: none !important;
}
#main-products.products-grid {
  padding-top: unset;
  margin-top: unset;
}
#main-products.products-grid .product-item {
  margin-left: unset !important;
}
#main-products.products-grid > ol {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 300px));
  gap: 10px;
}
#main-products.products-grid > ol > li {
  border: 1px solid #cdcdcd;
  padding: 10px;
  background-color: #ffffff;
  width: 100%;
  margin-bottom: unset !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-products.products-grid > ol > li > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
#main-products.products-grid > ol > li span.price-wrapper {
  margin-bottom: 15px;
  font-weight: bold;
  grid-column: span 4;
}
#main-products.products-grid > ol > li span.price-wrapper .price-box {
  margin-top: unset;
  margin-bottom: unset;
}
#main-products.products-grid > ol > li span.price-wrapper span.price {
  font-size: 20pt;
}
.card {
  background: #FFFFFF;
  border: 1px solid #cdcdcd;
  padding: 20px;
}
.page-header-card {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-header-card h1,
.page-header-card h2,
.page-header-card h3,
.page-header-card h4,
.page-header-card h5,
.page-header-card h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}
.page-header-card h3,
.page-header-card h4 {
  font-size: 20px;
}
.page-products .modes {
  top: unset;
  right: unset;
  float: none !important;
  z-index: unset;
}
.page-products #content1 > ul > li > h5 {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.products-grid .product-item-inner {
  grid-column: span 7;
  clip: unset;
  height: unset;
}
.products-grid .product-item-inner .product.actions.product-item-actions {
  display: flex !important;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary {
  flex-grow: 1;
  display: flex;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form {
  display: flex !important;
  flex-grow: 1;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper .qty-label {
  background-color: #E0E0E0;
  color: #333;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper span.qty-input-wrapper {
  flex-grow: 1;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper input {
  height: 40px;
  width: 100% !important;
  font-size: 16pt;
  text-align: center;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper button.action.tocart.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.5px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 40px;
  min-width: 100px;
  font-weight: 700;
  font-size: 16pt;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper button.action.tocart.primary:before {
  -webkit-font-smoothing: antialiased;
  font-size: 22px;
  line-height: 28px;
  color: #f2f2f2;
  content: '\e611';
  font-family: 'luma-icons';
  margin: 0;
  display: block;
  font-weight: normal;
  overflow: visible;
  speak: none;
  text-align: center;
}
.search-card {
  position: relative;
  padding: 0;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: -11px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.search-card input {
  border: none;
  padding-left: 40px;
  font-size: 16pt;
  min-height: 44px;
}
.search-card i.fa-search {
  position: absolute;
  left: 10px;
  top: 12.5px;
  font-size: 16pt;
  color: #333;
}
.cms-brands main#maincontent.page-main,
.cms-suppliers main#maincontent.page-main {
  max-width: 1920px !important;
  padding: 0;
  margin: auto;
}
.cms-brands .page-wrapper,
.cms-suppliers .page-wrapper {
  background: #f2f2f2;
}
.cms-brands .page-main,
.cms-suppliers .page-main {
  margin-top: unset !important;
}
.cms-brands .page-header,
.cms-suppliers .page-header {
  position: sticky;
  top: 0;
}
.cms-brands .standard-container,
.cms-suppliers .standard-container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  grid-gap: 10px;
}
.cms-brands .supplier-container,
.cms-suppliers .supplier-container {
  border: 1px solid #000;
  background-color: #fff;
  display: flex;
  padding: 10px;
  border: 1px solid #cdcdcd;
  background: #ffffff;
}
.cms-brands .supplier-container > img,
.cms-suppliers .supplier-container > img {
  width: 100%;
}
.cms-brands .brand-status,
.cms-suppliers .brand-status {
  color: #fff;
  width: 150px;
}
.cms-brands .standard-container,
.cms-suppliers .standard-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 320px));
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.cms-promotions main#maincontent {
  margin-top: unset !important;
}
.cms-promotions .page-header {
  position: sticky;
  top: 0;
}
.minicart-wrapper .block-minicart:after,
.minicart-wrapper .block-minicart:after {
  display: none !important;
}
body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10pt;
}
p {
  font-size: 10pt;
}
h1 {
  font-weight: 600;
  font-size: 48px;
}
h2 {
  font-weight: 600;
  font-size: 40px;
}
h3 {
  font-weight: 600;
  font-size: 32px;
}
h4 {
  font-weight: 600;
  font-size: 26px;
}
h5 {
  font-weight: 600;
  font-size: 20px;
}
h6 {
  font-weight: 600;
  font-size: 14px;
}
caption {
  font-style: italic;
  font-size: 8px;
}
.products-list .actions-primary {
  display: flex;
  grid-gap: 30px;
  align-items: flex-end;
}
.list .product-item .price-box {
  margin: 5px 0;
}
.list-pde {
  margin: 5px 0;
}
.products-grid .product-item-info {
  box-shadow: none !important;
  border: none !important;
}
.products-grid .moq-tag {
  grid-column: span 2;
}
.products-grid .modal-product {
  margin-top: 5px;
  grid-column: span 1;
  text-align: center;
}
/*.products-list .weltpixel_quickview_button_v1, .products-grid .weltpixel_quickview_button_v2 {
    display: block !important;
}

.products-list .weltpixel_quickview_button_v2, .products-grid .weltpixel_quickview_button_v1 {
    display: none !important;
}

.products-grid .weltpixel_quickview_button_v2 {
	margin-top:1px;
	grid-column: span 1;
	text-align:center;
}

.products-grid .weltpixel_quickview_button_v2 span {
	display:none;
}

.products-grid .weltpixel_quickview_button_v2:before {
 	    -webkit-font-smoothing: antialiased;
    	font-size: 26px;
    	padding-top:2px;
    	font-weight: 900 !important;
    	line-height: 28px;
    	color: #1979c3;
    	content: '\f05a';
    	font-family: 'Font Awesome 5 Free';
    	margin: 0;
    	vertical-align: top;
    	display: inline-block;
    	font-weight: normal;
    	overflow: hidden;
    	speak: none;
    	text-align: center;
}*/
.products-grid .product-item-info:not(:hover):not(.active) .product-item-inner {
  overflow: visible !important;
  width: 100% !important;
  margin: 0;
}
.products-grid .item.product.product-item {
  height: 100% !important;
}
.main-login {
  margin: 0;
  float: none !important;
  background-color: #efeeee;
  overflow: hidden;
}
.main-login fieldset.login {
  background-color: #00a2d5;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.main-login .main-email {
  border-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 50px;
  border-bottom: 0;
}
.main-login .main-pass {
  border-color: #fff;
  border-top: 1px solid #c2c2c2;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 50px;
}
.main-login .email .control,
.main-login .password .control {
  margin-right: 0;
  width: 100% !important;
}
.main-login .email,
.main-login .password {
  margin-right: 0;
  width: 100% !important;
}
.main-login .actions-toolbar .primary,
.main-login .actions-toolbar .primary .login {
  width: 100% !important;
}
.main-login .email .control:before {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 50px;
  color: #c2c2c2;
  content: '\e61d';
  font-family: 'luma-icons';
  margin: 0 0 0 8px;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  position: absolute;
}
.main-login .password .control:before {
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 900 !important;
  line-height: 50px;
  color: #c2c2c2;
  content: '\f023';
  font-family: 'Font Awesome 5 Free';
  margin: 0 0 0 9px;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
  position: absolute;
}
.main-login .main-email,
.main-login .main-pass {
  padding-left: 35px;
}
.main-login .email {
  margin-bottom: 0;
}
.block-content h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
button.login {
  padding: 20px;
}
.side-content h3 {
  color: #373330;
  text-align: center;
  position: relative;
  top: 35%;
}
.main-login > .side-content {
  display: none;
}
.main-login > .block-content {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .main-login {
    margin: 6% auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px 0 #888888;
    background-color: #efeeee;
    /*		display: grid;  grid-gap: 0px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  }
  .main-login .login {
    padding: 20px;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .main-login fieldset.login {
    padding: 20px 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .main-login fieldset.login {
    padding: 20px 100px;
  }
}
@media screen and (min-width: 1200px) {
  .main-login fieldset.login {
    /*padding:20px 20px 50px 20px;*/
    padding: 20px 80px 50px 80px;
  }
  /*	.main-login .side-content {
            display:block;
        }
        .main-login .block-content {
            display:block;
            width:300px;
        }
    */
}
#main-login-page .page-main {
  padding: 0 !important;
}
.page-main {
  margin-top: 130px;
}
.page-products .page-main {
  padding: 0 !important;
  max-width: 100% !important;
}
/*
.page-products .column.main {
    background-color: #eee;
    padding: 20px;
}*/
.page-products .products-list ol {
  left: 20px;
}
.page-products .modes {
  top: 10px;
  right: 100px;
  position: relative;
  float: right !important;
  z-index: 999;
}
.modes-mode {
  background-color: transparent !important;
  border: 1px solid transparent;
  box-shadow: none;
}
.mode-list:before {
  font-size: 17px;
  font-weight: 900 !important;
  line-height: 1;
  color: inherit;
  content: '\f03a' !important;
  font-family: 'Font Awesome 5 Free' !important;
  margin: 0;
  vertical-align: top;
  display: inline-block;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.modes-mode:last-child {
  border-right: 1px solid transparent !important;
}
.modes-mode.active {
  border: 1px solid #082d4d !important;
  border-radius: 0 !important;
  box-shadow: none;
}
.modes-mode:before {
  color: #082d4d !important;
}
.page-products .column.main {
  border-left: 1px solid #cdcdcd;
  border-right: 0;
}
.products-list {
  background-color: #fff;
}
#main-login-page .panel,
#main-login-page .minicart-wrapper,
#main-login-page .block-search,
#main-login-page .nav-toggle,
#main-login-page .footer {
  display: none;
}
#main-login-page .page-header {
  border-bottom: 0;
}
.page-header {
  position: fixed;
  z-index: 800;
  width: 100%;
}
#main-login-page .logo {
  float: none;
  margin: 0 auto;
  display: block;
  width: 299px;
}
/* Product Listing Page */
.qty {
  width: 55px !important;
}
.filter-content .item {
  margin: 6px 0;
}
@media screen and (min-width: 500px) {
  .products-list .product-image-photo {
    max-width: 80px !important;
    width: 100% !important;
  }
  .products-list .product-item-info {
    display: table-row;
  }
  li.item.product.product-item {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 499px) {
  .products-list .product-image-photo {
    margin: 0 auto;
  }
  .products-list .product-item-info {
    border-bottom: 1px solid #abc;
    display: grid;
    grid-gap: 0px;
    grid-template-columns: repeat(auto-fit, minmax(calc(90vw), 1fr));
  }
  .products-list .product-image-container {
    width: calc(90vw) !important;
  }
  .products-list .product-item-photo {
    padding: 0 10px 10px 0;
    width: 100%;
  }
}
.customer-welcome .customer-name > span {
  display: none;
}
.customer-welcome {
  display: none !important;
}
/*.customer-welcome .action.switch:after, .customer-welcome.active .action.switch:after {
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    font-weight:900;
    line-height: 28px;
    color: inherit;
    content: '\f007';
    font-family: 'Font Awesome 5 Free';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
*/
.minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:before {
  color: #fff;
}
.minicart-wrapper .action.showcart:hover:before,
.minicart-wrapper .action.showcart.active:hover:before {
  color: #fff;
}
.page-header .panel.wrapper {
  border-bottom: none;
  /*background-color: #333333;*/
  background-color: #061b33;
  height: 130px;
  padding-top: 0;
  background-image: url('../images/arrow-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.top-header-block,
.bottom-header-block {
  width: 100%;
  height: 40px;
}
.bottom-header-block {
  display: grid;
  grid-template-columns: auto auto auto;
}
.top-header-block {
  /*	margin-bottom:10px;*/
  /*margin-top: 10px;*/
}
.header.content > li {
  margin-top: 5px;
  margin-right: 20px;
  float: right;
  list-style: none;
}
.header.content > li a {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
}
.header.content .authorization-link a {
  background-color: #1979c3;
}
.header.content > li a:hover {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.top-left {
  /*float:left;*/
  height: 100%;
  /*width:420px;*/
}
.top-product-link li {
  list-style: none;
  height: 100%;
  margin-right: 25px;
}
.top-product-link a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  font-size: 12pt;
}
.top-product-link li:hover {
  border-bottom: 2px solid #fff;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.top-product-link li.current {
  border-bottom: 2px solid #fff;
}
.product.actions.product-item-actions {
  display: block !important;
}
@media screen and (max-width: 499px) {
  .product.details.product-item-details {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .top-product-link {
    display: none;
  }
  .block-search {
    float: left;
    margin-right: 0;
    margin-left: 15px;
    width: 275px;
  }
  .field.search .control {
    position: absolute;
    top: 5px;
  }
  .counter.qty {
    display: none !important;
  }
}
@media screen and (min-width: 500px) {
  .products-list .product.details.product-item-details,
  .products-grid .product.details.product-item-details {
    display: grid;
    grid-gap: 0px;
    grid-template-columns: repeat(auto-fit, minmax(35px, 1fr));
    margin: 20px 0 0 0;
  }
  .products-grid .product.details.product-item-details {
    max-width: 750px;
    grid-template-rows: auto 60px auto 50px;
  }
  .products-list .product.details.product-item-details {
    max-width: 1000px;
    grid-template-rows: repeat(1, 1fr);
  }
  .top-product-link {
    display: block;
  }
  .block-search {
    width: 275px;
    margin-right: 15px;
    margin-left: 0;
  }
  .counter.qty {
    display: inline-block;
  }
}
.level2.active > a,
.level1.active > a,
.level0.active > a {
  font-weight: 700;
}
/*@media screen and (max-width:768px){
	.customer-welcome:before, .customer-welcome:after {
    	content: '';
    	display: table;
	}
	.customer-welcome:after {
    	clear: both;
	}
	.customer-welcome .action.switch:after, .customer-welcome.active .action.switch:after {
    	-webkit-font-smoothing: antialiased;
    	font-size: 20px;
    	font-weight: 900;
    	line-height: 28px;
    	color: inherit;
    	content: '\f007';
    	font-family: 'Font Awesome 5 Free';
    	margin: 0;
    	vertical-align: top;
    	display: inline-block;
    	font-weight: normal;
    	overflow: hidden;
    	speak: none;
    	text-align: center;
	}
	.panel.header .links, .panel.header .switcher {
    	display: inline-block !important;
	}
	.customer-welcome .customer-menu {
		display:none;
	}
	.customer-name {
		display:inline-block;
	}

	.customer-welcome .action.switch {
	    background: none !important;
	    border: 0 !important;
	    color: #ffffff !important;
	    cursor: pointer !important;
	    display: inline-block !important;
	    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	    font-weight: 600;
	    margin: 0 !important;
	    padding: 0 !important;
	    font-size: 1.4rem;
	    line-height: 1.6rem;
	    box-sizing: content-box !important;
	    vertical-align: middle;
	}

}
*/
/*.header.links > .authorization-link {
	display: none !important;
}*/
.product-item .tocart {
  padding-bottom: 9px !important;
  padding-top: 8px !important;
  vertical-align: top !important;
}
.page-with-filter .toolbar-amount {
  display: none;
}
.catalog-category-view .sections.nav-sections,
.catalogsearch-result-index .sections.nav-sections {
  display: none;
}
.catalog-category-view .sidebar {
  /*border-right:8px solid #082d4d;*/
}
.catalog-category-view .page-footer {
  border-top: 3px solid #082d4d;
}
/*.page-layout-2columns-left .column.main {
 	border-left:12px solid #082d4d;
 }*/
.products-list .product-item-photo {
  padding: 0 !important;
}
/*@media screen and (min-width:1000px){
.main-settings, .main-help, .minicart-wrapper, .header.links {
	float:right;
	margin:0 8px;
}
}

@media screen and (min-width:0) and (max-width:999px){
.main-settings, .main-help, .minicart-wrapper, .header.links {
	float:right !important;
	margin:0 8px !important;
	position:relative !important;
	top:45px !important;
}
}*/
.main-settings li,
.main-help li {
  list-style: none;
}
.main-settings a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900 !important;
  line-height: 28px;
  color: #fff;
  content: '\f013';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.main-help a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900;
  line-height: 28px;
  color: #fff;
  content: '\f059';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.panel.header {
  /*display: grid;  grid-gap: 250px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;	*/
}
.main-icon-block {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto 25px 25px;
  /*	padding-right:160px;*/
}
.top-product-link {
  /*grid-column: span 1;*/
  float: left;
  padding-top: 5px;
  height: 30px;
}
.block-search {
  padding-left: 3%;
  float: left !important;
}
.main-icon-block {
  /*grid-column: span 1;*/
  float: right;
}
.greet.welcome {
  list-style: none;
  padding-top: 8px;
}
.panel.header {
  padding-top: 20px !important;
}
/*.header.panel > .header.links {
	display: none !important;
}*/
.minicart-wrapper {
  /*	grid-column: span 4;*/
  float: none !important;
}
/*.header.links {
	float:none !important;
	margin-left:0 !important;
}*/
/*.header.panel > .header.links > li {
    margin: 0 !important;
}
*/
.header.panel:before {
  content: none !important;
  display: none !important;
}
.top-logout li,
.top-account li {
  list-style: none;
}
.top-logout a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900 !important;
  line-height: 28px;
  color: #fff;
  content: '\f2f5';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.top-account a:after {
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  font-weight: 900 !important;
  line-height: 28px;
  color: #fff;
  content: '\f007';
  font-family: 'Font Awesome 5 Free';
  margin: 0;
  vertical-align: top;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
.special-block {
  height: 26px;
  width: 50px;
  /*background-color:red;*/
  /*color:#fff;*/
  background-image: url('../images/sale.png');
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  font-weight: 600;
  text-align: center;
  margin-top: 5px;
}
.toolbar-products .pages {
  display: block !important;
}
.pages a {
  font-size: 1.6rem;
}
.pages span {
  font-size: 1.6rem;
}
.products-grid {
  padding-top: 30px;
}
.products-grid > .products {
  padding-left: 20px;
}
@media screen and (min-width: 1065px) {
  .toolbar {
    margin-bottom: 0 !important;
    height: 0px;
  }
  .toolbar-products .pages {
    display: block !important;
    /*    float: right;
            top: -40px;*/
    position: relative;
  }
  .toolbar-products .pages.store {
    top: 8px;
    float: right;
    right: 150px;
  }
  .pages.store a.page:visited {
    color: #000;
  }
  .pages.store a.page {
    color: #000;
  }
  .pages.store a.page:hover {
    color: #999;
  }
  .column.main div:nth-of-type(4) .pages .action {
    color: #000 !important;
  }
  .pages .action {
    box-shadow: none;
    border: 0;
    background: none;
    color: #fff !important;
  }
  .pages .action:hover {
    background: none;
  }
  .column.main div:nth-of-type(4) .pages a {
    color: #000 !important;
  }
  .field.limiter {
    padding-right: 10%;
  }
  .column.main div:nth-of-type(4) .pages {
    top: 0;
    padding-right: 10%;
    float: right;
  }
  .column.main div:nth-of-type(4) .pages .action.next:hover:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.next:visitied:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.next:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.previous:hover:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.previous:visitied:before {
    color: #000 !important;
  }
  .column.main div:nth-of-type(4) .pages .action.previous:before {
    color: #000 !important;
  }
  /*.pages .action.next:hover:before {
        color: #fff !important;
    }
    .pages .action.next:visited:before {
        color: #fff !important;
    }
    .pages .action.next:before {
        color: #fff !important;
    }

    .pages .action.previous:hover:before {
        color: #fff !important;
    }
    .pages .action.previous:visited:before {
        color: #fff !important;
    }
    .pages .action.previous:before {
        color: #fff !important;
    }

    .pages a.page:visited {
        color: #fff;
    }
    .pages a.page {
        color: #fff;
    }
    .pages a.page:hover {
        color:#fefefe;
    }*/
}
/*.top-left{
	display: grid;  grid-gap: 0px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}*/
.top-alt-logo {
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
  width: 240px;
  height: 50px;
  margin-bottom: 15px;
}
.top-alt-logo li {
  list-style: none;
}
.toolbar-sorter.sorter {
  display: none;
}
.sidebar .o-list {
  display: block;
}
/*.page-products .c-sidebar.c-sidebar--categories {
	padding-top:30px;
}*/
.c-sidebar.c-sidebar--categories h3 {
  display: none;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.sidebar .o-list li {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 5px !important;
}
.sidebar .o-list li a {
  color: #494949;
}
#content1 > ul > li:nth-child(n+2) > a {
  /*margin-top:25px;*/
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
}
.level0 > span {
  margin-top: 25px;
}
.level1 > ul,
.level1.active > ul {
  display: grid !important;
  grid-template-columns: 1fr;
  padding-inline-start: 0px;
}
#content1 > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#content1 > ul > li:nth-child(n+2) {
  grid-column: span 2;
  padding-top: 20px;
}
.page-products .sidebar-main {
  padding-right: 0;
  max-width: 300px;
}
.page-products .sidebar-additional {
  max-width: 350px;
  padding: 0 15px !important;
  float: none;
  width: 100%;
}
.sidebar-additional .product-items .product-item-info {
  width: 240px;
}
.sidebar-additional .product-items .product-item-info .product-item-photo {
  position: relative !important;
}
.page-products .columns {
  display: flex;
}
/*.sidebar-additional .product-item-details {
    display: flex !important;
    max-width: 400px !important;
    flex-wrap: wrap !important;
    grid-gap: 10px !important;
}*/
.page-layout-3columns .column.main {
  flex: 2;
}
.sidebar-additional .products-grid {
  padding-top: 0 !important;
}
/*.page-layout-3columns .products-grid .product-item {
	width: 24.439% !important;
}*/
.products-grid ol.product-items {
  display: flex;
  flex-wrap: wrap;
}
/*.sidebar-additional .product-item > div {
	display: flex;
	flex-wrap: wrap;
}*/
.c-sidebar.c-sidebar--categories {
  /*
    label[for*='1']:before { content: '\f1cb'; }
    label[for*='2']:before { content: '\f17d'; }
    label[for*='3']:before { content: '\f16c'; }
    label[for*='4']:before { content: '\f171'; }
    label[for*='4']:before { content: '\f171'; }
    */
}
.c-sidebar.c-sidebar--categories p:not(:last-child) {
  margin: 0 0 20px;
}
.c-sidebar.c-sidebar--categories section {
  display: none;
  padding: 30px 0px 20px 0px;
  width: 100%;
  /*  border-bottom: 1px solid #abc;*/
  /*  border-top: 1px solid #abc;
          border-right: 1px solid #abc;
          border-left: 1px solid #abc;*/
}
.c-sidebar.c-sidebar--categories input {
  display: none;
}
.c-sidebar.c-sidebar--categories label {
  width: 30%;
  /*  flex-grow:1; */
  -webkit-transition: flex-grow 0.2s linear;
  -moz-transition: flex-grow 0.2s linear;
  -o-transition: flex-grow 0.2s linear;
  -ms-transition: flex-grow 0.2s linear;
  transition: flex-grow 0.2s linear;
  margin: 0 0 -1px;
  padding: 5px 3px;
  font-weight: 600;
  text-align: center;
  color: #abc;
  border: 1px solid transparent;
  border-bottom: 2px solid #eee;
}
.c-sidebar.c-sidebar--categories label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}
.c-sidebar.c-sidebar--categories label:hover {
  color: #789;
  cursor: pointer;
}
.c-sidebar.c-sidebar--categories input:checked + label {
  color: #0af;
  width: 30%;
  border-bottom: 2px solid #0af;
  -webkit-transition: flex-grow 0.2s linear;
  -moz-transition: flex-grow 0.2s linear;
  -o-transition: flex-grow 0.2s linear;
  -ms-transition: flex-grow 0.2s linear;
  transition: flex-grow 0.2s linear;
  /*  border: 1px solid #abc;
          border-top: 2px solid #0af;
          border-bottom: 1px solid #fff;
        */
}
.c-sidebar.c-sidebar--categories #tab1:checked ~ #content1,
.c-sidebar.c-sidebar--categories #tab2:checked ~ #content2,
.c-sidebar.c-sidebar--categories #tab3:checked ~ #content3,
.c-sidebar.c-sidebar--categories #tab4:checked ~ #content4 {
  display: block;
}
@media screen and (max-width: 800px) {
  .c-sidebar.c-sidebar--categories label {
    font-size: 0;
  }
  .c-sidebar.c-sidebar--categories label:before {
    margin: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .c-sidebar.c-sidebar--categories label {
    padding: 15px;
  }
}
/*.page-layout-2columns-left .sidebar-main, .page-layout-2columns-left .sidebar-additional {
	width: 21.4%;
}

.page-layout-2columns-left .column.main {
	width: 78%;
}*/
.side-head-container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .block-collapsible-nav .content {
    background: #fff;
    padding: 5px 0;
  }
  .block-collapsible-nav .item.current > strong {
    border-color: #ff5501;
    color: #fff;
    font-weight: 600;
  }
  .block-collapsible-nav .content li {
    background-color: #082d4d;
    color: #fff !important;
    margin-bottom: 15px;
    height: 40px;
    box-shadow: 2px 2px 7px 0 #888888;
  }
  .block-collapsible-nav .content li:hover {
    background: #6c6b76 !important;
  }
  .block-collapsible-nav .item a,
  .block-collapsible-nav .item strong {
    color: #fff !important;
    padding: 11px 18px 11px 15px !important;
  }
  .block-collapsible-nav .item a:hover {
    background-color: transparent;
  }
}
/*
body.account .column.main {
	float:left;
	padding-right:25px;
}

body.account .sidebar.sidebar-main {
	float:right;
	padding-right:0;
}*/
body.account h1 {
  font-size: 32px;
}
.field.field-wholesaler_1,
.field.field-wholesaler_2,
.field.field-wholesaler_3 {
  float: left;
  width: 30%;
}
.field.field-wholesaler_1_acct,
.field.field-wholesaler_2_acct,
.field.field-wholesaler_3_acct {
  float: right;
  width: 60%;
}
.multicheckout .action.primary,
.order-review-form .action.primary,
.bundle-actions .action.primary.customize,
.bundle-options-container .block-bundle-summary .box-tocart .action.primary,
.box-tocart .action.tocart,
.cart-summary .checkout-methods-items .action.primary.checkout,
.block-minicart .block-content > .actions > .primary .action.primary,
.methods-shipping .actions-toolbar .action.primary,
.block-authentication .action.action-register,
.block-authentication .action.action-login,
.checkout-payment-method .payment-method-content > .actions-toolbar > .primary .action.primary,
.form-address-edit .actions-toolbar .action.primary {
  line-height: 1.6rem;
  padding: 7px 15px;
  font-size: 1.4rem;
}
.product-info-price .price-box .price-container .price {
  font-size: 22px;
  line-height: 22px;
}
.weltpixel-quickview-catalog-product-view .box-tocart .action.tocart {
  width: 49%;
  float: left;
}
.fieldset.login .field.note h3 {
  text-align: center;
}
.fieldset.login h3 {
  text-align: left;
}
.fieldset.login h3 a {
  color: #fff;
}
.action.remind span {
  color: #fff;
}
.product.attribute.sku strong,
.product.attribute.sku .value {
  font-weight: 700 !important;
}
#onestepcheckout-page .opc-wrapper {
  display: none !important;
}
#onestepcheckout-page #opc-sidebar {
  width: 50% !important;
  float: left;
}
.customer-account-edit .field-prod_page,
.customer-account-edit .field-product_view {
  display: none;
}
.customer-wholesalers-index .field-name-firstname,
.customer-wholesalers-index .field-name-lastname {
  display: none;
}
.customer-wholesalers-index .form-newsletter-manage {
  margin-top: 30px;
}
.products-grid .product-item-info .product-item-inner {
  display: block !important;
}
.products-grid .product-item-inner {
  position: relative !important;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  right: auto;
}
.products-grid .product-item-info:hover {
  padding: 0;
  margin: 0;
}
#onestepcheckout-page .details-qty .field {
  width: 100px !important;
}
#onestepcheckout-page .details-qty .qty-control {
  padding-left: 10px !important;
}
.product-info-main .product-info-stock-sku div {
  padding-bottom: 8px;
}
.page-footer {
  min-height: 150px;
}
.page-footer .newsletter,
.page-footer .links {
  display: none !important;
}
.amasty-xsearch-form {
  width: 110px;
}
.report-grid {
  display: grid;
  grid-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto auto auto;
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
}
.report-grid > a > div {
  min-height: 150px;
  padding: 20px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  background-color: #fff;
  position: relative;
}
.report-grid a {
  color: #777;
}
.report-grid a:hover {
  text-decoration: none;
}
.report-grid h4 {
  margin-top: 0;
}
.report-grid > a:hover > div {
  -webkit-transition: box-shadow 0.2s ease;
  -moz-transition: box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  -ms-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.16), 0 4px 8px 0 rgba(0, 0, 0, 0.26);
}
.cms-reports .page-wrapper {
  background-color: #f5f5f5;
}
.report-grid i {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #082d4d;
}
.dt-buttons {
  margin-top: 15px !important;
}
.dt-button {
  font-size: 1.8em !important;
  line-height: 1 !important;
  background-image: none !important;
  padding: 5px !important;
  background-color: #fff !important;
  border: none !important;
}
button.dt-button:hover:not(.disabled),
div.dt-button:hover:not(.disabled),
a.dt-button:hover:not(.disabled) {
  background-image: none !important;
  background-color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
button.dt-button:active:not(.disabled):hover:not(.disabled),
button.dt-button.active:not(.disabled):hover:not(.disabled),
div.dt-button:active:not(.disabled):hover:not(.disabled),
div.dt-button.active:not(.disabled):hover:not(.disabled),
a.dt-button:active:not(.disabled):hover:not(.disabled),
a.dt-button.active:not(.disabled):hover:not(.disabled) {
  box-shadow: none !important;
}
button:not(.primary) {
  box-shadow: none !important;
}
.btn-sub {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
  background-color: #1979c3;
}
input[type="submit"]:hover.btn-sub {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.btn-cont a {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
  background-color: #1979c3;
}
.btn-cont {
  list-style: none;
  margin-top: 30px;
}
.btn-cont a:hover {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.btn-upload {
  text-decoration: none;
  color: #fff;
  background-color: #00a2d5;
  padding: 15px 20px;
  background-color: #1979c3;
}
.btn-upload:hover {
  text-decoration: none;
  background-color: #082d4d;
  color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
#progress-wrp {
  border: 1px solid #0099CC;
  padding: 1px;
  position: relative;
  border-radius: 3px;
  margin: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}
#progress-wrp .progress-bar {
  height: 20px;
  border-radius: 3px;
  background-color: #f39ac7;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}
#progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}
#onestepcheckout-page .field .control select {
  padding: 5px 10px 4px !important;
  border: 1px solid #ccc !important;
  background: #ffffff url('../images/select-bg.svg') no-repeat 100% 45%;
}
.pdeoverlay {
  max-width: 600px;
  width: 90%;
  position: fixed;
  top: 10%;
  margin: 0 auto;
}
/* DivTable.com */
.divTable {
  margin-top: 20px;
  display: table;
  width: 100%;
}
.divTableRow {
  display: table-row;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
}
.divTableCell,
.divTableCell2,
.divTableHead {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}
.divTableCell2 {
  text-align: center;
}
.divTableCell,
.divTableHead {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
  font-weight: bold;
}
.divTableFoot {
  background-color: #EEE;
  display: table-footer-group;
  font-weight: bold;
}
.divTableBody {
  display: table-row-group;
}
.home-button {
  width: 110px;
  margin: 20px auto;
  border: 2px solid #0d2e4d;
  background-color: #fff;
  color: #0d2e4d !important;
  font-weight: 700;
  font-size: 1.4em;
  padding: 15px 35px;
  border-radius: 10px;
  display: block;
}
.home-button:hover {
  background-color: #0d2e4d;
  color: #fff !important;
  text-decoration: none;
}
.totals.shipping.excl {
  display: none !important;
}
.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}
.tabset .tab-panel {
  display: none;
}
.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}
/*
 Styling
*/
.tabset > label {
  position: relative;
  display: inline-block;
  padding: 30px 15px 15px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}
/*.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}*/
.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}
.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}
.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  font-weight: 700;
}
.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
.minicart-wrapper .action.showcart .counter.qty {
  background: #2eafe5 !important;
}
button {
  background: #fff;
  border: 1px solid #061b33;
  color: #061b33;
}
button:hover,
button.active {
  background: #061b33;
  color: #fff;
}
#products tr:nth-child(odd) {
  background-color: #c6c6c6;
}
#products tr:first-child {
  background-color: #061b33;
  color: #fff;
}
#products td,
#products th {
  vertical-align: middle;
}
button.secondary {
  color: #fff;
  background-color: #2eafe5;
}
button.secondary:hover {
  background-color: #061b33;
  color: #fff;
  border-color: #2eafe5;
}
a > button {
  width: 100%;
  height: 100%;
}
a:hover > button {
  text-decoration: none;
}
.selector {
  height: 45px;
}
.selector.selected {
  background: #061b33;
  color: #fff;
}
.header-container {
  grid-template-columns: repeat(8, 140px);
  grid-template-rows: 75px;
  display: grid;
  grid-gap: 0.5rem;
  grid-auto-flow: row;
  justify-content: space-around;
  padding-top: 10px;
  margin-bottom: 50px;
  align-items: end;
}
.header-container h2 {
  margin-bottom: 0;
}
#paymentContainer .payment {
  display: none;
}
#paymentContainer .payment.active {
  display: block;
}
#paymentContainer #change-payment {
  cursor: pointer;
}
#paymentContainer .changing {
  cursor: pointer;
  text-decoration: underline;
}
#paymentContainer {
  display: grid;
  grid-template-columns: 250px 50px;
}
.add-to-cart-popup {
  z-index: 999;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.add-to-cart-popup .modal-inner-wrap,
.tga-popup .modal-inner-wrap {
  width: 100%;
  margin: 0;
}
.tga-popup {
  z-index: 999;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
#agree-error,
#signature-error {
  display: none;
  color: #ea4335;
}
input[type="date"] {
  background: #fff;
  background-clip: padding-box;
  border: 1px solid #c2c2c2;
  border-radius: 1px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 32px;
  line-height: 1.42857143;
  padding: 0 9px;
  vertical-align: baseline;
  width: 100%;
  box-sizing: border-box;
}
.product-item .old-price {
  text-decoration: line-through;
}
.totals.sub.incl {
  display: none;
}
.error-btn,
.error-btn:hover {
  background-color: #dc3545;
  color: #fff;
}
.detailsPopup {
  max-width: 1600px;
  margin: 0 auto;
}
.detailsPopup .product.data.items .item.title.active > .switch {
  background: #fff;
  color: #333;
  padding-bottom: 2px;
}
.detailsPopup .product.data.items .item.title > .switch {
  font-weight: 400;
  line-height: 40px;
  font-size: 1.4rem;
  color: #7d7d7d;
  text-decoration: none;
  background: #f6f6f6;
  border: 1px solid #ccc;
  border-bottom: none;
  height: 40px;
  padding: 1px 35px 1px 35px;
  display: block;
  position: relative;
  z-index: 2;
}
.detailsPopup .product.data.items .item.title:last-of-type > .switch {
  border-bottom: 1px solid #ccc;
}
.detailsPopup .product.data.items .item.title {
  width: 200px;
  /*float: none;*/
  /*margin-left: ~"calc(100% - 200px)";*/
}
.detailsPopup .product.data.items .item.content {
  /*	margin: 0 200px 0 0 !important;*/
  margin: 0;
  background: #fff;
  padding: 0 35px 35px 35px;
  /*border: 1px solid #ccc;*/
  display: block;
  /*width: ~"calc(100% - 200px)";*/
  height: auto;
  box-sizing: border-box;
  top: 0;
  left: 0;
}
.detailsPopup .product.data.items {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}
.detailsPopup #tab-summary span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
}
.detailsPopup #tab-summary span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
}
@media screen and (min-width: 750px) {
  .detailsPopup .product.data.items .item.content {
    /*margin: 0 0 0 50px;*/
    margin: 0;
    min-height: 350px;
    position: relative;
  }
}
.promo-tag {
  background-color: #dc3545;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 7px;
  margin-left: 5px;
}
.pde-tag {
  background-color: #1979c3;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 7px;
}
.detailsPopup #tab-pde span {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 18px;
}
.moq-tag {
  background-color: #1979c3;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  font-size: 13px;
  padding: 3px 7px;
  /*grid-column: span 2;*/
  height: 20px;
  margin: 5px;
  width: max-content;
}
.detailsPopup #products tbody tr:first-child {
  background-color: #c6c6c6;
  color: #333;
}
.detailsPopup #summary-content tr > td {
  padding: 11px 0px;
}
.detailsPopup #summary-price {
  margin: 2rem 0 0 0;
}
.detailsPopup .moq-tag {
  margin: 1.4rem 0 0 0;
}
.detailsPopup #products tr td + td,
.detailsPopup #products tr th + th {
  text-align: center;
}
.pde-container {
  position: relative;
}
.pde-container > a {
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin-top: -25%;
}
.cms-promotion .price {
  color: #dc3545;
}
.cms-promotion .action.tocart.primary {
  background-color: #dc3545;
}
div#checkout {
  display: flex;
  justify-content: center;
}
#onestepcheckout-page #opc-sidebar {
  background: #fff;
}
#onestepcheckout-page #opc-sidebar::before {
  border: none !important;
  box-shadow: none !important;
}
.opc-block-summary .title i.order_summary_title {
  display: none;
}
.less-error-message {
  display: none !important;
}
ol.minicart-items li.product-item {
  border: 1px solid #cdcdcd;
  margin-bottom: 10px !important;
  padding: 10px !important;
}
button.button.action.primary {
  border: none;
  border-radius: 10px !important;
  max-width: 50%;
  margin-left: auto;
}
#opc-sidebar > div.opc-block-summary > div.block.items-in-cart.active > div.title {
  pointer-events: none;
  border-bottom: unset;
  border-top: 1px solid #cdcdcd;
}
#opc-sidebar > div.opc-block-summary > div.block.items-in-cart.active > div.title strong {
  font-size: 10pt;
  margin-left: auto;
}
#opc-sidebar > div.opc-block-summary > div.block.items-in-cart.active > div.title::after {
  display: none;
}
#opc-sidebar div.content.minicart-items i.fa.fa-edit {
  display: none !important;
}
#opc-sidebar div.content.minicart-items i.fa-times-circle:before {
  content: '\e604';
  font-family: 'luma-icons';
  color: #8f8f8f;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 20px;
  vertical-align: middle;
  display: inline-block;
  font-weight: normal;
  overflow: hidden;
  speak: none;
  text-align: center;
}
#opc-sidebar .details-qty .qty-control {
  display: none;
}
span.minicart-price {
  display: none;
}
.minicart-wrapper .action.showcart span.counter.qty {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: unset;
  position: absolute;
  width: 20px !important;
  height: 20px;
  right: 2px;
  top: -14px;
  font-size: 12px;
  font-weight: bold;
  animation: scaleIn 0.2s ease-out;
}
@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.minicart-wrapper .action.showcart span.counter.qty.empty {
  display: none;
  animation: scaleOut 0.2s ease-in;
}
@keyframes scaleOut {
  from {
    transform: scale(1);
    display: flex;
  }
  to {
    transform: scale(0);
    display: none;
  }
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > div.main-icon-block > div.minicart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 14pt;
}
.minicart-wrapper {
  /*slide in cart hack*/
}
.minicart-wrapper ol#mini-cart {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.minicart-wrapper div#ui-id-1 {
  /* main cart container */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  margin: unset;
  border-radius: unset;
  padding: unset;
}
.minicart-wrapper .minicart-items-wrapper {
  position: relative;
  padding: 0;
  min-height: 131px;
}
.minicart-wrapper .block-minicart {
  border-radius: 5px;
  padding-bottom: 0;
  min-width: 500px;
}
.minicart-wrapper .block-minicart:after,
.minicart-wrapper .block-minicart:before {
  display: none !important;
}
.minicart-wrapper .block.block-minicart.empty.ui-dialog-content.ui-widget-content,
.minicart-wrapper .block.block-minicart.empty.ui-dialog-content.ui-widget-content #minicart-content-wrapper {
  border: unset !important;
  display: flex !important;
  flex-direction: column;
  flex-grow: 1;
}
.minicart-wrapper #minicart-widgets {
  display: none !important;
}
.minicart-wrapper .block-minicart .block-title {
  display: block !important;
  background: #061b33 !important;
  padding: 20px 20px 20px 40px;
  user-select: none;
}
.minicart-wrapper .block-minicart .block-title span.qty {
  display: none;
}
.minicart-wrapper .block-minicart #minicart-content-wrapper .block-content {
  flex-direction: column-reverse;
  display: flex;
  flex-grow: 1;
}
.minicart-wrapper .minicart-items-wrapper {
  height: auto !important;
  flex-grow: 1;
  margin-left: unset !important;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.minicart-wrapper .minicart-items-wrapper ol {
  flex-grow: 1;
}
.minicart-wrapper #ui-id-1 {
  animation: slideIn 0.25s ease-in-out;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
.minicart-wrapper #btn-minicart-close {
  right: unset;
  top: 14px;
}
.minicart-wrapper #btn-minicart-close:hover {
  background: unset !important;
}
.minicart-wrapper #btn-minicart-close:before {
  font-size: 16px;
  font: normal normal normal 14px/1 FontAwesome !important;
  font-family: "Font Awesome 5 Free" !important;
  content: "\f060" !important;
  -webkit-text-size-adjust: 100% !important;
  visibility: visible !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  color: #ffffff !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  display: flex !important;
  font-size: 20px !important;
}
.minicart-wrapper .block-minicart .block-content > .actions {
  margin-top: 15px;
  margin-bottom: 0;
  border-bottom: 90px #061b33 solid;
}
.minicart-wrapper .block-minicart .block-content > .actions button {
  min-height: 44px;
}
.minicart-wrapper .block-content {
  display: flex;
  flex-direction: column-reverse;
}
.minicart-wrapper .block-content .subtitle.empty {
  padding-top: 0;
  color: #333;
  margin: auto;
}
.minicart-wrapper .block-content ol {
  background: #f2f2f2;
  padding: 15px;
}
.minicart-wrapper .block-content ol li.product {
  background: #fff;
  border: 1px solid #cdcdcd;
  padding: 5px;
}
.minicart-wrapper .block-content li.product > .product {
  display: flex;
  align-items: center;
}
.minicart-wrapper .block-content li.product > .product .product-item-details {
  flex-grow: 1;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.minicart-wrapper .block-content li.product > .product .product-item-details .product-item-name {
  flex-basis: 100%;
  pointer-events: none;
  cursor: default;
}
.minicart-wrapper .block-content li.product > .product .product-item-details .product-item-pricing {
  flex-grow: 1;
}
.minicart-wrapper .block-content li.product > .product .product-item-details .product-item-pricing .price-container {
  max-height: 0;
}
.minicart-wrapper .block-content li.product > .product .product-item-details .product-item-pricing .details-qty > .qty {
  margin-top: 0 !important;
  width: unset !important;
}
.minicart-wrapper .block-content li.product > .product a[data-bind*='href: product_url'],
.minicart-wrapper .block-content li.product > .product a[data-bind*='text: product_name'] {
  pointer-events: none;
  cursor: default !important;
}
.minicart-wrapper .block-content > .subtotal,
.minicart-wrapper .block-content > .items-total {
  display: none;
}
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.mage-dropdown-dialog:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#btn-minicart-close {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  margin: 5px;
}
#btn-minicart-close:before {
  font-size: 10px;
}
#btn-minicart-close:hover {
  background-color: #cdcdcd;
  border-radius: 50%;
  color: #333;
}
#mini-cart div.product-item-pricing div.details-qty.qty {
  margin-top: 0;
  width: auto !important;
  color: #333 !important;
}
#mini-cart div.product.actions div.primary {
  display: none;
  margin-top: 30px;
}
#mini-cart div.product.actions {
  float: unset !important;
  margin: unset 10px unset unset;
}
.sidebar section#content1 {
  display: none;
}
.sidebar h5 {
  font-weight: bold;
  font-size: 16px;
  margin: unset;
  padding: 10px 0;
}
.sidebar #content1 > ul > li.level1 {
  padding-top: 5px;
}
.sidebar #content1 > ul > li.level1 > a {
  text-transform: none !important;
  font-size: 16px;
}
.hide {
  display: none !important;
}
.header-banner {
  display: none !important;
}
.page-products .page-header {
  position: sticky;
  top: 0;
}
body > div.page-wrapper > header > div.panel.wrapper {
  padding: 10px;
  border-bottom: 2px solid #fd9df6;
}
body > div.page-wrapper > header > div.panel.wrapper > div.panel.header {
  display: flex;
  padding: 10px;
  max-width: unset;
  flex-grow: 1;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block {
  display: flex;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.top-header-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: unset;
  margin-right: unset;
  width: auto;
  min-width: 0vw;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > div.top-left {
  display: flex;
  order: 2;
  flex-grow: 1;
  flex-shrink: 1;
  gap: 10px;
  padding-left: 25px;
  padding-right: 25px;
  justify-content: space-around;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > div.header-filter {
  order: 2;
  margin-left: auto;
  flex-grow: 1;
}
body > div.page-wrapper > header > div.panel.wrapper > div > div.bottom-header-block > .main-icon-block {
  order: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  gap: 15px;
}
body > div.page-wrapper > header > div.panel.wrapper {
  background-image: none;
  height: auto;
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
body > div.page-wrapper > header .greet.welcome {
  display: none;
}
body > div.page-wrapper > header .top-product-link a {
  font-size: 12pt;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  body > div.page-wrapper > header .top-product-link a {
    font-size: 10pt;
  }
}
body > div.page-wrapper > header #category-filter-form {
  display: flex;
  flex-grow: 1;
}
body > div.page-wrapper > header #category-filter-form > div.form-search {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
}
body > div.page-wrapper > header #category-filter-form > div > button {
  height: 100% !important;
  border: none !important;
  margin-bottom: 0 !important;
  border-radius: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-right: 20px !important;
  padding-left: 15px !important;
  border-top: 1px solid #f2f2f2 !important;
  border-right: 1px solid #f2f2f2 !important;
  border-bottom: 1px solid #f2f2f2 !important;
}
body > div.page-wrapper > header #category-filter-form > div > button i {
  font-size: 16pt !important;
}
body > div.page-wrapper > header #category-filter-form #tooltipButton {
  display: none;
}
body > div.page-wrapper > header #category-filter-form input#category-filter-input {
  width: unset;
  flex-grow: 1;
  border: none;
  border-radius: 25px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 10px;
  padding-left: 20px !important;
  height: unset !important;
  font-size: 12pt;
}
body > div.page-wrapper > header #category-filter-form input#category-filter-input:focus {
  box-shadow: unset !important;
}
.side-head-container #content1 {
  padding-top: unset;
}
.side-head-container #content1 ul {
  display: block;
}
.side-head-container #content1 > ul {
  background: #ffffff;
  margin-right: 15px;
  border: 1px solid #cdcdcd;
  padding: 10px;
}
label[title="Categories"],
label[title="Stores"],
label[title="Suppliers"] {
  display: none !important;
}
.page-products .page-main {
  background: #f2f2f2;
  margin-top: unset !important;
  padding: 15px !important;
}
.page-products #maincontent {
  border-bottom: none !important;
}
.page-products > footer {
  border-top: none !important;
}
#promotionGrid,
#new-releases.products-grid,
#featured-products.products-grid,
#main-products.products-grid {
  padding-top: unset;
  margin-top: unset;
  margin-bottom: unset;
}
#promotionGrid .pages,
#new-releases.products-grid .pages,
#featured-products.products-grid .pages,
#main-products.products-grid .pages {
  margin-top: 20px;
  margin-bottom: unset;
}
#promotionGrid .product-item,
#new-releases.products-grid .product-item,
#featured-products.products-grid .product-item,
#main-products.products-grid .product-item {
  margin-left: unset !important;
}
#promotionGrid > ol,
#new-releases.products-grid > ol,
#featured-products.products-grid > ol,
#main-products.products-grid > ol {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}
#promotionGrid > ol > li,
#new-releases.products-grid > ol > li,
#featured-products.products-grid > ol > li,
#main-products.products-grid > ol > li {
  min-width: 100%;
  padding: 20px;
  border: 1px solid #cdcdcd;
  background-color: #ffffff;
  width: 100%;
  margin-bottom: unset !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#promotionGrid > ol > li > div,
#new-releases.products-grid > ol > li > div,
#featured-products.products-grid > ol > li > div,
#main-products.products-grid > ol > li > div {
  flex-grow: 1;
}
#promotionGrid > ol > li span.tag-featured,
#new-releases.products-grid > ol > li span.tag-featured,
#featured-products.products-grid > ol > li span.tag-featured,
#main-products.products-grid > ol > li span.tag-featured {
  font-size: 10px;
  color: #f2f2f2;
  background: #003350;
  border-radius: 5px;
  padding: 2.5px 5px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
}
#promotionGrid > ol > li span.tag-featured.enabled,
#new-releases.products-grid > ol > li span.tag-featured.enabled,
#featured-products.products-grid > ol > li span.tag-featured.enabled,
#main-products.products-grid > ol > li span.tag-featured.enabled {
  opacity: 1;
}
#promotionGrid > ol > li > div > span,
#new-releases.products-grid > ol > li > div > span,
#featured-products.products-grid > ol > li > div > span,
#main-products.products-grid > ol > li > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
#promotionGrid > ol > li span.price-wrapper,
#new-releases.products-grid > ol > li span.price-wrapper,
#featured-products.products-grid > ol > li span.price-wrapper,
#main-products.products-grid > ol > li span.price-wrapper {
  margin-bottom: 15px;
  font-weight: bold;
  grid-column: span 4;
}
#promotionGrid > ol > li span.price-wrapper .price-box,
#new-releases.products-grid > ol > li span.price-wrapper .price-box,
#featured-products.products-grid > ol > li span.price-wrapper .price-box,
#main-products.products-grid > ol > li span.price-wrapper .price-box {
  margin-top: unset;
  margin-bottom: unset;
}
#promotionGrid > ol > li span.price-wrapper span.price,
#new-releases.products-grid > ol > li span.price-wrapper span.price,
#featured-products.products-grid > ol > li span.price-wrapper span.price,
#main-products.products-grid > ol > li span.price-wrapper span.price {
  font-size: 20px;
}
.pricing-disclaimer {
  margin-left: 20px;
}
span.price-type {
  color: #cdcdcd;
}
.card {
  background: #FFFFFF;
  border: 1px solid #cdcdcd;
  padding: 20px;
}
.page-header-card {
  margin-left: 20px;
  margin-bottom: 10px;
  margin-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-header-card h1,
.page-header-card h2,
.page-header-card h3,
.page-header-card h4,
.page-header-card h5,
.page-header-card h6 {
  margin-top: 0;
  margin-bottom: 0;
}
.page-products .modes {
  top: unset;
  right: unset;
  float: none !important;
  z-index: unset;
}
.page-products #content1 > ul > li > h5 {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.products-grid li.item.product.product-item {
  cursor: pointer;
}
.products-grid .product-item-inner {
  grid-column: span 7;
  clip: unset;
  height: unset;
}
.products-grid .product-item-inner .product.actions.product-item-actions {
  display: flex !important;
  margin-bottom: 0;
  margin-top: 12px;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary {
  flex-grow: 1;
  display: flex;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form {
  display: flex !important;
  flex-grow: 1;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper .qty-label {
  background-color: #E0E0E0;
  color: #333;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 700;
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper span.qty-input-wrapper {
  flex-grow: 1;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper input {
  height: 32px;
  width: 100% !important;
  font-size: 16px;
  text-align: center;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper button.action.tocart.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7.5px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 32px;
  min-width: 100px;
  font-weight: 700;
  font-size: 16px;
}
.products-grid .product-item-inner .product.actions.product-item-actions .actions-primary form .add-to-cart-wrapper button.action.tocart.primary:before {
  -webkit-font-smoothing: antialiased;
  font-size: 22px;
  line-height: 28px;
  color: #f2f2f2;
  content: '\e611';
  font-family: 'luma-icons';
  margin: 0;
  display: block;
  font-weight: normal;
  overflow: visible;
  speak: none;
  text-align: center;
}
.search-card {
  position: relative;
  padding: 0;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  margin-top: -11px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.search-card input {
  border: none;
  padding-left: 40px;
  font-size: 16pt;
  min-height: 44px;
}
.search-card i.fa-search {
  position: absolute;
  left: 10px;
  top: 12.5px;
  font-size: 16pt;
  color: #333;
}
.cms-dashboard main#maincontent.page-main,
.cms-brands main#maincontent.page-main,
.cms-suppliers main#maincontent.page-main,
.cms-promotions main#maincontent.page-main,
.cms-promotion main#maincontent.page-main {
  max-width: 1920px !important;
  padding: 0;
  margin: auto;
}
.cms-dashboard .page-wrapper,
.cms-brands .page-wrapper,
.cms-suppliers .page-wrapper,
.cms-promotions .page-wrapper,
.cms-promotion .page-wrapper {
  background: #f2f2f2;
}
.cms-dashboard .page-main,
.cms-brands .page-main,
.cms-suppliers .page-main,
.cms-promotions .page-main,
.cms-promotion .page-main {
  margin-top: unset !important;
}
.cms-dashboard .page-header,
.cms-brands .page-header,
.cms-suppliers .page-header,
.cms-promotions .page-header,
.cms-promotion .page-header {
  position: sticky;
  top: 0;
}
.cms-dashboard .standard-container,
.cms-brands .standard-container,
.cms-suppliers .standard-container,
.cms-promotions .standard-container,
.cms-promotion .standard-container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  grid-gap: 10px;
}
.cms-dashboard .supplier-container,
.cms-brands .supplier-container,
.cms-suppliers .supplier-container,
.cms-promotions .supplier-container,
.cms-promotion .supplier-container {
  display: flex;
  padding: 10px;
  border: 1px solid #cdcdcd;
  background: #ffffff;
}
.cms-dashboard .supplier-banner,
.cms-brands .supplier-banner,
.cms-suppliers .supplier-banner,
.cms-promotions .supplier-banner,
.cms-promotion .supplier-banner {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-dashboard .supplier-container > img,
.cms-brands .supplier-container > img,
.cms-suppliers .supplier-container > img,
.cms-promotions .supplier-container > img,
.cms-promotion .supplier-container > img {
  width: 100%;
}
.cms-dashboard .brand-status,
.cms-brands .brand-status,
.cms-suppliers .brand-status,
.cms-promotions .brand-status,
.cms-promotion .brand-status {
  color: #fff;
  width: 150px;
}
.cms-dashboard .standard-container,
.cms-brands .standard-container,
.cms-suppliers .standard-container,
.cms-promotions .standard-container,
.cms-promotion .standard-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  margin: 0 20px 20px;
}
.cms-promotions main#maincontent {
  margin-top: unset !important;
}
.cms-promotions .page-header {
  position: sticky;
  top: 0;
}
body {
  overflow-x: hidden;
}
body.account .sidebar .side-head-container,
body.cms-no-route .sidebar .side-head-container {
  display: none !important;
}
body.account .sidebar-additional,
body.cms-no-route .sidebar-additional {
  display: none !important;
}
header .panel.header {
  padding: 5px;
}
@media screen and (max-width: 1200px) {
  header .panel.header {
    padding: 5px !important;
  }
}
header .top-alt-logo {
  background-image: unset !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
header .top-alt-logo img {
  min-height: 32px;
}
header .top-left {
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 1200px) {
  header .top-left {
    padding-left: unset !important;
  }
}
header .top-product-link {
  padding-top: 0;
}
header .top-product-link li.nav.item {
  display: flex;
  align-items: center;
  margin-right: auto;
}
body.cms-dashboard {
  background-color: #2A7298;
}
body.cms-dashboard #maincontent {
  min-width: 100vw;
}
section#new-on-pharmxchange {
  color: #f2f2f2;
  position: relative;
  background: #2A7298;
  padding: 1.2rem 1.2rem 50px;
}
section#footerlinks {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 20px;
  background: #000E1F;
  color: #f2f2f2;
  font-size: 14px;
  height: 100%;
  border-top: 10px solid #2eafe5;
}
section#footerlinks img.lockup {
  margin-left: auto;
  max-width: 300px;
}
section#footerlinks div.links-table {
  display: table;
  margin-right: auto;
  font-size: 14px;
  border-left: 1px solid white;
  padding-left: 40px;
}
section#footerlinks div.links-table ul,
section#footerlinks div.links-table li {
  list-style: none;
}
section#footerlinks div.links-table li {
  margin-bottom: 10px;
}
section#footerlinks div.links-table li:last-child {
  margin-bottom: 25px !important;
}
section#footerlinks div.links-table .links-row {
  display: table-row;
}
section#footerlinks div.links-table .links-col {
  display: table-cell;
  padding: 0 10px;
}
section#footerlinks div.links-table .links-col .col-header {
  margin-bottom: 14px;
  font-weight: bold;
  font-size: 16px;
  user-select: none;
}
section#footerlinks div.links-table .links-col a {
  display: block;
}
section#footerlinks a {
  cursor: pointer;
  color: #f2f2f2;
}
section#footerlinks a:hover,
section#footerlinks a:focus {
  text-decoration: none;
  color: #fff;
  text-shadow: 0 0 2px #fff;
}
#maincontent > div.columns > div.column.main {
  padding-bottom: unset;
}
footer.page-footer {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
footer.page-footer div.footer.content {
  padding-top: unset;
  min-width: 100vw;
  padding-left: 0;
  padding-right: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
footer.page-footer div.footer.content > * {
  flex-grow: 1;
}
body.catalog-category-view {
  background: #f2f2f2;
}
.category-view {
  margin-bottom: 30px;
}
.category-view .container-1.store {
  border-top: none;
  border-bottom: none;
  padding: unset !important;
}
.category-view .card.category-page-header {
  background: #fff;
  display: flex;
}
.category-view .card.category-page-header > img {
  max-height: 300px;
  flex-shrink: 1;
  align-self: center;
}
.category-view .category-details {
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
.category-view .category-details hr {
  min-width: 100%;
}
.category-view .category-sub-details {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.category-view .block-2 {
  display: flex;
  flex-flow: unset;
  flex-wrap: wrap;
}
.category-view .block-2 .box-2 {
  flex-grow: 0;
}
.category-view .block-2 .box-3 {
  flex-grow: 1;
  margin-right: auto;
  flex-basis: unset;
  flex-flow: unset;
}
.category-view h5 {
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #6d6d6d;
}
.category-view .cc-block,
.category-view .wa-block {
  display: grid;
  grid-gap: 5px;
  max-width: 300px;
  align-items: center;
}
.category-view .wa-block {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.category-view .cc-block {
  grid-template-columns: 3fr 1fr 1fr 1fr;
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
a.productPopup {
  visibility: hidden;
}
button.action.tocart.primary > * {
  pointer-events: none;
}
footer.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.detailsPopup {
  margin: unset;
}
.detailsPopup #details-image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 20px;
}
.detailsPopup .modal-inner-wrap {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 0 0 auto;
  max-height: unset !important;
  max-width: 550px;
}
.detailsPopup .modal-content {
  flex-grow: 1;
}
.detailsPopup .details-modal.popup-modal #element {
  flex-direction: column;
  padding-bottom: 500px;
}
.detailsPopup .product.data.items .item.content {
  min-height: unset;
  padding: 10px 0;
  border-bottom: 1px solid #cdcdcd;
}
.detailsPopup .product.data.items .item.content:last-child {
  padding-bottom: 200px;
}
.detailsPopup .modal-header {
  background: #061b33;
  color: #f2f2f2;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  padding: 16.5px;
}
.detailsPopup .modal-header button.action-close {
  position: relative;
}
.detailsPopup .modal-header h1 {
  margin-bottom: unset;
  font-size: 20px;
  flex-grow: 1;
}
.detailsPopup button.action-close {
  padding: 15px;
}
.detailsPopup button.action-close:before {
  font: normal normal normal 14px/1 FontAwesome !important;
  font-family: "Font Awesome 5 Free" !important;
  content: "\f060" !important;
  -webkit-text-size-adjust: 100% !important;
  visibility: visible !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  color: #ffffff !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  display: flex !important;
  font-size: 20px !important;
}
.detailsPopup #product-sheet-links {
  display: flex;
  gap: 10px;
}
.detailsPopup #product-sheet-links h5 {
  font-size: 20px;
  margin-right: auto;
}
.page.messages .message {
  box-shadow: 2px 2px 5px #3333334f;
}
.hidden {
  display: none;
}
section#brand-tagline {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fd9df6;
  color: #414b50;
  margin-bottom: 0;
  font-size: 30px;
}
section#brand-tagline span {
  font-weight: bold;
}
.cms-promotion div.columns {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.toolbar.toolbar-products {
  margin-bottom: unset !important;
  height: auto;
}
.cms-brands .search-wrapper,
.cms-suppliers .search-wrapper,
.cms-promotions .search-wrapper {
  position: relative;
  margin-right: auto;
  flex-grow: 1;
  max-width: 420px;
  margin-left: 10px;
}
.cms-brands .search-wrapper i.fa,
.cms-suppliers .search-wrapper i.fa,
.cms-promotions .search-wrapper i.fa {
  position: absolute;
  top: 10px;
}
.cms-brands .search-wrapper #searchInput,
.cms-suppliers .search-wrapper #searchInput,
.cms-promotions .search-wrapper #searchInput {
  padding-left: 25px;
  border: none;
  border-bottom: 1px solid #cdcdcd;
  outline: none !important;
  width: 100%;
  box-shadow: none !important;
}
.supplier-container {
  flex-wrap: wrap;
}
.supplier-container .supplier-banner {
  flex-basis: 100%;
}
.supplier-container .supplier-content {
  flex-basis: 100%;
}
body.cms-home #logo > img {
  margin-top: -20px;
  max-width: 200px;
}
body.cms-no-route > div.page-wrapper > header > div.header.content > a > img {
  max-width: 160px;
}
#main-login-page.customer-account-forgotpassword > div.page-wrapper > header > div.header.content > a {
  margin-left: -23px;
  margin-top: -20px;
  max-width: 200px;
}
body.cms-no-route div.header.content,
body#onestepcheckout-page div.header.content {
  display: none;
}
.page-layout-2columns-left .sidebar.sidebar-main .nav.items li {
  display: flex;
  justify-content: flex-end;
}
