.rdl-header {
    position: relative;
    z-index: 15;
    background-color: #133ADD;
    color: #fff;
    padding: 28px 0 36px;
    box-sizing: border-box;
}
.rdl-header * {
    box-sizing: border-box;
}
.rdl-header__inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rdl-header__top {
    padding-bottom: 22px;
}
.rdl-header__top .rdl-header__inner {
    gap: 20px;
}

.rdl-city {
    padding-right: 15px;
}
.rdl-city .tfl__link {
    position: relative;
    color: #fff;
    border-bottom: 0;
    display: inline-block;
    vertical-align: top;
    padding-left: 12px;
}
.rdl-city .tfl__link:hover {
    border-bottom: 0;
}
.rdl-city .tfl__link:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.rdl-header-color {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #1A181B;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 9px 15px;
    border-radius: 18px;
}
.rdl-header-color.rdl-header-color_mob {
	display: none;
}
.rdl-header-color svg {
    width: 12px;
    height: 12px;
}
.rdl-header-color:hover {
    background-color: #006eff;
    color: #fff;
}

.rdl-contacts {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.rdl-contacts__item:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #AEB9C6;
}
.rdl-contacts__label {
    color: #AEB9C6;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 4px;
}
.rdl-contacts__value {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.rdl-contacts__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}
a.rdl-contacts__value,
button.rdl-contacts__value {
    outline: 0;
    background-color: transparent;
    padding: 0;
    border: 0;
    text-decoration: none;
}
a.rdl-contacts__value:hover,
button.rdl-contacts__value:hover {
    color: #b7d6ff;
}
.rdl-msg {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: 0;
    text-decoration: none;
    width: 22px;
    height: 22px;
}
.rdl-msg svg {
    width: 100%;
    height: 100%;
}
.rdl-header__main .rdl-contacts {
    display: none;
}

.rdl-nav {
    display: flex;
    gap: 20px;
}
.rdl-nav__item {
    position: relative;
}
.rdl-nav__link {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    display: block;
}
.rdl-nav__link:hover {
    color: #b7d6ff;
}
.rdl-nav__item:has(.rdl-nav__drop) {
    padding-right: 18px;
}
.rdl-nav__item:has(.rdl-nav__drop):before {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    right: 3px;
    width: 2px;
    height: 8px;
    background-color: #fff;
}
.rdl-nav__item:has(.rdl-nav__drop):after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    right: 0;
    width: 8px;
    height: 2px;
    background-color: #fff;
}
.rdl-nav__item:hover:before {
    opacity: 0;
}
.rdl-nav__drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    padding-top: 12px;
}
.rdl-nav__wrap {
    background-color: #fff;
    padding: 24px 40px;
    border-radius: 13px;
    color: #000;
    box-shadow: 20px 15px 50px rgba(0, 0, 0, 0.05);
}
.rdl-nav__list {
    display: flex;
    flex-direction: column;
}
.rdl-nav__drop .rdl-nav__link {
    color: #000;
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 0;
}
@media (min-width: 1025px){
    .rdl-nav__drop .rdl-nav__item:has(.rdl-nav__back) {
        display: none;
    }
    .rdl-nav__drop .rdl-nav__link:hover {
        color: #0063e6;
    }
    .rdl-nav__item:hover .rdl-nav__drop {
        display: block;
    }
}

.rdl-logo {
    display: inline-block;
    vertical-align: top;
    width: 183px;
}
.rdl-logo img {
    width: 100%;
    height: auto;
}

.rdl-search {
    position: relative;
    background-color: #fff;
    padding: 2px 44px 2px 2px;
    border-radius: 25px;
    flex: 1;
}
.rdl-search.rdl-search_mob {
	display: none;
}
.rdl-search__input {
    width: 100%;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 20px;
    outline: 0;
    border: 0;
}
.rdl-search__input::-webkit-input-placeholder {
    color: #757575;
}
.rdl-search__button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 44px;
    color: #006EFF;
    background-color: transparent;
    border-radius: 20px;
}
.rdl-search__button svg {
    width: 24px;
    height: 24px;
}

.rdl-user {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rdl-user__item {
    position: relative;
}
.rdl-user__button {
    outline: 0;
    border: 0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /*background-color: #006EFF;*/
    background-color: #133add;
    color: #fff;
    padding: 15px 33px;
    border-radius: 25px;
    border: 1px solid #fff;
}
.rdl-user__button_white {
    background-color: #fff;
    color: #1A181B;
}
.rdl-user__button:hover {
    background-color: #006eff;
    color: #fff;
}
.rdl-user__button_white:hover {
    background-color: #006eff;
    color: #fff;
}
.rdl-user__button svg {
    width: 24px;
    height: 24px;
}

.rdl-cart {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 14px;
    height: 44px;
    outline: 0;
    text-decoration: none;
}
.rdl-cart__qnt {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #E61F1F;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
}
.rdl-cart svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.rdl-catalog {
    position: relative;
}
.rdl-catalog__toggle {
    position: relative;
    outline: 0;
    border: 0;
    padding: 10px 5px 10px 26px;
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.rdl-catalog__toggle svg {
    width: 24px;
    height: 24px;
}
.rdl-catalog__drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 26px;
    z-index: 15;
    padding-top: 8px;
}
.rdl-catalog__wrap {
    background-color: #fff;
    padding: 24px 0;
    border-radius: 13px;
    color: #000;
    display: flex;
}
.rdl-catalog__item {
    position: relative;
}
.rdl-catalog__link {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 12px 40px;
    min-width: 300px;
}
.rdl-catalog__arrow {
    position: absolute;
    top: 17px;
    right: 16px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    transform: rotate(45deg);
    pointer-events: none;
}
.rdl-catalog__item:has(.rdl-catalog__back) {
    display: none;
}
.rdl-catalog__sub {
    position: relative;
    background-color: #fff;
    z-index: 1;
    display: none;
}
.rdl-catalog__sub:before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 0;
    border-left: 2px solid #ebebeb;
}
.rdl-catalog__sub .rdl-catalog__link {
    font-weight: 400;
    padding: 12px 40px 12px 16px;
}
@media (min-width: 1025px) {
    .rdl-catalog__toggle:hover {
        color: #b7d6ff;
    }
    .rdl-catalog:hover .rdl-catalog__drop {
        display: block;
    }
    .rdl-catalog__link:hover,
    .rdl-catalog__item.--active .rdl-catalog__link {
        color: #0063e6;
    }
    .rdl-catalog__link:hover .rdl-catalog__arrow,
    .rdl-catalog__item.--active .rdl-catalog__arrow {
        border-right-color: #0063e6;
        border-top-color: #0063e6;
    }
    .rdl-catalog__sub.--show {
        display: block;
    }
}

.rdl-menu-open {
    display: none;
}
.rdl-mob-header {
    display: none;
    background-color: #133ADD;
    color: #fff;
}
.rdl-mob-header__inner {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 1024px) {
    .rdl-header {
        display: none;
    }
    .rdl-header .cont {
        max-width: initial;
        width: auto;
        padding: 0;
        margin: 0;
        position: static;
        height: 100%;
    }

    .rdl-mob-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000003;
        padding: 13px 0;
    }
    .rdl-menu-open {
        position: relative;
        display: block;
        max-width: 18px;
        width: 18px;
        height: 18px;
        background-color: transparent;
        color: #fff;
        outline: 0;
        border: 0;
        flex-shrink: 0;
    }
    .rdl-menu-open:before {
        top: 0;
    }
    .rdl-menu-open:after {
        top: 12px;
    }
    .rdl-menu-open:before,
    .rdl-menu-open:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        height: 3px;
        width: 100%;
        background: #fff;
    }
    .rdl-menu-open span {
        background: #fff;
        display: block;
        height: 3px;
        width: 100%;
        position: absolute;
        left: 0;
        top: 6px;
    }
    .rdl-menu-open svg {
        width: 20px;
        height: 20px;
    }
    .rdl-cart {
        flex-shrink: 0;
        /*margin-left: auto; FIX*/ 
    }
    .rdl-header .rdl-cart {
        display: none;
    }
    .rdl-header .rdl-logo {
        display: none;
    }

    .rdl-header__top {
       padding: 0;
    }
    .rdl-header__main {
        flex: 1;
        padding-bottom: 12px;
    }
    .rdl-header__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        padding: 0 12px;
        height: 100%;
    }
    .rdl-header__top .rdl-header__inner {
        gap: 20px;
    }

    .rdl-city {
        order: 1;
    }
    .rdl-contacts {
        order: 2;
        margin: 0;
    }
    .rdl-contacts__label {
        display: none;
    }
    .rdl-nav {
        order: 4;
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    .rdl-nav__item {
        width: 100%;
    }
    .rdl-nav__link {
        padding: 6px 0;
        line-height: 20px;
    }
    .rdl-nav__back {
        background-color: transparent;
        outline: 0;
        border: 0;
        padding: 6px 0 6px 20px;
        line-height: 20px;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        width: 100%;
        color: #fff;
        position: relative;
    }
    .rdl-nav__back:before {
        content: '';
        position: absolute;
        top: 13px;
        left: 6px;
        width: 7px;
        height: 7px;
        border-left: 2px solid #fff;
        border-top: 2px solid #fff;
        background-color: transparent;
        transform: rotate(-45deg);
    }
    .rdl-nav__item:has(.rdl-nav__back) {
        display: block;
    }
    .rdl-nav__item:has(.rdl-nav__drop):before {
        display: none;
    }
    .rdl-nav__item:has(.rdl-nav__drop):after {
        content: '';
        position: absolute;
        top: 12px;
        right: 6px;
        width: 7px;
        height: 7px;
        border-right: 2px solid #fff;
        border-top: 2px solid #fff;
        background-color: transparent;
        transform: rotate(45deg);
    }
    .rdl-nav__drop {
        padding: 0;
    }
    .rdl-nav__wrap {
        padding: 0 12px;
        background-color: #133ADD;
        color: #fff;
        border-radius: 0;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .rdl-nav__list {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .rdl-nav__item {
        width: 100%;
    }
    .rdl-nav__drop .rdl-nav__link {
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        padding: 6px 0;
    }
    .rdl-nav__item.--open {
        position: static;
    }
    .rdl-nav__item.--open .rdl-nav__drop {
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }
    
    .rdl-header-color {
        order: 3;
        width: 100%;
		display: none;
    }
	.rdl-header-color.rdl-header-color_mob {
		display: flex;
		order: initial;
		margin-top: auto;
	}

    .rdl-catalog {
        position: static;
        width: 100%;
    }
    .rdl-catalog__toggle {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
    }
    .rdl-catalog__toggle:after {
        content: '';
        position: absolute;
        top: 17px;
        right: 6px;
        width: 7px;
        height: 7px;
        border-right: 2px solid #fff;
        border-top: 2px solid #fff;
        transform: rotate(45deg);
    }
    .rdl-catalog__drop {
        padding: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .rdl-catalog__wrap {
        padding: 0 12px;
        background-color: #133ADD;
        color: #fff;
        border-radius: 0;
        height: 100%;
    }
    .rdl-catalog__list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .rdl-catalog__list.--scroll-block {
        overflow: hidden;
    }
    .rdl-catalog__link {
        min-width: initial;
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        padding: 6px 0;
    }
    .rdl-catalog__arrow {
        top: 13px;
        right: 6px;
        border-right-color: #fff;
        border-top-color: #fff;
    }
    .rdl-catalog__back {
        background-color: transparent;
        outline: 0;
        border: 0;
        padding: 6px 0 6px 20px;
        line-height: 20px;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        width: 100%;
        color: #fff;
        position: relative;
    }
    .rdl-catalog__back:before {
        content: '';
        position: absolute;
        top: 13px;
        left: 6px;
        width: 7px;
        height: 7px;
        border-left: 2px solid #fff;
        border-top: 2px solid #fff;
        background-color: transparent;
        transform: rotate(-45deg);
    }
    .rdl-catalog__item:has(.rdl-catalog__back) {
        display: block;
    }
    .rdl-header.--catalog-open .rdl-catalog__drop {
        display: block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }
    .rdl-catalog__sub {
        background-color: #133ADD;
        color: #fff;
        border: 0;
        padding: 0 12px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .rdl-catalog__sub:before {
        display: none;
    }
    .rdl-catalog__sub.--open {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        gap: 6px;
        z-index: 1;
    }
    .rdl-catalog__sub .rdl-catalog__link {
        font-weight: 500;
        padding: 6px 0;
    }
    
    .rdl-search {
        width: 100%;
        flex: initial;
        margin-top: auto;
		display: none;
    }
	.rdl-search.rdl-search_mob {
		display: block;
		order: 3;
	}
    .rdl-header .bx-basket {
        width: 100%;
    }
    .rdl-user {
        flex-direction: column;
        width: 100%;
    }
    .rdl-user__item {
        width: 100%;
    }
    .rdl-user__button {
        width: 100%;
    }

    body.--rdl-menu-open {
        overflow: hidden !important;
    }
    body.--rdl-menu-open:after {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000001;
        background-color: rgba(0,0,0,.38);
    }
    body.--rdl-menu-open .rdl-menu-open span {
        transform: scale(0);
    }
    body.--rdl-menu-open .rdl-menu-open:before {
        transform: rotate(45deg);
        top: 6px;
    }
    body.--rdl-menu-open .rdl-menu-open:after {
        transform: rotate(-45deg);
        top: 6px;
    }
    
    body.--rdl-menu-open .rdl-header {
        position: fixed;
        top: 70px;
        left: 0;
        bottom: 0;
        width: 300px;
        padding: 0;
        display: flex;
        flex-direction: column;
        z-index: 1000002;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    body.--rdl-menu-open .rdl-header.--scroll-block {
        overflow: hidden;
    }
    
    /*FIX*/
    .rdl-logo{
    	margin: 0 auto;
    }
    
    .rdl-cart{
    	flex-shrink:0;
    }
}


