ul.thumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.thumbs h5,
ul.thumbs .h5{
    margin-bottom: 0;
}
ul.thumbs h5 a,
ul.thumbs .h5 a{
    color: #212122;
    font-size: 14px;
    font-weight: 900;
    line-height: 18.576px;
    text-transform: uppercase;
}
.filer_button,
.filters-reset,
.filters .close{
    display: none;
}
.filters .close{
    width: 20px;
    height: 20px;
    background: url("img/close.svg") no-repeat;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
}

.dl--prodict__modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active .dialog-background{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #15B8AE;
    opacity: 0.5;
}

.dl--prodict__modal .dialog-window{
    padding: 20px;
    border: 1px solid #15B8AE;
    width: 100%;
    max-width: 540px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.dl--prodict__modal .dialog-close{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 32px;
    line-height: 0.7;
    color: #15B8AE;
    transition: .3s all ease-in-out;
}

.dl--prodict__modal .dialog-close:hover{
    color: red;
}

.dl--prodict__modal #product-image,
.dl--prodict__modal .top_features{
    display: none;
}

.dl--prodict__modal .skus{
    list-style: none;
    padding: 0;
    background: #e7f6f5;
    margin: unset;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.dl--prodict__modal .skus li{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    height: 51px;
    padding: 0 5px;
    text-align: center;
}

.dl--prodict__modal .skus li input[type="radio"]{
    display: none;
}

.dl--prodict__modal .skus li span{
    color: #212122;
    font-size: 13.509px;
    font-style: normal;
    font-weight: 400;
}

.dl--prodict__modal .skus li .nal,
.dl--prodict__modal .skus li .price{
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #15B8AE 0%, #13837C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.dl--prodict__modal .skus li .qty {
    position: relative;
    height: 33px;
    display: inline-block;
    margin: auto;
}

.dl--prodict__modal .skus li .qty .plus{
    right: 0;
}

.dl--prodict__modal .skus li .qty .minus{
    left: 0;
}

.dl--prodict__modal .skus li .qty .plus,
.dl--prodict__modal .skus li .qty .minus{
    color: #14ACA2;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 33px;
    height: 33px;
    text-align: center;
    cursor: pointer;
    line-height: 33px;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
}

.dl--prodict__modal .skus li input[name="quantity"] {
    width: 108px;
    height: 33px;
    border: 1px solid #CACDCD;
    background: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
}

.dl--prodict__modal .skus li input[name="quantity"].error{
    border-color: red;
}

.dl--prodict__modal .add2cart{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.dl--prodict__modal .add2cart .price{
    color: #14ACA2;
    font-size: 18px;
    font-weight: 900;
}

.dl--prodict__modal .add2cart button[type="submit"]{
    width: 196px;
    height: 53px;
    background: linear-gradient(180deg, #15B8AE 0%, #13837C 100%);
    position: relative;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-indent: 20px;
    text-align: left;
}

.dl--prodict__modal .add2cart i{
    width: 17px;
    height: 17px;
    display: block;
    position: absolute;
    right: 17px;
    top: 18px;
    background: url(img/add_cart.svg) no-repeat;
    background-size: contain;
}

.dl--prodict__modal .add2cart button[type="submit"] i{
    display: none;
}

.dl--succes{
    position: absolute;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    top: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    font-size: 24px;
    color: #14ACA2;
    font-weight: 700;
}

@media screen and (max-width: 600px){
    .dl--prodict__modal .skus,
    .dl--prodict__modal .dialog-window{
        padding: unset;
    }

    .dl--prodict__modal #cart-form-dialog{
        overflow: auto;
        max-height: 80vh;
    }

    .dl--prodict__modal #cart-form-dialog p.summary{
        padding: 20px 10px 0;
    }

    .dl--prodict__modal .add2cart{
        padding: 0 10px 20px;
    }

    .dl--prodict__modal .dialog-close{
        top: -30px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        background-color: #fff;
    }

    .dl--succes{
        font-size: 18px;
        padding: 0 10px;
    }
}