.seo_block.seotext::-webkit-scrollbar {
    display: none;
    width: 0px;
    background: transparent;
}

.seo_block.seotext::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
}

.seo_block.seotext::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: var(--primary-color);
}

.seotext {
    max-height: 300px;
    padding: 8px 100px;
}

.seotext .accordion__block {
    border-radius: 8px;
    margin-bottom: 12px;
}

.accordion__block>span {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #7D7D7E;
    border-bottom: 2px solid #7D7D7E;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.accordion__block.active>span {
    background: #7D7D7E !important;
}

.seo_block .accordion__block.active>span {
    background-color: #7D7D7E;
    transform: rotate(-135deg);
    top: 25px;
}

.site-footer-info {
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.site-footer-info .block-heading {
    margin-top: 0;
}

.site-footer-info .accordion__block {
    background: #fff;
    padding: 15px 32px 15px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
}

.seotext:not(.seo_block) {
    max-height: 140px; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
    
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.seotext:not(.seo_block)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff 100%);
    pointer-events: none;
    transition: opacity 0.3s;
}

.seotext:not(.seo_block).opened {
    max-height: 2000px;
}

.seotext:not(.seo_block).opened::after {
    opacity: 0;
    pointer-events: none;
}

.seotext:not(.seo_block).short-text {
    max-height: none;
}

.seotext:not(.seo_block).short-text::after {
    display: none;
}

.seo-btn-toggle {
    display: block;
    width: fit-content;
    margin: -10px auto 30px auto;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px dashed var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    position: relative;
}

.seo-btn-toggle:hover {
    border-bottom-style: solid;
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .cont.seotext {
        padding: 0 15px;
    }

    .testiblock .block-heading {
        padding: 0 15px 8px;
    }

    .slick-initialized .review-card.slick-slide {
        margin: 0 15px 15px !important;
    }

    .site-footer-info {
        padding: 20px 0;
    }

    .product-grid-static {
        padding: 0 10px;
    }

    .testiblock .slick-prev.slick-arrow,
    .testiblock .slick-next.slick-arrow,
    .testiblock .slick-slider::after {
        margin-right: 12px;
    }

}