#product-quickview {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 79%);
  z-index: 9;
  align-items: center;
  justify-content: center;
}

#product-quickview.active {
  display: flex;
}

.quickview-content {
  width: 90%;
  background: white;
  position: relative;
  padding: 40px;
  max-width: 1000px;
}

span.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  line-height: 1em;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.7;
  transition: all 300ms;
}

span.btn-close:hover {
  opacity: 1;
}

/* Styles for quickview modal */
.quickview-content {
  display: flex;
}

.quickview-gallery-section {
  width: 45%;
  border-right: 2px solid #666;
  padding-right: 20px;
}

.quickview-product-section {
  width: 55%;
  padding-left: 20px;
}

.quickview-gallery-section .current-gallery-image > img {
  max-width: 350px;
  display: block;
  margin: auto;
  height: 350px;
  object-fit: contain;
}

.quickview-title {
  font-weight: 600;
  font-size: 21px;
  color: #000;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  line-height: 1.2em;
}

.quickview-product-prices {
  border-bottom: 4px solid #e1e1e1;
  margin-top: 30px;
  display: flex;
}

.quickview-product-prices .product-price {
  font-size: 20px;
  font-weight: 600;
  color: #c60c29;
  flex-grow: 1;
}

.quickview-product-prices p {
  margin-bottom: 0px !important;
  margin-top: 8px !important;
  font-size: 13px;
}

.product-image-gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.product-image-gallery img {
  width: 19%;
  height: 85px;
  object-fit: cover;
  margin-left: 0px;
  transition: 300ms all;
  border-radius: 5px;
  border: 2px solid transparent;
  padding: 5px;
  cursor: pointer;
}

.product-image-gallery img:not(:nth-child(5n + 5)) {
  margin-right: 1.25%;
}

.product-image-gallery > img.active {
  border-color: #c60c29;
}

.product-image-gallery > img:not(.active):hover {
  border-color: #ccc;
}

.quickview-product-section .quickview-table table {
  border-collapse: collapse;
}

.quickview-button-container {
  display: flex;
  align-items: center;
}

.quickview-button-container .view-product {
  width: 50%;
  text-align: center;
}

.quickview-button-container .view-product:hover {
  text-decoration: underline;
}

.quickview-button-container .btn-add-to-cart {
  width: 50%;
  padding: 15px 10px;
  line-height: 1em;
  display: flex;
  justify-content: center;
}

.quickview-button-container .btn-add-to-cart .btn-text {
  padding: 5px;
}

.quickview-button-container .btn-add-to-cart,
.quickview-button-container .view-product {
  font-size: 14px;
}

.quickview-container > .add-to-cart {
  transition: 300ms all;
}

.quickview-container > .add-to-cart:hover {
  background: white;
  color: #c60c29;
}

.product-column .product-loader img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-right: 5px;
}

.product-column .product-loader {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 15px;
  opacity: 0;
}

.product-loader span.total-products {
  color: #bb0c26;
  font-weight: 600;
}

.product-loader span.loaded-products {
  font-weight: 600;
}

.product-column .onsite-navigation {
  position: relative;
  width: 100%;
}

.product-column .onsite-navigation .pagination {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 26px;
  justify-content: center;
  margin: 20px auto 0px !important;
}

li.page-item.active {
  background-color: #c60c29;
}

li.page-item.active a {
  color: white !important;
}

li.page-item a {
  color: #2b2b2b !important;
}

ul.pagination li {
  padding: 10px;
  width: 36px;
  margin: 0 5px;
  line-height: 1em;
  min-width: 25px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

li.page-item:not(.active):hover a {
  color: #c60c29 !important;
}

ul.pagination .page-counter {
  margin-right: 10px;
}

ul.pagination li.page-item.next-previous {
  font-size: 24px;
  margin: 0 30px;
}

.current-selected-page {
  display: none;
}

.onsite-navigation .pagination-loader {
  display: none;
}

.onsite-navigation .pagination-loader {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 6px;
  left: calc(50% - 12.5px);
}

.shown-products {
  display: none;
}

@media (max-width: 980px) {
  .shown-products {
    display: none;
  }

  #onsite-pricing-page-boxes {
    margin-top: 10px;
  }

  .product-column .single-sorter {
    padding-right: 0px;
    margin-right: 1%;
    width: calc(79% - 19.5px);
  }

  .product-column .onsite-navigation .pagination .page-nav {
    display: none;
  }

  .product-column .onsite-navigation .pagination,
  .product-column .onsite-navigation .shown-products {
    width: 50%;
  }

  .product-column .onsite-navigation .pagination {
    margin: 0 !important;
  }

  .onsite-navigation {
    display: flex;
    align-items: center;
  }
}

li.page-item.next-previous.disabled a {
  opacity: 0.3;
  color: #000 !important;
  cursor: text;
}

.product-detail-label > p {
  min-height: 1.5em;
}

@media (min-width: 980px) {
  .onsite-filter-container-wrapper {
    margin-top: 0px;
  }

  .paged .onsite-filter-container-wrapper {
    margin-top: 73px;
  }
}

/* .product-item-container:not(:nth-child(4n + 1)) {
  margin-left: -1px;
} */

.product-item-container:hover {
  border-color: #c60c29 !important;
  z-index: 2;
}

.pagination li a {
  cursor: pointer;
}

.pagination-hide {
  display: none;
}

span.page-nav:hover {
  background: #eee;
}

span.page-nav {
  width: 25px;
  text-align: center;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: 300ms all;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

select.sortOptions option:hover {
  background-color: #c60c29;
}

.quickview-add-cart-loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #bdc7ce;
  width: 22px;
  height: 22px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn-add-to-cart:disabled,
.filter-sort_button:disabled {
  background: #c60c295e !important;
  border: 1px solid #c60c295e !important;
  color: #fff !important;
}

.item-hide {
  display: none;
}

.item-hidden {
  visibility: hidden;
}

.empty-result {
  text-align: center;
}

.quickview-container .add-to-cart img {
  height: 13px;
  object-fit: contain;
  width: auto;
  margin-bottom: 0;
  margin-right: 5px;
  margin-top: -1px;
}

.quickview-container a:first-child {
  font-family: "Poppins", Sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.quickview-container .add-to-cart {
  font-size: 12px !important;
  padding: 0.7rem 1rem !important;
  color: #fff;
  background-color: #e60528;
  border-radius: 30px;
  padding: 0.7rem 1rem !important;
  width: auto;
  border: 1px solid #c60c29;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.product-container .product-item .product-detail-label {
  text-transform: uppercase;
  font-weight: 600;
}

.onsite-modal {
  position: absolute;
  background: white;
  box-shadow: 0 0 10px rgb(150 150 150 / 20%);
  padding: 20px;
  left: 0;
  display: none;
}

.onsite-modal.active {
  display: block;
}

.product-container {
  position: relative;
  margin-top: 10px;
}

.splash-screen.loading {
  display: flex;
}

.splash-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  z-index: 3;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  height: calc(100% - 109px);
}

@media (max-width: 980px) {
  .splash-screen {
    height: calc(100% - 175px);
  }

  /* .product-item-container:not(:nth-child(4n + 1)) {
    margin-left: 0px;
  } */
  .product-item-container {
    margin-top: 0px;
  }
}

.splash-screen img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin-top: 10%;
}

.splash-screen span {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.product-column .empty-result {
  display: none;
  margin-top: 35px;
}

.product-column .empty-result img {
  max-width: 450px;
  width: 100%;
}

.product-container.empty {
  min-height: 0px;
}

/* Styles for Archive Product template */
.main-container {
  display: flex;
  max-width: 1920px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.product-column {
  width: 100%;
  position: relative;
  margin-left: 1%;
}

.product-container-filter {
  /* width: 16.5%; */
  width: 310px;
  min-width: 310px;
  padding: 10px;
  /* margin-top: 70px;   */
  z-index: 4;
  padding-right: 5px;
  padding-top: 0px;
}

/* .main-container:not(.paged) .product-container > div:not(:nth-child(4n + 4)) {
  margin-right: 0.66%;
}
.main-container.paged .product-container > div:not(:nth-child(4n + 4)) {
  margin-right: 0.66%;
} */
/* .product-container>div:not(#product-quickview) { */
/* width: 24%; */
/* margin-bottom: 0.66%; */
/* width: 25%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  margin-top: -1px;
  background-color: white; */
/* } */

.product-image {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-bottom: 0;
  height: 220px !important;
}

.product-image > img {
  height: 250px;
  object-fit: cover;
  vertical-align: middle;
}

.product-item-container {
  border-radius: 20px;
  border: 1px solid #c0c0c0;
}

.product-item-container > a,
.product-item-container .product-item {
  /* height: 100%; */
}

.product-preview-container {
  display: none;
}

.product-details {
  padding: 20px;
  padding-bottom: 36.5px;
}

/* .product-container > div:hover {
  border: 1px solid firebrick;
} */
.product-container .product-item > img,
.product-container .product-item > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

/* .product-container .product-item a {
  text-align: justify;
  line-height: 1.3em;
  height: 6.5em;
} */
.quickview-container .add-to-cart img {
  height: 13px;
  object-fit: contain;
  width: auto;
  margin-bottom: 0;
  margin-right: 5px;
  margin-top: -1px;
}

.quickview-container a:first-child {
  font-family: "Poppins", Sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.quickview-container .add-to-cart {
  font-size: 12px !important;
  padding: 0.7rem 1rem !important;
  color: #fff;
  background-color: #e60528;
  border-radius: 30px;
  padding: 0.7rem 1rem !important;
  width: auto;
  border: 1px solid #c60c29;
  line-height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.product-container .product-item .product-detail-label {
  text-transform: uppercase;
  font-weight: 600;
}

.onsite-modal {
  position: absolute;
  background: white;
  box-shadow: 0 0 10px rgb(150 150 150 / 20%);
  padding: 20px;
  left: 0;
  display: none;
}

.onsite-modal.active {
  display: block;
}

.product-detail-name {
  color: #000;
  font-weight: 600;
}

.guarantee-text {
  background-color: #bb0c26;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 10px;
  color: white;
  margin-bottom: 5px;
  display: inline-block;
}

span.guarantee-text.rental {
  background-color: #f35f1b;
}

span.guarantee-text.rto {
  background-color: #008037;
}

a.product-detail-name {
  color: #000;
  font-weight: 600;
}

.filter-sort-selected-label {
  text-align: center;
}

.filter-sort-selected-label h1,
.current-searched-location {
  font-size: 32px !important;
}

.product-price {
  font-size: 26px;
  font-weight: 600;
  margin-top: 0px !important;
  margin-bottom: 0px;
}

.container-title {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f3a59 !important;
}

.container-grade-title {
  font-family: "Poppins", Sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #000000 !important;
  margin-bottom: 0 !important;
  min-height: 4.5em;
}

.product-detail-label {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000 !important;
}

.product-detail-label p,
.product-sku {
  font-size: 11px;
  font-weight: 400;
  text-transform: capitalize;
}

p.location *:not(small) {
  text-decoration: underline;
}

p.location {
  color: #c60c29;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  margin-bottom: 0;
}

.location small {
  font-size: 75%;
  color: #000000;
}

p.discount-info {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 16px;
}

p.installment-info a {
  color: #383a88 !important;
  font-size: 12px;
  font-weight: 500;
}

.product-price .discount-percentage,
.product-price .discount-value {
  font-size: 50%;
  font-weight: 500;
}

.installment-info .learn-more {
  text-decoration: underline;
}

p.discount-info .starting-price {
  color: #333;
  text-decoration: line-through;
}

p.discount-info.rental,
p.discount-info.rto {
  display: flex;
  flex-direction: column;
}

p.discount-info .starting-price-text {
  color: #333;
  font-weight: 600;
}

p.discount-info.rental .starting-price,
p.discount-info.rto .starting-price {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

p.discount-info .discount-percentage {
  margin-left: 5px;
}

p.discount-info .discount-value {
  margin-left: 2px;
  font-size: 80%;
}

.product-item-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0 10px;
}

.product-sku {
  color: black;
  text-transform: uppercase;
  bottom: 0px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
  text-align: right;
  font-weight: 500;
}

.product-main-info {
  margin-bottom: 15px;
}

/* Styles for the Sales tag badge */
/* .page-template-pricing-page span.special_badge {
  position: absolute;
  top: 40px;
  right: -34%;
  width: 100%;
  background-color: #c60c29;
  color: white;
  text-align: center;
  padding: 5px;
  transform: rotate(45deg);
  z-index: 1 !important;
} */

.page-template-pricing-page span.special_badge {
  position: absolute;
  top: 33px;
  left: 0;
  width: 40%;
  background-color: #c60c29;
  color: white;
  text-align: center;
  padding: 5px;
  z-index: 1 !important;
}

.page-template-pricing-page .product-item {
  position: relative;
  overflow: hidden;
}

.product-item {
  height: 100%;
}

.product-review {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #337e9f;
  font-size: 14px;
}

img.stars-ratings {
  max-width: 75px;
  margin-right: 3px;
  margin-top: -4px;
}

.product-item-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5px;
}

.product-item-footer .compare-checkbox {
  width: 40%;
}

.product-item-footer .compare-checkbox label {
  margin-top: -4px;
  font-size: 14px;
}

.product-item-footer .product-sku {
  text-align: center;
}

@media (max-width: 980px) {
  /* .product-container>div {
    margin-bottom: 3% !important;
  } */

  .product-container-filter {
    padding-right: 0px;
  }

  .product-container {
    padding: 0px;
    /* margin-top: 0px; */
  }

  .page-template-pricing-page span.special_badge {
    top: 6%;
    right: -36%;
  }

  .single-sorter.onsite-form {
    flex-direction: column;
    padding: 10px;
  }

  .single-sorter .filter-sort_label {
    margin-bottom: 9px;
  }

  .single-sorter .sortOptions {
    width: 100% !important;
  }

  .product-column {
    width: 100%;
    margin-left: 0px;
  }

  .main-container {
    flex-direction: column;
    padding: 10px;
  }

  .product-container {
    width: 100%;
  }

  .product-container-filter {
    width: 100%;
    margin-top: 0px;
  }

  /* .product-container > div:not(:nth-child(4n + 4)) {
    margin-right: 0 !important;
  } */
  /* .product-container > div:not(:nth-child(2n)) {
    margin-right: 2% !important;
  } */
  /* .product-container > div {
    width: 49% !important;
  } */
  .product-container > div img {
    display: block;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .page-template-pricing-page span.special_badge {
    top: 7%;
    right: -32%;
  }

  .product-container > div {
    width: 100% !important;
    margin-right: 0px !important;
  }

  /* .product-container > div:not(:nth-child(2n)) {
    margin-right: 0px !important;
  } */
  .product-image > img {
    width: 100%;
  }

  .container-title,
  .container-grade-title,
  p.location,
  .product-main-info {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  /* #product-quickview .quickview-content {
    flex-direction: column;
    height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  #product-quickview .quickview-content .quickview-gallery-section {
    width: 100%;
    border: 0;
    padding-right: 0;
  }

  #product-quickview .quickview-content .quickview-product-section {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
  }

  #product-quickview .product-image-gallery img:not(:nth-child(5n + 5)) {
    margin-right: 0px !important;
    margin-left: 0px !important;
  } */
}

.monthly-text {
  color: #000;
  font-size: 14pt;
  position: relative;
  top: -2px;
  font-weight: 600;
}

#products .learn-more {
  position: relative;
  z-index: 1;
}

/* Product - Learn More Modal */

.onsite-product-modal {
  display: none;
  position: fixed;
  z-index: 9;
  top: calc(50% - 28vh) !important;
  left: calc(50% - 300px);
}

p.for-as-low-text {
  margin-bottom: 0;
  font-size: 14px;
}

.modal-header .modal-close:hover {
  opacity: 1;
}

.modal-header .modal-close {
  color: white;
  position: absolute;
  right: 13px;
  top: 2px;
  font-family: "montserrat";
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: 300ms all;
}

.onsite-product-modal-container {
  background: white;
  border-radius: 10px;
  z-index: 10;
  width: 600px;
  position: relative;
  height: 70vh !important;
  overflow-y: auto;
  padding-bottom: 15px;
}

.onsite-product-modal .box-head {
  text-align: center;
  line-height: 1.3em;
}

.onsite-product-modal .box-head h3 {
  margin: 0;
  font-weight: 600;
}

.onsite-product-modal .payment-item {
  display: flex;
  width: 100%;
  align-items: center;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.onsite-product-modal .payment-item .product-info {
  flex: 3;
  padding-right: 10px;
  line-height: 1em;
}

.onsite-product-modal .payment-item .payment-duration {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onsite-product-modal .payment-item .payment-duration > div {
  padding: 5px 10px;
  background: black;
  color: white;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.onsite-product-modal .box-body {
  margin-top: 15px;
}

.onsite-product-modal .payment-option-box {
  background: #ebebeb;
  padding: 15px;
  border-radius: 10px;
  width: calc(100% - 60px);
  margin: auto;
}

.onsite-product-modal .payment-option-box:not(:last-child) {
  margin-bottom: 20px;
}

.onsite-product-modal .btn-apply {
  display: block;
  margin: auto;
}

.onsite-product-modal .payment-item:not(:last-child) {
  margin-bottom: 20px;
}

.onsite-product-modal
  .rto.payment-option-box
  .payment-item:nth-child(odd)
  .payment-duration
  > div {
  background: #008037 !important;
}

.onsite-product-modal
  .rental.payment-option-box
  .payment-item:nth-child(odd)
  .payment-duration
  > div {
  background: #f35f1b !important;
}

.payment-option-box.financing p {
  text-align: justify;
  text-align-last: center;
}

.onsite-product-modal .product-title {
  font-size: 14px;
  font-weight: 500;
}

.onsite-product-modal .product-location {
  font-size: 14px;
  color: #c60c29;
  font-weight: 600;
}

.onsite-product-modal .product-grade {
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
}

.onsite-product-modal .product-price {
  font-size: 20px;
}

.onsite-product-modal .product-price small {
  font-size: 70%;
}

.onsite-product-modal .box-head em {
  font-weight: 500;
}

.payment-option-box.financing .box-head img {
  width: 100%;
  max-width: 180px;
  margin-top: 5px;
}

.payment-option-box.financing .box-body {
  margin-top: 0px;
}

.onsite-product-modal .btn-apply {
  display: block;
  margin: auto;
  border-radius: 60px;
  padding: 5px 30px;
  background: #c60c29;
  width: 220px;
  text-align: center;
  color: #fff;
  border: 2px solid #c60c29;
}

.onsite-product-modal .btn-apply:hover {
  background: transparent;
  color: #c60c29;
  border-color: #c60c29;
}

.product-column {
  z-index: 3;
}

.onsite-product-modal.active {
  display: block;
}

.onsite-product-modal .modal-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* width */
.onsite-product-modal-container::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.onsite-product-modal-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

/* Handle */
.onsite-product-modal-container::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #888;
}

/* Handle on hover */
.onsite-product-modal-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.onsite-product-modal-container .delivery-option {
  font-style: italic;
}

.onsite-product-modal-container .modal-header {
  background: #c60c29;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onsite-product-modal-container .modal-header > div {
  width: 50%;
  color: #ffffff;
  font-weight: 600;
}

.onsite-product-modal-container .modal-product-info .product-grade {
  font-weight: 400;
  font-size: 100%;
  color: #000;
  font-style: italic;
}

.onsite-product-modal-container .modal-product-location {
  text-align: right;
  text-decoration: underline;
  font-size: 90%;
}

.onsite-product-modal-container .modal-product-info {
  margin: 20px 30px;
  display: block;
  line-height: 1.3em;
  color: #000;
  font-weight: 600;
}

.onsite-product-modal-container .modal-product-title {
  width: 50%;
}

.onsite-product-modal-container .modal-product-gallery {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.onsite-product-modal-container .modal-product-gallery .modal-gallery-item {
  width: 18%;
  height: 80px;
  margin-top: 8px;
  object-fit: cover;
}

.onsite-product-modal-container
  .modal-product-gallery
  .modal-gallery-item:not(:nth-child(5n + 5)) {
  margin-right: 2.5%;
}

.onsite-product-modal-container
  .modal-product-gallery
  .modal-gallery-item:not(:nth-child(n + 5)) {
  margin-top: 0px;
}

.onsite-share-location-modal {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 40vh;
  background: white;
  padding: 20px;
  border-radius: 10px;
  left: 0;
  right: 0;
  max-width: 310px;
  margin: auto;
  z-index: 99;
  box-shadow: 0 0 20px rgb(0 0 0 / 50%);
}

.onsite-share-location-modal.active {
  display: flex;
}

.onsite-share-location-modal h3 {
  font-size: 16px;
  text-align: center;
  margin-top: 0;
}

.btn-container button {
  font-size: 14px;
  padding: 5px 10px !important;
}

.onsite-share-location-suggestion {
  display: none;
  position: fixed;
  bottom: 5vh;
  left: 5vh;
  z-index: 88;
  background: #c60c29;
  border-radius: 5px;
  max-width: 300px;
  padding: 10px;
  padding-right: 40px;
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  align-items: center;
}

.onsite-share-location-suggestion.active {
  display: flex;
}

.onsite-share-location-suggestion h4 {
  color: white !important;
  margin: 0;
  font-size: 14px;
}

.onsite-share-location-suggestion span.box-close {
  cursor: pointer;
  position: absolute;
  right: 12px;
  height: 20px;
  width: 20px;
  background: white;
  border-radius: 20px;
  color: #c60c29;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Styling for loading placeholders */
#onsite-pricing-page-boxes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

#onsite-pricing-page-boxes > div {
  width: 25%;
  border: 1px solid #ccc;
  min-height: 700px;
  margin-right: -1px;
  padding: 30px;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

#onsite-pricing-page-boxes .image {
  height: 250px;
  width: 100%;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f6f6;
  background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
  background-size: 800px 104px;
  position: relative;
}

#onsite-pricing-page-boxes .wrapper-cell {
  display: flex;
  flex-direction: column;
}

#onsite-pricing-page-boxes .text-line {
  height: 50px;
  width: 100%;
  margin: 30px 0;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f6f6;
  background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
  background-size: 800px 104px;
  position: relative;
}

@media (max-width: 980px) {
  #onsite-pricing-page-boxes > div {
    width: 100%;
  }
}

/* .opacity {
  opacity: 0.5;
} */

.enter-zip-code {
  position: fixed;
  background: #c60c29b0;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  width: 300px;
  color: #fff;
  padding: 10px;
  border-radius: 2px;
  justify-content: center;
}

.product-item-link {
  display: none;
  color: white !important;
  background: #c60c29 !important;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) !important;
}

.product-item-link.active {
  display: flex;
}

a.product-item-hover-link {
  position: absolute;
  /* background: red; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p.installment-info {
  position: relative;
  z-index: 2;
}

.product-item .product-image {
  overflow: hidden;
}

.product-item .product-image img {
  transition: transform 300ms;
}

.product-item.active .product-image img {
  transform: scale(1.1);
}

.promotional-banners-container {
  margin: 30px 0;
  background-image: url(https://onsite-cdn.sfo3.cdn.digitaloceanspaces.com/wp-content/uploads/2024/07/17041849/Product-Gallery-Location-Banner-No-Text.png);
  justify-content: center;
  padding: 30px;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: left;
}

.promotional-banners-container .pb-row {
  display: flex;
  max-width: 1080px;
}

.pb-content h3 {
  font-family: Montserrat, Sans-serif !important;
  font-weight: 800 !important;
  color: #fff !important;
  font-size: 85px;
  line-height: 1;
  margin-bottom: 0;
}

.pb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  text-align: center;
}

.pb-content span {
  font-size: 32px;
  color: #fff;
  font-family: "Poppins", Sans-serif;
  display: block;
  margin-bottom: 5px;
}

a.pb-call-button {
  font-family: Montserrat, Sans-serif !important;
  font-size: 20pt !important;
  font-weight: 600 !important;
  border: 3px solid #c70c29;
  padding: 5px 30px;
  border-radius: 15px;
  color: #fff !important;
  transition: 300ms all;
  background: #c70c29;
}

a.pb-call-button:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: transparent !important;
}

.discount-info.rto .starting-price {
  font-weight: 700;
  font-size: 18px !important;
}

@media (max-width: 768px) {
  .pb-img-container {
    max-width: 300px;
  }

  .pb-content h3 {
    font-size: 24pt !important;
  }

  .pb-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pb-content {
    margin-left: 0px !important;
  }

  .pb-content span {
    font-size: 24px;
  }
}

.product-detail-button {
  text-align: center;
  margin-top: 30px;
}

.product-detail-button a {
  padding: 10px 20px !important;
  background: #c60c29;
  color: #fff !important;
  border-radius: 25px;
  font-size: 9pt !important;
}

.product-image img {
  min-height: 100px !important;
}

.special_badge.rto {
  background-color: #008037 !important;
}

.special_badge.rental {
  background-color: #f78e12 !important;
}

.call-us-now-container {
  display: flex;
}

.call-us-now-container p {
  color: #fff;
  font-size: 25pt !important;
  font-family: Montserrat, Sans-serif !important;
  font-weight: 500;
  margin: auto;
}

.call-us-now-container-btn {
  padding: 8px !important;
}

#first-product-container,
#second-product-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .call-us-now-container p {
    font-size: 10pt !important;
    margin-top: 12px !important;
  }

  a.pb-call-button {
    font-size: 9pt !important;
  }

  .promotional-banners-container {
    height: 125px !important;
  }
}

.product-ads {
  width: 100%;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-right:50px; */
}

.product-ads-container {
  position: fixed;
  left: 0;
  padding: 0px 8px;
  bottom: 10px;
  z-index: 5;
  justify-content: center;
  width: 100%;
}

.product-ads-text-wrap p {
  font-size: 20pt;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", Sans-serif;
}

.product-ads-text-wrap {
  padding-right: 20px;
}

.product-ads .yellow {
  color: #faff00 !important;
}

.product-ads-link-wrap {
  text-align: center;
  margin-top: 0px;
  min-width: 190px;
}

.product-ad {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  color: #fff;
  align-items: center;
}

.product-ads-1,
.product-ads-3 {
  background: #0f3a59;
}

.product-ads-2 {
  background: #f78e11;
  /* #418f42;  green */
}

.btn-ads-call-now {
  width: 100%;
  display: block;
  font-family: poppins, Sans-serif !important;
  color: #fff !important;
  border-style: solid !important;
  border-width: 1px !important;
  border-radius: 50px !important;
  padding: 8px 0px !important;
  margin-left: 0px !important;
}

.product-ads-1 div .product-ads-link-wrap .btn-ads-call-now,
.product-ads-3 div .product-ads-link-wrap .btn-ads-call-now {
  border-color: #c60c29 !important;
  background-color: #c60c29 !important;
}

.product-ads-2 div .product-ads-link-wrap .btn-ads-call-now {
  border-color: #3a3a3a !important;
  background-color: #3a3a3a !important;
}

.infinite-scroll {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.dot-flashing.hidden {
  display: none;
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */
.dot-flashing {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #828283;
  color: #828283;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #828283;
  color: #828283;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #828283;
  color: #828283;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dot-flashing {
  0% {
    background-color: #828283;
  }

  50%,
  100% {
    background-color: rgba(152, 128, 255, 0.2);
  }
}

.infinite__product_notification {
  padding: 5px 20px;
  border: solid 2px rgb(255, 47, 0);
  background-color: rgb(255, 47, 0);
  color: white;
  font-weight: 500;
  display: block;
}

.on-site-special-banner {
  width: 100%;
}

.on-site-special-banner__img {
  width: 100%;
}

.product-ad-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 461px) and (max-width: 600px) {
  .product-ads {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-right: 100px;
    align-items: center;
  }

  .product-ads-container {
    position: fixed;
    bottom: 10px;
    z-index: 1000;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .product-ads .product-ads-text-wrap p {
    font-size: 10pt;
    font-weight: 600;
    margin: 0;
    font-family: "Poppins", Sans-serif;
  }

  .product-ads-link-wrap {
    margin-top: 0px;
    min-width: 150px;
    padding-left: 0px;
  }

  .product-ad .btn-ads-call-now {
    width: 100%;
    font-family: poppins, Sans-serif !important;
    font-size: 10pt !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-radius: 50px !important;
    padding: 8px 0px !important;
    margin-left: 0px !important;
    display: block;
    text-align: center;
    color: #fff !important;
  }
}

@media (max-width: 460px) {
  .infinite-scroll {
    margin: 0px !important;
  }

  .product-ad-wrap {
    display: block;
  }

  .product-ads {
    color: #fff;
    text-align: left;
    display: block;
    justify-content: left;
    padding-right: 100px;
    align-items: center;
  }

  .product-ads-container {
    position: fixed;
    bottom: 10px;
    z-index: 1000;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .product-ads .product-ads-text-wrap p {
    width: 100%;
    font-size: 10pt;
    font-weight: 600;
    margin: 0;
    font-family: "Poppins", Sans-serif;
  }

  .product-ads .yellow {
    color: #faff00 !important;
  }

  .product-ad {
    padding: 8px;
  }

  .product-ads-link-wrap {
    margin-top: 5px;
    padding-left: 0px;
    width: 100%;
    min-width: 100%;
    justify-content: center;
    display: flex;
  }

  .product-ads .product-ads-text-wrap {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn-ads-call-now {
    width: 100%;
    text-align: center;
    font-family: poppins, Sans-serif !important;
    font-size: 10pt !important;
    color: #fff !important;
    background-color: #c60c29 !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-color: #c60c29 !important;
    border-radius: 50px !important;
    padding: 8px 0px !important;
    margin-left: 0px !important;
  }
}

@media (min-width: 601px) and (max-width: 1065px) {
  .product-ads {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-right: 100px;
    align-items: center;
  }

  .product-ads-container {
    position: fixed;
    bottom: 10px;
    z-index: 1000;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .product-ads .product-ads-text-wrap p {
    font-size: 1em;
    font-weight: 600;
    margin: 0;
    font-family: "Poppins", Sans-serif;
  }

  .product-ads-link-wrap {
    margin-top: 0px;
    padding-left: 0px;
  }

  .product-ad .btn-ads-call-now {
    min-width: 100px !important;
    width: 100%;
    font-family: poppins, Sans-serif !important;
    font-size: 10pt !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-radius: 50px !important;
    padding: 8px 0px !important;
    margin-left: 0px !important;
    display: block;
    text-align: center;
    color: #fff !important;
  }
}

.product-tab-filter-container {
  margin-top: 20px;
  width: 100%;
}

.product-ads-close-button {
  background: crimson;
  top: -30px;
  left: 0;
  font-size: 0.9em;
  position: absolute;
  color: white;
  cursor: pointer;
  height: 30px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

* {
  box-sizing: border-box;
}

.onsite-footer-socials {
  display: flex !important;
  flex-wrap: wrap;
}

@media (max-width: 563px) {
  #first-product-container,
  #second-product-container {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 564px) and (max-width: 832px) {
  #first-product-container,
  #second-product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 981px) and (max-width: 1020px) {
  #first-product-container,
  #second-product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 981px) {
  #onsite-single-sort {
    padding-right: 0px;
  }
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

/* zipcode component start */
.zipcode-input-component {
  width: 100%;
  padding: 15px;
  background: #e5e5e5;
  border: #9d9d9d solid 1px;
  margin-bottom: 20px;
  position: relative;
}

.zipcode-input-component__input-wrapper {
  position: relative;
}

.zipcode-input-component__input-wrapper input {
  border-color: black;
  border-radius: 0px;
  padding: 8px 40px 8px 15px;
  outline: none;
}

.zipcode-input-component__input-wrapper .end-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  height: 30px;
  width: 30px;
  transform: translateY(-50%);
  display: none;
}

.zipcode-input-component__input-wrapper input:focus + .end-icon {
  display: block;
}

.zipcode-input-component__input-wrapper .end-icon img {
  width: 30px;
}

.zipcode-input-component__current_location {
  text-decoration: underline;
  cursor: pointer;
  color: yellow;
}

.zipcode-input-component__button-wrapper,
.zipcode-input-component__current-location-wrap {
  margin-top: 8px;
}

button.zipcode-input-component__button {
  padding: 8px 15px !important;
  width: 100% !important;
  border-radius: 0px !important;
  position: relative;
  text-align: left !important;
}

.zipcode-input-component__button .end-icon {
  position: absolute;
  top: 50%;
  right: 5px;
  height: 30px;
  width: 30px;
  transform: translateY(-50%);
}

.zipcode-input-component__button .end-icon svg {
  --icon-color: #fff;
}

.zipcode-input-component__button:hover .end-icon svg {
  --icon-color: #c70c29;
}

/* .zipcode-input-component__input:focus + .zipcode-input-component__dropdown{
  display:block;
} */
.zipcode-input-component__dropdown.show {
  display: block;
}

.zipcode-input-component__dropdown {
  display: none;
  z-index: 9999 !important;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
}

.zipcode-input-component__dropdown-items-wrap {
  background: white;
  width: 100%;
  /* max-height:220px; */
  border: 1px solid #b5b5b5;
}

/* 
.parent > div:first-child {
            background-color: lightgreen;
            font-weight: bold;
        }

        .parent > div:last-child {
            background-color: lightcoral;
            font-weight: bold;
        } */
.zipcode-input-component__dropdown-item:hover {
  background: #d8d8d8;
}

.zipcode-input-component__dropdown-item {
  /* display: flex; */
  align-items: center;
  /* border-top: solid #eee .5px; */
  padding: 10px 15px;
  justify-content: space-between;
  border-bottom: whitesmoke;
  cursor: default;
  user-select: none;
}

.zipcode-input-component__dropdown-item-location {
  color: #2b2b2b;
  font-weight: 500;
}

.zipcode-input-component__dropdown-item-zip {
  color: #6b6b6b;
  font-weight: 600;
}

/* zipcode-input-component mobile-only */
.mobile-only .zipcode-input-component,
.mobile-only .ozw-zipcode-input-component {
  display: none;
}

.mobile-only {
  width: 100%;
}

@media (max-width: 980px) {
  .zipcode-input-component {
    margin-bottom: 0px;
  }

  .product-tab-filter-container {
    margin-top: 0px;
  }

  .mobile-only .zipcode-input-component {
    display: flex;
    width: 100%;
    align-items: baseline;
    flex-wrap: wrap;
  }

  .mobile-only .ozw-zipcode-input-component {
    display: flex;
  }

  .zipcode-input-component .zipcode-input-component__input-location-wrapper {
    width: calc(100% - 135px);
  }

  .zipcode-input-component .zipcode-input-component__button-wrapper {
    min-width: 130px;
    margin-top: 0px;
    margin-left: 5px;
  }

  .zipcode-input-component__input-wrapper {
    display: flex;
  }

  .zipcode-input-component__input-wrapper input {
    border-color: black;
    border-radius: 0px;
    padding: 8px 40px 8px 15px;
  }

  .zipcode-input-component .zipcode-input-component__button .end-icon {
    display: none;
  }

  .zipcode-input-component .zipcode-input-component__button {
    width: 125px;
    display: inline-block;
    text-align: center !important;
  }
}

/* zipcode component end */

/* product-container-filter desktop-filter */
@media (min-width: 768px) {
  /* #primary.content-area {
    padding-top: 50px !important;
  } */

  .woocommerce-products-header h1 {
    font-size: 4% !important;
  }

  .woocommerce-products-header span.current-searched-location {
    font-size: 1em !important;
  }
}

@media (max-width: 769px) {
  #primary.content-area {
    padding-top: 15px;
  }
}

.shipping-location-head {
  display: block;
  font-family: bebas neue, Sans-serif;
}

.shipping-location-head_label {
  font-size: 2em;
  font-weight: 800;
}

.shipping-location-head_location {
  font-size: 3em;
  font-weight: 800;
  color: #c60c29;
}

@media (max-width: 480px) {
  .shipping-location-head_label {
    font-size: 1em;
  }

  .shipping-location-head_location {
    font-size: 1.5em;
  }
}

/* new product-item UI */

.product-item-v2 {
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 15px;
  border: white solid 1px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  cursor: pointer;
  background: white;
}

.product-item-v2 * {
  user-select: none;
}

.product-item-v2:hover {
  border: #c60c29 solid 1px;
}

.product-item-v2.redirected {
  border: #c60c29 solid 1px;
  pointer-events: none;
  user-select: none;
}

.product-item-v2_tag {
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 20px;
  padding: 5px 30px;
  background: #c60c29;
  color: white;
}

.product-item-v2_tag.rto {
  background-color: #419040;
}

.product-item-v2_tag.rental {
  background-color: #f78e12;
}

.product-item-v2_image-wrap {
  max-width: 300px;
  width: 100%;
}

.product-item-v2_content-wrap {
  width: 100%;
  padding: 20px 30px;
}

.product-item-v2_title {
  font-weight: 500;
  font-size: 1.5em;
  color: #333;
}

.product-item-v2_detail-wrap {
  display: flex;
  width: 100%;
}

.product-item-v2_price-wrap {
  display: flex;
  gap: 7px;
}

.product-item-v2_button {
  width: 100%;
}

.product-item-v2_button-callus {
  margin-top: 20px;
  background-color: #3e3e3e !important;
  border-color: #3e3e3e !important;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border-radius: 6px;
}

.product-item-v2_button-callus .button-label {
  margin-left: 7px;
}

.product-item-v2_buttons-wrap {
  display: flex;
  width: 100%;
  max-width: 280px;
  min-width: 280px;
  align-items: center;
}

.product-item-v2_buttons-wrap .inner-wrap {
  width: 100%;
}

.product-item-v2_detail {
  display: table-row;
  /* padding:3px 10px 3px 0px;  */
}

.product-item-v2_detail .label {
  width: 30%;
}

.product-item-v2_detail .label,
.product-item-v2_detail .value {
  display: table-cell;
  font-size: 1em;
  /* white-space: nowrap;      
  overflow: hidden;         
  text-overflow: ellipsis;  */
}

.product-item-v2_detail .label {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item-v2_detail .value {
  padding-right: 10px;
}

.product-item-v2_details-price {
  font-weight: 700;
  color: #c60c29;
  padding: 8px 10px 8px 0px;
  font-size: 1.9em;
}

.product-item-v2_details {
  width: 100%;
  padding-right: 10px;
}

.product-item-v2_details-sku {
  margin-top: 15px;
}

.product-item-v2_image-wrap img {
  object-fit: contain;
  aspect-ratio: 1/1;
}

.product-item-v2_location {
  color: #c60c29;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item-v2_no-zipcode {
  padding: 8px 0px;
  font-size: 1.1em;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* .product-item-v2_no-zipcode, */
.product-item-v2_invalid-zipcode,
.product-item-v2_call-for-pricing {
  padding: 8px 25px;
  color: #3a3a3a;
  background: #d9d9d9;
  font-size: 1.1em;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-item-v2_call-for-pricing {
  display: inline-block;
}

/* product-item-v2 */
@media (max-width: 1399px) {
  .product-item-v2_detail-wrap {
    display: block;
  }

  .product-item-v2_details,
  .product-item-v2_buttons-wrap,
  .product-item-v2_buttons-wrap div.inner-wrap {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }

  .product-item-v2_buttons-wrap div.inner-wrap {
    margin-top: 10px;
    display: flex;
  }

  .product-item-v2_button.product-item-v2_button-callus {
    margin-top: 0px;
    margin-left: 5px;
  }

  .product-item-v2_button.product-item-v2_button-addtocart {
    margin-right: 5px;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }
}

@media (min-width: 720px) and (max-width: 1200px) {
  .product-item-v2 .product-item-v2_tag,
  .product-item-v2 .product-item-v2_detail .label,
  .product-item-v2 .product-item-v2_detail .value {
    font-size: 0.95em;
  }

  .product-item-v2 button,
  .product-item-v2.loader button {
    padding: 5px 10px;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }
}

@media (min-width: 480px) and (max-width: 719px) {
  .product-item-v2_button-addtocart .fa-shopping-cart {
    font-size: 0.75rem !important;
  }

  .product-item-v2_button-addtocart .fa-box {
    font-size: 0.4rem !important;
  }

  .product-item-v2 *,
  .product-item-v2 .product-item-v2_tag {
    font-size: 0.95em;
  }

  .product-item-v2_details-price {
    font-size: 1.9em;
  }

  .product-item-v2 .product-item-v2_image-wrap {
    width: 35%;
  }

  .product-item-v2 .product-item-v2_content-wrap {
    width: 65%;
    padding: 8px;
  }

  .product-item-v2_detail-wrap {
    display: block;
  }

  .product-item-v2_details,
  .product-item-v2_buttons-wrap,
  .product-item-v2_buttons-wrap div.inner-wrap {
    max-width: 100%;
    width: 100%;
  }

  .product-item-v2_buttons-wrap div.inner-wrap {
    margin-top: 10px;
    display: flex;
    width: 100%;
  }

  .product-item-v2_button.product-item-v2_button-callus {
    margin-top: 0px;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }

  .product-item-v2 button.product-item-v2_button {
    padding: 3px 8px !important;
    /* width:auto; */
    border-radius: 4px !important;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }

  .product-item-v2 .product-item-v2_detail {
    padding: 0px;
  }

  .product-item-v2_no-zipcode,
  .product-item-v2_invalid-zipcode,
  .product-item-v2_call-for-pricing {
    margin: 0px;
  }
}

/* mobile */
@media (min-width: 371px) and (max-width: 479px) {
  .product-item-v2 .product-item-v2_image-wrap {
    width: 35%;
  }

  .product-item-v2 .product-item-v2_content-wrap {
    width: 65%;
    padding: 8px;
  }

  .product-item-v2 * {
    font-size: 0.9em;
  }

  .product-item-v2 .product-item-v2_details-price {
    font-size: 1.9em;
  }

  .product-item-v2 .product-item-v2_tag {
    font-size: 0.65em;
  }

  .product-item-v2_detail-wrap {
    display: block;
  }

  .product-item-v2_details,
  .product-item-v2_buttons-wrap,
  .product-item-v2_buttons-wrap div.inner-wrap {
    max-width: 100%;
    width: 100%;
  }

  .product-item-v2_buttons-wrap div.inner-wrap {
    margin-top: 10px;
    display: flex;
    width: 100%;
  }

  .product-item-v2_button.product-item-v2_button-callus {
    margin-top: 0px;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }

  .product-item-v2 button.product-item-v2_button {
    padding: 3px 8px !important;
    border-radius: 4px !important;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }

  .product-item-v2 .product-item-v2_detail {
    padding: 0px;
  }

  .product-item-v2_no-zipcode {
    padding: 4px 0px;
  }

  /* .product-item-v2_no-zipcode, */
  .product-item-v2_invalid-zipcode,
  .product-item-v2_call-for-pricing {
    padding: 4px 6px;
    margin: 0px;
  }
}

@media (max-width: 370px) {
  .product-item-v2 .product-item-v2_image-wrap {
    width: 35%;
  }

  .product-item-v2 .product-item-v2_content-wrap {
    width: 65%;
    padding: 8px;
  }

  .product-item-v2 * {
    font-size: 0.87em;
  }

  .product-item-v2 .product-item-v2_tag {
    font-size: 0.6em;
  }

  .product-item-v2 .product-item-v2_details-price {
    font-size: 1.9em;
  }

  .product-item-v2_detail-wrap {
    display: block;
  }

  .product-item-v2 .product-item-v2_buttons-wrap div.inner-wrap {
    display: block;
  }

  .product-item-v2_buttons-wrap {
    width: 100%;
    max-width: auto;
    min-width: auto;
  }

  .product-item-v2_buttons-wrap div.inner-wrap {
    margin-top: 10px;
    display: flex;
    width: 100%;
  }

  .product-item-v2_button.product-item-v2_button-callus {
    margin: 8px 0px 0px 0px;
  }

  .product-item-v2_button.product-item-v2_button-addtocart {
    margin: 0px;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }

  .product-item-v2 button.product-item-v2_button {
    padding: 3px 8px !important;
    width: 100%;
    border-radius: 4px !important;
  }

  .product-item-v2.loader .product-item-v2_details {
    padding-right: 0px;
  }

  .product-item-v2 .product-item-v2_detail {
    padding: 0px;
  }

  .product-item-v2_no-zipcode,
  .product-item-v2_invalid-zipcode,
  .product-item-v2_call-for-pricing {
    margin: 0px;
  }
}

/* conditional styling */

.product-item-v2 .product-item-v2_no-zipcode,
.product-item-v2 .product-item-v2_invalid-zipcode {
  display: none;
}

/* no zipcode dont display price, disable add cart button,  */
.product-item-v2.no-zipcode .product-item-v2_no-zipcode,
.product-item-v2.invalid-zipcode .product-item-v2_invalid-zipcode {
  display: inline-block;
}

.product-item-v2.no-zipcode .product-item-v2_button-addtocart,
.product-item-v2.invalid-zipcode .product-item-v2_button-addtocart {
  background: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #838383 !important;
  cursor: default;
}

.product-item-v2.no-zipcode .product-item-v2_details-price,
.product-item-v2.no-zipcode .product-item-v2_location,
.product-item-v2.no-zipcode .product-item-v2_details-sku,
.product-item-v2.invalid-zipcode .product-item-v2_details-price,
.product-item-v2.invalid-zipcode .product-item-v2_details-sku,
.product-item-v2.invalid-zipcode .product-item-v2_location {
  display: none;
}

/* hide product price and force user to input zipcode */

.product-details-enter-zipcode,
.product-details-invalid-zipcode {
  padding: 8px 25px;
  color: #3a3a3a;
  background: #d9d9d9;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

/* START: product item v2 loader styles */

#products-display-container-loader {
  width: 100%;
}

.product-item-v2.loader {
  pointer-events: none;
  user-select: none;
}

.product-item-v2.loader .product-item-v2_detail2-wrap {
  width: 100%;
}

.product-item-v2.loader .product-item-v2_title,
.product-item-v2.loader .product-item-v2_details-price,
.product-item-v2.loader .product-item-v2_detail,
.product-item-v2.loader .product-item-v2_details-sku,
.product-item-v2.loader .product-item-v2_image-wrap,
.product-item-v2.loader button {
  color: transparent !important;
  border: none;
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f6f6;
  background: linear-gradient(to right, #f6f6f6 8%, #f0f0f0 18%, #f6f6f6 33%);
}

.product-item-v2.loader .product-item-v2_detail,
.product-item-v2.loader .product-item-v2_details-price,
.product-item-v2.loader .product-item-v2_details-sku {
  margin: 5px 0px 5px 0px;
}

.product-item-v2.loader .product-item-v2_image-wrap {
  aspect-ratio: 1/1;
}

.product-item-v2.loader .product-item-v2_content-wrap {
  padding: 5px 20px;
}

/* END: product item v2 loader styles */

@media (max-width: 480px) {
  .mobile-filter-trigger {
    font-size: 0.6em;
  }

  .select-selected,
  .select-selected * {
    font-size: 0.6em !important;
  }

  .zipcode-input-component * {
    font-size: 16px;
  }

  .zipcode-input-component .zipcode-input-component__input-location-wrapper {
    width: calc(100% - 105px);
  }

  .zipcode-input-component .zipcode-input-component__button-wrapper {
    min-width: 99px;
    margin-top: 0px;
    margin-left: 4px;
  }

  .zipcode-input-component__dropdown-item {
    font-size: 1.5em;
  }

  .zipcode-input-component .zipcode-input-component__button-wrapper {
    min-width: auto;
  }

  button.zipcode-input-component__button {
    padding: 6px 8px !important;
  }

  .product-item-v2_button-addtocart .fa-shopping-cart {
    /* font-size: 1.5rem; original value */
    font-size: 0.5rem !important;
  }

  .product-item-v2_button-addtocart .fa-box {
    /* font-size: 0.875rem; original value */
    font-size: 0.2rem !important;
  }
}

/* .select-selected{
  display:none;
} */

.zipcode-input-component__notification {
  position: absolute;
  left: calc(100% + 7px);
  top: 50%;
  transform: translateY(-50%);
  min-width: 200px;
  max-width: 350px;
  width: 100%;
  z-index: 9000;
}

.zipcode-input-component__notification .zipcode-input-component__notif {
  width: 100%;
  padding: 15px;
  background: #f33;
  border: 1px solid white;
  color: white;
  border-radius: 6px;
  font-size: 0.8em;
  position: relative;
  z-index: 9000 !important;
}

.zipcode-input-component__notif_close {
  color: white;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 5px;
  padding: 6px;
  border-radius: 9999px;
}

.zipcode-input-component__notif-title {
  font-size: 1em !important;
  font-weight: bold;
}

.zipcode-input-component__notif-content {
  margin-top: 5px;
}

.zipcode-input-component__notif-call-us-link {
  font-size: 0.95em !important;
  color: white !important;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .zipcode-input-component__notification {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    width: 100%;
  }

  .zipcode-input-component__notification .zipcode-input-component__notif {
    width: 100%;
    padding: 15px;
    background: #f33;
    border: 1px solid white;
    color: white;
    border-radius: 6px;
    font-size: 0.8em;
    position: relative;
  }

  .zipcode-input-component__notif_close {
    color: white;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 5px;
  }

  .zipcode-input-component__notif-title {
    font-size: 1em !important;
    font-weight: bold;
  }

  .zipcode-input-component__notif-content {
    margin-top: 5px;
  }

  .zipcode-input-component__notif-call-us-link {
    font-size: 0.95em !important;
    color: white !important;
    text-decoration: underline;
  }
}

/* add cart effect */

.product-item-v2_button-addtocart .fa-shopping-cart {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -10%;
  font-size: 1.5rem;
  transform: translate(-50%, -50%);
}

.product-item-v2_button-addtocart .fa-box {
  position: absolute;
  z-index: 3;
  top: -25%;
  left: 52%;
  font-size: 0.875rem;
  transform: translate(-50%, -50%);
}

/* .product-item-v2_button-addtocart .add__to-cart,
.product-item-v2_button-addtocart .added { */
.product-item-v2_button-addtocart .added {
  position: absolute;
  left: 50%;
  z-index: 3;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-item-v2_button-addtocart span.add__to-cart {
  opacity: 1;
}

.product-item-v2_button-addtocart span.added {
  opacity: 0;
}

.product-item-v2_button-addtocart.clicked .fa-shopping-cart {
  animation: cart 1.5s ease-in-out forwards;
}

.product-item-v2_button-addtocart.clicked .fa-box {
  animation: box 1.5s ease-in-out forwards;
}

.product-item-v2_button-addtocart.clicked span.add__to-cart {
  animation: txt1 1.5s ease-in-out forwards;
}

.product-item-v2_button-addtocart.clicked span.added {
  animation: txt2 1.5s ease-in-out forwards;
}

.product-item-v2_button-addtocart.clicked {
  pointer-events: none !important;
}

@keyframes cart {
  0% {
    left: -10%;
  }

  40%,
  60% {
    left: 50%;
  }

  100% {
    left: 110%;
  }
}

@keyframes box {
  0%,
  40% {
    top: -20%;
  }

  60% {
    top: 40%;
    left: 52%;
  }

  100% {
    top: 40%;
    left: 112%;
  }
}

@keyframes txt1 {
  0% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

@keyframes txt2 {
  0%,
  80% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.product-item-v2_button-addtocart {
  position: relative;
  overflow: hidden !important;
  color: transparent;
  pointer-events: "";
}

.zipcode-input-component__current-location-wrap {
  padding: 8px;
  text-align: center;
  background: #0f3d5e;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

/* .zipcode-input-component__current-location-wrap.mobile__screen{
  display:none;
} */

@media (max-width: 980px) {
  .zipcode-input-component__current-location-wrap {
    display: flex;
    flex: 1 1 1000px;
  }

  /* .zipcode-input-component__current-location-wrap.desktop__screen{
    display:none;
  } */
}

.filter-sort-selected-label {
  /* display:none !important; */
}

.product-item-v2_detail2-wrap {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.ph--shipping-container-duotone {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M240 86v84a8 8 0 0 1-5.8 7.69L128 208V48l106.2 30.34A8 8 0 0 1 240 86' opacity='0.2'/%3E%3Cpath d='M236.4 70.65L130.2 40.31a8 8 0 0 0-3.33-.23L21.74 55.1A16.08 16.08 0 0 0 8 70.94v114.12a16.08 16.08 0 0 0 13.74 15.84l105.13 15a8.5 8.5 0 0 0 1.13.1a8 8 0 0 0 2.2-.31l106.2-30.34A16.07 16.07 0 0 0 248 170V86a16.07 16.07 0 0 0-11.6-15.35M96 120H80V62.94l40-5.72v141.56l-40-5.72V136h16a8 8 0 0 0 0-16M24 70.94l40-5.72V120H48a8 8 0 0 0 0 16h16v54.78l-40-5.72Zm112 126.45V58.61L232 86v84Z'/%3E%3C/g%3E%3C/svg%3E");
}

#onsite-single-sort {
  z-index: -1;
}

/* mobile filter v2 */

.mobile-filter-v2 {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  left: 0;
  top: 0;
}

.mobile-filter-v2__backdrop {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100vh;
}

.mobile-filter-v2__sidebar {
  width: 300px;
  padding: 0px;
  margin: 0px;
  background: white;
  height: 100vh;
  overflow-y: auto;
}

@media (max-width: 980px) {
  #desktop-sort-component {
    display: none;
  }

  .mobile-filter-v2 {
    display: block;
  }

  .mobile-filter-v2__filter-wrap.product-container-filter {
    padding: 0px;
    min-width: auto;
    width: 100%;
  }

  .mobile-filter-v2__filter-header-wrap img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    /* margin-right: 5px;
    margin-top:5px */
  }

  .mobile-filter-v2 .header-wrap .label {
    margin-left: 15px;
    font-weight: 500;
  }

  .header-wrap-icon {
    margin-top: 5px;
  }

  .mobile-filter-v2 .header-wrap {
    padding: 8px;
    display: flex;
    align-items: center;
    border-top: 3px solid #ddd;
    border-bottom: 3px solid #ddd;
  }

  .mobile-filter-v2 .filter-container {
    margin-top: 0px;
  }

  .mobile-filter-v2 span.system-uicons--sort-alt {
    font-size: 1.3em;
  }

  /* trigger */
  .mobile-filter-trigger-v2 {
    margin: 10px 0px;
  }

  .mobile-filter-trigger-v2__filter-sort-label-wrap {
    cursor: pointer;
    display: flex;
    align-items: center;
    border: #9e9e9e solid 1px;
    border-radius: 4px;
    padding: 2px 8px;
  }

  .mobile-filter-trigger-v2__icon-label {
    margin-right: 10px;
  }

  .mobile-filter-trigger-v2__icon-label img {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }

  .mobile-filter-v2__close {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    color: white;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    /* background:rgba(255, 255, 255, 0.5); */
    /* height: 30px;
    width: 30px; */
  }
}

@media (min-width: 981px) {
  .mobile-filter-v2 {
    display: none;
  }

  .mobile-filter-trigger-v2 {
    display: none;
  }

  #desktop-sort-component {
    display: block;
  }
}

.mobile-filter-v2__sort-wrap {
  width: 100%;
}

.sort-items-wrap {
  width: 100%;
  padding: 8px;
  padding-left: 20px;
}

.mobile-filter-v2__sort-order {
  font-weight: 700;
}

.mobile-filter-v2__sort-label {
  margin-left: 20px;
}

.mobile-filter-trigger-v2__label {
  font-weight: 600;
}

.mobile-filter-v2__sort-item {
  display: flex;
  width: 100%;
  align-items: center;
  /* justify-content: space-between; */
  margin-bottom: 4px;
  border: 1px solid #9e9e9e;
  border-radius: 4px;
  cursor: pointer;
}

#desktop-sort-component {
  position: relative;
  float: right;
  margin-bottom: 10px;
}

.desktop-sort__dropdown {
  position: absolute;
  z-index: 9999 !important;
  width: 100%;
  top: calc(100% + 2px);
  right: 0;
  background: white;
  width: 280px;
}

.desktop-sort__trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px 12px;
}

.desktop-sort__icon .system-uicons--sort-alt {
  font-size: 1.3em;
  margin-top: 5px;
}

.desktop-sort__label {
  font-weight: 600;
  margin-left: 10px;
}

.desktop-sort__dropdown,
.desktop-sort__trigger {
  border: 1px solid #9e9e9e;
  border-radius: 4px;
}

/* old tab menu UI */

/* .tab-menu li:nth-child(1):hover div {
  background-color: #BD112A;
}

.tab-menu li:nth-child(2):hover div {
  background-color: #419040;
}

.tab-menu li:nth-child(3):hover div {
  background-color: #F78E12;
}

.tab-menu li:nth-child(4):hover div {
  background-color: #0F3A59;
}

.tab-menu li#tab-menu-sale.active div,
.tab-menu li#tab-menu-rto.active div,
.tab-menu li#tab-menu-rent.active div,
.tab-menu li#tab-menu-special.active div {
  background-color: #BD112A;
  font-size:1.3em;
  transition: all ease-in;
} */

/* .tab-menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: baseline;
}

.tab-menu li div {
  width: 100%;
  padding: 10px 0px;
  cursor: pointer;
  background: #9E9E9E;
  flex: 1;
  text-align: center;
  color: #fff;
  font-family: 'Poppins';
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-menu li {
  width: 25%;
}


@media (min-width:711px) {
  .tab-menu li:nth-child(1) {
    padding-right: 30px;
  }

  .tab-menu li:nth-child(2) {
    padding-right: 20px;
    padding-left: 10px;
  }

  .tab-menu li:nth-child(3) {
    padding-right: 10px;
    padding-left: 20px;
  }

  .tab-menu li:nth-child(4) {
    padding-left: 30px;
  }
}


@media (max-width: 710px) {
  .tab-menu {
    justify-content: baseline;
    align-items:baseline;
  }

  .tab-menu li {
    width: 25%;
    margin: 0px;
    text-align: center;
    font-size: .7em;
    padding: 0px 2px;
  }

  .tab-menu li {
    padding: 0px 2px;
  }

  .tab-menu li:first-child {
    padding-left: 0px !important;
    padding-right: 2px;
  }

  .tab-menu li:last-child {
    padding-right: 0px !important;
    padding-left: 2px;
  }

  .tab-menu li div {
    border-radius: 3px;
  }
} */

#on-site__page {
  margin-top: 20px;
}

/* tab menu UI v2 */
.tab-menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid #ccc;
  background: whitesmoke;
  flex-wrap: wrap;
}

.tab-menu li {
  position: relative;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  color: #838383;
  font-weight: 300;
  border: 1px solid whitesmoke;
  border-radius: 6px;
  font-weight: 500;
  background-color: #dadada;
}

.tab-menu li:nth-child(1),
.tab-menu li:nth-child(2) {
  width: 20%;
}

.tab-menu li:nth-child(3) {
  width: 25%;
}

.tab-menu li:nth-child(4) {
  width: 35%;
}

.tab-menu li:nth-child(5) {
  width: 50%;
}

.tab-menu li:nth-child(6) {
  width: 50%;
}

.tab-menu li .ph--shipping-container-duotone {
  display: none;
}

.tab-menu li.active .ph--shipping-container-duotone {
  display: block;
  width: 1.2em;
  height: 1.2em;
  /* transition:all .1s ease-in; */
}

.tab-menu li.active .ph--shipping-container-duotone + div {
  margin-left: 10px;
}

.tab-menu li.active,
.tab-menu li.active:hover {
  background-color: #bd112a;
  color: white;
  cursor: default;
  pointer-events: none;
  /* font-size:1.2em; */
  transition: all 0.2s ease-in;
}

.tab-menu li.disabled,
.tab-menu li.disabled:hover {
  background-color: #e1e1e1;
  color: #ababab;
  cursor: not-allowed;
  pointer-events: none;
  /* font-size:1.2em; */
  transition: all 0.2s ease-in;
}

.tab-menu li:hover {
  background-color: #c7c7c7;
  font-weight: 500;
  color: white;
  transition: all 0.175s ease-in-out;
}

@media (min-width: 981px) and (max-width: 1299px) {
  .tab-menu li {
    font-size: 0.8em;
  }
}

@media (min-width: 560px) and (max-width: 980px) {
  .tab-menu li {
    font-size: 0.75em;
    height: 35px;
  }
}

@media (max-width: 559px) {
  .tab-menu li {
    font-size: 0.65em;
    height: 30px;
  }

  .tab-menu li.active .ph--shipping-container-duotone + div {
    margin-left: 4px;
  }

  .tab-menu li:nth-child(1),
  .tab-menu li:nth-child(2) {
    width: 15%;
  }

  .tab-menu li:nth-child(3) {
    width: 35%;
  }

  .tab-menu li:nth-child(4) {
    width: 35%;
  }
}

/* temporary disable */
.onsite-container-selected-fitler {
  display: none;
}

header.woocommerce-products-header {
  display: none;
}

/* icon */

.system-uicons--sort-alt {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' d='m10.5 8.5l4 4l4-4m-4-6v10m-4 .044L6.5 8.5l-4 4.044m4-4.044v10'/%3E%3C/svg%3E");
}

/* zipcode swal2 popup styles */
.onesite-modal-wrapper {
  display: flex;
  position: relative;
  border-radius: 0px !important;
}

.onesite-modal__action-buttons-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.onesite-modal__continue-shopping-button {
  background: #bd112a !important;
  border: 1px solid #bd112a !important;
  color: white !important;
  font-size: 1em !important;
  transition: all 0.125s ease-in-out;
}

.onesite-modal__continue-shopping-button:hover {
  color: white !important;
  background: #dd2944 !important;
  border: 1px solid #6b0514 !important;
  font-size: 1em !important;
}

.onesite-modal__go-to-cart-button {
  background: #3e3e3e !important;
  border: 1px solid #3e3e3e !important;
  color: white !important;
  font-size: 1em !important;
  transition: all 0.125s ease-in-out;
}

.onesite-modal__go-to-cart-button:hover {
  color: white !important;
  background: #545454 !important;
  border: 1px solid #212121 !important;
  font-size: 1em !important;
}

.onesite-modal-wrapper .banner {
  background-size: cover;
  background-position: center;
  padding: 15px;
  min-width: 300px;
  background-image: url("https://onsitestorage.com/wp-content/plugins/onsite-single-product-tabs/images/blackbanner.png");
}

.onesite-modal-wrapper .banner div img {
  width: 100%;
  object-fit: contain;
}

.onesite-modal-wrapper .banner div {
  width: 75%;
}

.onesite-modal-wrapper .content {
  width: 100%;
  padding: 40px;
  padding-bottom: 15px;
  text-align: left !important;
  position: relative;
}

.zipcode-swal2-popup.swal2-show,
.swal2-popup.swal2-show .swal2-html-container {
  padding: 0px !important;
}

.zipcode-swal2-popup .swal2-close.zipcode-modal-close {
  background-color: transparent !important;
  outline-width: 1px !important;
  border-radius: 0px !important;
  color: #000 !important;
  border: none !important;
  position: absolute;
  padding: 5px !important;
  top: 0 !important;
  right: 10px !important;
  font-size: 2em !important;
}

.zipcode-swal2-popup {
  width: 800px;
}

.zipcode-swal2-popup_title {
  text-align: left;
  margin-bottom: 5px;
  color: black;
  font-size: 1.2em;
}

.zipcode-swal2-popup_button {
  padding: 7.5px 15px !important;
  border-radius: 0px !important;
}

.zipcode-swal2-popup_buttons-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  justify-content: space-between;
}

.zipcode-swal2-popup_call-link {
  color: #c60c29;
  font-size: 1em !important;
  text-decoration: underline;
  text-align: right;
}

.container-name-wrapper {
  margin-bottom: 30px;
}

@media (min-width: 491px) and (max-width: 768px) {
  .onesite-modal-wrapper,
  .onesite-modal-wrapper {
    display: block;
  }

  .onesite-modal-wrapper .banner,
  body[data-elementor-device-mode="tablet"] .onesite-modal-wrapper .banner {
    width: 100%;
    height: 190px;
  }

  .zipcode-swal2-popup .swal2-close.zipcode-modal-close,
  body[data-elementor-device-mode="tablet"]
    .zipcode-swal2-popup
    .swal2-close.zipcode-modal-close {
    color: rgb(232, 232, 232) !important;
  }

  .zipcode-swal2-popup .swal2-close.zipcode-modal-close:hover,
  .zipcode-swal2-popup .swal2-close.zipcode-modal-close:hover {
    color: white !important;
  }

  .zipcode-swal2-popup .onesite-modal-wrapper .banner div,
  .onesite-modal-wrapper .banner div {
    width: 40%;
  }
}

@media (max-width: 490px) {
  .onesite-modal__action-buttons-wrap {
    margin-bottom: 20px;
  }

  .onesite-modal-wrapper,
  .onesite-modal-wrapper {
    display: block;
  }

  .onesite-modal-wrapper .banner,
  body[data-elementor-device-mode="tablet"] .onesite-modal-wrapper .banner {
    width: 100%;
    height: 140px;
  }

  .zipcode-swal2-popup .swal2-close.zipcode-modal-close,
  body[data-elementor-device-mode="tablet"]
    .zipcode-swal2-popup
    .swal2-close.zipcode-modal-close {
    color: rgb(232, 232, 232) !important;
  }

  .zipcode-swal2-popup .swal2-close.zipcode-modal-close:hover,
  .zipcode-swal2-popup .swal2-close.zipcode-modal-close:hover {
    color: white !important;
  }

  .zipcode-swal2-popup .onesite-modal-wrapper .banner div,
  .onesite-modal-wrapper .banner div {
    width: 40%;
  }

  /* .onesite-modal-wrapper .onesite-modal__title {
    font-size: .8em;
  } */

  /* .onesite-modal-wrapper .onesite-modal__message,
  .onesite-modal-wrapper .onesite-modal__contact-us {
    font-size: .65em;
  }

  .onesite-modal-wrapper .onesite-modal__contact-us a {
    font-size: 1em;
  } */

  .onesite-modal__contact-us span,
  .onesite-modal__contact-us span a {
    font-size: 1em;
  }

  .onesite-modal__message {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .onesite-modal-wrapper .content {
    font-size: 0.7em;
    padding: 20px;
    padding-bottom: 5px;
  }
}

.onesite-modal__title {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
}

.onesite-modal__message {
  width: 100%;
  font-weight: 500;
  text-align: center;
  color: #bd112a;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* @media (min-width:981px){
  .tab-menu, .tab-menu li.active, .tab-menu li.active:hover{
    height:80px;
    font-weight:700;
    font-size:1.1em;
  }
} */

.on-site-special-banner__button-wrap {
  position: absolute;
  bottom: 25px;
  left: 20px;
  font-weight: bold;
  color: white;
  background: #bd112a;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 1em;
  cursor: pointer;
}

.on-site-special-banner {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.on-site-special-banner__call-label,
.on-site-special-banner__call-number {
  color: white;
  font-weight: bold;
  text-align: center;
}

.on-site-special-banner__call-number .elementor-align-icon-left {
  margin-right: 10px;
}

.on-site-special-banner__call-label {
  font-size: 0.7em;
}

.on-site-special-banner__call-number {
  font-size: 1em;
}

@media (max-width: 490px) {
  .on-site-special-banner__call-label-wrap {
    font-size: 0.7em;
  }

  .on-site-special-banner__button-wrap {
    left: 10px;
    bottom: 10px;
  }

  .on-site-special-banner__call-number .elementor-align-icon-left {
    margin-right: 4px;
  }
}

/* horizontal-payment-term-filter start*/
.horizontal-payment-term-filter {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 8px;
  padding: 10px;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid #ccc;
  background: whitesmoke;
  width: 100%;
}

.horizontal-payment-term-filter .location-option {
  font-size: 1em;
  line-height: 1.4em;
}

@media (min-width: 560px) and (max-width: 980px) {
  .horizontal-payment-term-filter .location-option {
    font-size: 0.7em;
    line-height: 1.8em;
  }

  .horizontal-payment-term-filter {
    padding: 6px;
  }
}

@media (max-width: 559px) {
  .horizontal-payment-term-filter .location-option {
    font-size: 0.65em;
    line-height: 2.2em;
    padding-left: 23px;
  }

  .horizontal-payment-term-filter {
    padding: 2px;
  }
}

/* horizontal-payment-term-filter ebd*/

/* product gallery page add button add number start */
/* .btn-ads-call-now{
  position:relative;
}
.btn-ads-call-now div:first-child{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:100%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background:#c60c29;
} */
/* product gallery page add button add number end */

/* product item v2 redirect loader start */
/* HTML: <div class="loader"></div> */
.product-item-v2__redirect-loader-dimmer {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34, 34, 34, 0.5);
  z-index: 5;
  pointer-events: none;
  user-select: none;
  align-items: center;
  justify-content: center;
}

.product-item-v2__redirect-loader {
  width: 45px;
  aspect-ratio: 0.75;
  --c: no-repeat linear-gradient(#fff 0 0);
  background: var(--c) 0% 50%, var(--c) 50% 50%, var(--c) 100% 50%;
  background-size: 20% 50%;
  animation: l6 1s infinite linear;
}

@keyframes l6 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

/* product item v2 redirect loader end */

#infinite-show-more {
  width: 100%;
  border: 1px solid #ccc;
  background: white;
  padding: 10px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
  border-radius: 7px;
}

#infinite-show-more:hover {
  background: whitesmoke;
  transition: all 0.725s ease-in-out;
}

.product-item-v2_button-addtocart:disabled {
  background: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #838383 !important;
  cursor: default !important;
  pointer-events: none !important;
}

#gallery-zipcode-component.disabled input.zipcode-input-component__input,
#gallery-zipcode-component.disabled button.zipcode-input-component__button,
#gallery-zipcode-component.disabled
  div.zipcode-input-component__current_location {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Blinking border and shadow effect */
@keyframes blink {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 10px 5px rgba(255, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 1);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.7);
  }
}

.zipcode-component-highlight {
  animation: blink 1s infinite; /* Infinite blinking effect every 1 second */
}

.product-item-v2__call-for-best-price-link:hover {
  text-decoration: underline;
}

.product-item-v2__call-for-best-price-link {
  color: #c60c29;
  font-size: inherit !important;
}

.call-for-best-pricing-link {
  color: blue !important;
  white-space: nowrap !important;
  font-size: inherit !important;
}

.call-for-best-pricing-link:hover {
  text-decoration: underline !important;
}

.found-it-cheaper-text-color {
  color: blue;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: fit-content;
  /* background-color: black; */
  color: black;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%; /* Position above the text */
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid #05903f;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.product-item-v2_details-description .value {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* postal confirmation modal start */

.postal-confirmation-modal__backdrop {
  position: fixed !important;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  left: 0;
  top: 0;
  z-index: 9999;
}

#postal-confirmation-modal {
  position: absolute !important;
  /* display: none; */
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  background: #fff !important;
  padding: 50px !important;
  /* border-radius: 15px !important; */
  width: 90% !important;
  max-width: 650px !important;
  /* z-index: 101 !important; */
  box-shadow: 0 0 30px rgb(0 0 0 / 25%) !important;
}

.postal-confirmation-modal__content-wrapper {
  width: 100%;
  /* display:flex; */
  gap: 50px;
  position: relative;
}

.postal-confirmation-modal__close-button {
  width: 50px;
  height: 50px;
  /* background: red; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

#postal-confirmation-modal #myDropdown {
  margin: 0;
  display: inline-block;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  outline: none;
  width: 100%;
  max-width: 100% !important;
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
  #postal-confirmation-modal {
    width: 90%;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  #postal-confirmation-modal #myDropdown {
    min-width: auto;
    width: 100%;
  }
}

#postal-confirmation-modal .postal-confirmation-modal__close {
  position: absolute;
  display: none;
  width: 20px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#postal-confirmation-modal .error {
  color: red;
  transition: opacity ease-in-out;
  opacity: 0;
}

#postal-confirmation-modal .show {
  opacity: 1;
}

#postal-confirmation-modal #find-your-deal-button {
  margin-top: 15px;
  font-weight: 500 !important;
  font-size: 1.2em !important;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
  background-color: #c60c29;
  font-family: "Poppins", Sans-serif;
  color: #ffffff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #c60c29;
  border-radius: 6px 6px 6px 6px;
  padding: 15px 30px 15px 30px;
}

#postal-confirmation-modal #find-your-deal-button:disabled,
#postal-confirmation-modal #find-your-deal-button:disabled:hover {
  opacity: 0.7 !important;
}

.postal-confirmation-modal__title {
  font-weight: bold !important;
  color: black !important;
}

.postal-confirmation-modal__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.postal-confirmation-modal__content-text {
  font-size: 1.2em;
}

.postal-confirmation-modal__content-actions {
  display: flex;
  flex-direction: column;
}

.find-your-deal-button__loader {
  position: absolute;
  left: 5px;
  padding-top: 10px;
}

@media (max-width: 480px) {
  #postal-confirmation-modal {
    padding: 25px !important;
  }

  #postal-confirmation-modal h2 {
    font-size: 1.2em;
  }

  .postal-confirmation-modal__close-button svg {
    width: 15px;
    height: 15px;
  }

  .postal-confirmation-modal__content-text {
    font-size: 13px;
  }

  #postal-confirmation-modal #depotInput {
    padding: 0px !important;
    font-size: 13px;
  }

  .postal-confirmation-modal__content {
    /* display: flex; */
    /* flex-direction: column; */
    gap: 15px;
  }

  #postal-confirmation-modal .error {
    font-size: 12px;
    text-align: center;
  }

  #postal-confirmation-modal #find-your-deal-button {
    margin-top: 5px;
    padding: 10px !important;
    font-size: 13px !important;
  }
}
/* postal confirmation modal end */

/* #locationModal START */
/* Backdrop */
.browse-location-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.browse-location-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal content box */
.browse-location-modal .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 4px;
  padding: 2rem;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.browse-location-modal .modal-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.browse-location-modal .modal-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.browse-location-modal .modal-actions button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.browse-location-modal #useLocation {
  width: 100%;
  padding: 10px 15px !important;
  border-radius: 4px !important;
  background: #bd112a !important;
  border: 1px solid #bd112a !important;
  color: white !important;
  transition: all 0.125s ease-in-out;
}

.browse-location-modal #useLocation:hover {
  color: white !important;
  background: #da1936 !important;
  border: 1px solid #bd112a !important;
}

.browse-location-modal #keepBrowsing {
  border-radius: 4px;
  text-align: center;
  width: 100%;
  padding: 10px 15px !important;
  background: white !important;
  border: 1px solid #bd112a !important;
  color: #bd112a !important;
  transition: all 0.125s ease-in-out;
}

.browse-location-modal #keepBrowsing:hover {
  color: white !important;
  background: #da1936 !important;
  border: 1px solid #bd112a !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* #locationModal END */

.location-option input[type="checkbox"] {
  touch-action: manipulation;
}

.hidden {
  display: none !important;
}

.zw-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.zw-gallery-wrap .zw-gallery-submit {
  border: none;
  padding: 8px 15px !important;
  width: 100% !important;
  border-radius: 0px !important;
  position: relative;
  text-align: left !important;
}

.zw-gallery-wrap .zw-gallery-submit svg {
  --icon-color: white;
}

.zw-gallery-wrap .zw-gallery-submit:hover,
.zw-gallery-wrap .zw-gallery-submit:focus {
  border: none;
  padding: 8px 15px !important;
  width: 100% !important;
  border-radius: 0px !important;
  position: relative;
  text-align: left !important;
  background-color: #b70b25;
  color: white;
}

.zw-gallery-wrap .zw-gallery-location {
  border-radius: 0px;
  border: none;
  padding: 8px;
  text-align: center;
  background-color: #0f3d5e;
  display: flex;
  justify-content: center;
  cursor: pointer;
  color: yellow;
  text-decoration: underline;
}

.zw-gallery-wrap .zw-gallery-location:hover,
.zw-gallery-wrap .zw-gallery-location:focus {
  border-radius: 0px;
  border: none;
  padding: 8px;
  text-align: center;
  background-color: #0f3d5e;
  display: flex;
  justify-content: center;
  cursor: pointer;
  color: yellow;
  text-decoration: underline;
}

.zw-gallery-wrap .zip-input:disabled,
.zw-gallery-wrap .zw-gallery-submit:disabled,
.zw-gallery-wrap .zw-gallery-location:disabled {
  pointer-events: none;
  opacity: 0.7;
}

.mobile-only .zw-gallery-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
  width: 100%;
}

.mobile-only .zw-gallery-wrap .zip-widget {
  width: calc(100% - 138px);
}

.mobile-only .zw-gallery-wrap .zw-gallery-submit {
  width: 130px !important;
  min-width: 94px !important;
  text-align: center !important;
}

.mobile-only .zw-gallery-wrap .zw-gallery-submit svg {
  display: none;
}

.mobile-only .zw-gallery-wrap .zw-gallery-location {
  width: 100% !important;
}

.zw-gp-popup-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.zw-gp-popup-wrap input {
  position: relative;
  z-index: 3;
  outline: none;
  border: 2px solid white;
  border-radius: 5px;
}

.zw-gp-popup-submit {
  padding: 8px !important;
  color: white !important;
  border: none !important;
  background-color: #c60c29 !important;
  border-radius: 3px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zw-gp-popup-submit:hover,
.zw-gp-popup-submit:focus {
  padding: 8px !important;
  color: white !important;
  border: none !important;
  background-color: #9c091f !important;
}

.zw-gp-popup-submit:disabled {
  padding: 8px !important;
  color: white !important;
  border: none !important;
  background-color: #9c091f !important;
  opacity: 0.7;
}

.zw-gp-popup-wrap .ozw-submit__loader {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
}

.zw-gp-popup-location,
.zw-gp-popup-wrap .ozw-submit__icon {
  display: none;
}

.zw-gp-popup-wrap .zip-widget,
.zw-gp-popup-wrap .zw-gp-popup-submit {
  width: 100%;
}

.zw-gp-popup-wrap .ozw-submit__label {
  font-weight: 500 !important;
}

@media (max-width: 480px) {
  .zw-gp-popup-wrap * {
    font-size: 0.9em;
  }
  .zw-gp-popup-submit .ozw-submit__loader {
    width: 20px;
    height: 20px;
  }
}

.zw-gallery-submit .ozw-submit__icon {
  position: absolute;
  right: 15px;
  width: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.zip-widget {
  position: relative;
}

.ozw-suggestion-list li {
  padding: 0.5rem;
  cursor: pointer;
  color: #c60c29;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ozw-suggestion-list li:hover {
  background: #f0f0f0;
}

.ozw-suggestion-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
  display: none;
}

@media (max-width: 1200px) {
  .product-item-v2_price-wrap{
    flex-direction:column;
  }
}