@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --nude: #F1EADC;
    --black: #121212;
    --dark: #282828;
    --text-dark: #333333;
    --red: #C33439;
    --bg: #fff;
    --yellow: #ffc631;
    --green: #6802D3;
    --grey: #9C9C9C;
    --white: white;
    --light-grey: #C0C2C5;
}
.form-sec{
    background: var(--light-grey);
}
*{
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}
#full-stars-example-two {
    /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
    /* make hover effect work properly in IE */
    /* hide radio inputs */
    /* hide 'none' input from screenreaders */
    /* set icon padding and size */
    /* set default star color */
    /* if any input is checked, make its following siblings grey */
    /* make all stars orange on rating group hover */
    /* make hovered input's following siblings grey on hover */
}
#full-stars-example-two .rating-group {
    display: inline-flex;
}
#full-stars-example-two .rating__icon {
    pointer-events: none;
}
#full-stars-example-two .rating__input {
    position: absolute !important;
    left: -9999px !important;
}
#full-stars-example-two .rating__input--none {
    display: none;
}
#full-stars-example-two .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 2rem;
}
#full-stars-example-two .rating__icon--star {
    color: var(--green);
}
#full-stars-example-two .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
}
#full-stars-example-two .rating-group:hover .rating__label .rating__icon--star {
    color: var(--green);
}
.rating {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.rating__star {
    color: var(--green);
    margin-right: 4px;
    display: flex;
    position: relative;
    width: 15px;
    height: 15px;
    font-size: 1rem;
}
#full-stars-example-two .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
}
body {
    background-color: var(--bg);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
section{
    padding: 60px 0;
}
.min-sec {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
input{
    background: transparent;
    border: 0px;
    border-bottom: 1px solid var(--black);
    transition: all .3s linear;
    width: 100%;
    border-radius: 0px;
}
input:focus{
    border-color: var(--green);
    box-shadow: none;
    outline: none;
}
.block-checkbox.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none
}

.block-checkbox .custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 2em;
    height: 2em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(128,128,128,.726);
    border-radius: 0;
    margin-right: .5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    background-color: var(--white);
    cursor: pointer
}
.custom-checkbox {
    z-index: -1;
    opacity: 0
}
.block-checkbox .custom-checkbox:checked+label::before {
    border-color: rgba(128,128,128,.726);
    background-color: var(--green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='white' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
}

.custom-checkbox:not(:disabled):active+label::before {
    background-color: var(--black)
}

.custom-checkbox:focus+label::before {
    box-shadow: rgba(0,0,0,.35) 0 5px 15px
}

.pity input::-webkit-outer-spin-button,
.pity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.pity input {
    width: 80px;
    border-color: black;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
}
.sizes, .colors{
    display: flex;
}
.size input, .color input{
    display: none;
}
.cart-item{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 15px;
}
.size label{
    cursor: pointer;
    transition: all .3s ease-in-out;
    margin-right: 5px;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    font-weight: 600;
    justify-content: center;
    text-transform: uppercase;
    align-items: center;
    border: 2px solid black;
}
.cart-size{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.color label, .item-color{
    cursor: pointer;
    transition: all .3s ease-in-out;
    margin-right: 5px;
    padding: 5px;
    width: 30px;
    height: 30px;
    color: transparent;
    display: flex;
    border: 2px solid black;
}
.size label:hover{
    transition: all .3s ease-in-out;

    border: 2px solid var(--green);
    color: var(--green);
}
.footer-logo{
    width: 100%;
}
.color label:hover{
    transition: all .3s ease-in-out;

    border: 2px solid var(--green);

}
.color input:checked + label{
    border-radius: 50%;
    border: 2px solid attr(data-color);
}
.size input:checked + label{
   background: var(--green);
    color: white;
    border-radius: 50%;
    border: 2px solid var(--green);
}
.pity a {
    font-weight: 600;
    border: 2px solid black;
    font-size: 18px;
    padding: 0 5px;
    cursor: pointer;
}

.page-title{
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
}
.section-title{
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
}
.item-title{
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
}
.item-price{
    color: var(--grey);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
}
.middle-text{
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
}
.advantages svg{
    height: 78px;
}
.section-subtitle{
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
}
.main-title{
    font-size: 55px;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
}
.main-subtitle{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 28px */
    letter-spacing: 0.4px;
}
.pity-2 a, .pity-2 input{
    font-size: 24px;
}
.btn{
    padding: 22px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    background: var(--green);
    color: var(--white);
    border: 1px solid var(--green);
    transition: all .2s linear;
    width: 100%;
    border-radius: 25px;
}
.btn:hover{
    transition: all .2s linear;
    background: transparent;
    color: var(--green);
}
.btn.stroke:hover{
    transition: all .2s linear;
    background: rgba(104, 2, 211, 0.64);
    color: var(--white);
}
.cat-min-section span{
    position: relative;

}
.cat-min-section span::after{
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    bottom: -1px;
    left: 0;
    transition: all .2s linear;
    background: var(--green);
}
.cat-min-section:hover span::after{
    width: 100%;
    transition: all .2s linear;
}
.btn.stroke{
    background: transparent;
    color: var(--green);
}

.first-section{
    position: relative;
}
.first-section::after{
    width: 45%;
    position: absolute;
    top: -50%;
    right: 0;
    height: 150%;
    background: var(--nude);
    content: '';
    z-index: -1;
}

.noUi-target {
    width: 100%;
    height: 7px
}

.noUi-base {
    width: 100%;
    height: 5px
}

.noUi-connect {
    background-color: var(--green);
    height: 105%
}
.noUi-handle:after, .noUi-handle:before {
    display: none;
}
.noUi-handle {
    border: none;
    border-radius: 10px;
    background: var(--green);
    box-shadow: none
}

.noUi-horizontal .noUi-handle {
    width: 14px;
    height: 14px;
    right: -3px;
    top: -5px
}
.img-2, .img-3{
    position: absolute;
    transform: translate(-50%, -50%);
}
.img-2{
    top: 20%;
}
.img-3{
    bottom: -250px;
    left: 0;
}
.first-section .container{
    z-index: 3;
}
header{
    z-index: 1021!important;
    padding: 20px 0;
    transition: all .1s linear;

}
header.bg{
    background: white;
    padding: 20px 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
a{
    color: var(--black);
    text-decoration: none;
}
a:hover{
    color: var(--green);
}
.pity-2 input {
    width: 80px;
    border-color: transparent;
    border-left: none;
    border-right: none;
    font-weight: 700
}
.full-price-block{
    background: #F1EADC;
    height: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pity-2 a {
    cursor: pointer;
    border-color: transparent;
    font-weight: 700;
    font-size: 18px
}
.item-card{
    text-align: center;
}
.img-buffer{
    position: relative;
    display: block;
}
.img-2, .img-3{
    width: 200px;
}
.img-buffer::after{
    transition: all .3s ease-in-out;
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/Vector2.svg) center no-repeat, rgba(104, 2, 211, 0.64);
    opacity: 0;
}
.img-buffer:hover::after{
    transition: all .3s ease-in-out;
    opacity: 1;
}
.page-link {
    outline: 0;
    position: relative;
    display: block;
    font-style: normal;
    font-size: 12px;
    line-height: 14px;
    color: var(--green);
    background-color: #fff;
    border: unset;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background: var(--green);
    border-color: transparent
}

.pagination .page-item {
    margin-left: 15px;
    padding: 5px;
    transition: .3s ease-in-out
}
.nav-menu a{
    margin-left: 45px;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    color: var(--black);
    transition: all .2s linear;
}
.nav-menu a:hover{
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    color: var(--green);
    transition: all .2s linear;
}
footer{
    background: var(--nude);
}
.w-fit{
    width: max-content;
}
.bars{
    display: none;
}
.links{
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}
.pit-minus span, .pit-plus span{
    font-size: 32px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.links li{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.links span{
    color: var(--grey);
}
.links li + li::before{
    content: '';
    width: 15px;
    height: 1px;
    background: var(--black);
    display: inline-block;
    border-radius: 4px;
    margin: 0 8px;
}
.cat-min-section{
    padding: 2px 0;
}
.basket-btn{
    position: relative;
}
.col-fav,.col-buy, .item-basket-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 500;
    background: var(--green);
    color: white;

}
.btn-fav  svg path{
    transition: all .2s linear;
}
.btn-fav.active-btn-fav svg path{
    stroke: var(--green);
    fill: var(--green);
    transition: all .2s linear;
}

/*.cat-min-section{*/
/*    width: 100%;*/
/*    border: 1px solid var(--black);*/
/*    padding: 15px 30px;*/
/*    margin-bottom: 8px;*/

/*}*/
/*.title-min-section{*/
/*    font-size: 18px;*/
/*    font-weight: 600;*/
/*}*/
.feedback {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    border-radius: 0px;
    background: #fff;
}
.splide__arrow--prev {
    left: -1em;
}
.splide__arrow--next {
    right: -1em;
}
@media(max-width: 992px){
    .img-2, .img-3{
        display: none;
    }
    .footer-logo{
        width: 50%;
    }
    footer .nav-menu{
        text-align: center  ;
        display: flex;
        flex-direction: column;
    }
    footer .nav-menu a{
        margin: 0;
        margin-bottom: 10px;
    }
    header{
        background: white;
        padding: 20px 0px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .page-title{
        font-size: 3.5rem;
    }
    .bars {
        position: relative;
        width: 15px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }
    .bars {
        z-index: 9999999
    }
    .bars span {
        transition: .3s;
        width: 20px;
        height: 2px;
        content: '';
        background-color: var(--black)
    }

    body.show-menu .bars span:first-child {
        position: absolute;
        transform: rotate(45deg) translateY(10px);
        background-color: var(--green);
        width: 45px
    }

    body.show-menu .bars span:nth-child(2) {
        opacity: 0
    }

    body.show-menu .bars span:nth-child(3) {
        position: absolute;
        transform: rotate(-45deg) translateY(100%) translateX(-10px);
        background-color: var(--green);
        width: 43px
    }
    .main-title{
        font-size: 40px;
    }
    .menu-toggle{
        transition: all .2s linear;
    }
    body.show-menu .menu-toggle{
        transform: rotate(90deg);
        transition: all .2s linear;
    }
    .phone-link{
        font-size: 16px;
    }
    section{
        padding: 30px 0;
    }
    header .nav-menu{
        position: fixed;
        background: white;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transform: translateX(-150%);
        transition: all .2s linear;
    }
    body.show-menu header .nav-menu{
        transform: translateX(0%);
        transition: all .2s linear;
    }
    header .nav-menu a{
        text-transform: uppercase;
        font-size: 2rem;
        margin: 0;
        margin-bottom: 30px;
    }
    section{
        overflow: hidden;
    }

}