.show_pass
{
    display: block;
    position: absolute!important;
    width:30px;
    height:30px;
    top:50%;
    margin-top:-15px;
    right:33px;
    cursor:pointer;
    background: url(../img/eye.png) no-repeat center center;
    background-size: cover;
}

.block-h2 {
    font-weight: 800;
    text-transform: uppercase;
}

.block-h3 {
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 800px) {
    .block-h3 {
        font-size: 18px;
    }
}

.sub-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 24px;
}

@media (max-width: 800px) {
    .block-h2, .sub-title {
        font-size: 20px;
    }
}

/*advantages main new design*/
.animate-advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 800px) {
    .animate-advantages {
        width: 2500px;
        flex-wrap: nowrap;
    }

    .animate-advantages.four {
        width: 1260px;
    }

    .animate-advantages.legal-entities {
        width: 1260px;
    }

    .mobile-parent {
        overflow-x: auto;
        margin-top: 10px;
    }
}

.adv-item {
    padding: 15px;
    border-radius: 20px;
    background: #F4F7FA;
    width: calc(25% - 15px);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    transition: all .4s ease;
    position: relative;
    top: 0;
}

@media (max-width: 800px) {
    .adv-item {
        width: 300px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    .adv-item {
        width: calc(50% - 10px);
    }
}

@media screen and (min-width: 1000px) and (max-width: 1300px) {
    .adv-item {
        width: calc(33.33% - 14px);
    }
}

.adv-item:hover {
    background: linear-gradient(135deg, #adc0d6 28%, #2b5c95);
    top: -10px;
}

@media (max-width: 800px) {
    .adv-item:hover {
        background: #F4F7FA;
        top: 0;
    }
}

.adv-item__icon {
    width: 100px;
    min-width: 100px;
    height: 100px;
    display: flex;
}

@media (max-width: 800px) {
    .adv-item__icon {
        width: 85px;
        min-width: 85px;
        height: 85px;
    }
}

.adv-item__icon img {
    object-fit: contain;
    transition: all .4s ease;
    position: relative;
    left: 0;
    top: 0;
}

.adv-item__txt {
    font-size: 18px;
    font-weight: 600;
}

.adv-item:hover .adv-item__txt {
    color: #fff;
}
@media (max-width: 800px) {
    .adv-item:hover .adv-item__txt {
        color: #000;
    }
}

.adv-item:hover .adv-item__icon img {
    transform: scale(1.6) rotate(20deg);
    left: -20px;
    top: -20px;
}

@media (max-width: 800px) {
    .adv-item:hover .adv-item__icon img {
        transform: scale(1) rotate(0);
        left: 0;
        top: 0;
    }
}

.services-main .service-slide {
    padding: 0 10px;
    position: relative;
}
@media (max-width: 800px) {
    .services-main .service-slide {
        padding: 0;
    }
}

.services-main .service-slide-block {
    background: #ccc;
    border-radius: 10px;
    transition: all .4s ease;
    overflow: hidden;
}

.services-main .preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    position: relative;
}

.services-main .preview:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.6) 10%, transparent);
}

.services-main .preview img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.services-main .title-block {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.services-main .service-title {
    font-weight: 600;
    font-size: 20px;
    max-width: 60%;
    margin-bottom: 20px;
}

.services-main .link-more a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.services-main .link-more a:hover {
    color: #fff;
}

.services-main .link-more a:after {
    content: '';
    width: 14px;
    height: 14px;
    background: url('../img/arrow-link-more.svg') center center no-repeat;
    background-size: 100% 100%;
}

.services-main .slick-slide {
    opacity: .3;
}

.services-main .slick-slide.slick-current {
    opacity: 1;
}

.services-main .slick-current .service-slide-block {
    transform: scale(1.2);
    position: relative;
    z-index: 2;
}
@media (max-width: 800px) {
    .services-main .slick-current .service-slide-block {
        transform: scale(1);
    }
}

.services-main .slick-list {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

@media (max-width: 800px) {
    .services-main .slick-list {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}


.about-shop__menu {
    width: calc(30% - 40px);
    box-shadow: 4px 0px 6px -5px rgba(0, 0, 0, 0.5);
    margin-right: 40px;
    padding-right: 20px;
    padding-top: 20px;
}

@media (max-width: 1000px) {
    .about-shop__menu {
        display: none;
    }
}

.about-shop__main-content {
    width: 70%;
}

@media (max-width: 1000px) {
    .about-shop__main-content {
        width: 100%;
    }
}

.about-shop__menu-item {
    font-size: 20px;
    margin-bottom: 40px;
}

.about-shop__menu-item a {
    display: flex;
    gap: 10px;
}

.about-shop__menu-item a:hover {
    color: #005BC8;
}

.about-shop__menu-item a:before {
    content: '';
    display: block;
    width: 26px;
    min-width: 26px;
    height: 26px;
    margin-top: -4px;
}

.about-shop__menu-item.pay a:before {
    background: url('../img/about-shop-icons/pay.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.pay a:hover:before {
    background: url('../img/about-shop-icons/pay-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.delivery a:before {
    background: url('../img/about-shop-icons/delivery.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.delivery a:hover:before {
    background: url('../img/about-shop-icons/delivery-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.public-offer a:before {
    background: url('../img/about-shop-icons/public-offer.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.public-offer a:hover:before {
    background: url('../img/about-shop-icons/public-offer-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.privacy-policy a:before {
    background: url('../img/about-shop-icons/privacy-policy.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.privacy-policy a:hover:before {
    background: url('../img/about-shop-icons/privacy-policy-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.personal-data a:before {
    background: url('../img/about-shop-icons/personal-data.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.personal-data a:hover:before {
    background: url('../img/about-shop-icons/personal-data-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.consent-advertising a:before {
    background: url('../img/about-shop-icons/consent-advertising.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.consent-advertising a:hover:before {
    background: url('../img/about-shop-icons/consent-advertising-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.return a:before {
    background: url('../img/about-shop-icons/return.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.return a:hover:before {
    background: url('../img/about-shop-icons/return-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.guarantee a:before {
    background: url('../img/about-shop-icons/guarantee.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.guarantee a:hover:before {
    background: url('../img/about-shop-icons/guarantee-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.contacts a:before {
    background: url('../img/about-shop-icons/contacts.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop__menu-item.contacts a:hover:before {
    background: url('../img/about-shop-icons/contacts-act.svg') center center no-repeat;
    background-size: 100% 100%;
}

.about-shop-page {
    padding-bottom: 40px;
    overflow: hidden;
}

.about-shop-page .breadcrumbs-box {
    padding-top: 0;
}

.about-shop-page .bg-content {
    position: relative;
}

.about-shop-page.pay-page:after, .about-shop-page.delivery-page:after {
    content: '';
    width: 430px;
    height: 600px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url('../img/pay-bg-2.png') bottom right no-repeat;
    background-size: 100%;
}

.about-shop-page.delivery-page:after {
    background: url('../img/delivery-bg.png') bottom right no-repeat;
    background-size: 100%;
}

@media (max-width: 800px) {
    .about-shop-page:after {
        width: 200px !important;
        height: 280px !important;
    }
}

.pay-block-info .answer  {
    overflow: hidden;
}

.pay-block-info .answer .txt {
    margin-top: 30px;
}

.pay-block-info .answer .txt p {
    margin-bottom: 10px;
}

.pay-block-info__item {
    position: relative;
    border-radius: 30px;
    z-index: 1;
    margin-bottom: 20px;
    cursor: pointer;
    background: rgba(255,255,255,.7);
}

.pay-block-info__item .js-accordion-trigger {
    padding: 30px;
}

.pay-block-info__item .corner-right {
    display: block;
    width: 60px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 30px 0 0;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
}

.pay-block-info__item .corner-left {
    display: block;
    width: 60px;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 0 0 30px;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}

.pay-block-info__item .border-top {
    display: block;
    width: 95%;
    height: 2px;
    position: absolute;
    top: 0;
    right: 28px;
    background: linear-gradient(to right, transparent, #ccc 15%);
}

.pay-block-info__item .border-bottom {
    display: block;
    width: 95%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 28px;
    background: linear-gradient(to left, transparent, #ccc 15%);
}

@media (max-width: 800px) {
    .pay-block-info__item .border-top, .pay-block-info__item .border-bottom {
        width: 85%;
    }
}

.pay-block-info__item .border-right {
    display: block;
    width: 2px;
    height: 40%;
    position: absolute;
    top: 28px;
    right: 0;
    background: linear-gradient(to top, transparent, #ccc);
}

.pay-block-info__item .border-left {
    display: block;
    width: 2px;
    height: 40%;
    position: absolute;
    bottom: 28px;
    left: 0;
    background: linear-gradient(to bottom, transparent, #ccc);
}

.pay-block-info__item .title {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pay-block-info__item .title:after {
    content: '';
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-left: 10px;
    background: url('../img/about-shop-icons/arrow-right.svg') center center no-repeat;
    transition: all .4s ease;
}

.pay-block-info__item.is-active .title:after {
    transform: rotate(90deg);
}

/*text styles*/
.text-style .ml-1 {
    margin-left: 20px;
    margin-bottom: 1.25em;
}

.text-style .ml-1:last-child {
    margin-bottom: 0;
}

.text-style h2 {
    font-size: 28px;
    line-height: 1.2;
}

@media (max-width: 800px) {
    .text-style h2 {
        font-size: 22px;
    }
}

.text-style h3 {
    font-size: 22px;
    line-height: 1.2;
}

@media (max-width: 800px) {
    .text-style h3 {
        font-size: 18px;
    }
}

.text-style ul {
    margin-left: 30px;
}

.text-style ul li {
    list-style-type: disc;
}

.text-style a {
    color: red;
    text-decoration: underline;
}

.text-style a:hover {
    text-decoration: none;
}

/*для юр лиц*/

.legal-entities__main-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 640px;
    background: url('../img/legal-entities-main-bg.jpg') center center no-repeat;
    background-size: cover;
    padding: 80px 0;
}

@media (max-width: 800px) {
    .legal-entities__main-screen {
        padding: 40px 0;
        height: auto;
    }
}

.legal-entities__main-screen .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.legal-entities__main-screen .block-h2 {
    color: #fff;
    text-align: center;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
}

@media (max-width: 800px) {
    .legal-entities__main-screen .block-h2 {
        font-size: 24px;
    }
}

.legal-entities__adv {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1040px;
    margin-bottom: 40px;
    position: relative;
}

.legal-entities__adv:after {
    content: '';
    display: block;
    width: 630px;
    height: 540px;
    position: absolute;
    top: -60px;
    left: 90%;
    background: url('../img/legal-entities-bag.png') top center no-repeat;
    background-size: 100%;
    z-index: 4;
}

@media (max-width: 800px) {
    .legal-entities__adv:after {
        display: none;
    }
}

.legal-entities__adv-item {
    color: #005BC8;
    display: flex;
    gap: 10px;
    align-items: center;
    height: 72px;
    background: linear-gradient(to bottom right, #b9c8d8, #fafbfd);
    padding: 0 20px;
    border-radius: 40px;
    font-size: 28px;
    font-weight: 600;
}

@media (max-width: 800px) {
    .legal-entities__adv-item {
        font-size: 22px;
        height: 56px;
    }
}

.legal-entities__adv-item:before {
    content: '';
    display: block;
    width: 64px;
    min-width: 64px;
    height: 64px;
}

@media (max-width: 800px) {
    .legal-entities__adv-item:before {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
}

.legal-entities__adv-item:nth-child(1):before {
    background: url('../img/legal-entity-icons/work.png') center center no-repeat;
    background-size: 100%;
}

.legal-entities__adv-item:nth-child(2):before {
    background: url('../img/legal-entity-icons/payment-deferment.png') center center no-repeat;
    background-size: 100%;
}

.legal-entities__adv-item:nth-child(3):before {
    background: url('../img/legal-entity-icons/discount.png') center center no-repeat;
    background-size: 100%;
}

.legal-entities__adv-item:nth-child(4):before {
    background: url('../img/legal-entity-icons/delivery.png') center center no-repeat;
    background-size: 100%;
}

.legal-entities__adv-item:nth-child(5):before {
    background: url('../img/legal-entity-icons/meneger.png') center center no-repeat;
    background-size: 100%;
}

.legal-entities__main-screen .login-button {
    cursor: pointer;
    padding: 20px 40px;
    background: #E30613;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 40px;
}

@media (max-width: 800px) {
    .legal-entities__main-screen .login-button {
        font-size: 18px;
        line-height: 1.2;
        padding: 15px 20px;
        text-align: center;
    }
}

.legal-entities__main-screen .login-button:hover {
    background: #c40813;
}

.legal-entities__advantages-block {
    display: flex;
    gap: 60px;
}

@media (max-width: 800px) {
    .legal-entities__advantages-block {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    .legal-entities__advantages-block {
        gap: 40px;
    }
}

.legal-entities__advantages-screen .block-h2 {
    margin-bottom: 70px;
}

@media (max-width: 800px) {
    .legal-entities__advantages-screen .block-h2 {
        margin-bottom: 40px;
    }
}

.legal-entities__advantages-item {
    padding: 20px;
    background: #F3F3F3;
    width: calc(25% - 45px);
    border-radius: 40px;
}

@media (max-width: 800px) {
    .legal-entities__advantages-item {
        padding: 15px;
        width: 100%;
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    .legal-entities__advantages-item {
        width: calc(25% - 30px);
    }
}

.legal-entities__advantages-item .title {
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    font-size: 20px;
}

@media (max-width: 800px) {
    .legal-entities__advantages-item .title {
        text-align: left;
        font-size: 18px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    .legal-entities__advantages-item .title {
        font-size: 18px;
    }
}

.legal-entities__advantages-item .preview {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -100px;
}

@media (max-width: 800px) {
    .legal-entities__advantages-item .preview {
        margin-top: 0;
        width: 100px;
        min-width: 100px;
        height: 100px;
    }
}

.legal-entities__advantages-item .preview img {
    width: 140%;
    max-width: inherit;
}

@media (max-width: 800px) {
    .legal-entities__advantages-item .preview img {
        width: 100%;
    }
}

.legal-entities__info-screen {
    color: #fff;
}

.legal-entities__info-screen .left {
    width: 65%;
}

.legal-entities__info-screen .right {
    width: calc(35% - 30px);
    margin-left: 30px;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .left, .legal-entities__info-screen .right {
        width: 100%;
        margin-left: 0;
    }

    .legal-entities__info-screen .d-flex {
        flex-direction: column;
    }
}

.legal-entities__info-screen .map {
    padding: 40px;
    height: 360px;
    background: url('../img/legal-entity-map.png') center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    margin-bottom: 30px;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .map {
        height: 210px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    .legal-entities__info-screen .map {
        height: 230px;
    }
}

.legal-entities__info-screen .map:after {
    content: '';
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -40px;
    right: 100px;
    background: url('../img/legal-entity-map-icon.png') center center no-repeat;
    background-size: 100%;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .map:after {
        width: 90px;
        height: 90px;
        top: -20px;
        right: 0;
    }
}

.legal-entities__info-screen .map .text {
    font-size: 24px;
    max-width: 340px;
    line-height: 1.4;
}

.legal-entities__info-screen .block-h2 {
    color: #000;
    margin-bottom: 70px;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .block-h2 {
        margin-bottom: 40px;
    }
}

.legal-entities__info-screen .bottom {
    display: flex;
    gap: 30px;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .bottom {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 800px) and (max-width: 1000px) {
    .legal-entities__info-screen .bottom {
        flex-direction: column;
        gap: 20px;
    }
}

.legal-entities__info-screen .info-block {
    padding: 40px;
    background: #124988;
    border-radius: 20px;
    font-size: 34px;
    width: 100%;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .info-block {
        padding: 15px;
        font-size: 26px;
    }
}

.legal-entities__info-screen .right .info-block {
    height: 100%;
    position: relative;
    border-radius: 20px 20px 100px 20px;
    overflow: hidden;
}

.legal-entities__info-screen .right .info-block:after {
    content: '';
    display: block;
    width: 260px;
    height: 320px;
    background: url('../img/legal-entity-check.png') center center no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -40px;
    right: -40px;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .right .info-block:after {
        display: none;
    }
}

.legal-entities__info-screen .right li {
    text-align: left;
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
}



.legal-entities__info-screen .right li:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 0px;
}

@media (max-width: 800px) {
    .legal-entities__info-screen .right ul {
        margin-left: 10px;
    }

    .legal-entities__info-screen .right li {
        margin-bottom: 5px;
        padding-left: 20px;
    }

    .legal-entities__info-screen .right li:after {
        top: 8px;
    }
}

.legal-entities {
    margin-bottom: 70px;
}

.legal-entities .breadcrumbs-box {
    color: #fff;
    padding-top: 0;
}

.legal-entities .breadcrumbs-box .menu {
    justify-content: center;
}

body.modal-active {
    overflow: hidden;
}

.fn-header__link {
    text-transform: uppercase;
}

.main-bottom-box {
    margin-top: 40px;
}

@media (max-width: 800px) {
    ._orientationRight__XbO1h.wrap__lnysi {
        bottom: 58px !important;
        right: auto !important;
        left: 15px !important;
    }
}

#bx-soa-total.side-sticky-box, #basket-root .side-sticky-box {
    position: sticky;
    top: 110px;
}