.mobile-menu-container {
    width: 100%;
    overflow-y: auto;
    z-index: 401;
    position: fixed;
    left: 0;
    top: 40px;
    width: 100%;
    overflow-x: hidden;
    transition: all 0.3s;
    bottom: 0;
    right: 0px;
    background-color: #ffffff;
}

.catalog-mobile-menu--first {
      order: -1;
}

.catalog-mobile-menu__list {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

.catalog-mobile-menu__title {
    font-size: 20px;
    line-height: 24px;
    font-family: 'Coolvetica';
    font-weight: 300;
    padding: 0 16px;
    letter-spacing: 1px;
    font-style: italic;
}

.catalog-mobile-menu__title-link {
    color: var(--color-blue-zodiac);
}

.catalog-mobile-menu__title-link:hover {
    text-decoration: none;
    color: var(--color-hot-pink);
}

.catalog-mobile-menu__item:not(:last-child) {
    border-bottom: 1px solid var(--color-wild-sand);
}

.catalog-mobile-menu__link {
    color: var(--color-blue-zodiac);
    display: flex;
    align-items: center;
    padding: 8px 16px;
    position: relative;
}

.catalog-mobile-menu__link:after {
    content: '';
    height: 16px;
    width: 16px;
    background: no-repeat 0 0;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    }

.catalog-mobile-menu__link:hover {
    color: var(--color-hot-pink);
    text-decoration: none;
}

.catalog-mobile-menu__link:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23FF78B2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.catalog-mobile-menu__link--pink {
    color: #FF78B2;
}

.catalog-mobile-menu__link--purple {
    color: #EB448C;
}

.catalog-mobile-menu__icon {
    height: 32px;
    width: 32px;
    margin-right: 12px;
    flex-shrink: 0;
    display: block;
}

.catalog-mobile-menu__text {
    font-size: 14px;
    line-height: 19px;
}

.submenu-simple {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-white);
    padding-top: 15px;
    z-index: 9;
    overflow: hidden;
    overflow-y: auto;
    display: none;
}

.submenu-simple__back {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-regent-gray);
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    padding: 0 16px;
}

.submenu-simple__back:before {
    content: '';
    height: 20px;
    width: 20px;
    background: no-repeat 0 0;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 5L6.5 10L11.5 15' stroke='%23858F9A' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.submenu-simple__back:hover {
    color: var(--color-hot-pink);
    text-decoration: none;
}

.submenu-simple__back:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 5L6.5 10L11.5 15' stroke='%23FF78B2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.submenu-simple__title {
    font-family: 'Coolvetica';
    font-size: 20px;
    line-height: 24px;
    color: var(--color-blue-zodiac);
    margin-bottom: 0;
    padding: 0 16px;
    letter-spacing: 1px;
    font-style: italic;
}

.submenu-simple__title--brand {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Open Sans';
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.submenu-simple__item:not(:last-child) {
    border-bottom: 1px solid var(--color-wild-sand);
}

.submenu-simple__link {
    font-size: 14px;
    line-height: 19px;
    color: var(--color-blue-zodiac);
    display: block;
    padding: 12px 16px;
    position: relative;
}

.submenu-simple__link:after {
    content: '';
    height: 16px;
    width: 16px;
    background: no-repeat 0 0;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.submenu-simple__link:hover {
    color: var(--color-hot-pink);
    text-decoration: none;
}

.mobile-menu-bottom {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.mobile-menu-bottom__item {
    width: calc(50% - 2px);
}

.mobile-menu-bottom__link {
    background: #E6DFF0;
    color: #131413;
    font-family: 'RFDewi';
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    height: 84px;
    border-radius: 16px;
    position: relative;
    display: flex;
    padding-left: 12px;
    overflow: hidden;
    justify-content: space-between;
}

.mobile-menu-bottom__link--active {
    color: var(--color-hot-pink);
    font-weight: 600;
}

.mobile-menu-bottom__link:hover {
    color: var(--color-hot-pink);
    text-decoration: none;
}

.mobile-menu-bottom__text {
    padding: 10px 0;
    margin-right: -35px;
    flex: 1 auto;
    max-width: 86px;
    hyphens: auto;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

.mobile-menu-bottom__img {
    height: 84px;
    width: 84px;
    flex-shrink: 0;
}

.mobile-menu-bottom__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* old */

.mobile-menu-container .secondary-links{
    background-color: #f5f5f5;
    margin: 0px;
    padding: 10px 0px 10px;
}

.mobile-menu-container .secondary-links li{
    padding: 0px 18px;
}

.mobile-menu-container .secondary-links li a,
.mobile-menu-container .secondary-links li a:hover,
.mobile-menu-container .secondary-links li a:visited{
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.86;
    letter-spacing: normal;
    color: #333333;
}

.mobile-menu-container .menu-footer{
    width: 100%;
    background-color: #d3d3d5;
    border-top: solid 1px #e6e6e7;
    padding: 5px 18px 8px;
}
.mobile-menu-container .menu-footer .social,
.mobile-menu-container .menu-footer{

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;

    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;

    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;

    -webkit-align-content: flex-start;
    -moz-align-content: flex-start;
    -ms-align-content: flex-start;
    align-content: flex-start;

    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.mobile-menu-container .menu-footer span {
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #333333;
}

.mobile-menu-container .menu-footer a.phone {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #333333;
    text-transform: uppercase;
    font-feature-settings: "lnum" 1;
    border-bottom: dotted 1px #8e8e93;
}

.mobile-menu-blocks {
    width: 100%;
    display: block;
    text-align: left;
    height: auto;
    position: unset;
    padding: 0px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.mobile-menu-container .menu-footer .icon__vk--white{
    background: url('../images/vk.svg') 0px 0 no-repeat;
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 0px;
}

.mobile-menu-container .menu-footer .icon__inst--white{
    background: url('../images/inst.svg') 0px 0 no-repeat;
    display: block;
    width: 32px;
    height: 32px;
    margin-right: 5px;
}

.mobile-menu-container .menu-footer .social a{
    margin: 0px;
}

/*mobile menu brands*/
.mobile-menu .menu_brands_symbols {
    padding: 0px;
    min-width: 100%;
    width: 100%;
    overflow: visible;
}

.mobile-menu .abc {
    overflow: auto;
    width: 100%;
}

.mobile-menu .abc .mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-bottom: 10px;
}

.mobile-menu .abc .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar
{
    height: 3px;
    background-color: #ed2690;
}

.mobile-menu .abc .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar
{
    height: 3px;
    background-color: #ed2690;
}

.mobile-menu .abc .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 60px !important;
}

.mobile-menu .mCSB_scrollTools .mCSB_draggerRail {
    background-color: #e6e6e7;
}

.mobile-menu .abc .abc-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: auto;
}

.mobile-menu .abc .abc-list span {
    display: block;
}

.mobile-menu .abc .abc-list a {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: right;
    color: #333333;
    display: block;
    padding: 10px 20px 6px 20px;
    white-space: nowrap;
}

.mobile-menu .abc .abc-list a span {
    display: block;
    position: relative;
    right: -20px;
}

.mobile-menu .abc .abc-list a.last span {
    right: 0px;
}

.mobile-menu .abc .abc-list a:hover, .mobile-menu .abc .abc-list a.active {
    text-decoration: none;
}

.mobile-menu .brands_names a {
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
    color: #333333;
    display: block;
    padding: 15px 0px 15px 40px;
    font-feature-settings: "lnum" 1;
}

/* mobile menu slider */

.mobile-menu-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 8px;
}

.mobile-menu-slider__item {
    height: 100px;
    width: 160px;
}

.mobile-menu-slider__link {
    position: relative;
    display: flex;
    height: 100px;
    width: 160px;
    border-radius: 8px;
    overflow: hidden;
    color: #333333;
    text-decoration: none;
}

.mobile-menu-slider__text {
    position: absolute;
    left: 8px;
    top: 8px;
    max-width: calc(100% - 16px);
    background: #FFFFFF;
    border-radius: 4px;
    font-family: 'RFDewi';
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    padding: 4px 8px;
    color: #333333;
}

.mobile-menu-slider__img {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.mobile-menu-slider__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* end mobile menu slider */