:root{
    --main-color:#b641e9; /*00aa58*/
    --second-light: #efd6fa;
    --border-radius: 3px;
    --font-family: "Manrope", -apple-system, "BlinkMacSystemFont", system-ui, "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
    --font-heading-1: 800 28px / 32px var(--font-family);
    --font-heading-2: 800 24px / 28px var(--font-family);
    --font-heading-3: 800 20px / 24px var(--font-family);
    --font-text-xl-bold: 800 18px / 24px var(--font-family);
    --font-text-xl: 500 18px / 28px var(--font-family);
    --font-text-l-bold: 800 16px / 28px var(--font-family);
    --font-text-l: 500 16px / 28px var(--font-family);
    --font-text-m-bold: 800 14px / 20px var(--font-family);
    --font-text-m: 500 14px / 20px var(--font-family);
    --font-text-s-bold: 600 12px / 18px var(--font-family);
    --font-text-s: 500 12px / 18px var(--font-family);
    --font-text-xs-bold: 800 10px / 16px var(--font-family);
    --font-text-xs: 500 10px / 16px var(--font-family);
}
*{padding: 0;margin: 0;border: 0;}
*,*:before,*:after{-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input::-ms-clear{display: none;}
a,a:visited{text-decoration: none;color: inherit;}
a:hover{text-decoration: none;cursor:pointer;}
img{vertical-align: top;}
input,select,textarea,button{
    font-family:inherit;
    border-radius: var(--border-radius);
}
button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled){
    cursor: pointer;
}
body{
    font-family:'Manrope', sans-serif;
    color: #1a1a1a;
    font-size: 14px;
    background:#fff;
    line-height: 1.4;
}
h1{
    font-weight: 800;
}
h2{
    font-weight: 800;
}
h3{
    font-weight: 800;
}
h4{
    font-weight: 800;
}

ul:not([class]){
    margin-left: 20px;
}
ul:not([class]) li{
    margin-bottom: 7px;
    list-style: none;
}
ul:not([class]) li:before{
    content: "\2022";
    color: var(--main-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

table{
    border-collapse: separate;
    width: 100%;
    border-spacing: 0;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    overflow: hidden;
}
th{
    font-weight: normal;
}
th:not(:last-child),td:not(:last-child) {
    border-right: 1px solid #E0E0E0
}
tr:not(:last-child) td,tr:not(:last-child) th,thead tr:last-child td,thead tr:last-child th,table:has(tfoot) tbody tr:last-child td,table:has(tfoot) tbody tr:last-child th {
    border-bottom: 1px solid #E0E0E0
}
tbody th,tbody td{
    padding:14px;
    vertical-align: middle;
}
tbody tr{
    background: #F4F4F4;
}
tbody tr:nth-child(odd){
    background: #fff;
}

p{
    margin: 0 0 10px 0;
}

.img-fluid{
    max-width: 100%;
    height: auto;
}
.text-center{
    text-align: center;
}
.br{
    display:block;
}
.underline{
    text-decoration: underline;
}
.nounderline{
    text-decoration: none;
}
.upper{
    text-transform: uppercase
}
.relative{
    position: relative;
}
.checkboxBlock{
    position: relative;
    padding-left: 22px;
}
.checkboxBlock input{
    display: none;
}
.checkboxBlock label:after{
    background: #fff;
    box-shadow: 0 0 0 1px #ccc;
    border-radius: 3px;
    position: absolute;
    content: "";
    left: 1px;
    top: 5px;
    width: 16px;
    height: 16px;
    padding: 3px;
    transition: all ease 0.15s;
}
.checkboxBlock input[type="checkbox"]:checked ~ label:after {
    box-shadow: 0 0 0 1px var(--main-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: var(--main-color);
}
.radioBlock{
    position: relative;
    padding-left: 22px;
}
.radioBlock input{
    display: none;
}
.radioBlock label:after{
    background: #fff;
    box-shadow: 0 0 0 1px #ccc;
    border-radius: 50%;
    position: absolute;
    content: "";
    left: 1px;
    top: 5px;
    width: 16px;
    height: 16px;
    padding: 3px;
    transition: all ease 0.15s;
}
.radioBlock input[type="checkbox"]:checked ~ label:after {
    box-shadow: 0 0 0 1px var(--main-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-color: var(--main-color);
}

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

.form-control {
    box-shadow: none;
    border: 1px solid #d0d0d0;
    color: #000;
    font-weight: 500;
    padding: 16px 17px;
    height: auto;
    width: 100%;
    border-radius: 12px;
}
.form-control:focus{
    border-color:#ccc;
    box-shadow: none;
}
.form-control.error{
    border-color:darkred;
}

.personalAccept {
    font-size: 13px;
    color: #5f5f5f;
}
.personalAccept a{
    color: inherit;
}
.ajax_form .error,span.error, .is-invalid{
    color:brown;
}
.is-invalid{
    box-shadow: inset 0 0 0 1px red;
}
.error_check{
  min-height: 17px;
  display: inline-block;
}

.breadcrumbs {
    padding: 20px 0 10px 0;
}
ul.breadcrumb{
    background: none;
    font-size: 13px;
    margin: 0;
    padding: 0;
	display: block;
}
.breadcrumb li{
    display: inline;
    color: #9f9f9f;
}
.breadcrumb li .separ{
    padding: 0 5px;
}
.breadcrumb a{
    text-decoration: none;
    color: #9f9f9f;
}
.breadcrumb a:hover{
    color: #567595;
}
.breadcrumb li>span{
	color: #9f9f9f;
}

.pagination{
    text-align: center;
    display:block;
}
ul.pagination{
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1px;
    margin-bottom: 20px;
}
ul.pagination li{
    display: inline-block;
}
ul.pagination li a{
    display: inline-block;
    padding: 9px  14px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
    color: inherit;
    transition: all ease 0.2s;
}
ul.pagination li a:hover,ul.pagination li.active a{
    background: var(--main-color);
    text-decoration: none;
    color: #fff;
}
ul.pagination li.disabled a{
    color: #adadad;
}

.hoverBlock{
    position: relative;
}
.hoverInset {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    transition: all ease 0.2s;
}
.hoverBlock:hover .hoverInset{
    opacity: 1;
}
.hoverInset svg{
    width:20px;
}
.hoverInset svg path{
    fill: #fff;
}

.mobileMenu {
    position: fixed;
    right: -250px;
    top: 0;
    height: 100%;
    width: 250px;
    z-index: 1030;
    transition: all ease-in 0.25s;
    overflow: auto;
    background: #fff;
}
.mobileMenuUl {
    padding-left: 0;
    margin-bottom: 0;
    text-align: center
}
.mobileMenuUl a {
    text-decoration:none;
    display:block;
    transition:all 0.1s ease-in;
    color: #333;
    padding: 13px 25px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
}
.mobileMenuUl li{
    list-style:none;
    margin-bottom:0;
    padding-left:0;
    position: relative;
    display:block;
}
.mobileMenuUl li.hover>ul{
    display: block;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}
.mobileMenuUl a:hover,.mobileMenuUl>li.active>a{
    text-decoration:none;
    background:  var(--main-color);
    color: #fff;
}
.mobileMenuUl>li>ul {
    position: relative;
    background: #fff;
    display: none;
}
.mobileMenuUl>li>ul li{
    display:block;
}
.mobileMenuUl>li>ul a{
    display:block;
    padding:11px 15px;
    font-size:14px;
    border-top:1px solid #dfe5e8;
    background: #fff;
    color: #003c7f;
    text-transform: none;
}
.mobileMenuUl>li>ul a:hover{
    background: #fff;
    color: #006FBD;
    text-decoration: none;
}
.mobileMenuUl>li>ul li.active>a{
    background: #006FBD;
    color: #fff;
}
body.openMenu {
    overflow-y: hidden;
}
body.openMenu .menuCloser {
    z-index: 1020;
    opacity: 1;
}
body.openMenu .mobileMenu {
    right: 0;
}

.openMenuSite{
    padding: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height:11px;
}
.openMenuSite img{
    max-width: 20px;
    margin-right: 7px;
}

.burger {
    display: none;
    text-align: center;
    color: #333;
    position: fixed;
    width: 100%;
    left: 0;
    background: #ffffff;
    z-index: 40;
    top: 0;
    padding: 2px 7px;
}
.burger:hover {
    cursor: pointer;
}
.fixedMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 44;
}
.menuCloserTimes {
    color: #fff;
    font-size: 30px;
    padding: 15px;
}
.menuCloserTimes img{
    max-width: 30px;
    min-width: 25px;
    display: block;
}
.menuCloser {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.52);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -2;
    display: flex;
    justify-content: flex-end;
    transition: all ease .2s;
}

.menu{
    padding: 0;
    display: flex;
    margin:0;
    gap: 1px;
}
.menu li{
    list-style:none;
    position: relative;
}
.menu a{
    text-decoration:none;
    display:block;
    transition:all 0.1s ease-in;
    color: #000;
    padding: 10px 15px;
    border-radius: 12px;
    --btn-hover-bg: var(--second-light);
}

@media (hover: hover) {
    .menu a:hover {
        background:var(--btn-hover-bg)
    }
}
.menu>li>ul {
    position: absolute;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition:all ease-in 0.2s;
    left: 0;
    padding: 0;
    min-width: 220px;
    transform: translateY(20px);
    border: 1px solid #dfe5e8;
    box-shadow: 0 7px 10px 0 rgba(62, 62, 62, 0.12);
    z-index: 100;
}
.menu>li:hover>ul{
    opacity: 1;
    visibility: visible;
    transform:translateY(0)
}
.menu>li>ul li{
    display:block;
}
.menu>li>ul a{
    display:block;
    padding:11px 15px;
    font-size:14px;
    border-top:1px solid #dfe5e8;
    background: #fbfbfb;
}
.menu>li>ul a:hover{
    background: #fff;
    color: #333;
    text-decoration: none;
}
.menu>li>ul li.active>a{
    background: #fff;
}




.addProductToCart *,.quantity__btn *, .pointer-none *{
    pointer-events: none;
}

.header{
    padding: 5px 0;
    font-size: 13px;
    margin: 3px 0;
}

.headerRow{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerLastColumn{
    display: flex;
    align-items: center;
    gap: 15px;
}
.headerPhone a{
    color: #000;
    font-weight: bold;
}
.searchPanel{
    background: #212428;
    border-radius: 12px;
    padding: 10px 20px;
    color: #fff;
    margin-bottom: 10px;
}

.searchPanelRow{
    display: flex;
    align-items: center;
    gap: 20px;
}
.headerLogoRow{
    display: flex;
    align-items: center;
    gap: 15px;
}
.headerLogoRow .slogan{
    font-size: 12px;
    line-height: 1.1;
    max-width: 160px;
}
.searchBlock{
    position: relative;
    flex-grow: 1;
}

.searchIcon{
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 24px;
    color: #1b1f3b4d;
    transition: color .25s;
    pointer-events: none;
}
.searchInput{
    border:0;
    padding: 14px 100px 14px 45px ;
}
.btnSearch{
    position: absolute;
    top: 50%;
    right: 2.5px;
    transform: translateY(-50%);
    font-size: 13px;
    padding: 11px 20px;
    border-radius: 12px;
}
.searchBlock:hover .searchIcon{
    color: var(--main-color);
}
.searchInput::placeholder{
    opacity: 0.5;
}
.searchInput:focus::placeholder{
    opacity: 0.2;
}


.miniCartBlock{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
}
.miniCartBlock .icon{
    font-size: 30px;
}
.miniCartBlock .cartTotal{
    display: block;
    font-size: 12px;
}
.miniCartText {
    min-width: 65px;
}
.miniCartIcon {
    line-height: 1;
}
.filtersSelectBlock{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}
.products{
    row-gap: 0;
}
.card__images{
    width: 40px;
    height: 40px;
}
.card__check {
    margin-top: 25px;
}
.products_mode_horizontal .products__item {
    padding: 9px 0 8px 0;
}
.card:before {
    inset: -8px -9px;
}
.siteFooter{
    width: 100%;
    background: #000000;
    color: #fff;
    padding: 30px 0;
    font-size: 12px;
}
.siteFooter a{
    color: #fff;
}
.rowFooter, .rowFooter2{
    display: flex;
    justify-content: space-between;
}
.bvMadeBlock{
    text-align: right;
}
.bvMade{
    display: inline-flex;
    text-decoration: none;
    transition: all ease 0.2s;
    align-items: center;
}
.bvMadeP1{
    fill: #525252;
    transition: all ease 0.2s;
}
.bvMade:hover{
    color:#2a9854;
}
.bvMade:hover .bvMadeP1{
    fill: #2a9854;
}
.bvMade svg{
    width: 20px;
    max-height: 20px;
    fill: #2a9854;
    margin-right: 8px;
}

/*
@media(min-width:1300px){
    .container{
        max-width: 1250px
    }
}*/
@media(max-width:1399px){

}
@media(max-width:991px){
    body {
        margin-top: 41px;
    }
    .burger {
        display: flex;
        justify-content: end;
    }

}
@media(max-width:767px){

}
@media (max-width: 575px){
    .breadcrumbs li {
        display: inline;
    }
}
