._sd_custom_menu__wrapper {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    /* 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: 25% !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: 25%;
    padding-left: 30px;
    padding-right: 0px;
    z-index: 10;
    top: 25px;
}

._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: 25% !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;
    gap: 25px;
    left: 100px;
    font-size: 24px;
}

@media only screen and (max-width: 1650px) {
    ._sd_custom_menu__selector {
        gap: 15px;
        font-size: 18px;
    }

    ._sd_custom_menu__header {
        gap: 20px;
        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: 20px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 1150px) {
    ._sd_custom_menu__selector {
        gap: 10px;
        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;
}

._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: black;
}

._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: 25%;
    padding-top: 100px;
    position: fixed;
    padding-left: 50px;
    padding-right: 20px;
    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;
}

.desktop_device ._sd_custom_menu__custom_link a i {
    font-size: 16px;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_1 {
    width: 25%;
    left: 25%;
    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_1 a {
    font-size: 18px;
}

.desktop_device ._sd_custom_menu__columns_container .show_sub_lvl_2 {
    width: 25%;
    left: 50%;
    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;
    border-top: 1px solid 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: 24px;
    padding-bottom: 0px;
    margin-bottom: 15px;
}

.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: 20px;
}

.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;
    right: 0;
    background: white;
    width: 100%;
    transform: translateX(-100%);
    transition: 0.35s;
    height: 100vh;
    z-index: 100;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

._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: 15px;
}

.mobile_device ._sd_custom_menu_mobile__header {
    padding: 20px;
}

.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: 5px 0px;
    display: flex;
    z-index: 10;
    width: 100%;
    box-shadow: 0px 0px 1px rgb(0 0 0 / 50%);
    margin-bottom: 1px;
}

.mobile_device ._sd_custom_menu_mobile__bottom_bar>* {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.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: 10px;
}

.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: 24px;
}

@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__custom_link[data-id-block='23'] > a,
._sd_custom_menu__custom_link[data-id-block='26'] > a,
._sd_custom_menu__custom_link[data-id-block='23'] > a:hover,
._sd_custom_menu__custom_link[data-id-block='26'] > a:hover {
    color: blue;
}

._sd_custom_menu__custom_link[data-id-block='23'] > a > i,
._sd_custom_menu__custom_link[data-id-block='26'] > a > i {
    color: #000;
}

._sd_custom_menu__custom_link[data-id-block='28'] > a,
._sd_custom_menu__custom_link[data-id-block='30'] > a,
._sd_custom_menu__custom_link[data-id-block='28'] > a:hover,
._sd_custom_menu__custom_link[data-id-block='30'] > a:hover {
    color: red;
}

._sd_custom_menu__custom_link[data-id-block='28'] > a > i,
._sd_custom_menu__custom_link[data-id-block='30'] > a > i {
    color: #000;
}
