@import url('default.css');

.content-menu-powerfm{
    width: 100%;
    height: auto;
    background-color: #fafafa;
    padding: 10px 0px;
    border-left: 8px solid var(--colorPrimario);
}

.enlace-logo{
    width: 100%;
    height: auto;
    display: block;
}

.logo-navbar{
    width: 50%;
    height: auto;
    display: block;
    margin: auto;
}

.content-enlaces{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin: 10px 0px;
}

.social-enlace{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--colorPrimario);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    padding: 2px;
}

.search-navbar{
    width: 85%;
    height: auto;
    margin: 10px auto;
    padding-top: 20px;
}

.menu-desplegable{
    width: 100%;
    height: auto;
}

.btn-desplegable{
    width: 50px;
    height: 50px;
    margin: auto;
    display: block;

    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-desplegable i{
    font-size: 2.3rem;
}


.menu-desktop{
    width: 100%;
    height: auto;
}

.menu li {
    margin: 15px 0px;
    list-style: none;
}

.menu li a{
    color: #333;
    text-decoration: none;
    font-weight: 600;
}
.menu li a:hover{
    color: var(--colorPrimario);
}


.menu .menu-item-has-children:hover > .sub-menu{
    display: block;
}

.menu .menu-item-has-children ul{
    display: none;
}

.menu .menu-item-has-children a:nth-child(1):after{
    /* content: '\F282'; */
    /* content: '\F124';*/
    content: '\F229';
    font-family:'Bootstrap-icons';
    font-weight: 800;
    display: inline;
    /* margin-right: 10px; */
    position: relative;
    top: 3px;
    left: 10px;
}

.menu .menu-item-has-children .sub-menu li a:after{
    content: '';
}

.sub-menu{
    width: 100%;
    height: 150px;
    overflow-y: scroll;
}

.sub-menu li{
    margin: 5px 0px!important;
}

.sub-menu::-webkit-scrollbar {
    width: 5px;
  }
  .sub-menu::-webkit-scrollbar-thumb{
    background-color: var(--colorPrimario);
    border-radius: 5px;
  }





/* Media Querie phone Landscape */
@media screen and (min-width:576px){

}


/* Media Querie Tablet */
@media screen and (min-width:768px){
    .content-menu-powerfm{
        width: 100%;
        height: 100vh;
        margin: auto;
        
       }
    
       #columna-menu{
        position: sticky;
        top: 0;
        left: 0;
       }
}

/* Media Querie Tablet-desktop */
@media screen and (min-width:992px){
   
}

/* Media Querie desktop */
@media screen and (min-width:1200px){

   .logo-navbar{
     width: 50%;
   }

   /* .conte-slide{
    padding: 0px;
    margin: 0;
   } */
   
}

/* Media Querie desktop large*/
@media screen and (min-width:1366px){
   
}