/* Шрифты */
@font-face {
    font-family: "Raleway";
    font-weight: 400;
    font-style: normal;
    src: url("/css/fonts/Raleway-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Raleway";
    font-weight: 500;
    font-style: normal;
    src: url("/css/fonts/Raleway-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Raleway";
    font-weight: 600;
    font-style: normal;
    src: url("/css/fonts/Raleway-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Raleway";
    font-weight: 700;
    font-style: normal;
    src: url("/css/fonts/Raleway-Bold.ttf") format("truetype");
}



/* Компоненты */
body{
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    line-height: 1.3;
    font-variant-numeric: lining-nums;
}


.splash{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    z-index: 30000;
    /*background-color: #fbfbfb;*/
    /*background: rgba(255, 255, 255, 0.95);*/
    /*backdrop-filter: blur(12px);*/
    background-color: #fff;

    display: grid;
    place-items: center;
}

.splash img{

}

h1{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.1;
}

h2{
    font-size: 16px;
    padding: 0;
    margin: 0 0 20px;
    line-height: 1.1;
}


.container-fluid{
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.container{
    max-width: 1228px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}


.container330{
    max-width: 330px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.container600{
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}


.container420{
    max-width: 420px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}


.container900{
    max-width: 900px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.container800{
    max-width: 800px;
    margin: 0 auto;
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
}

input,button,textarea,select{
    outline: none;
    font-family: 'Raleway', sans-serif;
}


.for-desktop{
    display: block;
}
.for-mobile{
    display: none !important;
}
.display-none{
    display: none;
}

.display-flex{
    display: flex;
}

.dn{
    display: none;
}

.right{
    text-align: right;
}

.alert{
    background-color: green;
    color: #fff;
    font-size: 17px;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.alert-danger{
    background-color: red;
}


.center{
    text-align: center;
}
.green{
    color: green;
}
.bold{
    font-weight: 600;
}
strong{
    font-weight: 600;
}

.required label:after{
    content: "*";
    color: red;
    font-size: 18px;
    position: relative;
    top: 5px;
    left: 4px;
}


.icon{
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.red{
    color: #DE3327 !important;
}

*{
    -webkit-tap-highlight-color: transparent;
}


.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;

}

.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;

}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.grid-centered{
    align-items: center;
}


table {
    width: 100% !important;
    margin-bottom: 20px;
    border: 1px solid #006EB7;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.2;
    overflow: auto;
    border-radius: 10px;

}
table th {
    font-weight: 600;
    padding: 8px;
    background: #F6F9FE;
    border: 1px solid #00B0F6;
    text-align: left;
}
table td {
    border: 1px solid #00B0F6;
    padding: 8px;
}



/* АДМИНКА */
#adminka{
    background-color: #6900C6;
    color: #fff;
    padding: 8px 20px;
    /*border-radius: 0 0 10px 10px;*/
    display: flex;
    justify-content: space-between;
}

#adminka ul{
    margin: 0;
    padding: 0;
}
#adminka li{
    display: inline-block;
    margin-right: 10px;
}

#adminka a{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}






.fd{
    display: block;
}
.fm{
    display: none;
}



.required label:after{
    content: "*";
    color: red;
    font-size: 18px;
    position: relative;
    top: 5px;
    left: 4px;
}


/* Модальное окно */
.modal-wrapper{
    overflow: auto;

    z-index: 2000;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0, 0, 0, 0.6);
    display: grid;
    align-items: center;
    justify-content: center;

    opacity: 0;
}
.modal{
    background-color: #fff;
    min-width: 800px;
    max-width: 800px;

    max-height: 80%;
    overflow: auto;
    position: relative;
    border-radius: 16px;
    box-sizing: border-box;

    padding: 30px;
}
.modal-close{
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    padding: 5px;

    transition: 0.2s;
}
.modal-close svg{
    display: block;
}

.modal-close:hover svg path{
    stroke: red;
    transition: 0.2s;
}

/* СЛАЙДЕР */
.slider{
    overflow: hidden;
    position: relative;
}




/* Форма */
.form-control{
    border: 2px solid #999;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    box-sizing: border-box;
    font-variant-numeric: lining-nums;
}
.control-label{
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.form-group{
    margin-bottom: 25px;
}

.admin-page .btn{
    font-size: 18px;
}




/* ЗАГРУЗКА ИЗОБРАЖЕНИЙ */
.file-input{
    margin-top: 30px;
    margin-bottom: 40px;
}
.file-input .field-content-image{
    position: relative;
    padding: 40px;
    text-align: center;

    border: 2px dashed #ccc;
    border-radius: 10px;
    transition: 0.1s;
}
.file-input .field-content-image:hover{
    border: 2px solid #999;
}
.file-input .control-label{
    margin-bottom: 0;
}

.file-input #content-image{
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
}
.added-image{
    width: 120px;
    /*height: 120px;*/
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    cursor: move;

    position: relative;
}
.shost{
    opacity: 0.5;
}
.selected{
    background-color: green;
}

.loading{
    background-color: #f2f2f2;
    width: 120px;
    height: 120px;
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 20px 0;
    background-image: url("/images/load.svg");
    background-repeat: no-repeat;


}


.context-menu{
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 5px;
    right: 5px;

    border-radius: 4px;
    transition: 0.2s;
}
.context-menu a{
    display: block;
    padding: 4px;
}
.context-menu img{
    display: block;
}


.added-image:hover .context-menu{
    opacity: 1;
}



.btn {
    background-color: #00B0F6;
    text-decoration: none;
    color: #fff;
    padding: 12px 40px;
    border-radius: 86px;
    transition: 0.2s;
    position: relative;
    top: 0;
    display: inline-block;
    border: none;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;
}

.btn:hover{
    background-color: #0079db;
}





/* HEADER */
.header{
    background: linear-gradient(135deg, #00b0f6 0%, #0079db 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
}
.header-inner{
    padding-top: 22px;
    padding-bottom: 22px;
    color: #fff;

    display: flex;
    align-items: center;
}


.logo{

}
.logo img{
    display: block;
}

.catalog-link{
    display: flex;
    flex: none;
    margin-left: 32px;
}
.catalog-link a{
    color: #fff;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 13px 16px;
    text-decoration: none;
    
    transition: 0.2s;
}

.catalog-link a:hover{
    background-color: #0079db;
}


.search-block{
    margin-left: 30px;
    margin-right: 30px;

    background-color: #fff;
    border-radius: 16px;

    padding: 16px 24px;

    width: 100%;

    position: relative;
}

.s-wrap{
    display: flex;
    align-items: center;
}

.search-icon{
    margin-right: 12px;
}
.search-input{
    font-size: 17px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    padding: 0;
    border: none;
    font-variant-numeric: lining-nums;

    width: 100%;
}
.search-input::placeholder{
    color: #ACB0B9;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;

}



#autocomplete-list{
    max-height: 350px;
    overflow-y: auto;
    position: absolute;
    background: #fff;
    display: none;
    z-index: 999;
    color: #000;

    left: 0;
    right: 0;
    top: 70px;

    border-radius: 16px;
    padding: 20px 20px;

    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);

    -ms-overflow-style: none;
    scrollbar-width: none;
}



#autocomplete-list::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#ac-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 20px;
}


.search-item{
    /*padding: 4px;*/
    /*cursor: pointer;*/
}

.search-item .product-title{
    margin-bottom: 10px;
}




.navi-block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 4px;
}
.navi-item {
    text-align: center;
}
.navi-item a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    border-radius: 10px;

    display: block;
    padding: 3px 10px;
    position: relative;
}

.navi-item a:hover{
    background-color: #0079db;
}

.counter{
    font-family: Arial, sans-serif;
    background-color: #00B0F6;
    position: absolute;
    top: -2px;
    right: 19px;
    font-size: 11px;
    color: #fff;

    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 50px;
    overflow: hidden;
}

.navi-item-icon{
    margin-bottom: 3px;
}

.main-container{
    padding-top: 100px;
}

main{

}

.link{
    color: #00B0F6;
    transition: 0.2s;
    text-decoration: none;
}
.link:hover{
    color: #0079db;
    text-decoration: underline;
}

.catalog-links{
    padding-top: 32px;
    padding-bottom: 30px;
}
.catalog-links ul{
    margin: 0;
    padding: 0;
}
.catalog-links li{
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}
.catalog-links li:last-child{
    margin-right: 0;
}
.catalog-links a{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    
    transition: 0.2s;
}
.catalog-links a:hover{
    color: #00B0F6;
}


.main-slider{
    overflow: hidden;

    margin-bottom: 40px;

}
.swiper-wrapper{
    align-items: stretch;
}
.swiper-pagination{
    position: relative;
    bottom: 0 !important;
    margin-top: 5px;
}

.swiper-pagination-bullet{
    background-color: #E2E6E9;
    width: 6px;
    height: 6px;
    opacity: 1;
    border-radius: 8px;
    transition: 0.2s;

}

.swiper-pagination-bullet:hover{
    background: #00B0F6;
}

.swiper-pagination-bullet-active{
    background: #00B0F6;
    width: 24px;
}

.swiper-slide{
    height: auto;


}
.swiper-slide img{
    display: block;
    width: 100%;
    border-radius: 16px;
}


.video-wrap{
    overflow: hidden;
    aspect-ratio: 1/1;
    text-align: center;
}
.video{
    height: 100%;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
}


.products{
    margin-bottom: 60px;
}
.products-grid{
    display: grid;
    //grid-template-columns: repeat(auto-fit, minmax(188px, 2fr));
    grid-template-columns: repeat(6, 1fr);

     /* расстояние между блоками по всем направлениям */
    grid-column-gap: 20px;
    grid-row-gap: 30px;

    justify-content: center; /* чтобы сетка была по центру, если есть свободное пространство */
    justify-content: space-between; /* равномерное распределение по ширине */
}
.product {

    min-width: 130px;

    box-sizing: border-box;
}


.product-image{
    margin-bottom: 10px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.filters{
    margin-bottom: 20px;
}


#sort-select{
    background-color: #F6F9FE;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}


.fav{

    position: absolute;
    top: 2px;
    right: 3px;

    width: 25px;
    height: 25px;

    cursor: pointer;

    opacity: 0.4;
    transition: 0.2s;

    background-image: url("/images/icons/fav.svg");
    background-position: center center;
    background-repeat: no-repeat;
}
.fav:hover{
    opacity: 1;

}
.active-fav{
    background-image: url("/images/icons/unfav.svg");
    opacity: 1;
}

.product-category{
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
}

.product-title{
    margin-bottom: 6px;
}
.product-title a{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.product-title a:hover{
    color: #00B0F6;
}


.product-rating{
    display: flex;
    align-items: center;
}
.product-rating img{
    margin-right: 3px;
}


.no-photo{

    width: 100%;
    height: 100%;
    text-align: center;

    background-color: #F6F9FE;
    display: grid;
    align-items: center;
}
.no-photo img{
    margin-left: auto;
    margin-right: auto;
}

.rating{
    font-size: 12px;
    font-weight: 400;
    margin-right: 2px;
}

.reviews-count{
    color: #ACB0B9;
    font-size: 10px;
    font-weight: 400;
}


.product-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-prices{
    display: flex;
    align-items: center;
}
.product-price{
    font-weight: 600;
    font-size: 14px;
    margin-right: 8px;
}
.product-old-price{
    text-decoration: line-through;
    text-decoration-color: #D6D6D6;
    color: #D6D6D6;
    font-size: 12px;
}

.product-addtocart{
    background-color: #00B0F6;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.product-addtocart img{
    display: block;
}

.product-addtocart:hover{
    background-color: #0079db;
}

.active-cart{
    background-color: green;
}
.active-cart:hover{
    background-color: #006700;
}



.page{

    margin-top: 24px;
    padding-bottom: 50px;
}
.page-title{
    margin-top: 30px;
    font-size: 28px;
}


.back{

}
.back a{
    color: #ACB0B9;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
    margin-left: 5px;
}
.back a:hover{
    color: #00B0F6;
    margin-left: 0;
}
.back svg{
    vertical-align: middle;
    margin-right: 3px;
}
.back-ic{
    stroke: #ACB0B9;
    transition: 0.2s;
}


.back a:hover .back-ic{
    stroke: #00B0F6;
}



.footer{
    background-color: #F6F9FE;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-flex{
    display: flex;
}
.footer-block-1{
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.footer-block-2{
    width: 100%;
}
.footer-block-2-flex{
    display: flex;
    justify-content: space-between;
}
.fb-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fb{

    width: 250px;
}
.fb ul{
    margin: 0;
    padding: 0;
}
.fb li{
    list-style: none;
    margin-bottom: 13px;
}
.fb li:last-child{
    margin-bottom: 0;
}
.fb li a{
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s;
}
.fb li a:hover{
    color: #007aff;
    padding-left: 7px;
}

.for-partners{
    padding: 18px 26px;
}


.q{
    color: red;
    font-size: 18px;
    align-items: center;
}
.q-note{
    margin-top: 10px;
    font-size: 11px;
    color: #999;
    line-height: 1.2;

    max-width: 200px;

}
.q-note .red{

    font-weight: bold;
    vertical-align: middle;
    display: inline-block;
}


.dev a{
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}
.dev a:hover{
    color: #000;
}

.dev-img{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    opacity: 0.2;
    transition: 0.2s;
    width: 200px;
    display: block;
}
.dev-img:hover{
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
    opacity: 1;
}



.footer-block-3{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.copyright{
    font-size: 14px;
}




.categories{}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(188px, 2fr));
    gap: 20px;
    justify-content: center;
    justify-content: space-between;
}

.category{
    background-color: #F6F9FE;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.category-title{
    padding: 20px;
}
.category-title a{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}


.category-img{
    width: 100%;
}
.category-img img{
    width: 100%;
    height: 100%;
}

.category:hover .category-title a{
    color: #00B0F6;
}

.categories-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(188px, 2fr));
    gap: 20px; /* расстояние между блоками по всем направлениям */
    justify-content: center; /* чтобы сетка была по центру, если есть свободное пространство */
    justify-content: space-between; /* равномерное распределение по ширине */
}

.page-desc{
    margin-top: 40px;
}
.page-desc p{

}


.pp-flex{
    display: flex;
    margin-top: 30px;

    margin-bottom: 40px;
}
.pp-block-1{
    width: 50%;
    flex: 1;
    margin-right: 20px;
    aspect-ratio: 1 / 1;
}
.pp-block-2{
    flex: 1;
}

#lz-box img{
    border-radius: 16px;
}


.p-cat a{
    color: #000;
    transition: 0.2s;
    text-decoration: none;
}

.p-cat a:hover{
    color: #00B0F6;
}


.product-title{
    margin-bottom: 20px;
}


.volume{
    margin-bottom: 20px;
}
.volume-label{
    margin-bottom: 10px;
}

.vbuts{
    display: flex;
    margin-bottom: 10px;

}
.vbut{


    margin-right: 12px;
    user-select: none;

    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;

    text-align: center;
}
.vbut:hover{
    /*color: #fff;*/

}

.vbut:hover .v-img{
    border-color: #0079db;
}

.v-img{
    border: 1px solid #E2E6E9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}
.v-img img{
    width: 56px;
}


.active-vbut{

    color: #00B0F6;
    border-color: #00B0F6;
}

.active-vbut .v-img{
    border-color: #00B0F6;

}

.v-val{
    font-size: 14px;
    font-weight: 500;
}

.active-vbut .v-val{
    font-weight: bold;
}

.v-note{
    font-size: 11px;
    color: #ccc;
}





.open-product-prices{
    margin-bottom: 24px;
}
.open-product-prices .product-price{
    font-size: 28px;
}
.open-product-prices .product-old-price{
    font-size: 16px;
}


.bye-block{
    display: flex;
    margin-bottom: 24px;
}
.bye-now{
    flex: 1;
    margin-right: 5px;
}
.bye-now a{
    color: #00B0F6;
    background-color: #D6F2FE;
    text-align: center;
    width: 100%;
    font-weight: 600;
    padding: 17px 10px;
}
.bye-now a:hover{
    color: #fff;
}


.in-cart{
    flex: 1;
    margin-left: 5px;

    transition: 0.2s;
}
.add-to-cart-op{
    max-width: 330px;
}
.in-cart a{
    width: 100%;
    text-align: center;
    font-weight: 600;

    padding: 17px 10px;
}


.product-desc{
    border-radius: 16px;
    background-color: #F6F9FE;
    padding: 20px;
    margin-bottom: 24px;
}

.p-label{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}


.product-reviews{
    border-radius: 16px;
    background-color: #F6F9FE;
    padding: 20px;
    margin-bottom: 24px;
}



.pr-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-rat{
    font-weight: 600;
    font-size: 16px;
}
.p-rat .icon{
    margin-right: 5px;
}

.revs-count{
    color: #ACB0B9;
    margin-left: 6px;
    font-weight: 400;
    font-size: 14px;
}


.pr-flex .review{
    margin-right: 12px;
}
.pr-flex .review:last-child{
    margin-right: 0;
}

.review{
    background-color: #fff;
    border-radius: 16px;
    padding: 12px;

}

.product-reviews .review{
    width: 100%;
    box-sizing: border-box;
}


.review-author{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}
.review-text{
    margin-bottom: 12px;
}
.review-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-star{
    font-size: 12px;
    align-items: center;
}
.review-star img{
    vertical-align: middle;
    display: inline-block;
    position: relative;
    top: -2px;
    margin-right: 1px;
}
.review-date{
    color: #ACB0B9;
    font-size: 12px;
    font-weight: 400;
}


.pr-bottom{
    margin-top: 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pr-bottom a{



    color: #00B0F6;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.similar{}
.similar h2{
    font-size: 20px;
}




.user-flex{
    display: flex;
    margin-top: 30px;
}
.user-block-1{
    width: 292px;
    flex: none;
    margin-right: 124px;
}

.user-block-1 h1{
    margin-top: 0;
    font-size: 28px;
}

.user-block-2{
    width: 100%;
}

.un-block{
    margin-bottom: 8px;
}
.un-block a{
    background-color: #F6F9FD;
    padding: 20px 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #F6F9FD;

    transition: 0.2s;
}
.un-block a svg{
    display: block;
}

.un-block a:hover{
    color: #00B0F6;
    border: 2px solid #00B0F6;
}
.un-block a:hover svg path{
    stroke: #00B0F6;
}

.un-logout-block{
    margin-top: 20px;
}
.un-logout-block a{
    color: red;
}


.user-mtd{
    background-color: #F6F9FD;
    padding: 20px 16px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.3;

    border: 2px solid #F6F9FD;

}

.active-un-block a{
    color: #00B0F6;
    border: 2px solid #00B0F6;
}

.active-un-block a svg path{
    stroke: #00B0F6;
}


.sign-block{
    max-width: 343px;

    background-color: #F6F9FE;
    margin: 120px auto;

    padding: 32px;
    box-sizing: border-box;
    border-radius: 16px;
}

.form-label{

}
.sign-form-label{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}
.sign-form-input .form-control{
    text-align: center;
    font-weight: 500;
    font-family: Raleway,'sans-serif';
    font-variant-numeric: lining-nums;
    border: none;
    background-color: #fff;
    padding: 18px;
    /*font-size: 16px;*/
    border: 1px solid #00B0F6;
}

#signform-phone{
    font-family: monospace;
}

.sign-form-input .form-control::placeholder{
    /*color: #C6CDD3;*/
}
.sign-form-error{
    color: red;
}

.form-legal{
    font-size: 12px;
    font-weight: 400;
    color: #ACB0B9;
    margin-top: 20px;
}
.form-legal a{
    color: #00B0F6;
    text-decoration: none;
}
.form-legal a:hover{
    text-decoration: underline;
}


.content ul{
    padding-left: 20px;
}
.content li{
    margin-bottom: 10px;
}


.sign-block h1{
    margin-top: 0;
}


.reg-block .sign-form-input .form-control{
    padding: 15px;
}


.reg-block .sign-form-label{
    margin-bottom: 10px;
}
.reg-block .control-label{
    margin-bottom: 0;
    font-weight: 500;
}

.btn-100{
    width: 100%;
    text-align: center;
}



.banner{
    min-height: 487px;
    background-color: #ccc;
    border-radius: 24px;

    background-image: url("/images/about.jpg");
    background-position: center right;

    display: grid;
    align-items: center;

}
.banner-content{
    color: #fff;

    max-width: 480px;
    margin-left: 100px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
.banner-title{
    font-size: 50px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;

}
.banner-text{
    font-size: 24px;
    font-weight: 400;
}


.about-p{
    max-width: 604px;
    margin: 60px auto;
}
.about-p p{
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
}


.about-blocks{
    grid-column-gap: 20px;
    margin-bottom: 60px;
}
.ab{
    background-color: #F6F9FE;
    border-radius: 16px;
    padding: 32px;
}
.ab-1{
    font-size: 44px;
    font-weight: 600;
    color: #00B0F6;
    margin-bottom: 16px;
}
.ab-2{
    font-size: 16px;
    font-weight: 400;
}

.about-p h2{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}


.un-title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 34px;
}


.grid-form{

}
.grid-form .row{
    background-color: #F6F9FE;
    border-radius: 12px;
    padding: 12px 16px;
}
.grid-form .form-control{
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
}
.grid-form .control-label{
    color: #ACB0B9;
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 8px;

}

.grid-form .form-group{
    margin-bottom: 0;
}

.disabled-input{
    border-radius: 10px;
    padding: 10px 0;
    font-weight: 500;
    /*background-color: #fff;*/
}

.grid-form .help-block{
    color: red;
    font-size: 12px;
}

.un-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.un-form-grid{
    margin-bottom: 40px;
}


.empty{
    text-align: center;
    line-height: 1.5;
}
.empty a{
    color: #000;
    transition: 0.2s;
}
.empty a:hover{
    color: #00B0F6;
}
.empty-img{
    margin-bottom: 20px;
}
.empty-text{
    /*color: #999;*/
}



.content-flex{
    display: flex;
}
.content-block {
    width: calc(100% - 396px);
    margin-right: 40px;
}
.content-sticky{
    flex: 0 0 350px;
    position: relative;

}

.sticky-block{
    position: sticky;
    top: 130px;

}



.cart-item{
    margin-bottom: 24px;
    padding-bottom: 24px;

    border-bottom: 1px solid #F6F9FE;
    position: relative;
}

.delete-cart-item{
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 3px;
    cursor: pointer;
}
.delete-cart-item svg path{
    transition: 0.2s;
}
.delete-cart-item:hover svg path{
    stroke: red;

}


.ci-flex{
    display: flex;
}

.ci-image{

    border-radius: 16px;
    overflow: hidden;
    width: 148px;
    height: 148px;
    flex: none;
    margin-right: 20px;
}
.ci-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ci-info .product-category{
    margin-bottom: 12px;
}
.ci-info .product-title{
    margin-bottom: 12px;

}
.ci-info .product-title a{
    font-size: 18px;
    font-weight: 500;
}

.ci-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.product-volume{
    color: #ACB0B9;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.cart-el{
    display: flex;
    align-items: center;
}

.cart-count{
    background-color: #F6F9FE;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-right: 24px;
}


.pm{
    cursor: pointer;
    padding: 3px;
    user-select: none;
}
.pm img{
    display: block;

}

.kolvo{
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: Raleway, sans-serif;
    text-align: center;
    background-color: transparent;
    width: 50px;
    font-variant-numeric: lining-nums;
}


.cart-prices{
    display: flex;
    align-items: center;
}
.cart-price{
    font-weight: 600;
    font-size: 18px;
    margin-right: 8px;
}
.cart-old-price{
    text-decoration: line-through;
    text-decoration-color: #D6D6D6;
    color: #D6D6D6;
    font-size: 14px;
}


.order-info{
    background-color: #F6F9FE;
    border-radius: 16px;
    padding: 24px;
}

.oi-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.oi-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.oi-row-total{
    border-top: 1px solid #E2E6E9;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

.oi-button{
    margin-top: 30px;
}

.oi-count{
    color: #ACB0B9;
    margin-left: 3px;
    font-size: 14px;
}

.disc-row .oi-value{
    color: red;
}



.panel{
    background-color: #F6F9FE;
    border-radius: 16px;
    padding: 20px 24px;
}
.delivery-panel{
    margin-bottom: 20px;
}

.panel-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.user-panel{
    line-height: 1.4;
}
.user-panel .icon{
    margin-right: 8px;
}
.pt-name{
    font-size: 16px;
    margin-bottom: 10px;
}
.pt-phone{
    margin-bottom: 5px;
}


.contact{
    margin-bottom: 40px;
}
.c-val{
    font-size: 56px;
    font-weight: 600;
}
.c-lab{
    color: #ACB0B9;
    font-size: 20px;
    font-weight: 400;
}

.con-soc{
    display: inline-block;
    vertical-align: middle;
    background-color: #F6F9FE;
    border-radius: 86px;
    padding: 18px 35px;
    margin-right: 20px;
}
.con-soc a{
    display: block;
    color: #00B0F6;
    font-size: 16px;

    font-weight: 600;

    text-decoration: none;
}


.rat-wrap{
    margin-bottom: 25px;
}
.rat-wrap .rating{

    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.rat-wrap .rating span {
    margin-right: 0px;
    color: #EAEAEA; /* Цвет незакрашенных звезд */
}

.rat-wrap .rating .active {
    color: #00B0F6; /* Цвет закрашенных звезд */
}

.modal .review{
    background-color: #F6F9FE;
    margin-bottom: 20px;
}
.modal .review:last-child{
    margin-bottom: 0;
}


.p-buts{
    /*max-width: 600px;*/
    margin-left: auto;
    margin-right: auto;
}

.p-but{


    background-color: #fff;


    border-radius: 30px;
    margin-bottom: 15px;

    border: 2px solid #fff;
    transition: 0.2s;
}
.p-but:hover{
    border: 2px solid #31bdff;

}

.p-but-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 20px;
    cursor: pointer;
}
.p-but-content{
    padding: 10px 15px 20px 15px;
}

.opt-but{
    padding: 15px 20px;
}

.address-input{
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px 15px;
    font-size: 15px;
    width: 100%;

    box-sizing: border-box;
}

.p-but-content{
    display: none;
}


.p-but-hide{

    display: none;
}

#forpvz{
    margin-top: 20px;

    display: none;
}




.p-but:last-child{
    /*margin-bottom: 0;*/
}


.p-but-wrap-1{
    display: flex;
    align-items: center;
}
.p-but-logo{
    margin-right: 10px;
}
.p-but-logo img{
    display: block;
}

.p-but-price{
    font-weight: 600;
    font-size: 17px;

}

.p-but-active{
    border: 2px solid #0079db;
}
.p-but-active:hover{
    border: 2px solid #0079db;
}


.p-but-text{
    font-weight: bold;
    /*color: #00B0F6;*/
    font-size: 15px;
    margin-left: 10px;
    line-height: 1.3;

}


.c-b-links{
    margin-top: 20px;

}


#pvz-val{
    /*color: #00B0F6;*/
    text-decoration: underline;
    cursor: pointer;
}



.panel-error{
    color: red;
    font-weight: normal;
    font-size: 15px;
    margin-left: 15px;
}


.om-type{
    font-weight: normal;
}

#rm-pay{
    background-color: #00B0F6;
    text-decoration: none;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    transition: 0.2s;
    position: relative;
    top: 0;
    display: inline-block;
    border: none;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: normal;
    margin-top: 3px;
}


.order{
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 10px;
    background-color: #F6F9FD;
}

.order-title{
    margin-bottom: 15px;
    font-weight: bold;
}

.o-stat{
    margin-bottom: 0px;
}

.o-date{
    margin-bottom: 10px;
}

.order-table{

    margin-bottom: 0;
    border: none;
    font-size: 14px;
    line-height: 1.2;
    overflow: auto;
    border-radius: 10px;
}

.order-table td {
    border: none;
    padding: 0;
    padding-bottom: 5px;
}

.o-total{
    margin-top: 10px;
    font-size: 17px;
}

.o-dost td{
    padding-top: 10px;
}
.o-paid{
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}


.mini-but {
    background-color: #00B0F6;
    text-decoration: none;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    transition: 0.2s;
    position: relative;
    top: 0;
    display: inline-block;
    border: none;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    font-weight: normal;
    margin-top: 3px;
}


.delimiter{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.fast-edit{
    margin-left: 10px;
}

.history{
    margin-top: 50px;
}


.articul{
    margin-top: 20px;
}
.o-cat{
    margin-top: 5px;
}
.o-cat-label{
    /*font-weight: bold;*/
    margin-bottom: 5px;
}
.o-cat-row{
    margin-bottom: 5px;
}

.share{
    text-align: right;
}
.share-label{
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
}
.ya-share2{
    display: inline-block;
    vertical-align: middle;
}


.footer-share{
    text-align: left;
    margin-top: 20px;
}
.footer-share .share-label{
    display: block;
    margin-bottom: 5px;
}