body {
    font-family: Circe, Arial;
    font-size: 17px;
    font-weight: normal;
    line-height: 150%;
    margin: 0;
    color: #221F1C;
    position: relative;
}

.maxwidth-theme {
    width: 100%;
    margin: auto;
    max-width: 1170px;
}

.p-0-15 {
    padding: 0 15px;
}

img {
    max-width: 100%;
}

div {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #2BB3C0;
}
a:hover {
    color: #326276;
}
.hidden {
    display: none;
}

.CenterText {
    text-align: center;
}

.HeaderName {
    font-weight: bold;
    font-size: 36px;
    line-height: 53px;
    color: #221F1C;
    margin: 30px 0 15px 0;
}
.hidden {
    display: none!important;
}
.TextWhite {
    color: #fff;
}
.HeaderDescription {
    color: #B2B2B2;
    margin-bottom: 20px;
}
h1, .h1 {
    font-weight: bold;
    font-size: 36px;
    line-height: 53px;
    margin-top: 35px;
    margin-bottom: 10px;
}

h3, .h3 {
    font-weight: bold;
    font-size: 24px;
    line-height: 35px;

}

.w-100 {
    width: 100%;
}

main {
    min-height: 50vh;
    width: 100%;
    overflow: hidden;
}

.popupOverlay {
    background: rgba(34, 31, 28, 0.55);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
}
.popupOverlay.show {
    visibility: visible;
    opacity: 1;
}

.popupOverlay [data-event="close"] {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 30px;
    right: 25px;
    cursor: pointer;
    z-index: 2;
}

.popupOverlay [data-event="close"]:before {
    content: '';
    width: 25px;
    height: 1px;
    background: #E30413;
    border-radius: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
}
.popupOverlay [data-event="close"]:after {
    content: '';
    width: 25px;
    height: 1px;
    background: #E30413;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
}


.popupOverlay > div {
    background: #FFFFFF;
    box-shadow: 0px 6px 13px rgb(0 0 0 / 22%);
    border-radius: 3px;
    padding: 25px;
    position: relative;
    max-width: 750px;
}

@media (max-width: 767px) {
    h1, .h1 {
        font-size: 24px;
        line-height: 95%;
        margin-top: 0;
        padding-top: 35px;
    }

    .popupOverlay [data-event="close"] {
        top: 15px;
        right: 15px;
    }
}

/*--------------------header----------------------*/

.HeaderEmail a {
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #221F1C;
    transition: 0.3s;
}

.HeaderEmail a:hover {
    color: #2BB3C0;
}

.HeaderEmail {
    position: relative;
    padding-left: 15px;
    display: flex;
    /*margin-left: 50px;*/
}

.HeaderSocial {
    margin-left: 50px;
    display: flex;
    padding: 10px 0;
}

.HeaderSocial a {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    transition: 0.3s;
}

.HeaderSocial .vk a {
    background: url('/img/vk.svg') center no-repeat;
}

.HeaderSocial .vk a:hover {
    background-image: url('/img/vk_hov.svg');
}

.HeaderSocial .fb a {
    background: url('/img/fb.svg') center no-repeat;
}
.HeaderSocial .fb a:hover {
    background-image: url('/img/fb_hov.svg');
}

.HeaderSocial .insta a {
    background: url('/img/insta.svg') center no-repeat;
}
.HeaderSocial .insta a:hover {
    background-image: url('/img/insta_hov.svg');
}
.HeaderSocial .youtube a {
    background: url('/img/youtube.svg') center no-repeat;
}
.HeaderSocial .youtube a:hover {
    background-image: url('/img/youtube_hov.svg');
}
.HeaderLogoDesktopDesc {
    font-size: 14px;
    line-height: 110%;
    color: #221F1C;
    width: calc(100% - 160px);
    white-space: nowrap;
    padding-left: 10px;
}

.HeaderLogoDesktop {
    display: flex;
    align-items: center;
    padding: 13px 0;
}

.NavigationBlock {
    margin-top: 40px;
}
.HeaderMenuBtn {
    display: none;
}
.HeaderLogoMobile {
    display: none;
}
.BottomLine{
    border-bottom: 1px solid #DADADA;
    border-top: 1px solid #DADADA;
}

.BottomLineBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.TopLine {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.HeaderLocation {
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
}
.HeaderCity > div:first-child {
    font-weight: bold;
    position: relative;
}
.HeaderCity {
    font-size: 12px;
    line-height: 18px;
    padding-left: 20px;
}
.HeaderCity > div:first-child:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    height: 14px;
    width: 10px;
    background: url('/img/marker.svg') center no-repeat;
    transform: translateY(-50%);
}

.HeaderEmail:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 13px;
    width: 13px;
    background: url('/img/email.svg') center no-repeat;
    transform: translateY(-50%);
}

.HeaderLogo {
    padding-right: 13px;
    border-right: 1px solid #DADADA;
}
.HeaderLogoLocation {
    display: flex;
    align-items: center;
}
.HeaderPhone {
    padding-top: 10px;
    text-align: right;
    font-size: 16px;
    line-height: 24px;
}
.HeaderCall {
    font-weight: bold;
    font-size: 10px;
    line-height: 15px;
    text-align: right;
    text-transform: uppercase;
    border-bottom: 2px dotted #221F1C;
    display: inline-block;
    position: relative;
    top: -5px;
    cursor: pointer;
    transition: 0.3s;
}

.HeaderCall:hover {
    color: #2BB3C0;
    border-color: #2BB3C0;
}

.HeaderPhoneNumber {
    position: relative;
}
.HeaderPhoneNumber a {
    color: #221F1C;
    text-decoration: none;
    transition: 0.3s;
}
.HeaderPhoneNumber a:hover {
    color: #2BB3C0;
    text-decoration: none;
}
.HeaderPhoneNumber:before {
    content: "";
    position: absolute;
    left: -13px;
    top: 4px;
    height: 14px;
    width: 8px;
    background: url('/img/phone.svg') center no-repeat;
}
.LoginActive ul {
    height: 0;
    overflow: hidden;
}
.LoginActive {
    position: relative;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 15px 6px 15px;
    max-width: 160px;
    white-space: nowrap;
}
.LoginActive ul {
    position: absolute;
    left: 0;
    top: 39px;
    background: #fff;
    z-index: 10000;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
}
.LoginActive:hover ul{
    height: auto;
    padding: 10px 0;
    width: 160px;
    margin: 0;
    padding-top: 40px;
    margin-top: -39px;
}
.LoginActive ul li {
    margin-bottom: 3px;

}
.LoginActive > a {
    position: relative;
    z-index: 10001;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 130px;
    display: inline-block;
    overflow: hidden;
}
.LoginActive a {
    color: #221F1C;
}
.LoginActive a:hover {
    color: #326276;
}

.LoginActive ul a {
    padding: 3px 7px 6px 7px;
    display: block;
    position: relative;
    font-weight: normal;
}
.LoginActive ul a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
.StatusRed {
    position: absolute;
    background: #e30713;
    border-radius: 50%;
    width: 18px;
    font-weight: bold;
    font-size: 12px;
    line-height: 19px;
    height: 18px;
    padding: 0px 6px;
    right: 20px;
    top: 7px;
    color: #fff;
}
.RedLink {
    color: #e30713!important;
}
.GrayLink {
    color: #BDBDBD!important;
}

.Login {
    padding: 10px 0 6px;
    color: #221F1C;
    font-weight: bold;
    display: block;
}
.Login:hover {
    color: #E30413;
    text-decoration: none;
}

.Login svg {
    margin-right: 5px;
    margin-bottom: -2px;
}

.Login:hover svg {
    fill: #E30413;
}

header .HeaderInsta {
    display: block;
    font-size: 0!important;
    line-height: 0!important;
}
.MobileMenu {
    display: none;
}

.HeaderCenter {
    display: flex;
    align-items: center;
}
.MobileLocation {
    display: none;
}

.fixMenu {
    display: none;
}

@media (max-width: 991px) and (min-width: 768px){
    .HeaderMenu {
        width: calc(100% - 120px);
    }

    .HeaderLogin {
        width: 120px;
    }

    .LoginActive {
        font-size: 11px;
        line-height: 20px;
        padding: 5px 7px 3px 7px;
    }
    .TopMenu ul li {
        display: inline-block;
        padding-right: 3px;
    }

    .TopMenu ul li a {
        font-size: 13px;
        line-height: 20px;
        padding-right: 0;
        letter-spacing: 0;
    }

    .BottomLine,
    .TopLine {
        padding: 0 15px;
    }

    .HeaderName {
        font-size: 28px;
        line-height: 36px;
    }

    .NavigationBlock {
        margin-top: 0px;
    }
}


@media (max-width: 780px) and (min-width: 768px){
    .BottomLine,
    .TopLine {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {

    header {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.13);
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 101;
        background: #fff;
    }

    main {
        margin-top: 75px;
    }

    .HeaderPhoneNumber a{
        border-bottom: 2px dotted #221F1C;
    }
    .HeaderEmail {
        display: none;
    }
    .HeaderCall,
    .HeaderLogoDesktop,
    .HeaderLocation {
        display: none;
    }
    .BottomLine {
        border: none;
        height: 0;
        position: absolute;
        width: 0;
    }
    header .HeaderMenu,
    header .Login {
        display: none;
    }
    .HeaderLogoMobile,
    .HeaderLogoMobile {
        display: block;
    }
    .HeaderLogin .bx-basket {
        position: fixed;
        bottom: 5px;
        right: 0;
        z-index: 101;
        width: 25%;
        height: 48px!important;
        text-align: center;
        margin-right: 0!important;
    }

    .topBasket svg {
        width: 24px;
        height: 24px;
    }
    .topBasket svg path {
        fill: #8A8A8A;
    }

    .topBasket span {
        right: 4px;
        top: -2px;
    }

    .topBasket {
        color: #8A8A8A;
    }

    .topBasket:after {
        content: 'Корзина';
        position: relative;
        display: block;
    }

    .HeaderMenuBtn {
        display: flex;
        align-items: center;
    }

    .HeaderLogo {
        padding-right: 0;
        border: none;
    }
    .fixMenu {
        display: flex;
        width: 100%;
        height: 60px;
        background: #FFFFFF;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
        align-items: center;
        text-align: center;
    }

    .fixMenu a {
        width: 25%;
    }

    .fixMenuCatalog,
    .fixMenuPalitra,
    .fixMenuPersonal,
    .fixMenuCart{
        color: #8A8A8A;
    }
    .HeaderMenuBtn > div {
        display: inline-block;
        width: 27px;
        height: 18px;
        position: relative;
        margin-right: 8px;
    }

    .HeaderMenuBtn > div > span {
        position: absolute;
        top: calc( 50% - 2px);
        height: 3px;
        background: #2BB3C0;
        width: 100%;
        display: block;
        border: none;
    }

    .HeaderMenuBtn > div:before {
        content: "";
        position: absolute;
        top: 0;
        height: 3px;
        background: #2BB3C0;
        width: 100%;
        transition: 0.3s;
    }

    .HeaderMenuBtn > div:after {
        content: "";
        position: absolute;
        bottom: 0;
        height: 3px;
        background: #2BB3C0;
        left: 0;
        width: 77%;
        transition: 0.3s;
    }

    .MobileMenu {
        left: -100vw;
        transition: left 0.3s;
        position: relative;
        width: 100%;
        height: 100%;
    }
    .HeaderSocial {
        display: none;
    }
    .HeaderPhoneNumber:before {
        display: none;
    }
    .menu .MobileMenu {
        display: block;
        position: fixed;
        z-index: 20;
        height: calc(100% - 135px);
        overflow: auto;
        background: #fff;
        top: 58px;
        left: 0;
        transition: left 0.3s;
    }

    .menu .MobileMenu:before {
        content: '';
        width: 100%;
        background: #fff;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
    }
    .MobileMenu .TopMenuSubcatalog .whiteBtn {
        display: none!important;
    }
    .MobileMenu .TopMenu ul {
        display: block;
        height: auto;
    }

    .MobileMenu .TopMenu ul li {
        display: block;
        padding: 0;

    }
    .MobileMenu .TopMenu ul li a {
        font-size: 16px;
        font-weight: bold;
        display: block;
        padding: 10px 15px 10px 23px;
        border-bottom: 1px solid #F2F2F2;
    }
    .TopMenu> ul > li:not(.catalog) > a:hover:after {
        display: none;
    }
    .MobileMenu .TopMenu ul li.child .TopMenuSub a {
        padding: 10px 15px 10px 40px;
    }

    .MobileMenu .HeaderLocation {
        display: block;
        position: relative;
    }
    .HeaderMenuBtn {
        margin-right: 5px;
    }
    .TopLine {
        justify-content: left;
    }
    .HeaderPhone {
        margin-left: auto;
        padding-top: 0;
    }
    .MobileMenu .HeaderCity {
        padding-left: 30px;
        width: 100%;
    }

    .MobileMenu .HeaderCity span {
        color: #221F1C!important;
    }

    .menu {
        overflow: hidden;
    }

    .menu .MobileMenu .HeaderMenu {
        width: 100%;
        position: relative;
    }

    .MobileMenu .HeaderLogin {
        position: relative;
        width: 100%;
        margin-bottom: 15px;
    }

    .MobileMenu .LoginActive {
        background: none;
        display: flex;
        justify-content: space-between;
        padding: 10px 15px 10px 25px;
        box-sizing: border-box;
        background: #F2F2F2;
        width: 100%;
        max-width: 100%;
    }

    .MobileMenu .TopMenu ul li:last-child {
        /*position: absolute;*/
        /*right: 15px;*/
        /*bottom: 3px;*/
        /*border: none;*/
        /*padding: 0;*/
    }
    .MobileMenu .TopMenu ul li.child > a:before {
        display: none;
    }
    .MobileMenu .HeaderEmail {
        display: block;
        max-width: 100%;
        margin: 0 0 -35px 15px;
        position: relative;
        z-index: 4;
    }
    .MobileMenu .TopMenu ul li.catalog {
        background: none;
        padding: 0;
    }

    .MobileMenu .TopMenu ul li.catalog > a {
        width: 100%;
        padding: 10px 15px 10px 23px;
        color: #fff;
        background: #2BB3C0;
        display: block;
        box-sizing: border-box;
        position: relative;
    }

    .MobileMenu .TopMenu ul li.catalog > a:after {
        content: '';
        position: absolute;
        right: 15px;
        top: 50%;
        width: 12px;
        height: 7px;
        transform: translateY(-50%);
        background: url("/img/bottom_arr.svg") center no-repeat;
    }

    .TopMenu ul li.catalog a {
        color: #221F1C;
    }
    .MobileMenu .TopMenu ul li:hover .TopMenuSub {
        display: none!important;
    }
    .MobileMenu .TopMenu ul li.catalog .TopMenuSubcatalog {
        max-width: none;
        width: 100%;
        position: relative;
        background: #fff;
        box-shadow: none;
        padding-bottom: 0;
        padding-top: 0;
    }
    .MobileMenu .TopMenu ul li.catalog .TopMenuSubcatalog.active {
        display: flex!important;
    }
    .MobileMenu .TopMenu ul li.catalog .TopMenuSubcatalog li a{
        padding: 10px 15px 10px 40px;
    }
    .MobileMenu .TopMenu ul li.catalog .TopMenuSubcatalog li:last-child a{
        border-bottom: none;
    }
    .MobileMenu .TopMenu ul li.catalog:before {
        display: none;
    }
    .MobileMenu .TopMenu .child {
        position: relative;
    }

    .MobileMenu .TopMenu .child > a:after {
        content: '';
        position: absolute;
        right: 15px;
        top: 50%;
        width: 12px;
        height: 7px;
        left: auto;
        transform: translateY(-50%);
        background: url("/img/bottom_arr_b.svg") center no-repeat;
    }

    .TopMenu ul li .TopMenuSub {
        max-width: none;
        width: 100%;
        position: relative;
        background: #fff;
        box-shadow: none;
        padding-bottom: 0;
        padding-top: 0;
    }

    .MobileMenu .TopMenu ul li.child .TopMenuSub.active {
        display: flex!important;
    }

    .MobileMenu .TopMenu ul li.catalog {
        margin-right: 0;
    }

    .MobileMenu .HeaderSocial {
        display: flex;
        max-width: 100%;
        margin: 0;
        position: relative;
        justify-content: flex-end;
        margin-right: 15px;
        z-index: 10;
    }
    .MobileMenu .TopMenu ul li:last-child a {
        display: flex;
    }

    .MobileMenu .LoginActive a {
        color: #6C6868;
    }

    .MobileMenu .Login {
        padding: 12px 25px 12px 25px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        font-size: 16px;
        font-weight: bold;
        border-bottom: 1px solid #F2F2F2;
    }

    .menu .HeaderMenuBtn > div > span {
        opacity: 0;
    }

    .menu .HeaderMenuBtn > div:before {
        transform: rotate(45deg) translate(5px, 5px);
        transition: 0.3s;
    }

    .menu .HeaderMenuBtn > div:after {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 100%;
        transition: 0.3s;
    }

    .MobileLocation{
        display: block;
        font-weight: bold;
        font-size: 12px;
        line-height: 18px;
        position: relative;
        padding-left: 20px;
    }

    .MobileLocation:before {
        content: "";
        position: absolute;
        left: 5px;
        top: 50%;
        height: 14px;
        width: 10px;
        background: url(/img/marker.svg) center no-repeat;
        transform: translateY(-50%);
    }

    .HeaderLogoMobile img{
        max-height: 41px;
        margin: 15px 0;
    }

    .LoginActive {
        display: none;
    }


}

/*--------------------/header----------------------*/



/*------------------footer---------------------*/


footer {
    background: #221F1C;
    color: #FFFFFF;
    padding: 65px 0 85px;
}

.FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FooterCity {
    font-size: 12px;
    line-height: 18px;
    padding-left: 20px;
}
.FooterCity > div:first-child {
    font-weight: bold;
    position: relative;
}
.FooterCity > div:first-child:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    height: 14px;
    width: 10px;
    background: url(/img/marker.svg) center no-repeat;
    transform: translateY(-50%);
}
.FooterEmail {
    position: relative;
    padding-left: 20px;
}

.FooterEmail:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 13px;
    width: 13px;
    background: url(/img/email.svg) center no-repeat;
    transform: translateY(-50%);
}

.FooterEmail a {
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
}

.FooterPhone {
    padding-top: 10px;
    text-align: right;
    font-size: 16px;
    line-height: 24px;
    margin-left: 11vw;
}

.FooterPhoneNumber {
    position: relative;
}

.FooterPhoneNumber a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.FooterSocial {
    display: flex;
    padding: 10px 0;
}

.FooterSocial a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    transition: 0.3s;
}

.FooterSocial .vk a {
    background: url('img/vk.svg') center no-repeat;
}

.FooterSocial .vk a:hover {
    opacity: 0.8;
}

.FooterSocial .fb a {
    background: url('/img/fb_w.svg') center no-repeat;
}
.FooterSocial .fb a:hover {
    background-image: url('/img/fb_hov.svg');
}

.FooterSocial .insta a {
    background: url('/img/insta_w.svg') center no-repeat;
}
.FooterSocial .insta a:hover {
    background-image: url('/img/insta_hov.svg');
}
.FooterSocial .youtube a {
    background: url('img/you.svg') center no-repeat;
}
.FooterSocial .youtube a:hover {
    opacity: 0.8;
}
.FooterPhoneNumber:before {
    content: "";
    position: absolute;
    left: -13px;
    top: 4px;
    height: 14px;
    width: 8px;
    background: url(/img/phone.svg) center no-repeat;
}
.FooterCall {
    font-weight: bold;
    font-size: 10px;
    line-height: 15px;
    text-align: right;
    text-transform: uppercase;
    border-bottom: 2px dotted #fff;
    display: inline-block;
    position: relative;
    top: -5px;
    cursor: pointer;
    transition: 0.3s;
}
.FooterCall:hover,
.FooterEmail a:hover,
.FooterPhoneNumber a:hover {
    color: #2BB3C0;
}
.FooterTop {
    border-bottom: 1px solid #333333;
    padding-bottom: 40px;
    margin-bottom: 34px;
}

.FooterMiddle, .FooterBottom {
    display: flex;
    justify-content: space-between;
}
.FooterMenuMain {
    width: 45%;
}
.FooterMenuAdded ul {
    text-align: right;
    padding: 0;
    margin: 0;
    list-style: none;
}
.FooterMenuAdded ul li {
    margin-bottom: 10px;
}
.FooterMenuAdded ul li a {
    color: #B2B2B2;
    border-bottom: 1px solid #B2B2B2;
}

.FooterMenuAdded ul li a:hover {
    color: #2BB3C0;
    border-color:#2BB3C0;
}

.FooterBottom {
    align-self: center;
    padding-top: 30px;
}
.FooterCopy {
    font-size: 12px;
    line-height: 18px;
    color: #BDBDBD;
}
.FooterDeveloper a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

@media (max-width: 767px) {
    .FooterMiddle, .FooterBottom {
        flex-flow: row wrap;
    }

    .FooterMenuMain {
        width: 100%;
    }

    .FooterMenuAdded {
        width: 100%;
    }
    .FooterEmail,
    .FooterSocial {
        width: 100%;
        order: 2;
    }
    .FooterMenuAdded ul {
        display: flex;
        justify-content: space-between;
    }

    .FooterMenuAdded ul li:first-child,
    .FooterCopy {
        order: 2;
    }
    .FooterEmail {
        margin-top: -10px;
    }
    .FooterTop {
        flex-flow: row wrap;
        padding-bottom: 33px;
        margin-bottom: 27px;
    }
    .FooterCity > div:first-child:before {
        left: -19px;
    }
    .FooterLogo {
        width: 100%;
        text-align: center;
    }

    footer {
        padding: 50px 0 90px;
    }

    .FooterDeveloper a {
        font-size: 14px;
    }
}

/*------------------/footer---------------------*/

.errortext {
    color: red;
}
.button1 {
    cursor: pointer;
    text-align: center;
    --text: #fff;
    --font-size: 16px;
    --duration: .44s;
    --move-hover: -6px;
    --font-shadow: var(--font-size);
    padding: 14px 50px;
    background: #2BB3C0;
    border-radius: 3px;
    display: inline-block;
    box-sizing: border-box;
    font-size: var(--font-size);
    line-height: var(--font-size);
    outline: none;
    text-decoration: none;
    color: var(--text);
    box-shadow: none;
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}
.BannerTypesBlock .button1 {
    position: relative;
}
.BannerTypesBlock .button1:after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 8px;
    height: 14px;
    right: 30px;
    top: calc(50% - 7px);

    background: url("img/phone2.svg") center no-repeat;
}

.button1 div {
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}
.button1 div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    color: #fff;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}


.button2 {
    cursor: pointer;
    box-shadow: inset -1px -1px 0 0 #2BB3C0, inset 1px 1px 0 0 #2BB3C0;
    height: 45px;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    border: none;
    border-radius: 3px;
    color: #2BB3C0;
    text-align: center;
    transition: 0.3s ease;
}


.center {
    text-align: center;
}

.clearfix {
    clear: both;
    width: 100%;
    height: 1px;
}

h2, .h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 120%;
    color: #221F1C;
    margin: 20px 0 10px;
}
:root {
    --text: #2BB3C0;
    --line: #2BB3C0;
    --font-size: 16px;
    --duration: .44s;
    --duration-line: .84s;
}
.link1 {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}
.link1 div {
    overflow: hidden;
}
.link1 div:first-child {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-size) 0 var(--text);
}
.link1 div:last-child {
    position: absolute;
    pointer-events: none;
    right: 0;
    left: 0;
    bottom: -3px;
    height: 5px;
}
.link1 div:last-child svg {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 300%;
    height: 5px;
    fill: none;
    stroke: var(--line);
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-dasharray: 63.5px 128px;
    stroke-dashoffset: var(--line-offset, 190.25px);
    transform: translateX(var(--line-x)) translateZ(0);
    transition: transform var(--line-d, 0s), stroke-dashoffset var(--line-d, 0s);
}
.link1 div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    line-height: var(--font-size);
    transition: transform var(--duration) ease;
    transform: translateY(var(--m, 0));
    color: var(--text);
}



.link2 {
    font-weight: bold;
    position: relative;
    border-bottom: 2px solid #2BB3C0;
    transition: 0.3s ease-in-out;
}


.bx-auth-note {
    font-weight: bold;
    font-size: 24px;
    margin: 30px 0;
}

.popup-window {
    padding: 0;
}

.bx-auth form {
    display: flex;
    flex-flow: row wrap;
    max-width: 50vw;
}

.popup-window-content {
    max-height: 100vh;
    overflow: auto;
}

.HeaderLogin {
    display: flex;
    align-items: center;
}

.HeaderLogin .bx-basket {
    margin-right: 20px;
    height: 22px;
}

.registerForm {
    width: 60vw;
}

.authLeft {
    width: 60%;
}

.authRight {
    width: 40%;
    background: linear-gradient(0deg, #326276 0%, #6DACB0 100%);
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
}

#modal_auth .authLeft {
    padding-left: 40px;

    padding-bottom: 67px;
}

.authLeft {
    padding-right: 40px;
}

form input[type=text],
form input[type=password] {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    border: none;
    height: 45px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #221F1C;
    padding: 10px 25px;
    box-sizing: border-box;
    margin-bottom: 19px;
    width: 100%;
}

form input[type=text]::placeholder {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #221F1C;
}
form input[type=text]:-moz-placeholder {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #221F1C;
}

.formBtn {
    height: 45px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 25px;
    text-align: center;
    color: #FFFFFF;
    min-width: 180px;
    background: #2BB3C0;
    border-radius: 3px;
    border: none;
    box-sizing: border-box;
    margin-top: 31px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.whiteBtn {
    min-width: 180px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    background: #FFFFFF;
    box-shadow: 0px 8px 20px rgba(52, 101, 120, 0.3);
    border-radius: 3px;
    color: #221F1C;
    border: none;
    padding: 10px 25px;
    text-align: center;
    height: 45px;
    box-sizing: border-box;
    margin-bottom: 23px;
    display: inline-block;
}

.authRight p {
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    line-height: 120%;
    margin: 0;
}

.formInput {
    position: relative;
}

.showPass {
    position: absolute;
    top: 11px;
    right: 17px;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url(/img/view.svg) center no-repeat;
}

.showPass.view {
    background: url(/img/no-view.svg) center no-repeat;
}

.greenLink {
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-decoration-line: underline;
    color: #2BB3C0;
    transition: 0.3s ease-in-out;
}



#modal_auth .popup-window-close-icon {
    width: 18px;
    height: 18px;
    right: 13px;
    top: 13px;
    opacity: 1;
}

#modal_auth .popup-window-close-icon:after {
    width: 18px;
    height: 18px;
    background-image: url('/img/close_w.svg');
}

.checkBox {
    position: relative;
    color: #828282;
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.checkBox input {
    display: none;
}

.checkBox label:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #326276;
    border-radius: 50%;
    cursor: pointer;
}

.checkBox input:checked~label:after {
    background: url("/img/check.svg") center no-repeat;
    border-color: #2BB3C0;
}

.basketAnimation {
    position: absolute;
    background: #326276;
    width: 110px;
    height: 30px;
    border-radius: 50%;
    z-index: 2;
    opacity: 0;

    transition: transform 0.9s ease-in-out,width 0.2s linear,height 0.2s linear;
}

.basketAnimation.active {
    opacity: 1;
    width: 16px;
    height: 16px;
    transform: translate(42px,7px);
}

@media (min-width: 767px) {
    .button1:hover {
        /*--y: var(--move-hover);*/
        background: #326276;
    }
    .button1:hover span {
        --m: calc(var(--font-size) * -1);
    }

    .button2:hover, .button2:focus {
        box-shadow: inset -10px -24px 0 0 #2BB3C0, inset 10px 24px 0 0 #2BB3C0!important;
        color: #fff;
    }
    .link1:hover {
        --m: calc(var(--font-size) * -1);
        --line-d: var(--duration-line);
        --line-x: 65.66%;
        --line-offset: 63.5px;
        --text: #326276;
        --line: #326276;
    }
    .link2:hover {
        color: #326276;
        border-color: #326276;
    }
    .formBtn.active,
    .formBtn:hover {background: #326276;color:#fff;}
    .greenLink:hover {
        color: #326276;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 12px;
        line-height: 18px;
    }

    .HeaderName {
        font-size: 24px;
        line-height: 35px;
    }

    h2, .h2 {
        font-size: 24px;
        line-height: 35px;
    }
}


/*---------------------------------------------catalog--------------------------------------*/


.CatalogItem {
    width: 20%;
    padding: 0 18px;
    display: flex!important;
}

.CatalogItemImg {
    width: 100%;
    display: block;
    padding-top: 90%;
    position: relative;
    overflow: hidden;
}

.CatalogItemImg img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.CatalogItemImg img.width {
    width: auto;
    height: 100%;
    max-width: none;
}

.CatalogItem > div {
    background: #FFFFFF;
    border: 1px solid #F2F2F2;
    box-sizing: border-box;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
}

.CatalogItem > div > * {
    width: 100%;
}

.CatalogMainSections .HeaderName {
    text-align: center;
    margin: 30px 0 15px 0;
}

.CatalogMainSections {
    margin: 50px 0;
}

.newPrice {
    display: inline-block;
    padding: 0 6px;
}
.oldPrice {
    display: inline-block;
    text-decoration-line: line-through;
    padding: 0 6px;
}
.newPrice.sale {
    color: #E30413;
}
.priceBlock {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    margin-right: -5px;
    margin-left: -5px;
}

.CatalogItemName {
    font-weight: normal;
    font-size: 14px;
    line-height: 110%;
    text-align: center;
    width: 100%;
    padding: 11px 12px;
    display: block;
    box-sizing: border-box;
}

.CatalogItemBottom {
    align-self: flex-end;
    padding: 3px 12px 23px;
    text-align: center;
}

.CatalogItemOffers {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 4px;
}

.CatalogItemOffersList {
    display: flex;
    opacity: 0;
}

.CatalogItemOffersList.active {
    opacity: 1;
}

.CatalogItemOffer {
    width: 100%;
}
.CatalogItemOffersBtnNext,
.CatalogItemOffersBtnPrev {
    outline: none;
    cursor: pointer;
}
.CatalogItemOffersBtnNext {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #221F1C;
    border-radius: 50%;
    border: none;
    transform: translateY(-50%);
}

.CatalogItemOffersBtnNext:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: url("/img/right.svg") center no-repeat;
}

.CatalogItemOffersBtnPrev {
    position: absolute;
    left: 5px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #221F1C;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
}

.CatalogItemOffersBtnPrev:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: url("/img/right.svg") center no-repeat;
    transform: rotate(180deg);
}

.CatalogItemOffer {
    background: #F2F6F6;
    border-radius: 3px;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    padding: 6px 0px;

}



.CatalogItemTag {
    position: absolute;
    top: 7px;
    left: 6px;
    display: flex;
    flex-flow: row wrap;
    z-index: 2;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
}

.CatalogItemTag span {
    background: #2CCB29;
    border-radius: 3px;
    padding: 1px 6px;
    display: inline-block;
    margin-right: 5px;
}

.CatalogItemTag span.Hit {
    background: #326276;
}

.CatalogItemBtn {
    background: #2BB3C0;
    border-radius: 3px;
    width: 110px;
    height: 30px;
    font-weight: bold;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    padding: 5px 0 4px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    border: none;
    outline: none;
    margin-top: 7px;
    display: inline-block;
    box-sizing: border-box;
}

.CatalogItemBtn.basket {
    background: #326276;
}
.CatalogItemBtn:hover {
    background: #326276;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.CatalogItemBtn.disabled {
    pointer-events: none;
    background: #828282;
}

.CatalogItemSize {
    background: #F2F6F6;
    border-radius: 3px;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    padding: 4px 4px 5px;
    color: #828282;
    margin-bottom: 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.loader-bounce {
    width: 32px;
    margin: auto;
    text-align: center;
}
.loader-bounce > div {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.loader-bounce > div:nth-child(1) {
    animation-delay: -0.32s;
}
.loader-bounce > div:nth-child(2) {
    animation-delay: calc(-0.32s / 2);
}


@keyframes sk-three-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}
@media (max-width: 767px) {
    .CatalogItem {
        width: 50%;
    }
    .bx-auth form {
        width: 100vw;
        max-width: 100vw;
    }
    .authLeft {
        width: 100%;
    }

    #modal_auth .popup-window-close-icon:after {
        background-image: url(/img/close.svg);
    }

    .bx-auth-note {
        font-size: 20px;
        margin: 30px 0 25px;
    }

    .bx-auth form input[type=text],.bx-auth  form input[type=password] {
        font-size: 14px;
    }

    .bx-auth .formBtn {
        width: 100%;
    }

    .CatalogItemBottom {
        padding: 1px 6px 17px;
    }

    .CatalogItemOffersBtnPrev {
        left: 0;
    }

    .CatalogItemOffersBtnNext {
        right: 0;
    }

    .CatalogItem {
        padding: 0 7px;
    }

    .CatalogSection .CatalogItem {
        padding: 7px;
    }

    .WidthSection,
    .PopularSection {
        margin: 0 -7px;
        width: calc(100% + 14px);
    }

    .CatalogSection {
        margin: -7px -7px 40px;
    }
}


@media (max-width: 350px) {


    .CatalogItemSize {
        margin-bottom: 24px;
    }

}

@media (max-width: 340px) {
    .CatalogItemOffersList {
        margin-bottom: 20px;
    }
    .CatalogItemOffersBtnPrev {
        bottom: 0;
        left: calc(50% - 15px);
        transform: translateX(-50%);
        top: auto;
    }

    .CatalogItemOffersBtnNext {
        bottom: 0;
        right: calc(50% - 15px);
        transform: translateX(50%);
        top: auto;
    }
}

/*----------------------------------------------------/catalog------------------------------------------*/


/*---------------------------------------------------delivery---------------------------------------------*/
.Payment {
    display: flex;
    flex-flow: row wrap;
    width: 73%;
    margin-bottom: 35px;
}

.PaymentItem {
    width: calc(50% - 17px);
    margin-right: 17px;
    background: #F2F2F2;
    border-radius: 3px;
    padding: 25px 10px 29px 29px;
    box-sizing: border-box;
}

.PaymentItem p {
    margin: 5px 0;
}

.PaymentWarning {
    padding-left: 60px;
    position: relative;
    margin-bottom: 40px;
}

.PaymentWarning:before {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    left: 0;
    top: 50%;
    background: url(img/warning.svg) center no-repeat;
    transform: translateY(-50%);
}

.RekvizityBlock {
    width: 100%;
    margin: 15px 0;
    background: #FFFFFF;
    box-shadow: 3px 10px 25px rgb(0 0 0 / 8%);
    border-radius: 3px;
    padding: 40px;
    position: relative;
}

@media (max-width: 767px){
    .PaymentItem {
        width: 100%;
        margin: 15px 0;
    }
    .Payment {
        width: 100%;
    }

    .NavigationBlock {
        margin-top: 20px;
    }

    h3, .h3 {
        font-weight: bold;
        font-size: 18px;
        line-height: 28px;
    }

    .FooterDeveloper {
        margin-bottom: 10px;
    }

    .NavigationBlock {
        display: none;
    }

    .mobClick {
        position: absolute;
        width: 60px;
        height: 45px;
        top: 0;
        right: 0;
        z-index: 2;
    }

    .MobileMenu .TopMenu ul li.catalog > a:after {
        display: none;
    }
}

/*---------------------------------------------------/delivery---------------------------------------------*/

.HeaderTime {
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #221F1C;
    position: relative;
    padding-left: 15px;
    margin-right: 20px;
}
.HeaderTime:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 13px;
    width: 13px;
    background: url(/img/time.svg) center no-repeat;
    transform: translateY(-50%);
    background-size: 165%;
}
.HeaderSocial > div {
    display: flex;
}
.HeaderPhoneNumber {
    margin-top: 7px;
}
.MobileWa {
    display: none;
}
@media (max-width: 768px){
    .MobileLocation {
        display: none;
    }
    .HeaderTime {
        display: none;
    }
    .HeaderPhoneNumber {
        margin-top: 0;
    }
    .MobileWa {
        display: flex;
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    .HeaderPhone {

        display: flex;
        align-items: center;
    }
}