/* product image block */
.product-image-detail-wrapper {
    display: flex;
    align-items: flex-start;
    padding-top: 24px;
    gap: 20px;
}
.product-thumbnail-img-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.thumbnail-img {
    border-radius: 12px;
    width: 90px;
    height: 90px;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}
.thumbnail-img.active-thumb {
    border: 4px solid #2AA466;
}
.thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-thumbnail {
    position: relative;
    display: flex;
    gap: 6px;
    margin-top: 16px;
    width: max-content;
}
.slider-arrows a img {
    height: auto;
    width: 26px;
}
.product-main-img {
    position: relative;
    width: 100%;
    margin: 0;
    max-width: 100%;
}
.product-heading h1.title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0;
    width: calc(100% - 40px);
    padding-right: 15px;
}
.product-sku, .product-stock, .ask-question-btn {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #454B54;
    position: relative;
    font-weight: 600;
}
.product-stock {
    color: #2AA466;
    font-weight: 700;
}
.product-stock.not_available {
    color: #F56262;
}
.product-price .product-line-through {
    text-decoration: line-through;
    color: #bfbfbf;
    font-size: 16px;
    padding-left: 12px;
}
.common-social-btn {
    display: flex;
    align-items: center;
    column-gap: 4px;
}
.product-share-btn {
    color: var(--blue);
    font-size: 13px;
    font-weight: 500;
}
.product-share-btn:hover {
    text-decoration: underline;
}
.common-social-txt {
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
}
.product-finance-icon-btn {
    display: flex;
    align-items: center;
    column-gap: 9px;
}
.product-finance-icon {
    height: auto;
    width: 19px;
}
.product-finance-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
}
.product-finance-more-icon-btn {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 9px 0;
}
.product-learn-more-btn {
    border: 1px solid #ccc;
    border-radius: 6px;
}
.product-learn-more-btn a {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    display: block;
}
.product-learn-more-btn .learn-more-modal{
    padding: 4px 23px;
}
/* end product details section */

/* start product desc spec tab section */


.common-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: var(--gray);
}
.product-desc {
    padding-bottom: 12px;
}
.product-manufacture {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: var(--black);
    text-transform: uppercase;
}
.product-item-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    color: var(--black);
    text-transform: uppercase;
}
.product-sample {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: var(--black);
    text-decoration: underline;
    padding: 16px 0 0px 0;
}
/* end product desc spec tab section */

/* start make offer popup model section */
    /* [Object] Modal
    * =============================== */
    .product-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    left: 0;
    text-align: left;
    background: rgb(0 0 0 / 67%);
    transition: opacity .25s ease;
}
.product-modal-heading {
    font-size: 40px;
    text-align: center;
}
    .modal__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    }
    .modal-state {
    display: none;
    }
    .modal-state:checked + .product-modal {
    opacity: 1;
    visibility: visible;
    }
    .modal-state:checked + .product-modal .modal__inner {
    top: 0;
    }
    .modal__inner {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    margin: auto;
    overflow: auto;
    background: #fff;
    border-radius: 5px;
    padding: 1em 2em;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .modal__close {
    position: absolute;
    right: 1em;
    top: 1em;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.modal__inner .product-modal-close {
    border: none;
    margin-top: 0;
    background: transparent;
    position: absolute;
    bottom: 14px;
    right: 14px;
}
.modal__inner .product-modal-close .btn {
    margin-top: 0;
    padding: 0 26px;
    font-size: 12px;
    height: 35px;
    line-height: 35px;
}
.product-desc-spec-tab-section .tab .modal-btn-open {
    padding: 4px 23px; 
}
.modal__close:after, .modal__close:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 18px;
    background: #000;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 5px;
}
.modal__close:before {
    transform: rotate(-45deg);
}
    
/* end make offer popup model section */

section.product-detail-section {
    padding: 32px 0 100px;
}
.product-detail-content-wrapper .product-sku:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #CDCFD4;
    right: -16px;
}
.sku-stock {
    display: flex;
    align-items: center;
    gap: 32px;
}
.product-price .sale-price {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.product-price-wrapper .price .regular-price-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.product-price .regular-price {
    font-size: 16px;
    line-height: 24px;
    text-decoration: line-through;
    color: #454B54;
    font-weight: 700;
}
.product-price .ribbon {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    background-color: #2AA466;
    border-radius: 4px;
    padding: 2px 5px;
}
.product-price-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 8px;
}
.product-cart-wrapper {
    border-radius: 3px;
}
.product-cart-wrapper .product-share-btn {
    width: 20%;
}
.product-cart-wrapper .product-share-icon-btn {
    border: 1px solid #ccc;
    border-radius: 3px;
    min-height: 46px;
    padding: 0;
}
.product-cart-wrapper .common-social-btn {
    display: block;
    padding: 13px;
    text-align: center;
    text-decoration: none !important;
}
.product-cart-wrapper .product-share-icon {
    position: relative;
    top: -2px;
}
.product-cart-wrapper span.product-share-btn {
    font-size: 14px;
    color: #000;
    font-weight: 300;
    text-decoration: none !important;
    padding-left: 20px;
    background-image: url(/assets/img/pro-share-icon.svg);
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 14px;
}
.product-cart-wrapper .product-cart-btn {
    width: calc(100% - 92px);
    cursor: not-allowed;
}
.product-cart-wrapper .product-share-btn {
    width: 92px;
}
.product-image-block {
    width: 44%;
    position: sticky;
    top: 20px;
}
.product-info-details {
    width: calc(56% - 20px);
}
.product-image-block .thumbnail-img custom_product_gallery {
    display: block;
    height: 100%;
    text-align: center;
    cursor: pointer;
}
.product-image-block .slider-main-img {
    padding-bottom: 100%;
    width: 100%;
    text-align: center;
}
.product-image-block .product-main-img img {
    width: 100%;
    height: 100%;
    margin-inline: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    margin: 0 auto;
    right: 0;
    border-radius: 32px;
    overflow: hidden;
    object-fit: cover;
}
.thumbnail-more-imgs {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
button.more-imgs-text {
    width: 100%;
    height: 100%;
    border: 0;
    background-color: rgba(0,0,0,.5);
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}
body main section.product-detail-section {
    border: 0;
}
section.product-description-sec {
    padding-top: 0;
}
section.product-description-sec .row {
    display: flex;
    gap: 35px;
}
.product-description-sec .details-block {
    width: 40%;
}
.product-description-sec .description-block {
    width: 60%;
}
.product-description-sec .tab-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 0;
    background-color: transparent;
    padding: 0 0 10px;
    border-bottom: 1px solid #ccc;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    cursor: pointer;
    color: var(--black);
}
ul.detail__custom-fields>li {
    padding-bottom: 14px;
    display: flex;
}
.detail__field-name {
    display: inline-block;
    font-weight: 600;
    width: 200px;
    padding-right: 10px;
    text-overflow: ellipsis;
}
.detail__field-value, .tab-content p {
    color: #646464;
}
section.testimonials {
    background-color: var(--blue);
}
.testimonials-heading {
    font-size: 32px;
    line-height: 44px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}
section.testimonials .row {
    padding: 35px 0 30px;
    gap: 60px;
}
.testimonials-block {
    text-align: center;
    color: #fff;
}
.testimonials-bottom-text {
    text-align: center;
    color: #fff;
}
.col.testimonials-block {
    flex: 1 1 33.33%;
}
.testimonial-text {
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
}
.star-icon {
    font-size: 18px;
}
img.add-to-cart-loader {
    height: 16px;
    background: none;
    margin-left: 7px;
    vertical-align: text-bottom;
}
.slick-slide img.add-to-cart-loader {
    display: none;
}
.description-block .tab-content p {
    margin-bottom: 10px;
}
.description-block .tab-content table tr td:first-child {
    padding-right: 10px;
}
.description-block .tab-content table tr {
    margin: 10px 0;
    display: flex;
}

.related-products-section {
    padding: 0;
    margin: 100px 0 80px;
}
.product-heading-slider-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    margin-inline: -10px;
    min-height: 60px;
    margin-bottom: 10px;
}
.related .product-heading {
    font-size: 28px;
    line-height: 32px;
    font-weight: 600;
}
.product-slider-arrows {
    display: flex;
    align-items: center;
    column-gap: 12px;
}
.related-products-section .slick-arrow {
    height: 60px;
    width: 60px;
    cursor: pointer;
    background-color: #F2F7EE;
    border-radius: 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s background-color;
    border: 0;
    outline: 0;
    font-size: 0;
    position: absolute;
    top: 0;
    right: 30px;
}
.related-products-section .slick-arrow img {
    height: auto;
    width: 8px;
}
.pro-card-products-box {
    padding: 0 10px;
}
.product-item-inner {
    padding: 20px;
    border: 1px solid #eeeeee;
    position: relative;
}
.description-block .tab-content table tr td strong {
    color: #000;
    font-weight: 600;
}
.description-block .tab-content table tr td {
    color: #646464;
}
/*fancybox*/
body .fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
  }
  body .fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
  }
  body .fancybox-thumbs__list {
    margin-inline: auto;
}
.row.pro-card-products-wrapper {
    display: block;
    position: initial;
}
.pro-card-products-wrapper .slick-track {
    margin: initial;
}
.related {
    position: relative;
}
.related-products-section .slick-arrow.slick-prev {
    right: 98px;
    background-image: url(../img/pro-slider-left-arrow.svg);
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center;
}
.related-products-section .slick-arrow.slick-prev:hover {
    background-image: url(../img/pro-slider-left-arrow-white.svg);
}
.related-products-section .slick-arrow.slick-next {
    background-image: url(../img/pro-slider-right-arrow.svg);
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center;
}
.related-products-section .slick-arrow.slick-next:hover {
    background-image: url(../img/pro-slider-right-arrow-white.svg);
}
.related-products-section .slick-arrow:hover {
    background-color: #2AA466;
}

/* popup */
.fancybox-content.popup-sec {
    padding: 30px;
    max-width: 650px;
    border-radius: 3px;
}
.popup-sec h2.popup-titel {
    font-size: 30px;
    margin-bottom: 14px;
}
.popup-sec .contact-form h5 {
    font-size: 18px;
    margin-bottom: 25px;
}
.popup-sec .info-wrapper-inner>.row {
    flex-wrap: wrap;
    margin: 0 -7.5px;
}
.popup-sec .overlay-input-text {
    position: relative;
    margin-top: 6px;
    padding: 0 7.5px;
    width: 100%;
    margin-bottom: 15px;
}
.popup-sec .overlay-input-text label {
    position: absolute;
    left: 13px;
    display: inline-block;
    background: var(--white);
    top: -8px;
    font-size: 12px;
    padding: 0 5px;
    color: #505050;
}
.popup-sec .overlay-input-text input, .popup-sec .overlay-input-text select, .popup-sec .overlay-input-text textarea {
    border: 1px solid #ababab;
    height: 38px;
    padding: 5px 12px;
    font-size: 15px;
    width: 100%;
    outline: 0;
    border-radius: 3px;
}
.popup-sec .btn {
    background: #174e77;
    border: 0;
    color: #fff;
    padding: 5px 18px;
    height: 38px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 0;
    font-size: 15px;
    text-transform: initial;
    line-height: 27px;
    margin-inline: auto;
    margin-top: 0;
}
.popup-sec .overlay-input-text textarea {
    min-height: 100px;
}
body .fancybox-slide {
    padding-inline: 14px;
}
div#product-enquiry.fancybox-content.popup-sec h2.popup-titel {
    margin-bottom: 20px;
} 
body .fancybox-slide--html .fancybox-close-small {
    padding: 8px;
}
body .fancybox-share {
    max-width: 100%;
}
.pro-card-products-wrapper img.add-to-cart-loader {
    height: 16px;
    background: none;
    margin-left: 7px;
    display: none;
    vertical-align: text-bottom;
}
.cwr_info {
    padding: 10px 0;
    border: 1px solid #e0e0e0;
    border-inline: 0;
    margin: 12px 0 12px;
}
.cwr_info span {
    font-size: 14px;
}
.cwr_info .title {
    font-weight: 600;
    width: 82px;
    display: inline-flex;
    justify-content: space-between;
    padding-right: 10px;
}
.cwr_info .details {
    font-weight: 300;
    width: calc(100% - 82px);
}
.cwr_info>div {
    display: flex;
}
.same-product-wrapper {
    display: flex;
    justify-content: space-between;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin-bottom: 5px;
    flex-direction: column;
}
.same-product-title {
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    background-color: #e7e7e7;
}
.same-product-item {
    padding: 8px 12px;
    display: flex;
    align-items: start;
    cursor: pointer;
    position: relative;
}
.same-product-wrapper .image {
    position: relative;
    text-align: center;
    width: 80px;
    height: 80px;
}
.same-product-wrapper .product-img {
    height: 60px;
    width: 60px;
    margin-right: 15px;
}
.same-product-wrapper .product-img img {
    height: 60px;
    max-width: 60px;
    display: block;
    margin: auto;
    object-fit: contain;
}
.same-product-wrapper .product-meta {
    flex: 1 1 calc(100% - 75px);
    padding-right: 35px;
    position: relative;
}
.same-product-wrapper .product-meta-title {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}
.same-product-wrapper .product-meta-price span {
    font-size: 14px;
    font-weight: 700;
}
.same-product-wrapper .condition_detail {
    font-size: 12px;
    background-size: 18px;
    background-position: left -1px;
    padding-left: 20px;
}
.same-product-wrapper .image img {
    width: auto;
    height: 100%;
    position: absolute;
    margin-inline: auto;
    left: 0;
    right: 0;
    top: 0;
}
.same-product-wrapper .title {
    width: calc(100% - 80px);
    padding: 5px 30px 5px 15px;
    line-height: 20px;
    font-weight: 400;
}
.pro-card-products-box .condition_detail {
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 27px;
    background-image: url(/assets/img/used-icon.svg);
    background-size: 22px;
    background-position: left -1px;
    background-repeat: no-repeat;
}
.pro-card-products-box .condition_detail.needs-repairs {
    background-image: url(/assets/img/repair-icon.svg);
    background-size: 18px;
    background-position: left -1px;
    padding-left: 24px;
}
.pro-card-products-box .condition_detail.for-parts-or-not-working {
    background-image: url(/assets/img/not-working-2.svg);
    background-size: 17px;
    background-position: left 0;
    padding-left: 24px;
}
.pro-card-products-box .condition_detail.new, .pro-card-products-box .condition_detail.new-other-see-details {
    background-image: url(/assets/img/new-icon.svg);
    background-size: 21px;
    background-position: left 0px;
    padding-left: 25px;
}
.pro-card-products-box .condition_detail.used {
    background-size: 18px;
    background-position: left 1px;
    padding-left: 24px;
}
.product-details .block-wrapper {
    margin-top: 32px;
}
.same-product-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: none;
}
.same-product-popup.active {
    display: block;
}
.same-product-popup-content {
    max-width: 715px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin-inline: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px 25px 25px;
    border-radius: 4px;
    width: 95%;
}
.same-product-popup .heading-2 {
    font-size: 22px;
    padding-bottom: 11px;
    border: 0;
    border-bottom: 1px solid #acacac;
    margin-bottom: 12px;
    line-height: 26px;
}
.product-item-wrapper {
    display: block;
    width: 100%;
    max-height: 385px;
    overflow: auto;
}
.same-product-popup .close-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 24px;
    height: 30px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
}
.same-product-popup-inner {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
}
.same-product-popup .same-product-item {
    padding: 10px 0;
    align-items: center;
    border-bottom: 1px solid #ccc;
    cursor: initial;
}
.same-product-popup .same-product-item:first-child {
    padding-top: 0;
}
.same-product-popup .same-product-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.same-product-popup .product-img {
    margin-right: 15px;
}
.same-product-popup .product-meta-title {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
}
.same-product-popup .product-meta-price span {
    font-size: 16px;
    font-weight: 600;
}
.same-product-popup .product-meta-price>span {
    margin: 2px 0 0;
    display: inline-block;
}
.same-product-popup .block-wrapper {
    display: flex;
}
.same-product-popup .product_condition_list {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}
.same-product-popup .product_condition_list:after {
    position: absolute;
    content: '';
    width: 2px;
    height: 12px;
    background: #a5a5a5;
    top: 50%;
    transform: translateY(-50%);
    right: -1px;
}
.same-product-popup .product_warranty_list span {
    font-size: 14px;
}
.product_warranty_list span.title {
    font-weight: 600;
}
.product_warranty_list .warranty_detail {
    font-weight: 400;
}
.same-product-popup .btn {
    background: #174e77;
    border: 0;
    color: #fff;
    padding: 4px 12px;
    height: 33px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 13px;
    text-transform: initial;
    line-height: 26px;
    margin: 0;
    transition: 0.2s all;
    vertical-align: bottom;
}
.same-product-popup .product-meta {
    flex: 1 1 calc(100% - 180px);
    padding-right: 10px;
}
.same-product-popup .btn-wrapper {
    width: 85px;
}
.cwr_info .region .details {
    padding: 0;
    background: no-repeat;
    font-weight: 300;
    width: calc(100% - 82px);
    font-size: 14px;
}
.cwr_info .region::after {
    display: none;
}
.cwr_info .region {
    padding: 0;
    margin: 0;
}
.same-product-popup .region .details {
    background-position: left 2px;
    padding-left: 21px;
    font-size: 14px;
    background-size: 15px;
}
.same-product-popup .region:after {
    width: 2px;
    height: 12px;
    background: #a5a5a5;
    top: 50%;
    transform: translateY(-50%);
    right: -1px;
}
.same-product-popup .region-and-condition {
    padding-bottom: 0;
}
.same-product-wrapper .region .details {
    background-position: left 1px;
    padding-left: 20px;
    font-size: 12px;
    background-size: 14px;
}
.same-product-wrapper .region:after {
    height: 14px;
    top: 5px;
}
.same-product-wrapper .region {
    padding-right: 7px;
    margin-right: 8px;
}
.same-product-wrapper .region-and-condition {
    padding: 0;
}
/* Same Product Second version */
.same-product-wrapper.second-version {
    border-radius: 0;
    border: 2px solid var(--blue);
    position: relative;
    padding-left: 3px;
}
.same-product-wrapper.second-version:after {
    position: absolute;
    content: '';
    width: 3px;
    background: var(--blue);
    height: 100%;
    left: 0;
}
.same-product-wrapper.second-version .same-product-title {
    border-bottom: 2px solid var(--blue);
    font-size: 16px;
    background-image: url(../img/same-product-icon.svg);
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: 11px center;
    padding: 9px 12px;
    padding-left: 40px;
    line-height: 19px;
}
.same-product-wrapper.second-version .product-meta-title {
    font-size: 15px;
}
.same-product-item .btn-blue {
    width: 35px;
    display: block;
    height: 100%;
}
.same-product-item .btn-blue {
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    background: var(--blue);
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.same-product-item .btn-blue:after {
    position: absolute;
    content: '';
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    width: 7px;
    height: 7px;
    transform: rotate(135deg);
    right: 10px;
    top: 8px;
}
.page-toast-msg.product-detail-toast-msg .toast-msg {
    margin: 0 !important;
    margin-bottom: 10px !important;
}
.product.ajax_cart_btn>span {
    padding-left: 30px;
    background-image: url(/assets/img/pro-cart-icon.svg);
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: 23px;
    position: relative;
}
/*similar products*/
.similar-products-wrapper {
    display: flex;
    background-color: #e7e7e7;
    border-radius: 3px;
    padding: 12px;
    border: 1px solid #cccccc;
}
.similar-products-wrapper .img-block {
    width: 90px;
}
.similar-products-wrapper .content-block {
    width: calc(100% - 90px);
    padding-left: 16px;
}
.similar-products-wrapper .btn {
    background-color: var(--green);
    border-radius: 3px;
    height: 32px;
    padding: 2px 10px;
    padding-right: 26px;
    line-height: 29px;
    margin: 0;
    transition: 0.3s all;
    background-image: url(/assets/img/double-arrow-icon.svg);
    background-repeat: no-repeat;
    background-position: 128px center;
    background-size: 11px;
}
.similar-products-wrapper .btn:hover {
    background-color: #588258;
}
.similar-products-wrapper .title {
    font-weight: 500;
    font-size: 17px;
    padding: 1px 0 10px;
}

/*similar products popup*/
.similar-products-popup {
    position: fixed;
    bottom: -910px;
    z-index: 999;
    background: #fff;
    left: 0;
    right: 0;
    width: 100%;
    transition: bottom 0.3s ease;
}
.similar-products-popup:before {
    position: absolute;
    content: '';
    top: -100px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.similar-products-popup h2.title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    padding: 30px 0 50px;
    position: relative;
}
.similar-products-popup .product-heading-slider-arrows {
    display: none;
}
.similar-products-popup .related-products-section {
    padding: 0;
}
.similar-products-popup h2.title:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 80px;
    height: 2px;
    background: #000;
    bottom: 30px;
    margin: 0 auto;
}
.similar-products-popup .related-products-section .slick-arrow {
    height: 36px;
    width: 36px;
    position: absolute;
    top: 0;
    right: -27px;
    top: 50%;
    transform: translateY(-50%);
}
.similar-products-popup .related-products-section .slick-arrow.slick-next {
    background-size: 22px;
}
.similar-products-popup .related-products-section .slick-arrow.slick-prev {
    right: inherit;
    background-size: 22px;
    left: -27px;
}
.similar-products-popup .row.pro-card-products-wrappers {
    display: block;
    position: initial;
    margin-inline: -10px;
}
.similar-products-popup .product-item-inner .img {
    padding-bottom: 68%;
}
.similar-products-popup .pro-card-products-box h3 {
    font-size: 13px;
    line-height: normal;
    margin: 14px 0 7px;
    height: 35px;
    -webkit-line-clamp: 2;
}
.similar-products-popup .product-item-inner {
    padding: 12px;
}
.similar-products-popup .region-and-condition {
    flex-wrap: wrap;
}
.similar-products-popup .pro-card-products-box h3 {
    font-size: 13px;
    line-height: normal;
    margin: 14px 0 10px;
    height: 35px;
    -webkit-line-clamp: 2;
}
.similar-products-popup .region-and-condition {
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 7px;
}
.similar-products-popup .region:after {
    display: none;
}
.similar-products-popup .region {
    position: relative;
    padding-right: 0;
    margin-right: 0;
}
.similar-products-popup .pro-card-products-box .condition_detail,.similar-products-popup .region .details {
    font-size: 14px;
}
.similar-products-popup .region .details {
    background-position: left 1px;
    padding-left: 18px;
    background-size: 14px;
}
.similar-products-popup .related-products-section .region .details {
    font-size: 13px;
}
.similar-products-popup .pro-card-products-box .condition_detail.new,.similar-products-popup .pro-card-products-box .condition_detail.new-other-see-details {
    background-size: 17px;
    background-position: -1px 1px;
    padding-left: 18px;
}
.similar-products-popup .pro-card-products-box span.price {
    font-size: 15px;
    padding-bottom: 10px;
}
.similar-products-popup .pro-card-products-box .line-through {
    padding-bottom: 0;
    font-size: 15px;
}
.similar-products-popup .pro-card-products-box .pro-card-btn {
    height: 32px;
    font-size: 12px;
    padding: 5px;
}
.similar-products-popup .pro-card-products-box .pro-card-btn span {
    font-size: 12px;
}
.similar-products-popup .pro-card-products-box span.ribbon {
    font-size: 10px;
    padding: 4px 6px;
    line-height: 10px;
}
.similar-products-popup .close-btn-wrapper {
    margin: 20px 0;
}
.similar-products-popup .close-btn {
    background-image: url(/assets/img/close-icon.svg);
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 14px;
}
.similar-products-popup .close-btn {
    background-image: url(/assets/img/close-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    width: 34px;
    height: 34px;
    border: 1px solid #666666;
    border-radius: 50px;
    opacity: .6;
    margin: 0 auto;
    cursor: pointer;
}
.similar-products-popup .close-btn:hover {
    opacity: 1;
}
.similar-products-popup-inner {
    padding: 0 10px;
}
.similar-products-popup.active {
    bottom: 0;
}
.similar-products-popup .pro-card-products-box .condition_detail.used {
    background-size: 19px;
    background-position: -2px 0;
    padding-left: 18px;
}
.similar-products-popup .pro-card-products-box .condition_detail.needs-repairs {
    background-size: 15px;
    background-position: left 1px;
    padding-left: 18px;
}
.similar-products-popup .pro-card-products-box .condition_detail.for-parts-or-not-working {
    background-size: 15px;
    background-position: left 2px;
    padding-left: 18px;
}

.similar-products-popup .close-btn-wrapper {
    margin: 14px 0;
}
.similar-products-popup .related {
    padding: 0 18px;
}
.similar-products-wrapper .img-block {
    width: 90px;
    position: relative;
    padding-top: 90px;
}
.similar-products-wrapper .img-block img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    width: auto;
}

.product-details-page .container {
    max-width: 1570px;
}
.breadcumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcumbs a, .breadcumbs span {
    font-size: 14px;
    line-height: 20px;
    color: #17181A;
}
.breadcumbs span {
    color: #AFB8CC;
    font-size: 13px;
}
.region-and-warranty {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.region-and-warranty .region .details {
    background-size: 20px;
    padding-left: 30px;
    font-size: 16px;
    color: #17181A;
}
.region span {
    line-height: 24px;
    font-weight: 600;
}
.warranty .details {
    background-image: url(/assets/img/warranty-icon.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: left center;
    padding: 2px 0 2px 30px;
    line-height: 24px;
    display: flex;
    align-items: center;
}
.price-with-btns {
    background-color: #F3F3F3;
    border-radius: 20px;
    padding: 24px;
}
.product-details-btn-wrapper .btn {
    padding: 8px 16px;
    height: 40px;
    margin: 0;
    font-size: 16px;
    gap: 8px;
    line-height: 24px;
    font-weight: 600;
}
.product-details-btn-wrapper .btn, .product-cart-btn .btn.download-flyer {
    background-color: #fff;
    border: 1px solid #fff;
    color: #454B54;
}
.product-details-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.product-cart-btn .btn {
    width: calc(50% - 8px);
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 16px;
}
.product-cart-btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.price-with-btns .btn-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 525px;
}
.product-details .border-box {
    border: 1px solid #F3F3F3;
    border-radius: 32px;
    padding: 24px;
    margin-bottom: 16px;
}
.border-box ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 22px 0 10px;
}
.description-wrapper ul {
    margin: 0 0 16px;
}
.border-box ul li {
    width: calc(50% - 8px);
}
.description-wrapper h3.title {
    margin-bottom: 25px;
}
.description-content * {
    font-weight: 400;
    color: #454B54;
}
.description-content b {
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}
.description-wrapper description-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 16px;
}
section.comment-wrapper {
    background-color: #F2F7EE;
    padding: 50px 30px;
    margin-top: 20px;
}
.comment-wrapper .faqs.product-directory-list {
    margin: 0;
}
.comment-wrapper .container {
    max-width: 1140px;
    background-color: #fff;
    border-radius: 48px;
    padding: 48px;
}
.comment-wrapper .faqs-wrapper {
    background-color: #F2F7EE;
    padding: 40px;
    border-radius: 32px;
    margin-bottom: 30px;
    border: 0;
}
.comment-wrapper .faqs .quections-wrapper {
    padding: 40px;
    border-radius: 32px;
}
/*pro-card-product*/
.pro-card-products-box {
    padding: 8px;
    position: relative;
    border-radius: 16px;
    background-color: #fff;
    transition: 0.3s all;
    border: 1px solid #F3F3F3;
    overflow: hidden;
}
.pro-card-products-box .media {
    position: relative;
}
.pro-card-products-box .media .img {
    position: relative;
    padding-bottom: 86%;
    text-align: center;
}
.pro-card-products-box .media .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    margin-inline: auto;
    left: 0;
    right: 0;
    top: 0;
    object-fit: cover;
    border-radius: 12px;
    vertical-align: bottom;
}
.slider-arrows {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    transform: translateY(-50%);
}
.slider-arrows span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 16px;
    font-size: 16px;
    color: #878D99;
    transition: 0.3s all;
    cursor: pointer;
}
.slider-arrows span.prev {
    margin-left: 8px;
}
.slider-arrows span.next {
    margin-right: 8px;
}
.slider-number {
    display: inline-block;
    background: #000;
    border-radius: 16px;
    padding: 0px 8px 1px;
    opacity: 60%;
    position: absolute;
    bottom: 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}
.slider-number span {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}
.slider-number .total-number {
    color: #CDCFD4;
}
.slider-number .separator {
    width: 10px;
    display: inline-flex;
    position: relative;
    margin: 0 1px;
}
.slider-number .separator:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #878D99;
    position: relative;
    top: -4px;
}
.pro-card-products-box h3 {
    font-size: 16px;
    line-height: 18px;
    color: #17181A;
    font-weight: 600;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 53px;
    margin: 10px 0 8px;
}
.pro-card-products-box .region-and-condition {
    padding-bottom: 8px;
}
.pro-card-products-box .region {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    line-height: 16px;
}
.pro-card-products-box .region .details {
    font-weight: 600;
    padding-left: 23px;
    display: inline-flex;
    background-size: 16px;
    line-height: 16px;
    background-position: left center;
}
.pro-card-products-box .region span.dot {
    display: inline-flex;
    align-items: center;
    padding: 0 7px;
    font-size: 13px;
    line-height: 16px;
}
.pro-card-products-box .region .region-address {
    font-size: 14px;
    font-weight: 600;
}
.pro-card-products-box .price-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-height: 26px;
}
.pro-card-products-box .price-main {
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    color: #17181A;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    row-gap: 8px;
    width: 100%;
}
.pro-card-products-box .line-through {
    text-decoration: line-through;
    display: inline;
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
}
.pro-card-products-box span.ribbon {
    background-color: #F2F7EE;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    color: #2AA466;
    font-weight: 500;
    padding: 3px 7px;
    border-radius: 4px;
    margin-left: auto;
}
.pro-card-btn.btn {
    margin-top: 5px;
    padding: 10px;
    background-color: #F2F7EE;
    color: #2AA466;
    border: 0;
    display: flex;
    justify-content: center;
}
.pro-card-btn.btn .icon {
    display: flex;
    align-items: center;
}
.pro-card-btn.btn .icon svg *, .pro-card-products-box .pro-card-btn.btn span, .ajax_cart_btn.cart_loader>div {
    color: #2AA466;
    transition: 0.3s all;
}
.pro-card-products-box .pro-card-btn.btn span, .ajax_cart_btn.cart_loader>div {
    text-transform: initial;
    font-size: 16px;
    font-weight: 500;
}
.pro-card-products-box:hover {
    box-shadow: 0 10px 24px -13px rgba(0,0,0,.42);
}
.pro-card-products-box:hover .pro-card-btn.btn, .slider-arrows span:hover {
    background-color: #2AA466;
}
.pro-card-products-box:hover .pro-card-btn.btn .icon svg *, .pro-card-products-box:hover .pro-card-btn.btn span {
    color: #fff;
} 
.product-details-main .slider-arrows span:hover svg path {
    fill: #fff;
    stroke: initial;
}
.slider-arrows span:hover svg path {
    stroke: #fff;
}
.product-cart-btn .btn.disable_btn {
    background-color: #ffffff !important;
    color: #CDCFD4 !important;
}
.product-cart-btn .btn.disable_btn:hover {
    color: #fff;
}
.product-details-btn-wrapper .btn:hover, .product-cart-btn .btn.download-flyer:hover {
    background-color: #fff;
    color: #2AA466;
    border-color: #fff;
}
.product-details-btn-wrapper .btn:hover svg path, .product-cart-btn .btn.download-flyer:hover svg path {
    fill: #2AA466;
}
.related-products-section .slick-slide {
    padding: 0 10px;
}
.related-products-section .slick-list {
    margin: 0 -10px;
    padding: 20px 0;
}
.description-content p {
    word-wrap: break-word;
    margin-bottom: 16px;
}
.product-cart-btn .btn.download-flyer {
    padding: 10px;
}
.product.cart-btn.btn:hover  svg .cls-1 {
    stroke: #2aa467;
}
.product-heading {
    display: flex;
    margin-bottom: 8px;
}

/*price chart*/
.price-chart-container {
    position: relative;
}
.price-chart-container .chart {
    display: flex;
    align-items: flex-end;
    height: 200px;
    margin-top: 20px;
}
.price-chart-container .bar {
    width: 16px;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}
.price-chart-container .bar.light-green { 
    background: #D7F2CE; 
}
.price-chart-container .bar.green { 
    background: #2AA466; 
}
.price-chart-container .bar.red { 
    background: #F56262; 
}
.price-chart-container .bar:hover .price-tooltip {
  opacity: 1;
}
.price-chart-container .price-tooltip {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: #D7F2CE;
    padding: 5px 10px;
    border-radius: 12px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    z-index: 2;
}
.price-chart-container .bar-block.today .price-tooltip {
    z-index: 1;
}
.price-chart-container .price-tooltip .price {
    color: #2AA466;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
    font-weight: 700;
}
.price-chart-container .price-tooltip .polygon-shape {
    width: 8px;
    height: 10px;
    background-color: #D7F2CE;
    bottom: -5px;
    top: initial;
    left: 50%;
    background-image: url(/assets/img/polygon-shape.svg);
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.price-chart-container .date-label {
    text-align: center;
    margin-top: 8px;
    width: 22px;
    height: 22px;
    font-size: 11px;
    line-height: 24px;
    color: #CDCFD4;
    font-weight: 700;
}
.price-chart-container .today-marker {
  position: absolute;
  top: -40px;
  font-size: 12px;
  text-align: center;
  color: #333;
}
.price-chart-container .today-line {
    position: absolute;
    bottom: 32px;
    right: -1px;
    width: 2px;
    height: 182px;
    background: #F3F3F3;
}
.price-chart-container .day-text {
    font-size: 12px;
    line-height: 10px;
    position: absolute;
    top: -56px;
    right: 6px;
    color: #878D99;
    font-weight: 600;
}
.price-chart-container .today-price {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 2px 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 12px;
}
.price-chart-container .text-block {
    font-size: 10px;
    color: green;
    position: absolute;
    left: 24px;
    bottom: 0;
}
.price-chart-container .text-block .icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #F2F7EE;
    border-radius: 2px;
    margin-bottom: 4px;
}
.price-chart-container .text-block .icon.decrease {
    background-color: #FCE5E2;
    transform: rotate(180deg);
}
.price-chart-container .text-block .icon.decrease svg path {
    fill: #BA5E5E;
}
.price-chart-container .text-block p {
    margin: 0;
    font-size: 10px;
    line-height: 12px;
    color: #878D99;
}
.price-chart-container .bar-block {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.price-chart-wrapper .title-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}
.price-chart-wrapper .info-icon {
    position: relative;
    cursor: pointer;
}
.new-popup-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.new-popup-content .item-block {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.new-popup-content .item-content {
    width: calc(100% - 28px);
}
.new-popup-content p {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}
.price-chart-wrapper {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 20px;
}
.bar-block.next-day .bar {
    display: none;
}
.price-chart-container .bar-block.today .date-label {
    background-color: #2AA466;
    color: #fff;
    border-radius: 80px;
}
.price-chart-container .bar-block.today .price-tooltip {
    opacity: 1;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .16);
}
.price-chart-container .bar-block.today .price-tooltip .polygon-shape {
    background-image: url(/assets/img/polygon-shape-white.svg);
}
.price-chart-container .bar-block.today .price-tooltip .price {
    color: #454B54;
}
.price-factors-content p {
    color: #878D99;
    margin-bottom: 16px;
}
.price-factors-content .icon-with-text {
    padding: 6px 12px;
    gap: 8px;
    display: inline-flex;
    border-radius: 40px;
    font-size: 16px;
    line-height: 20px;
    background-color: #F3F3F3;
    color: #878D99;
}
.price-factors-content .icon-with-text svg path {
    fill: #878D99;
}
.price-factors-content .icon-with-text.green {
    background-color: #F2F7EE;
    color: #2AA466;
}
.price-factors-content .icon-with-text.green svg path {
    fill: #2AA466;
}
.price-factors-content .icon-with-text.red {
    background-color: #FCE5E2;
    color: #BA5E5E;
}
.price-factors-content .icon-with-text.red svg path {
    fill: #BA5E5E;
}
.price-factors-content ul {
    margin: 0;
    gap: 8px;
}
.price-factors-content ul li {
    width: auto !important;
}
.price-chart-wrapper .info-icon:hover .new-popup {
    display: block;
    top: 25px;
}
.price-factors .new-popup-content ul {
    margin: 0;
    gap: 14px;
    list-style: none;
    padding: 0;
}
.price-factors .new-popup-content ul li {
    width: 100%;
}
.price-factors .item-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-factors .green .item-title-wrapper .item-title {
    color: #2AA466;
}
.price-factors .red .item-title-wrapper .item-title {
    color: #BA5E5E;
}
.price-factors .item-title-wrapper .item-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
.price-factors .item-block p {
    color: #454B54;
    margin: 0;
}
/*end price chart*/
body .region {
    align-items: flex-start;
    font-size: 16px;
    line-height: 24px;
    color: #17181A;
}
body .region .details {
    background-position: left 2px;
}
body .region span.dot {
    line-height: 24px;
}
.ribbon.onsale {
    background-color: #2AA466;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
}
.product-thumbnail-wrapper::-webkit-scrollbar-track, .product-thumbnail-wrapper::-webkit-scrollbar, .product-thumbnail-wrapper::-webkit-scrollbar-thumb {
    display: none;
}
.product-thumbnail-wrapper {
    width: 100%;
    overflow: auto;
}
.pro-card-products-condition {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}
.oos-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FCE5E2;
    font-size: 16px;
    line-height: 16px;
    color: #F56262;
    gap: 5px;
    padding: 4px;
}
.pro-card-products-condition .p-block {
    display: flex;
    align-items: center;
    padding: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.pro-card-products-condition .oos-badge-wrapper+.p-block {
    padding-top: 8px;
}
.pro-card-products-box .media .slider-arrows {
    opacity: 0;
    transition: 0.3s opacity;
}
.pro-card-products-box .media:hover .slider-arrows {
    opacity: 1;
}
.pro-card-products-box:hover .pro-card-btn.btn svg path {
    stroke: #FFF;
}
.product-details .p-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
}
.people-interested {
    display: flex;
    gap: 8px;
}
.people-interested p {
    margin: 0;
    color: #454B54;
    width: calc(100% - 32px);
    font-weight: 600;
}
.people-interested p .number {
    font-weight: 600;
}
.region-and-warranty .warranty,.created-date {
    display: flex;
    align-items: center;
    gap: 8px;
}
.region-and-warranty .warranty .text,.region-and-warranty .created-date .text {
    font-size: 16px;
    line-height: 24px;
    color: #17181A;
    font-weight: 600;
}
.r-and-w-wrapper {
    display: flex;
    column-gap: 20px;
    row-gap: 16px;
}
.r-and-w-wrapper .details-text {
    width: 50%;
}
.r-and-w-wrapper .details-text .heading-text {
    font-size: 20px;
    line-height: 26px;
    color: #17181A;
    margin-bottom: 4px;
}
.r-and-w-wrapper .details-text .text-value {
    font-size: 14px;
    line-height: 20px;
    color: #454B54;
}
.r-and-w-wrapper .region-and-warranty {
    width: calc(50% - 20px);
}
.product-price-wrapper .price {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    row-gap: 8px;
}
.price-dynamic-block {
    display: none;
}
.price-dynamic-block.show {
    display: block;
}
.product-cart-btn .btn.cart-btn:hover {
    background: #D7F2CE;
    color: #2AA466;
    border-color: #D7F2CE;
}
.product-cart-btn .btn.cart-btn:hover svg path {
    stroke: #2AA466;
}
.border-box.description-wrapper {
    margin-bottom: 0;
}
/*comment sec*/
.comment-sec-wrapper {
    padding: 48px 0;
    background-color: #F2F7EE;
}
.comment-wrapper {
    padding: 48px;
    background-color: #fff;
    max-width: 1080px;
    margin-inline: auto;
    border-radius: 48px;
}
.comment-wrapper .h2 {
    display: flex;
    align-items: center;
    font-size: 28px;
    line-height: 32px;
    color: #17181A;
    gap: 8px;
    margin-bottom: 32px;
}
.comment-wrapper .total-count {
    font-size: 15px;
    line-height: 20px;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2AA466;
    color: #fff;
    font-weight: 600;
}
.comment-wrapper .comment-block {
    margin: 32px 0;
}
.comment-wrapper .message-icon {
    width: 60px;
    height: 60px;
    background-color: #FFF1E9;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 32px;
    color: #F27830;
}
.comment-wrapper .comment-message-inner {
    width: calc(100% - 76px);
    padding-top: 16px;
}
.comment-wrapper .comment-message {
    display: flex;
    gap: 16px;
}
.comment-wrapper .user .name,.comment-wrapper .bot .name {
    font-size: 16px;
    line-height: 24px;
    color: #454B54;
    margin-bottom: 8px;
}
.comment-wrapper .bubble, .comment-wrapper .bubble span {
    color: #454B54;
    margin: 0;
}
.comment-wrapper .timestamp {
    font-size: 14px;
    line-height: 22px;
}
.comment-wrapper .comment-message.bot {
    margin-top: 16px;
    width: calc(100% - 65px);
    margin-left: auto;
    border-left: 1px solid #F3F3F3;
    padding: 0;
    padding-left: 24px;
    border-radius: 0;
    background: transparent;
}
.comment-wrapper .comment-message.user {
    margin: 0;
}
.comment-wrapper .bot  .message-icon {
    background-color: #F3F3F3;
}
.comment-input-block textarea::placeholder {
  color: #878D99;
  opacity: 1; 
}
.comment-input-block textarea::-ms-input-placeholder { 
  color: #878D99;
}
.comment-input-block {
    background-color: #F2F7EE;
    border-radius: 32px;
    padding: 40px;
}
.comment-input-block h3.title {
    font-size: 20px;
    line-height: 26px;
    color: #1A1A1A;
    font-weight: 700;
    margin-bottom: 8px;
}
.comment-input-block p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #454B54;
    margin: 0;
}
.comment-input-block textarea {
    background: #fff;
    border: 1px solid #CDCFD4;
    padding: 16px;
    border-radius: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
    min-height: 100px;
    vertical-align: bottom;
}
.comment-input-block .action-btn .btn {
    padding: 8px 16px;
    gap: 8px;
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
    height: 40px;
}
.comment-input-block .action-btn .btn:hover {
    background: #D7F2CE;
    color: #2AA466;
    border-color: #D7F2CE;   
}
.comment-input-block .action-btn .btn:hover svg path {
    fill: #2AA466;
}
.comment-message .user-name {
    display: none;
}
.comment-input-block.no-comments p {
    font-size: 16px;
    line-height: 24px;
}
/*end comment sec*/

.pro-card-products-box .price {
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    color: #17181A;
}
.pro-card-products-box .price-dynamic-block.show {
    display: flex;
}
/*newletter sec*/
.newsletter-section {
    padding: 0;
    margin-top: 80px;
}
.newsletter-section .container {
    max-width: 1800px;
}
.newsletter-inner {
    padding: 48px;
    background-color: #F3F3F3;
    border-radius: 24px;
}
.newsletter-email-wrapper {
    background-color: #fff;
    padding: 32px 48px;
    max-width: 888px;
    margin-inline: auto;
    border-radius: 24px;
    display: flex;
    gap: 32px;
    align-items: center;
}
.newsletter-email-wrapper .title-wrapper , .newsletter-email-wrapper .newsletter-email {
    width: calc(50% - 16px);
}
.newsletter-email-wrapper h2.title {
    font-size: 28px;
    line-height: 32px;
    color: #2AA466;
}
.newsletter-email-wrapper .title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.newsletter-email-wrapper p {
    margin-bottom: 0;
    color: #454B54;
    max-width: 174px;
    font-weight: 600;
}
.newsletter-email .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    height: 50px;
    border: 0;
    background-color: #F2F7EE;
    color: #2AA466;
    margin-top: 8px;
}
.newsletter-email .btn:hover {
    background-color: #2AA466;
    color: #fff;
}
/*end newletter sec*/

.product-image-block .wishlist-block-wrapper {
    display: none;
}
.pro-card-products-box .price {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: #17181A;
}

.new-popup-wrapper .help {
    width: 20px;
    height: 20px;
    border: 0;
    background: 0;
    box-shadow: none;
    outline: 0;
    padding: 0;
    background-image: url(/assets/image/help.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: bottom;
    cursor: pointer;
    display: flex;
}
.new-popup-wrapper .help.active {
    background-image: url(/assets/img/tool-tip-green.svg);
}
.new-popup-wrapper {
    position: relative;
}
.new-popup-wrapper:has(.new-popup.show):after {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9;
}
.new-popup-wrapper .new-popup {
    z-index: 99;
    top: 30px;
}
.product-enquiry-popup .fancy-input textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #cdcfd4;
    border-radius: 16px;
    outline: none;
    height: 56px;
    color: #17181a;
    box-sizing: border-box;
    font-weight: 500;
    min-height: 120px;
    vertical-align: bottom;
}
.product-enquiry-popup .row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.product-enquiry-popup .row .col {
    width: 100%;
}
.product-enquiry-popup .popup-inner {
    max-width: 460px;
    max-height: 90vh;
    overflow: hidden;
}
.product-enquiry-popup .popup-content {
    max-height: calc(90vh - 112px);
    overflow: auto;
}
.product-enquiry-popup .btn.submit-btn {
    border-color: #F2F7EE;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    justify-content: center;
    padding: 6px 10px;
    margin-top: 26px;
    height: 50px;
}
.product-enquiry-popup .btn.submit-btn:hover svg path {
    fill: #2AA466; 
}
.popup-main.product-enquiry-popup {
    opacity: initial;
    visibility: initial;
}
.price-factors .new-popup {
    width: 360px;
}
.item-title-wrapper_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*skeleton*/
.skeleton-product-thumbnail-img-wrapper {
    width: 44%;
}
.skeleton-product-main-img.skeleton-block {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 32px;
}
.skeleton-product-thumbnail.skeleton-block {
    margin-top: 16px;
    width: 100%;
    height: 90px;
    border-radius: 24px;
}
.skeleton-product-heading.skeleton-block {
    width: 100%;
    height: 80px;
    margin-bottom: 8px;
}
.skeleton-p-block.skeleton-block {
    width: 100%;
    height: 32px;
}
.skeleton-product-price-wrapper.skeleton-block {
    width: 300px;
    height: 40px;
    margin-bottom: 24px;
}
.skeleton-chart {
    display: flex;
    align-items: flex-end;
    height: 180px;
    margin-top: 20px;
    gap: 4px;
}
.skeleton-details-text.skeleton-block {
    width: 50%;
    height: 104px;
}
.skeleton-region-and-warranty {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(50% - 20px);
}
.skeleton-region, .skeleton-warranty, .skeleton-created-date {
    height: 24px;
}
.skeleton-category-block-text.skeleton-block {
    height: 20px;
    margin-top: 4px;
}
.skeleton-description-content {
    width: 100%;
}
.skeleton-description-heading.skeleton-block, .skeleton-description-heading_2.skeleton-block {
    width: 200px;
    height: 24px;
    margin-top: 24px;
    margin-bottom: 16px;
}
.skeleton-description-text.skeleton-block, .skeleton-description-text_2.skeleton-block {
    width: 100%;
    height: 84px;
}
.skeleton-description-text_2.skeleton-block {
    width: 90%;
}
/* new d r */
@media only screen and (max-width: 1770px) {
    .price-chart-wrapper .price-factors .new-popup {
        left: inherit;
        right: -18px;
    }
    .price-chart-wrapper .polygon-shape {
        right: 20px;
        left: initial;
    }
    .pro-card-products-box span.ribbon {
        margin-left: initial;
    }
}
@media only screen and (max-width: 1480px) {
    .price-chart-wrapper {
        grid-template-columns: 370px 1fr;
    }
}
@media only screen and (max-width: 1199px) {
    .price-chart-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .price-chart-wrapper .title-wrapper {
        margin-bottom: 16px;
    }
    .r-and-w-wrapper {
        flex-wrap: wrap;
    }
    .r-and-w-wrapper .details-text {
        width: 100%;
    }
    .r-and-w-wrapper .region-and-warranty {
        width: 100%;
        gap: 12px;
    }
    .skeleton-details-text.skeleton-block {
        width: 100%;
        height: 50px;
    }
    .skeleton-region-and-warranty {
        gap: 12px;
        width: 60%;
    }
    .skeleton-product-price-wrapper.skeleton-block {
        width: 260px;
    }
}
@media only screen and (max-width: 1023px) {
    section.product-detail-section {
        padding: 24px 0 32px;
    }
    .product-image-detail-wrapper {
        gap: 16px;
        padding-top: 32px;
    }
    .product-price .sale-price {
        font-size: 24px;
        line-height: 32px;
    }
    .product-heading h1.title {
        font-size: 24px;
        line-height: 32px;
    }
    .product-heading h1 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 8px;
    }
    .icon-with-text {
        gap: 15px;
    }
    .comment-wrapper .container {
        padding: 40px;
    }
    .comment-wrapper .faqs-wrapper, .comment-wrapper .faqs .quections-wrapper {
        padding: 35px;
    }
    section.comment-wrapper {
        padding: 45px 30px;
        margin: 0;
    }
    .related-products-section .slick-arrow {
        height: 46px;
        width: 46px;
        border-radius: 10px;
    }
    .related-products-section .slick-arrow.slick-prev {
        right: 84px;
    }
    .product-heading-slider-arrows {
        min-height: 46px;
        margin-bottom: 10px;
        padding: 0 8px;
        margin-inline: -8px;
    }
    .related-products-section .slick-list {
        margin: 0 -8px;
    }
    .related-products-section .slick-slide {
        padding: 0 8px;
    }
    .pro-card-products-box {
        padding: 8px;
    }
    .newsletter-inner {
        padding: 32px;
        border-radius: 40px;
    }
    .newsletter-email-wrapper {
        padding: 32px 40px;
        max-width: 100%;
    }
    .related-products-section {
        margin: 32px 0;
    }
    .newsletter-section {
        margin-top: 32px;
    }
    .price-factors .item-title-wrapper .item-title {
        font-size: 16px;
        line-height: 20px;
    }
}
/*1023 end*/

@media only screen and (max-width: 991px) {
    .product-cart-btn .btn {
        width: 100%;
    }
    .product-cart-btn {
        gap: 12px;
    }
    .border-box ul li {
        width: 100%;
    }
}
@media only screen and (max-width: 850px) {
    .product-cart-btn {
        flex-direction: column;
    }
    .product-cart-btn .btn {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .product-image-detail-wrapper {
        flex-direction: column;
        gap: 32px;
        padding-top: 24px;
    }
    .product-image-block .product-main-img {
        width: 100%;
    }
    .product-image-block .slider-main-img {
        position: initial;
        padding-bottom: 52%;
    }
    .related-products-item:nth-child(3) {
        display: none;
    }
    section.product-description-sec {
        padding-bottom: 40px;
    }
    section.testimonials {
        padding: 40px 0 45px;
    }
    section.testimonials .row {
        padding-top: 20px;
    }
    .same-product-popup-content {
        max-width: 100%;
    }
    .same-product-popup .product_condition_list:after {
        display: none;
    }
    .same-product-popup .product_condition_list {
        padding-right: 0;
        margin-right: 0;
    }
    .same-product-popup .block-wrapper {
        flex-direction: column;
    }

    body section.product-detail-section {
        padding: 24px 0 30px 0;
    }
    .product-image-block, .product-info-details {
        width: 100%;
    }
    .product-image-block .product-main-img img {
        width: 100%;
        height: 100%;
        border-radius: 16px;
        object-fit: cover;
    }
    .product-cart-btn .btn {
        height: 50px;
        line-height: 50px;
    }
    .price-with-btns .btn-wrapper {
        max-width: 100%;
    }
    .description-wrapper h3.title {
        margin-bottom: 20px;
    }
    section.comment-wrapper {
        padding: 22px 18px;
    }
    .comment-wrapper .container {
        padding: 22px;
    }
    .comment-wrapper .faqs-wrapper, .comment-wrapper .faqs .quections-wrapper {
        padding: 22px;
    }
    .comment-wrapper .faqs-wrapper {
        margin-bottom: 22px;
    }
    .related-products-section .slick-arrow {
        right: 20px;
    }
    .related-products-section .slick-arrow.slick-prev {
        right: 74px;
    }
    .pro-card-products-box h3 {
        margin: 10px 0;
    }
    .pro-card-products-box .price-main {
        font-size: 18px;
        line-height: 20px;
    }
    .pro-card-products-box .price-wrapper {
        gap: 6px;
    }
    .product-price-wrapper {
        margin-bottom: 20px;
    }
    .product-price .sale-price {
        font-size: 24px;
        line-height: 22px;
    }
    .price-factors-content p {
        margin-bottom: 8px;
    }
    .price-chart-wrapper .price-factors .new-popup {
        left: -18px;
        right: inherit;
    }
    .price-chart-wrapper .polygon-shape {
        right: inherit;
        left: 20px;
        display: none;
    }
    .newsletter-email-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-radius: 24px;
    }
    .newsletter-email-wrapper .title-wrapper, .newsletter-email-wrapper .newsletter-email {
        width: 100%;
    }

    .product-detail-content-wrapper .product-sku:after {
        right: -10px;
    }
    .product-sku, .product-stock, .ask-question-btn {
        font-size: 15px;
    }
    .sku-stock {
        gap: 18px;
    }
    .border-box ul li {
        width: 100%;
    }
    .border-box ul {
        margin: 16px 0 0;
    }
    .description-wrapper h3.title {
        margin-bottom: 18px;
    }
    .pro-card-products-box {
        padding: 10px;
    }
    .product-details .border-box {
        border: 0;
        border-radius: 0;
        padding: 0;
        margin-bottom: 32px;
    }
    .price-with-btns {
        padding: 16px;
    }
    .product-price .regular-price {
        font-size: 14px;
        line-height: 16px;
    }
    
    .product-heading h1.title {
        font-size: 20px;
        line-height: 24px;
        padding: 0;
    }
    .product-heading .wishlist-block-wrapper {
        display: none;
    }
    .product-heading {
        margin-bottom: 14px;
    }
    .product-heading h1.title {
        width: 100%;
    }
    .product-price-wrapper .price .regular-price-wrapper {
        flex-direction: row-reverse;
        gap: 4px;
    }
    .price-dynamic-block svg {
        width: 20px;
        height: 20px;
    }
    .comment-sec-wrapper {
        padding: 20px 0;
    }
    .comment-wrapper {
        padding: 0;
        border-radius: 0;
        background-color: initial;
    }
    .comment-wrapper .comment-message.bot {
        width: 100%;
        padding-left: 24px;
    }
    .related-products-section {
        margin: 40px 0;
    }
    .newsletter-section {
        margin-top: 40px;
    }
    .newsletter-section .container {
        padding: 0;
    }
    .newsletter-inner {
        padding: 32px 24px;
        border-radius: 32px;
    }
    .newsletter-email-wrapper .title-wrapper {
        gap: 8px;
    }
    .related .product-heading {
        padding-right: 110px;
        width: 100%;
        margin-bottom: 4px;
    }
    .comment-message .user-name {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .comment-wrapper .comment-message>.message-icon {
        display: none;
    }
    .comment-wrapper .comment-message-inner .name {
        display: none;
    }
    .comment-wrapper .comment-message {
        flex-direction: column;
        gap: 8px;
    }
    .comment-message .user-name .name {
        margin: 0;
    }
    .comment-wrapper .comment-message-inner {
        width: 100%;
        padding-top: 0;
    }
    .comment-wrapper .h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .comment-wrapper .comment-block {
        margin: 0 0 32px;
    }
    .comment-wrapper .comment-block:last-child {
        margin: 0;
    }
    .comment-sec-inner {
        padding: 24px;
        border-radius: 24px;
        background-color: #fff;
    }
    .comment-input-block {
        background-color: #fff;
        margin-top: 16px;
        padding: 24px;
    }
    .comment-input-block textarea {
        min-height: 200px;
    }
    .product-image-block .wishlist-block-wrapper {
        display: flex;
        position: absolute;
        right: 14px;
        top: 14px;
    }
    .product-image-block {
        position: relative;
    }
    .comment-wrapper .h2 {
        margin-bottom: 24px;
    }
    .price-chart-wrapper .title-wrapper {
        gap: 4px;
    }
    .price-chart-wrapper .price-factors .new-popup {
        width: 100%;
        left: 0;
        right: 0;
    }
    .new-popup-wrapper {
        position: inherit;
    }
    .price-factors {
        position: relative;
    }
    .price-chart-wrapper .polygon-shape {
        right: inherit;
        left: 125px;
    }
    .product-image-block {
        top: 0;
    }
    .popup-main.product-enquiry-popup .popup-title {
        font-size: 24px;
        line-height: 32px;
    }
    .popup-main.product-enquiry-popup .popup-wrapper {
        align-items: end;
    }
    .popup-main.product-enquiry-popup .popup-inner {
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
    }

    .skeleton-product-thumbnail-img-wrapper {
        width: 100%;
    }
    .skeleton-product-main-img.skeleton-block {
        width: 100%;
        padding-bottom: 52%;
        border-radius: 16px;
    }
    .skeleton-product-heading.skeleton-block {
        height: 48px;
        margin-bottom: 14px;
    }
    .skeleton-product-thumbnail.skeleton-block {
        border-radius: 12px;
    }
    .skeleton-product-price-wrapper.skeleton-block {
        height: 22px;
        margin-bottom: 20px;
    }
}
/* end 767px */
@media only screen and (max-width: 639px) {
    .same-product-popup .block-wrapper {
        flex-direction: column;
    }
    .same-product-popup .product_condition_list {
        padding: 0;
        margin: 0;
    }
    .same-product-popup .product_condition_list:after {
        display: none;
    }   
    .same-product-popup .product_warranty_list span.title {
        white-space: nowrap;
    }
    .same-product-popup .product_warranty_list span.warranty_detail {
        margin-left: 5px;
    }
    .same-product-popup .product_warranty_list span,.same-product-popup .product_warranty_list {
        line-height: 16px;
    }
    body .fancybox-share {
        max-width: 100%;
        width: 95%;
        padding: 30px 15px;
    }
    body .fancybox-share h1 + p {
        display: flex;
        flex-direction: column;
    }
}
/* end 639px */
@media only screen and (max-width: 479px) {
    .fancybox-content.popup-sec {
        padding: 30px 14px;
    }
    .popup-sec h2.popup-titel {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .popup-sec .contact-form h5 {
        font-size: 16px;
        margin-bottom: 22px;
    }
    body .fancybox-share {
        padding: 30px 14px;
    }
    body .fancybox-share h1 {
        font-size: 26px;
    }
    .same-product-popup .heading-2 {
        font-size: 20px;
    }
    .same-product-popup-content {
        padding: 30px 15px 15px;
    }
    .same-product-popup .heading-2 {
        font-size: 20px;
    }
    .same-product-popup .same-product-item {
        flex-wrap: wrap;
        position: relative;
        align-items: flex-start;
    }
    .same-product-popup .product-meta {
        flex: 1 1 calc(100% - 75px);
        padding-right: 0;
    }
    .same-product-popup .btn-wrapper {
        width: 84px;
        margin-top: 8px;
        margin-left: 75px;
    }
    .same-product-popup .product-meta-title {
        font-size: 15px;
        line-height: 18px;
    }
    .same-product-popup .product-meta-price span {
        font-size: 14px;
    }
    .same-product-popup .product-meta-price>span {
        margin: 5px 0 0;
    }
    .same-product-popup .btn {
        padding: 4px 10px;
        height: 32px;
        font-size: 13px;
        line-height: 24px;
    }
    .same-product-popup .region-and-condition {
        flex-direction: column;
    }
    .same-product-popup .region {
        padding: 0;
        margin: 0;
    }
    .same-product-popup .region:after {
        display: none;
    }
    .same-product-wrapper .region-and-condition {
        flex-direction: column;
        margin-top: 3px;
    }
    .same-product-wrapper .region:after {
        display: none;
    }
    .same-product-wrapper.second-version {
        border-width: 1px;
        padding-left: 2px;
    }
    .same-product-wrapper.second-version .same-product-title {
        border-width: 1px;
        font-size: 14px;
        line-height: 16px;
        background-position: 10px center;
        background-size: 18px;
        padding-left: 37px;
    }
    .same-product-wrapper.second-version:after {
        width: 2px;
    }
    .same-product-item {
        padding: 6px 6px;
    }
    .same-product-wrapper .product-img {
        height: 50px;
        width: 50px;
        margin-right: 8px;
    }
    .same-product-wrapper .product-img img {
        height: 100%;
    }
    .same-product-wrapper .product-meta {
        flex: 1 1 calc(100% - 58px);
        padding-right: 25px;
    }
    .same-product-wrapper.second-version .product-meta-title {
        font-size: 14px;
    }
    .same-product-wrapper .region {
        padding-right: 0;
        margin-right: 0;
        line-height: 12px;
    }
    .same-product-wrapper .region .details {
        background-position: left 1px;
        padding-left: 17px;
        font-size: 11px;
        background-size: 12px;
    }
    .same-product-wrapper .condition_detail {
        font-size: 11px;
        background-size: 15px;
        background-position: left -1px;
        padding-left: 17px;
    }
    .same-product-item .btn-blue {
        width: 20px;
        height: 20px;
        right: 6px;
    }
    .same-product-item .btn-blue:after {
        width: 5px;
        height: 5px;
        right: 7px;
        top: 6px;
    }
    .similar-products-wrapper .title {
        padding: 0 0 10px;
    }
    .similar-products-popup .pro-card-products-box .region-and-condition {
        padding-bottom: 10px;
        gap: 0;
    }
    .pro-card-products-box .region-and-condition {
        padding-bottom: 10px;
    }
    .similar-products-popup h2.title {
        font-size: 20px;
        padding: 20px 0 32px;
    }
    .similar-products-popup h2.title:after {
        bottom: 20px;
    }
    .product-details-btn-wrapper {
        flex-direction: column;
    }
    .product-details-btn-wrapper .btn {
        justify-content: center;
    }
    .product-cart-btn {
        gap: 12px;
    }
    .price-with-btns .btn-wrapper {
        gap: 24px;
    }
    .comment-input-block .action-btn .btn {
        width: 100%;
        justify-content: center;
    }
    .comment-input-block .action-btn .btn:hover {
        background: #F2F7EE;
        color: #2AA466;
        border-color: #F2F7EE;
    }
    .product-image-block .slider-main-img {
        padding-bottom: 320px;
    }
    .pro-card-products-box h3 {
        display: block;
    }
    .related .product-heading {
        margin-bottom: 0;
    }
    .product-heading-slider-arrows {
        margin-bottom: 24px;
    }
    .related-products-section .slick-list {
        padding: 0;
    }
    .skeleton-product-main-img.skeleton-block {
        padding-bottom: 320px;
    }
    .skeleton-product-price-wrapper.skeleton-block {
        width: 100%;
    }
    .skeleton-region-and-warranty {
        gap: 12px;
        width: 100%;
    }
}
/* end 479px */
@media only screen and (max-width: 374px) {
    .same-product-popup .heading-2 {
        font-size: 20px;
        line-height: 24px;
    }
    .similar-products-wrapper .title {
        font-size: 15px;
    }
    .similar-products-wrapper .img-block {
        width: 70px;
    }
    .similar-products-wrapper .content-block {
        width: calc(100% - 70px);
    }
    .similar-products-wrapper .img-block {
        width: 70px;
        padding-top: 70px;
    }
    .price-with-btns {
        padding: 18px;
    }
    .thumbnail-img {
        width: 80px;
        height: 80px;
    }
    .related-products-section .slick-arrow {
        height: 42px;
        width: 42px;
        border-radius: 10px;
    }
    .related-products-section .slick-arrow.slick-prev {
        right: 70px;
    }
    .product-image-block .slider-main-img {
        padding-bottom: 300px;
    }
    .related .product-heading {
        font-size: 24px;
    }

    .price-chart-container .bar {
        width: 12px;
    }
    .price-chart-container .date-label {
        margin-top: 5px;
        width: 18px;
        height: 18px;
        font-size: 9px;
        line-height: 18px;
    }
    .price-chart-container .today-line {
        height: calc(100% - 29px);
    }
    .price-chart-container .text-block {
        left: 19px;
    }

    .skeleton-product-main-img.skeleton-block {
        padding-bottom: 300px;
    }
    .skeleton-product-thumbnail.skeleton-block {
        height: 80px;
    }
}
/* end 374px */

/* end media */



@media only screen and (min-width: 1024px) {
    .fancybox-slide--image .fancybox-content {
        zoom: 1.2;
    }
}


