
/* stuck */

/* prevent jump bse of the scrollbar when body has overflow hidden */
html {
    scrollbar-gutter: stable;
}

.desktop_device #st_header.stuck ._sd_custom_menu__wrapper,
.desktop_device #st_header.stuck .show_sub_lvl_1 {
    top: 41px;
}
.desktop_device #st_header.stuck .show_sub_lvl_1 {
    top: 41px;
}
.desktop_device #st_header.stuck ._sd_custom_menu__columns_container .show_sub_lvl_1 {
    height: 100vh;
}

._sd_custom_menu__wrapper {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 82px;
    background: rgba(0, 0, 0, 0.3);
    /* transform: translateY(-100%); */
    transition: 0.5s;
    z-index: 101;
    opacity: 0;
    overflow: hidden;
    display: none;
}

._sd_custom_menu__wrapper.open {
    /* transform: translateY(0); */
    opacity: 1;
    display: block;
}

._sd_custom_menu__container {
    background: transparent;
    width: 20% !important;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

._sd_custom_menu__header {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 40px;
    width: 20%;
    padding-left: 30px;
    padding-right: 0px;
    z-index: 10;
    top: 25px;
}
._sd_custom_menu__wrapper.open ._sd_custom_menu__container {
    animation: menu_animation 0.5s;
}

@keyframes menu_animation {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

._sd_custom_menu__header .search_widget_block {
    flex: 1;
}

._sd_custom_menu__header .search_widget_form_inner {
    border-radius: 4px;
    overflow: hidden;
    border: none;
}

._sd_custom_menu__content {
    flex: 1;
    position: relative;
}

._sd_custom_menu__column {
    height: 100%;
    position: relative;
}

.desktop_device ._sd_custom_menu__column {
    display: flex;
}

.desktop_device ._sd_custom_menu__main_column {
    flex: 1;
}

.desktop_device ._sd_custom_menu__categories_column {
    flex: 0.75;
}

._sd_custom_menu__main {
    height: 100%;
    position: absolute;
    opacity: 0;
    display: flex;
    z-index: 0;
    transition: opacity 0.5s;
    /* width: 20% !important; */
}

._sd_custom_menu__main.showing {
    opacity: 1;
    z-index: 1;
}

._sd_custom_menu__selector {
    display: flex;
    color: #111;
    /* position: absolute; */
    z-index: 1000;
    top: 25px;
    left: 100px;
    font-size: 24px;
    margin-left: 20px;
    gap: 25px;
}

@media only screen and (max-width: 1650px) {
    ._sd_custom_menu__selector {
        font-size: 18px;
    }

    ._sd_custom_menu__header {
        gap: 25px;
        padding-left: 15px;
    }

    ._sd_custom_menu__closer i {
        font-size: 30px !important;
    }
}

@media only screen and (max-width: 1300px) {
    ._sd_custom_menu__selector {
        font-size: 16px !important;
    }

    ._sd_custom_menu__header {
        gap: 25px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 1150px) {
    ._sd_custom_menu__selector {
        font-size: 14px !important;
    }

    ._sd_custom_menu__header {
        gap: 20px;
        padding-left: 15px;
    }

    ._sd_custom_menu__closer i {
        font-size: 24px !important;
    }
}

._sd_custom_menu__selector_item {
    cursor: pointer;
    font-size: 17px;
    color: #000;
    text-transform: none;
    font-weight: 600;
}

._sd_custom_menu__selector_item.selected {
    border-bottom: 1px solid black;
}

.desktop_device ._sd_custom_menu__closer {
    /* position: absolute; */
    top: 18px;
    left: 40px;
    z-index: 1;
    cursor: pointer;
    margin-bottom: 4px;
}

._sd_custom_menu__closer i {
    color: #111;
    font-size: 30px;
}

._sd_custom_menu__hamburguer {
    width: 26px;
    height: 16px;
    position: relative;
    cursor: pointer;
    z-index: 101;
    overflow: hidden;
    margin-right: 30px;
}

._sd_custom_menu__line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
}

._sd_custom_menu__hamburguer ._sd_custom_menu__top_line {
    top: 0;
    left: 0;
}

._sd_custom_menu__hamburguer ._sd_custom_menu__middle_line {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

._sd_custom_menu__hamburguer ._sd_custom_menu__bottom_line {
    bottom: 0;
    width: 100%;
    left: 0;
}

.desktop_device ._sd_custom_menu__block {
    margin-bottom: 20px;
}

._sd_custom_menu__block_category.selected ._sd_custom_menu__main_category_link {
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #111;
}

._sd_custom_menu__block_category.selected ._sd_custom_menu__main_category {
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* .desktop_device ._sd_custom_menu__subcategories.open {
    position: absolute;
    top: 50px;
    left: 60%;
}
.desktop_device ._sd_custom_menu__subcategories > * {
    height: 0;
    opacity: 0;
    z-index: -1;
    width: 0;
    position: absolute;
}
.desktop_device ._sd_custom_menu__subcategories.open > * {
    height: auto;
    opacity: 1;
    width: auto;
    transition: opacity 0.5s;
    position: static;
    z-index: 1;
} */
._sd_custom_menu__subcategories_2 {
    z-index: -1;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

._sd_custom_menu__subcategories_2.open {
    display: flex;
    flex-direction: column;
    height: auto;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 20px;
    gap: 5px;
}

.desktop_device ._sd_custom_menu__main_category,
.desktop_device ._sd_custom_menu__custom_link a {
    color: #111;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.desktop_device ._sd_custom_menu__subcategory,
.desktop_device ._sd_custom_menu__main_category_link {
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #424241;
    text-transform: uppercase;
}

.desktop_device ._sd_custom_menu__main_category_link {
    color: #111;
    display: inline-block;
    font-size: 17px;
}

.desktop_device ._sd_custom_menu__subcategory_name {
    display: inline-block;
    color: #1d1d1b;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.desktop_device ._sd_custom_menu__subcategory::first-letter {
    text-transform: uppercase;
}

.desktop_device ._sd_custom_menu__subcategory2_link {
    padding-left: 25px;
    color: #1d1d1b;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.desktop_device ._sd_custom_menu__subcategory2_link a {
    display: inline-block;
    text-transform: lowercase;
}

.desktop_device ._sd_custom_menu__subcategory2_link a::first-letter {
    text-transform: uppercase;
}

.mobile_device ._sd_custom_menu__subcategory2_link {
    font-size: 14px;
    font-weight: 400;
    padding-left: 10px;
}

.desktop_device ._sd_custom_menu__columns_container {
    width: 100%;
    padding-top: 40px;
    position: static;
    padding-left: 25px;
    padding-right: 60px;
    height: 100%;
    background: white;
    /* border-right: 1px solid black; */
}

.desktop_device ._sd_custom_menu__custom_link a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
}
.desktop_device ._sd_custom_menu__custom_link a:hover {
    color: black;
    font-weight: 600;
}
.desktop_device ._sd_custom_menu__custom_link.selected > a {
    font-weight: 600;
}

.desktop_device ._sd_custom_menu__custom_link a i {
    font-size: 16px;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_1 {
    width: 20%;
    left: 20%;
    padding-top: 40px;
    position: fixed;
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    top: 82px;
    display: none;
    background: white;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_1 a {
    font-size: 14px;
}
/* 
.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 {
    width: 20%;
    left: 40%;
    padding-top: 100px;
    position: fixed;
    padding-left: 50px;
    padding-right: 20px;
    height: 100%;
    top: 0;
    display: none;
    background: white;
    border-right: 1px solid black;
} */

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 {
    font-size: 18px;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 .custom_block:first-of-type {
    margin-left: -50px;
    margin-right: -20px;
    margin-top: -100px;
    text-align: center;
    color: black;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 .custom_block hr {
    color: black;
    border-color: black;
    border-width: 2px;
}

.desktop_device ._sd_custom_menu__main_column_info_bottom {
    color: black;
    margin-left: -50px;
    margin-right: -20px;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 20px;
    margin-top: 50px;
}

.desktop_device ._sd_custom_menu__main_column_info_bottom a {
    color: black;
    font-size: 16px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom a:hover,
.desktop_device ._sd_custom_menu__main_column_info_bottom p:hover {
    font-weight: 600;
}

.desktop_device ._sd_custom_menu__main_column_info_bottom p {
    color: black;
    font-size: 16px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .menu-account-link,
.mobile_device ._sd_custom_menu_mobile__bottom_bar .menu-account-link {
    color: black;
    font-size: 16px;
    padding-bottom: 0px;
    margin-bottom: 20px;
    cursor: pointer;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .menu-account-link:hover,
.mobile_device ._sd_custom_menu_mobile__bottom_bar .menu-account-link:hover {
    font-weight: 600;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_1.show,
.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2.show {
    display: block;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_1 .sub_link_lvl_1,
.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 .sub_link_lvl_2 {
    margin-bottom: 12px;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_1 a,
.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 a {
    display: flex;
    justify-content: space-between;
}

/* .desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 a {
    margin-bottom: 20px;
} */

.desktop_device ._sd_custom_menu__images_container {
    width: 0%;
    overflow: hidden;
    display: none;
}

.desktop_device ._sd_custom_menu__images_container img {
    width: 100%;
    object-fit: cover;
    height: 100vh;
}

.desktop_device ._sd_custom_menu__images_container img {
    height: 0;
    opacity: 0;
    display: block;
    transform: scale(1.05);
    transition: opacity 0.25s ease, transform 1s ease;
    object-fit: cover;
}

.desktop_device ._sd_custom_menu__images_container img._sd_custom_menu__image_active {
    opacity: 1;
    transform: scale(1);
    height: 100%;
    width: 100%;
}

.desktop_device ._sd_custom_menu__notification {
    color: #111;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    left: 50%;
    font-weight: 500;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

.desktop_device ._sd_custom_menu__subcategory_2 {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.desktop_device ._sd_custom_menu__subcategories {
    opacity: 0;
    position: absolute;
    top: 15px;
    z-index: -1;
}

.desktop_device ._sd_custom_menu__subcategories.open {
    padding-left: 30px;
    transition: 0.35s;
    opacity: 1;
    z-index: 100;
}
/* mobile */

._sd_custom_menu_mobile__wrapper {
    position: fixed;
    top: 0;
    /* background: rgba(0, 0, 0, 0.3); */
    width: 100%;
    transform: translateX(-100%);
    transition: 0.35s;
    height: 100dvh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

._sd_custom_menu_mobile__wrapper_container {
    position: fixed;
    top: 0;
    background: white;
    width: 80%;
    transition: 0.35s;
    height: 100dvh;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

._sd_custom_menu_mobile__content {
    flex: 1;
    position: relative;
}

._sd_custom_menu_mobile__wrapper.open {
    transform: translateX(0%);
    opacity: 1;
}

.mobile_device ._sd_custom_menu_mobile__content {
    margin-bottom: 20px;
}

.mobile_device ._sd_custom_menu__closer {
    position: absolute;
    right: 20px;
    top: 49px;
}

.mobile_device ._sd_custom_menu_mobile__header {
    padding: 20px;
    border-bottom: 1px solid #999;
}

.mobile_device ._sd_custom_menu__closer i {
    font-size: 28px;
}

.mobile_device ._sd_custom_menu__selector {
    margin-top: 35px;
}

/* .mobile_device ._sd_custom_menu__selector_item.selected {
    text-decoration: underline;
    text-underline-offset: 5px;
} */

.mobile_device ._sd_custom_menu_mobile__column {
    padding-left: 20px;
    padding-right: 20px;
}

.mobile_device ._sd_custom_menu_mobile__main_category {
    text-transform: uppercase;
    color: #111;
    font-weight: 600;
    font-size: 18px;
}

.mobile_device ._sd_custom_menu_mobile__bottom_bar {
    position: sticky;
    bottom: 0;
    left: 0;
    background: white;
    padding: 25px 20px;
    z-index: 10;
    width: 100%;
    margin-bottom: 1px;
    padding-bottom: 50px;
}

.mobile_device ._sd_custom_menu_mobile__bottom_bar>* {
    display: flex;
    justify-content: left;
    align-items: center;
    flex: 1;
}
.mobile_device ._sd_custom_menu_mobile__bottom_bar > div:first-of-type {
    border-top: 1px solid #999;
    padding-top: 20px;
}
.mobile_device ._sd_custom_menu_mobile__bottom_bar > div {
    margin-bottom: 20px;
}
.mobile_device ._sd_custom_menu_mobile__bottom_bar > div a {
    color: #000;
    font-size: 16px;
}
.mobile_device ._sd_custom_menu_mobile__block ._sd_custom_menu__custom_link>a{
    font-size: 16px!important;
    font-weight: 400!important;
}

.mobile_device ._sd_custom_menu__selector {
    margin-left: 0;
}

.mobile_device ._sd_custom_menu_mobile__main {
    height: 100%;
    position: absolute;
    opacity: 0;
    display: flex;
    width: 100%;
    z-index: 0;
    transform: translateX(30px);
}

.mobile_device ._sd_custom_menu_mobile__main.showing {
    opacity: 1;
    z-index: 1;
    transition: opacity 1s, transform .5s;
    overflow: auto;
    transform: translateX(0px);
}

.mobile_device ._sd_custom_menu_mobile__subcategory {
    height: 0;
    opacity: 0;
    z-index: -1;
    width: 0;
    position: absolute;
}

.mobile_device ._sd_custom_menu_mobile__subcategories.open ._sd_custom_menu_mobile__subcategory,
.mobile_device ._sd_custom_menu__custom_brands.open ._sd_custom_menu__subcategory {
    height: auto;
    opacity: 1;
    width: auto;
    transition: 0.5s;
    position: static;
    z-index: 1;
    margin: 8px 0px;
}

.mobile_device ._sd_custom_menu_mobile__subcategories,
.mobile_device ._sd_custom_menu__custom_brands.open ._sd_custom_menu__subcategory {
    padding-left: 10px;
}

.mobile_device ._sd_custom_menu_mobile__main_category,
.mobile_device ._sd_custom_menu_mobile__block ._sd_custom_menu__custom_link>a,
.mobile_device ._sd_custom_menu__brands_link {
    color: #111;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.mobile_device ._sd_custom_menu_mobile__subcategory,
.mobile_device ._sd_custom_menu__custom_brands.open a {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
    color: #111;
    text-transform: uppercase;
}

.mobile_device ._sd_custom_menu__custom_brands.open>a._sd_custom_menu__main_category_link {
    padding-left: 10px;
    margin: 8px 0;
    display: block;
}

.mobile_device ._sd_custom_menu_mobile__block {
    margin-top: 20px;
}

.mobile_device ._sd_custom_menu__notification {
    color: #111;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    left: 50%;
    font-weight: 500;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.mobile_device ._sd_custom_menu_mobile__bottom_bar i {
    font-size: 24px !important;
    color: #111;
    text-transform: uppercase;
}

.mobile_device ._sd_custom_menu_mobile__bottom_bar span {
    font-size: 14px;
    color: #111;
    text-transform: uppercase;
}

.mobile_device ._sd_custom_menu_mobile__bottom_bar .userinfo_mod_top a {
    display: flex;
    align-items: center;
}

.mobile_device ._sd_custom_menu__hamburguer {
    width: 25px;
    height: 18px;
    margin-left: 10px;
    margin-right: 10px;
}

.mobile_device ._sd_custom_menu__line {
    height: 2px;
    background: #111;
}

._sd_custom_menu_mobile__rightbar {
    display: flex;
    align-items: center;
}

._sd_custom_menu__bottom {
    font-size: 18px;
    margin-top: 20px;
}

.mobile_device ._sd_custom_menu__bottom {
    font-size: 16px;
    margin-bottom: 20px;
}

._sd_custom_menu__bottom>div:nth-child(3) i {
    margin-right: 3px;
    margin-left: -3px;
}

._sd_custom_menu__bottom>div {
    margin-top: 5px;
}

._sd_custom_menu__bottom * {
    color: #111;
    font-weight: 500;
}

._sd_custom_menu__bottom i {
    min-width: 25px;
}

._sd_custom_menu__column {
    /* overflow: auto; */
}

/* brands */

.desktop_device ._sd_custom_menu__brands_link.selected {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.desktop_device ._sd_custom_menu__custom_brands {
    position: absolute;
    top: 12px;
    left: 60.5%;
    z-index: -1;
}

._sd_custom_menu__custom_brands.open {
    z-index: 1;
    display: block !important;
}

.desktop_device ._sd_custom_menu__custom_brands a {
    color: #1d1d1b;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.desktop_device ._sd_custom_menu__selector_item_link a {
    color: #111;
}

body.sd_menu_open {
    overflow: hidden;
}

body.sd_menu_open #st-container {
    z-index: 999999;
}

.desktop_device ._sd_custom_menu__custom_link a:hover {
    color: black;
}

/* menú fonts */

.desktop_device ._sd_custom_menu__custom_link a {
    font-size: 16px;
}

@media (max-width: 1715px) {

    .desktop_device ._sd_custom_menu__main_category,
    .desktop_device ._sd_custom_menu__custom_link a {
        font-size: 16px;
    }
}

@media (max-width: 1560px) {

    .desktop_device ._sd_custom_menu__main_category,
    .desktop_device ._sd_custom_menu__custom_link a {
        font-size: 16px;
    }
}

@media (max-width: 1300px) {

    .desktop_device ._sd_custom_menu__main_category,
    .desktop_device ._sd_custom_menu__custom_link a {
        font-size: 16px;
    }
}

._sd_custom_menu__block > div[data-id-block='88'] a,
._sd_custom_menu__block > div[data-id-block='89'] a,
._sd_custom_menu__block > div[data-id-block='96'] a,
._sd_custom_menu__block > div[data-id-block='98'] a  {
    color: #CB4E48;
}

._sd_custom_menu__block > div[data-id-block='88'] a:hover,
._sd_custom_menu__block > div[data-id-block='89'] a:hover,
._sd_custom_menu__block > div[data-id-block='96'] a:hover,
._sd_custom_menu__block > div[data-id-block='98'] a:hover {
    color: #CB4E48;
}

._sd_custom_menu__block > div[data-id-block='94'] a,
._sd_custom_menu__block > div[data-id-block='95'] a {
    color: #F47D00;
}

._sd_custom_menu__block > div[data-id-block='94'] a:hover,
._sd_custom_menu__block > div[data-id-block='95'] a:hover
{
    color: #F47D00;
}


._sd_custom_menu__block .tag-block {
    color: black; 
    font-size: 14px; 
    position: relative; 
    cursor: pointer;
}
._sd_custom_menu__block .tag-block:hover {
    font-weight: 600;
}
._sd_custom_menu__block .tag-block .tag-new {
    color: #279943;
    font-size: 13px; 
    position: absolute; 
    bottom: 3px; 
    padding-left: 5px;
}
._sd_custom_menu__selector.open ._sd_custom_menu__selector_item:not(.selected) {
    color: #999;
}
._sd_custom_menu__selector:not(.open):hover ._sd_custom_menu__selector_item {
    color: #999;
}
._sd_custom_menu__selector:not(.open) ._sd_custom_menu__selector_item:hover {
    color: #000;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .separador {
    border-top: 1px solid #f2f2f2;
    padding-bottom: 20px;
}


.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list-title {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .title {
    color: black;
    font-size: 16px;
    padding-bottom: 0px;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list-info {
    display: block;
    align-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: end;
    cursor: pointer;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list-info.collapsed .icon_open,
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list-info:not(.collapsed) .icon_close {
    display: none;
}

.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list-info:not(.collapsed) .icon_open,
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list-info.collapsed .icon_close {
    display: block;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block #custom-menu-list{
    margin-top: 20px;
}
.desktop_device ._sd_custom_menu__main_column_info_bottom .easycontent .custom-menu-list-block .custom-menu-list_item {
    padding-left: 15px;
    margin-bottom: 20px;
    text-decoration: underline;
}
._sd_custom_menu__account {
    display: none;
}
._sd_custom_menu__account.open {
    position: absolute;
    z-index: 303;
    top: 0;
    background: white;
    height: calc(100% - 82px);
    width: 20%;
    /* padding-top: 40px; */
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
._sd_custom_menu__account ._sd_custom_menu__account_title {
    margin-bottom: 25px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
._sd_custom_menu__account ._sd_custom_menu__account_menu {
    flex-grow: 1;
}
._sd_custom_menu__account ._sd_custom_menu__account_item {
    margin-bottom: 25px;
    color: #000;
}
._sd_custom_menu__account ._sd_custom_menu__logout_button {
    height: 38px;
    background: #000;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
._sd_custom_menu__account ._sd_custom_menu__account_item ._sd_custom_menu__account_item_title {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}
._sd_custom_menu__account ._sd_custom_menu__account_item ._sd_custom_menu__account_item_title a {
    color: #000;
}
._sd_custom_menu__account ._sd_custom_menu__account_item ._sd_custom_menu__account_item_title:hover {
    font-weight: 600;
}
._sd_custom_menu__account ._sd_custom_menu__account_item ._sd_custom_menu__account_item_subtitle {
    font-size: 14px;
    color: #999;
}
._sd_custom_menu__account_menu {
    overflow: auto;
}

._sd_custom_menu__account_menu::-webkit-scrollbar {
    width: 2px;
}
._sd_custom_menu__account_menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}
._sd_custom_menu__account_menu::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 8px;
}
._sd_custom_menu__account_menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

._sd_custom_menu__account ._sd_custom_menu__account_back {
    /* margin-bottom: 40px; */
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
._sd_custom_menu__account ._sd_custom_menu__account_back i {
    margin-right: 15px;
    font-weight: 600;
    font-size: 14px;
}
.custom-menu-list-account-block {
    /* padding-right: 40px; */
}
.custom-menu-list-account-block .custom-menu-list-title {
    display: flex;
    justify-content: space-between;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-menu-list-account-block .title {
    color: black;
    font-size: 16px;
    padding-bottom: 0px;
}
.custom-menu-list-account-block .custom-menu-list-info {
    display: block;
    align-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: end;
    cursor: pointer;
}
.custom-menu-list-account-block .custom-menu-list-info.collapsed .icon_open,
.custom-menu-list-account-block .custom-menu-list-info:not(.collapsed) .icon_close {
    display: none;
}
.custom-menu-list-account-block .custom-menu-list-info:not(.collapsed) .icon_open,
.custom-menu-list-account-block .custom-menu-list-info.collapsed .icon_close {
    display: block;
}
.custom-menu-list-account-block #custom-menu-list-account{
    margin-top: 20px;
}
.custom-menu-list-account-block .custom-menu-list_item {
    padding-left: 15px;
    margin-bottom: 20px;
    text-decoration: underline;
    color: #000;
}
.custom-menu-list-account-block .custom-menu-list_item a {
    color: #000;
}
.custom-menu-list-account-block .custom-menu-list-info i {
    color: #000;
}
.custom-menu-list-account-block .custom-menu-list-info svg {
    position: absolute;
    top: 0;
    right: 0;
}





.mobile_device .header-container {
    margin-bottom: 0px!important;
}
.mobile_device #mobile_bar_center .flex_container {
    justify-content: left;
}
.mobile_device #mobile_bar_center .flex_container img {
    width: 90px;
    display: block;
}
.mobile_device #mobile_bar_center .flex_container .mobile_logo {
    padding-left: 0;
}
.mobile_device ._sd_custom_menu__hamburguer {
    width: 20px;
    height: 14px;
}

.mobile_device .custom-menu-list-block-mobile {
    display: block;
}
.mobile_device .custom-menu-list-block-mobile .custom-menu-list-title {
    color: #000;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.mobile_device .custom-menu-list-block-mobile .custom-menu-list-title i {
    font-size: 16px!important;
}

.mobile_device .custom-menu-list-block-mobile .custom-menu-list-info.collapsed .icon_open,
.mobile_device .custom-menu-list-block-mobile .custom-menu-list-info:not(.collapsed) .icon_close {
    display: none;
}

.mobile_device .custom-menu-list-block-mobile .custom-menu-list-info:not(.collapsed) .icon_open,
.mobile_device .custom-menu-list-block-mobile .custom-menu-list-info.collapsed .icon_close {
    display: block;
}
.mobile_device .custom-menu-list-block-mobile #custom-menu-list-mobile {
    margin-top: 20px;
}
.mobile_device .custom-menu-list-block-mobile .custom-menu-list_item {
    padding-left: 15px;
    margin-bottom: 15px;
    text-decoration: underline;
    font-size: 14px;
}
.mobile_device #custom-menu-list-mobile {
    margin-top: 15px;
}

.mobile_device .custom-menu-list-block-mobile .custom-menu-list-info {
    display: block;
    align-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: end;
    cursor: pointer;
}






.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-title {
    color: #000;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-title i {
    font-size: 16px!important;
}
.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-info {
    display: block;
    align-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: end;
    cursor: pointer;
}
.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-info.collapsed .icon_open,
.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-info:not(.collapsed) .icon_close {
    display: none;
}

.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-info:not(.collapsed) .icon_open,
.mobile_device ._sd_custom_menu__custom_link .custom-menu-list-info.collapsed .icon_close {
    display: block;
}

.mobile_device ._sd_custom_menu_mobile__block .link_group {
    margin-top: 20px;
    padding-left: 20px;
}
.mobile_device ._sd_custom_menu_mobile__block .link_group ._sd_custom_menu__custom_link {
    margin-bottom: 20px;
}

.mobile_device ._sd_custom_menu_mobile__main ._sd_custom_menu_mobile__columns_container {
    width: 100%;
}

.mobile_device ._sd_custom_menu_mobile__main .custom-menu-list-info svg {
    position: absolute;
    right: 0;
    top: 0;
}

/* account block not logged */

._sd_custom_menu__account__image {
    width: 100%;
    /* height: 185px; */
    /* background-color: #C4C4C4; */
}
._sd_custom_menu__account__image img {
    width: 100%;
}

._sd_custom_menu__account__login_text {
    color: #121417;
    font-weight: 400;
    font-size: 14px;
    margin: 24px 0px;
    text-align: center;
}
._sd_custom_menu__account__login_button {
    background: #000000;
    height: 40px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}
._sd_custom_menu__account__divider {
    height: 1px;
    background: #BABBBD;
    margin: 12px 0px;
}
._sd_custom_menu__account__register_text {
    color: #000;
    font-size: 16px;
    text-align: center;
}
._sd_custom_menu__account__register_button {
    height: 40px;
    border-radius: 4px;
    border: 1px solid #111;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
}

/* lvl 3 mod */

.desktop_device ._sd_custom_menu__wrapper .sub_link_lvl_1__opener {
    display: flex;
    color: #000;
    justify-content: space-between;
    font-weight: 500;
    cursor: pointer;
}
.desktop_device ._sd_custom_menu__wrapper .sub_link_lvl_1.open .sub_link_lvl_1__opener {
    font-weight: 600;
}
.desktop_device ._sd_custom_menu__wrapper .sub_link_lvl_1__opener:hover {
    font-weight: 600;
}
.desktop_device ._sd_custom_menu__wrapper .show_sub_lvl_1 .sub_link_lvl_1 {
    min-width: 150px;
    width: 70%;
}
.desktop_device ._sd_custom_menu__wrapper .show_sub_lvl_2 {
    display: none;
}
.desktop_device ._sd_custom_menu__wrapper .show_sub_lvl_2__item {
    padding-top: 8px;
    padding-left: 20px;
    font-size: 13px !important;
}
.desktop_device ._sd_custom_menu__wrapper .sub_link_lvl_1:not(.open) .sub_link_lvl_1__opener .sub_link_lvl_1__chevron_down,
.desktop_device ._sd_custom_menu__wrapper .sub_link_lvl_1.open .sub_link_lvl_1__opener .sub_link_lvl_1__chevron_right {
    display: none;
}

/* lvl 3 mod  - MOBILE */

.mobile_device .show_sub_lvl_2 {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    padding-top: 15px;
}
.mobile_device .show_sub_lvl_2__item {
    color: #000;
}
.mobile_device .show_sub_lvl_2 {
    display: none;
}
.mobile_device .sub_link_lvl_1.open .show_sub_lvl_2 {
    display: flex;
}
.mobile_device .sub_link_lvl_1__opener {
    display: flex;
    color: #000;
    justify-content: space-between;
    font-weight: 500;
    cursor: pointer;
}
.mobile_device .sub_link_lvl_1.open .sub_link_lvl_1__opener {
    font-weight: 600;
}
.mobile_device .sub_link_lvl_1__opener:hover {
    font-weight: 600;
}
.mobile_device .sub_link_lvl_1:not(.open) .sub_link_lvl_1__opener .sub_link_lvl_1__chevron_down,
.mobile_device .sub_link_lvl_1.open .sub_link_lvl_1__opener .sub_link_lvl_1__chevron_right {
    display: none;
}
.mobile_device ._sd_custom_menu__account.open {
    height: 100%;
    width: 100%;
}

.mobile_device .cc_sidebar__block[data-id-block="_sd_custom_menu"] {
    background: none;
}