@media (max-width: 480px){.product-tile__name{max-height: 50px;}}
/*Таблица в описании DELTA*/


/**/

/*баннер 10% при первом заказе*/
.new-buyer-banner {
            background-image: url(/images/13259038341.jpg);
            width: 100%;
            height: 380px;
        }
        
        .new-buyer-banner h1 {
            padding-top: 45px;
            padding-left: 30px;
            margin: 0;

            font-size: 72px;
            color: #e72969;
            font-weight: bold;
        }

        .new-buyer-banner h2 {
            padding-left: 30px;
            padding-top: 35px;
            margin: 0;
            font-size: 55px;
            color: #ffffff;
            font-weight: bold;
        }
        .new-buyer-banner h2:nth-child(3) {
            color: #ffe17e;
        }

        .new-buyer-banner button {
            margin: 35px 30px 0px 30px;
            width: 90%;
            height: 76px;
            border-radius: 35px;

            color: #001935;
            font-size: 39px;
            background: #ffffff;
            font-weight: bold;
            
            opacity: 85%;
        }
        .new-buyer-banner button:hover {
            opacity: 100%;
        }

        .new-buyer-banner p {
            margin-top: 10px;
            margin-left: 30px;

            font-size: 20px;
            color: #ffffff;
            opacity: 50%;
        }
        
        @media (max-width: 600px) {
            .new-buyer-banner {
                background-image: url(/images/13259038341.jpg);
                width: 100%;
                height: 100%;
            }
            
            .new-buyer-banner h1 {
                padding: 10px 10px;
    
                font-size: 40px;
                color: #e72969;
                font-weight: bold;
            }
    
            .new-buyer-banner h2 {
                padding: 5px 10px;
                
                font-size: 20px;
                color: #ffffff;
                font-weight: bold;
            }
            .new-buyer-banner h2:nth-child(3) {
                color: #ffe17e;
            }
    
            .new-buyer-banner button {
                width: 60%;
                height: auto;
                margin-top: 10px;
                border-radius: 35px;
                box-sizing: content-box;
                line-height: 1.5em;
    
                color: #001935;
                font-size: 19px;
                background: #ffffff;
                font-weight: bold;
                
                opacity: 85%;
            }
            .new-buyer-banner button:hover {
                opacity: 100%;
            }
    
            .new-buyer-banner p {
                margin-left: 10px;
    
                font-size: 11px;
                color: #ffffff;
                opacity: 50%;
            }
        }

/*Характеристики товаров в каталоге*/
.listfeatures.features { 
    font-size: 12px !important;
}
.listfeatures.features {
    padding: 5px;
}
.listfeatures.features .name{ 
    max-width: 250px;
}

.listfeatures.features .value { 
    max-width: 100px;
}
.listfeatures.features .value .listfeatures-values{ 
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis;
}


/*наши работы новые в карточке товара*/
    .card-our-works {
        position: relative;
        width: fit-content;
        display: inline-block;
        height: fit-content;
        margin: 0px 5px;
    }
    .card-our-works__front {
        z-index: 1;
        position: relative;
        text-align: center;
    }
    .card-our-works__back {
        font-size: 25px;
        text-align: center;
        line-height: 35px;
        position: absolute;
        z-index: 0;
        top: 0;
        padding-top: 10px;
        color: #fff;
        height: 93%;
        width: 100%;
        transition: 0.2s;
        cursor: pointer;
    }
    .card-our-works:hover .card-our-works__back {
        z-index: 2;
        backdrop-filter: blur(3px);
    }