button.steps-button-menu {
    border-radius: 0;
    border: 2px solid rgb(var(--secondary-color)) !important;
    display: block;
    padding: 10px !important;
    background: rgb(var(--secondary-color));
    transition: 0.3s;
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
}

.steps-wrapper-menu {
    position: fixed;
    /* From https://css.glass */
    background: rgba(45, 61, 49, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(45, 61, 49, 0.3);
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
   
    transition-property: opacity, display;
    transition-duration: 0.5s;
    transition-behavior: allow-discrete;
    display: none;
    z-index: 97;
    opacity: 0;
}
.stepstogether-menus-containers{
     display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    max-height:70vh;
}
.stepstogether-menus-containers .stepstogether-menus-content{
   min-height: 210px;
    padding-bottom: 10px;
    overflow-y: auto;
    padding-top: 10px;
    border-top: 1px solid rgb(var(--primary-color));
    /* Ocultar scrollbar nativo */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex: 1;
}

.stepstogether-menus-containers .stepstogether-menus-content::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.steps-menu-title{
    padding-bottom: 10px;
}
.steps-wrapper-menu.actived{
    display: block;
    opacity:1;
    transition-property: opacity, display;
    transition-duration: 0.5s;
    transition-behavior: allow-discrete;
}
.step-menu {
    background: #EEEFED;
    padding: 15px;
    padding-top: 100px;
    overflow: hidden;
}
.steps-menu-container{
    min-height: 100vh;
}
div#steps-wrapper-menu div>ul, div#steps-wrapper-menu li>ul {
    list-style: none;
    margin: 0;
}
div#steps-wrapper-menu div>ul{
    padding-bottom: 10px;
}
.bottom-menu-wrapper {
    display: flex;
    gap: 20px;
    padding-top: 0px;
    padding-bottom: 20px;
    overflow: auto;
    flex-direction: column;
}
.steps-wrapper-menu ul li a {
    color: rgb(var(--secondary-color));
    font-size: 16px;
}
.steps-wrapper-menu ul li a:hover {
    color: rgb(var(--primary-color));
}

.icon-button {
    height: 25px;
    width: 25px;
    overflow: hidden;
    position: relative;
}

.icon-button .steps-bar{
    transition: 0.3s;
    background: rgb(var(--white));
    width:25px;
    height: 2px;
    position: absolute;
}
.icon-button .steps-bar:nth-child(1){
    top:0;
}
.icon-button .steps-bar:nth-child(2){
    top:11px;
}
.icon-button .steps-bar:nth-child(3){
    top:23px;
}

.open-menu .icon-button .steps-bar:nth-child(2){
    opacity: 0;
}
.open-menu .icon-button .steps-bar:nth-child(1){
    top:11px;
    transform: rotate(45deg);
}
.open-menu .icon-button .steps-bar:nth-child(3){
    top:11px;
    transform: rotate(-45deg);
}
.menu-item-has-children>ul.sub-menu {
    display: none;
}
.steps-menu-taps-linkers {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    padding-bottom: 15px;
}
.steps-menu-tab-button {
    padding: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.steps-menu-tab-button {
    padding: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16/7;
    overflow: hidden;
    cursor: pointer;
}
h3.steps-menu-tab-button-title {
    color: white;
    text-align: center;
    line-height: 1.1;
}
.steps-menu-tab-button-image img {
    position: absolute;
    width: 100%;
    height: 100%; 
    aspect-ratio: 16/12;
    object-fit: cover;
    transition: 0.3s;
}

.steps-menu-tab-button-overlay {
    background: rgba(var(--secondary-color),0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    overflow: hidden;
    transition: 0.3s;
}
.steps-menu-tab-button-overlay:after{
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color),0.8);
    transition: 0.3s;
}
.steps-menu-tab-button:hover .steps-menu-tab-button-overlay:after,
.steps-menu-tab-button.active-tap .steps-menu-tab-button-overlay:after{
    transform: translateX(150%);
}
h3.steps-menu-tab-button-title {
    position: relative;
    z-index: 9;
    margin: 0;
}

.steps-menu-tab-button-image {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.steps-menu-tab-button-wrapper {
    display: none;
    opacity: 0;
  
}
.steps-menu-tab-button-wrapper.open-tap{
    display: block;
    opacity: 1;
 
}

.menu-item-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
}
button.submenu-toggle {
    padding: 0 10px;
    margin: 0;
    background: transparent;
}
.has-dropdown .menu-item-wrapper a {
    /* text-decoration: underline; */
    /* text-decoration-thickness: 2px; */
    padding-bottom: 0;
    font-weight: 600;
}

.menu-item-has-children>ul.sub-menu.open-submenu{
    display: block;
}
.submenu-toggle svg{
    transition: transform 0.3s ease;
}
.submenu-toggle.open svg {
    transform: rotate(180deg);
}
ul.menu-top-likers {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(1,1fr);
    padding-top: 20px;
    padding-bottom: 40px !important;
}
a.phones-items {
    background: rgb(var(--secondary-color));
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    border: 2px solid rgb(var(--secondary-color));
    color: white;
    align-items: center;
    transition: 0.3s;
}
a.phones-items span{
    display: none;        
}
a.phones-items:hover {
    background:transparent;
    color: rgb(var(--tertiary-color));
}
a.phones-items:hover svg path{
    fill: rgb(var(--secondary-color));
}
.ast-below-header-wrap {
    position: fixed;
    bottom: 21px;
    width: 100%;
    left: 0;
    padding: 0 30px;
}
#masthead .ast-mobile-header-wrap .ast-below-header-bar {
    padding-left: 20px;
    padding-right: 20px;
    width: fit-content;
    padding: 5px;
    padding-left: 5px !important;
    padding-right: 5px !important;
    margin: auto;
    box-shadow: 0 0px 1px black;
}
#ast-scroll-top{
     background: rgb(var(--primary-color));
}
.steps-menu-tab-content-title{
    margin-bottom: 0 !important;
}
.steps-menu-title {
    padding-bottom: 10px;
    margin-bottom: 0 !important;
}
.stepstogether-menus-scrollbar {
   width: 8px;
    background-color: rgba(var(--primary-color), 0.1);
    border-radius: 4px;
    margin-left: 8px;
    position: relative;
    display: none; /* Oculto por defecto */
    margin-top: 10px;
    margin-bottom: 10px;
}
.stepstogether-menus-scrollbar.visible {
    display: block; /* Mostrar cuando es visible */
}
.scrollbar-thumb{
    width: 100%;
    height: 20%;
    background-color: rgba(var(--secondary-color), 0.4);
    border-radius: 4px;
    position: absolute;
    top: 0;
    cursor: pointer;
    transition: background-color 0.2s;
}
.scrollbar-thumb:hover {
    background-color: rgba(var(--secondary-color), 0.6);
}

.scrollbar-thumb.dragging {
    background-color: rgba(var(--secondary-color), 0.8);
    cursor: grabbing;
}
@media(max-width: 767px){
    .stepstogether-menus-scrollbar{

    }
    .steps-menu-container {
    
    margin-bottom: 30px;
    display: flex;
    flex-direction: column-reverse;
    justify-content:flex-end;
    }
    h3.steps-menu-tab-button-title{
        font-size: 18px !important;
        
    }
    .top-menu-wrapper {
        
        
    }
    .bottom-menu-wrapper{
        padding-top:0px;
        padding-bottom: 10px;
        min-height: 150px;
    }
    #bottom-menu .stepstogether-menus-content{
        max-height: 219px;
    }
    #top-menu .stepstogether-menus-content{
        max-height: 357px;
    }
}
@media(min-width: 768px){
    div#bottom-menu {
    padding-top: 30px;
    border-top: 1px solid rgb(var(--primary-color));
}
   .step-menu {
}
.steps-menu-container{
    
    
    }
    a.phones-items span{
        display: block;        
    }
    .steps-menu-tab-button-image img,
    .steps-menu-tab-button {
         aspect-ratio: 8/10;
    }
    ul.menu-top-likers {
        grid-template-columns: repeat(3,1fr);
    }
    .bottom-menu-wrapper{
        flex-direction: row;
    }
    .steps-menu-taps-linkers {
        grid-template-columns: repeat(4,1fr);
    }
    
}
@media (min-width: 992px){
     .steps-menu-taps-linkers {
        grid-template-columns: repeat(5,1fr);
    }
     ul.menu-top-likers {
        grid-template-columns: repeat(4,1fr);
    }
}
@media (min-width: 1025px){
    .steps-menu-taps-linkers {
        grid-template-columns: repeat(6,1fr);
    }
   .steps-wrapper-menu ul li a {
        font-size: 18px;
    }
}