/* Drawer base */
.compare-drawer-container {
  position: fixed;
  top: 0;
  right: -750px;
  width: 750px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.18);
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 9999;
  overflow-y: auto;
  font-family: Arial, sans-serif;
}
/* When open */
.compare-drawer-container.open {
  right: 0;
}
/* Inner panel */
.compare-drawer {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}
.drawer-header h3 {
  margin: 0;
  font-size: 22px;
  color: black;
  font-family: Arial;
  font-weight: 600;
}
.close-drawer {
  background: #89c540;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 10px !important;
  height: 30px;
  color: black !important;
  font-size: 20px !important;
}
/* Content */
.drawer-body {
  padding: 12px 0;
  overflow: auto;
}
.addtocartdrawer {
  background-color: #87c442;
  color: black !important;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1.3;
  display: block;
  font-size: 10px;
  padding: 12px 0;
  font-weight: 700;
  width: 100%;
  font-family: Roboto;
}
/* Grid */
.compare-grid {
  width: 100%;
  border-collapse: separate;
  table-layout: fixed;
  margin-bottom: 100px;
  border-spacing: 10px 0;
  padding-right: 5px;
}
.compare-grid thead tr th.attr-column {
  background-color: #3b719f;
  color: white;
  text-transform: uppercase;
  font-size: 20px;
}
.compare-grid tbody tr:nth-child(2n+1) {
  background-color: #e3e3e3;
}
.compare-grid tbody tr:nth-child(2n) {
  background-color: #f6f6f6;
}
.compare-grid th,
.compare-grid td {
  border: 1px solid #000;
  border-top: none;
  border-bottom: none;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
  color: #000;
}
.compare-grid tr:nth-child(odd) td {
  background-color: #e3e3e3;
}
.compare-grid td {
  background: none;
}
.compare-grid th {
  border-top: 1px solid #000;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: none;
}
.compare-grid tr:last-child td {
  border-bottom: 1px solid #000;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.attr-column {
  width: 20%;
  text-align: left;
  font-weight: 600;
  color: black;
}
.drawer-empty {
  padding: 15px 17px;
}
/* Product column */
.product-column {
  width: 18%;
  position: relative;
  padding: 0 10px !important;
  vertical-align: top !important;
}
.remove-product {
  background-color: transparent !important;
  color: black !important;
  border-color: transparent !important;
  padding: 0 !important;
  height: auto !important;
  margin: 0 !important;
  cursor: pointer;
  font-size: 23px !important;
  position: absolute;
  right: 2px;
  top: 2px;
  line-height: 12px;
  font-weight: 500 !important;
}
.proimage {
  margin-top: 17px;
}
.product-image {
  max-width: 100%;
  max-height: 135px;
  display: block;
  margin: 16px auto 6px;
  border-radius: 6px;
}
.proname {
  display: block;
  color: black !important;
  text-decoration: none !important;
  margin-bottom: 5px;
}
/* Trigger/button in header */
.compare-trigger .compare-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 8px;
}
.opencomparelist {
  cursor: pointer;
}
.compare-grid-wrapper a {
  text-decoration: underline;
  cursor: pointer;
  color: green;
  font-weight: normal !important;
}
.compare-grid-wrapper .proname, .compare-grid-wrapper .addtocartdrawer {
  font-weight: bold !important;
}
.compare-grid-wrapper .price-label {
  display: none;
}
.compare-grid-wrapper .old-price {
  display: block;
  order: 0;
  width: 100%;
}
.compare-grid-wrapper .special-price,
.compare-grid-wrapper .normal-price {
  order: 1;
  width: 100%;
}
.compare-grid-wrapper .price-box.price-final_price {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
}
.compare-grid-wrapper .price-box.price-final_price .price-container.price-final_price {
  color: red;
  line-height: 1;
  font-weight: bold;
}
.compare-grid-wrapper .old-price .price-container.price-final_price .price {
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: red;
  display: block;
  color: #595959;
}
.compare-grid-wrapper .price-box.price-final_price .price {
  font-size: 14px;
}
.compare-grid-wrapper .price-final_price {
  display: block !important;
}
.compare-grid-wrapper .price-excluding-tax {
  display: none !important;
}
.compare-grid-wrapper .price-wrapper {
  text-align: center;
}
#compare-trigger {
  color: transparent;
  background-position: bottom;
  margin-right: 6px;
  position: relative;
  width: 55px;
  text-align: center;
  margin-top: -4px;
}
#compare-trigger .compareicon:before {
  content: "\e61e";
  color: white;
  font-family: 'luma-icons';
  font-size: 36px;
  line-height: 50px;
  width: 50px;
  height: 38px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#compare-trigger .comparetext {
  color: white;
  font-size: 10px;
  display: block;
}
.compare-count {
  background: #d9534f;
  color: #fff;
  min-width: 20px;
  display: inline-block;
  text-align: center;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1;
}
.comparecount {
  position: absolute;
  right: -5px;
  background-color: #3b719f;
  top: 7px;
  color: black;
  border-radius: 100%;
  width: 19px;
  border: 2px solid black;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.showcomaprelist .outofstock.actions-secondary {
  display: none;
}
.showcomaprelist .stock.unavailable {
  background-color: white;
}
body.compare-loading .loading-mask {
  display: block !important;
}
.compare-error-modal .modal-inner-wrap {
  max-width: 50rem;
}
.compare-error-modal .modal-inner-wrap .modal-header .modal-title {
  display: none;
}
.compare-error-modal .modal-inner-wrap .modal-header .action-close {
  top: -20px;
  right: 0;
  cursor: pointer;
}
.compare-error-modal .modal-inner-wrap .modal-content {
  font-size: 18px;
  font-family: Roboto;
}
.compare-error-modal .modal-inner-wrap .action-accept {
  padding: 17px 28px;
  height: auto;
}
.compare-error-modal .modal-inner-wrap .modal-footer {
  border-bottom: 4px solid #89c540;
}
@media (max-width: 768px) {
  .store-id-2 .header.content .header-right > .header.links,
  .store-id-3 .header.content .header-right > .header.links,
  .store-id-5 .header.content .header-right > .header.links,
  .store-id-18 .header.content .header-right > .header.links,
  .store-id-20 .header.content .header-right > .header.links,
  .store-id-24 .header.content .header-right > .header.links,
  .store-id-4 .header.content .header-right > .header.links {
    display: none !important;
  }
  #compare-trigger {
    position: absolute;
    right: 70px;
    top: 0;
    margin-top: 0;
  }
  #compare-trigger .compareicon::before {
    font-size: 28px;
    line-height: 52px;
    height: 37px;
  }
  .comparecount {
    top: 13px;
    right: -7px;
    font-size: 10px;
    font-weight: normal;
    font-family: Roboto;
  }
  .my_compare_list {
    display: block !important;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .compare-drawer-container {
    width: 100%;
    right: -100%;
  }
  .product-image {
    max-height: 120px;
  }
}
@media (max-width: 700px) {
  .compare-grid thead tr th.attr-column {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .compare-grid {
    padding-right: 0;
    border-spacing: 5px 0;
  }
  .remove-product {
    right: 1px;
  }
}
@media (max-width: 585px) {
  .compare-grid thead tr th.attr-column {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .compare-grid-wrapper {
    width: 450px;
  }
}
.compare-grid .rating-result {
  width: 80px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  z-index: 0;
  white-space: nowrap;
}
.compare-grid .rating-result:before {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  color: #bbb;
  font-family: tvap-icon;
  font-size: 14px;
  height: 14px;
  letter-spacing: 2px;
  line-height: 14px;
  content: '\e605' '\e605' '\e605' '\e605' '\e605';
  display: block;
  font-style: normal;
  font-weight: 400;
  speak: none;
}
.compare-grid .rating-result > span {
  display: block;
  overflow: hidden;
}
.compare-grid .rating-result > span:before {
  position: relative;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  color: #96c253;
  font-family: tvap-icon;
  font-size: 14px;
  height: 14px;
  letter-spacing: 2px;
  line-height: 14px;
  content: '\e605' '\e605' '\e605' '\e605' '\e605';
  display: block;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  speak: none;
}
@media (max-width: 479px) {
  .compare-grid-wrapper .price-box.price-final_price .price {
    font-size: 11px;
  }
  .compare-grid-wrapper .old-price,
  .compare-grid-wrapper .special-price,
  .compare-grid-wrapper .normal-price {
    line-height: 1.1;
  }
  .compare-grid th,
  .compare-grid td {
    font-size: 12px;
    padding: 8px 4px;
  }
  .compare-grid td.price {
    font-size: 11px;
  }
  .compare-grid .rating-result {
    width: 61px;
  }
  .compare-grid .rating-result:before {
    font-size: 10px;
    height: 10px;
    line-height: 10px;
  }
  .compare-grid .rating-result > span::before {
    font-size: 10px;
    height: 10px;
    line-height: 10px;
  }
  .remove-product {
    font-size: 20px !important;
  }
}
@media (max-width: 420px) {
  #compare-trigger {
    right: 60px;
  }
}
@media (max-width: 400px) {
  #compare-trigger {
    right: 50px;
  }
  #compare-trigger .compareicon::before {
    font-size: 22px;
    line-height: 44px;
    width: 36px;
    height: 26px;
  }
  #compare-trigger .comparetext {
    font-size: 8px;
    margin-top: 4px;
  }
  .comparecount {
    right: -5px;
    top: 9px;
  }
}
@media (max-width: 359px) {
  #compare-trigger {
    right: 46px;
  }
}
@media (max-width: 340px) {
  .store-id-newnavbar .minicart-wrapper .action.showcart .filledcart::before {
    width: 39px;
  }
  .store-id-newnavbar .minicart-wrapper .action.showcart .counter-number {
    left: 14px !important;
    width: 16px !important;
    height: 16px;
  }
  #compare-trigger {
    right: 40px;
  }
  #compare-trigger .comparetext {
    font-size: 7px;
    margin-top: 3px;
    display: block;
  }
  #compare-trigger .compareicon {
    width: 16px;
    height: 16px;
  }
  #compare-trigger .compareicon:before {
    font-size: 20px;
    width: 24px;
    height: 28px;
  }
  .comparecount {
    width: 16px;
    height: 16px;
    right: 0px;
    font-weight: normal;
    font-size: 10px;
    top: 9px;
  }
}
@media (min-width: 1201px) and (max-width: 1399px) {
  body.store-id-4 .showcomaprelist .actions-secondary .action.tocompare,
  body.store-id-18 .showcomaprelist .actions-secondary .action.tocompare {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.store-id-4 .showcomaprelist .action.tocompare:before,
  body.store-id-18 .showcomaprelist .action.tocompare:before {
    font-size: 20px;
  }
  body.store-id-4 .showcomaprelist .action.tocompare:after,
  body.store-id-18 .showcomaprelist .action.tocompare:after {
    font-size: 6px;
  }
  body.store-id-4 .showcomaprelist .actions-primary .tocart span,
  body.store-id-18 .showcomaprelist .actions-primary .tocart span {
    font-size: 16px;
  }
}
@media (min-width: 1201px) and (max-width: 1249px) {
  body.store-id-4 .showcomaprelist .actions-secondary .action.tocompare,
  body.store-id-18 .showcomaprelist .actions-secondary .action.tocompare {
    padding-left: 10px;
    padding-right: 10px;
  }
  body.store-id-4 .showcomaprelist .actions-secondary .action.tocompare:after,
  body.store-id-18 .showcomaprelist .actions-secondary .action.tocompare:after {
    font-size: 7px;
  }
  body.store-id-4 .showcomaprelist .actions-primary .tocart span,
  body.store-id-18 .showcomaprelist .actions-primary .tocart span {
    font-size: 14px;
  }
}
@media (min-width: 1201px) and (max-width: 1399px) {
  body.store-id-5 .products-grid .product-item-inner {
    padding-left: 5px;
    padding-right: 5px;
  }
  body.store-id-5 .showcomaprelist .actions-secondary .action.tocompare {
    padding-left: 12px;
    padding-right: 12px;
  }
  body.store-id-5 .showcomaprelist .action.tocompare::before {
    font-size: 20px;
  }
  body.store-id-5 .showcomaprelist .actions-primary .tocart span {
    font-size: 14px;
  }
}
@media (min-width: 1201px) and (max-width: 1249px) {
  body.store-id-5 .showcomaprelist .actions-primary .tocart span {
    font-size: 13px;
  }
}
@media (min-width: 1201px) and (max-width: 1399px) {
  body.store-id-24 .showcomaprelist .actions-secondary .action.tocompare {
    padding-left: 12px;
    padding-right: 12px;
  }
  body.store-id-24 .showcomaprelist .action.tocompare::before {
    font-size: 20px;
  }
  body.store-id-24 .showcomaprelist .actions-primary .tocart span {
    font-size: 16px;
  }
}
@media (min-width: 1201px) and (max-width: 1249px) {
  body.store-id-24 .showcomaprelist .actions-primary .tocart span {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  body.store-id-5 .showcomaprelist .actions-primary .tocart {
    padding-left: 8px;
    padding-right: 8px;
  }
  body.store-id-5 .showcomaprelist .actions-secondary .action.tocompare {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 369px) {
  body.store-id-5 .showcomaprelist .tocart {
    font-size: 10px;
  }
}
@media (max-width: 349px) {
  body.store-id-5 .showcomaprelist .actions-primary .tocart {
    padding-left: 6px;
    padding-right: 6px;
  }
  body.store-id-5 .showcomaprelist .tocart {
    font-size: 9px;
  }
}
@media (max-width: 379px) {
  body.store-id-4 .showcomaprelist .actions-primary .tocart,
  body.store-id-18 .showcomaprelist .actions-primary .tocart,
  body.store-id-24 .showcomaprelist .actions-primary .tocart {
    padding-left: 9px;
    padding-right: 9px;
  }
  body.store-id-4 .showcomaprelist .tocart,
  body.store-id-18 .showcomaprelist .tocart,
  body.store-id-24 .showcomaprelist .tocart {
    font-size: 10px;
  }
}
@media (max-width: 351px) {
  body.store-id-4 .showcomaprelist .actions-primary .tocart,
  body.store-id-18 .showcomaprelist .actions-primary .tocart,
  body.store-id-24 .showcomaprelist .actions-primary .tocart {
    padding-left: 6px;
    padding-right: 6px;
  }
  body.store-id-4 .showcomaprelist .tocart,
  body.store-id-18 .showcomaprelist .tocart,
  body.store-id-24 .showcomaprelist .tocart {
    font-size: 9px;
  }
}