/******* BOTON MENU  ***********/
.btn_play {
    display: block;
    cursor: pointer;
    width: 25px;
    transition: all .1s;
    padding: 10px;
    margin-right: 5px;
}
.btn_play hr {
    border: 0;
    height: 3px;
    width: 100%;
    border-radius: 1px;
    position: relative;
    top: 0px;
    transition: all .5s;
    margin:5px auto;
    background-color: var(--azul);
    border-radius: 10px;
    transition: all .3s;
    transform: rotate(0deg);
}
.btn_play hr.btn_play_2 {
    margin-left: 5px;
}
.btn_play:hover hr {
    box-shadow: 0 0 1px var(--azul);
}
.btn_close hr.btn_play_1{
    transform:rotate(45deg);
    top: 4px;
}
.btn_close hr.btn_play_3{
    transform:rotate(-45deg);    
    top: -4px;
}
.btn_close hr.btn_play_2{
    display:none;
    margin:0;
    padding:0;
    height:0;
}
/******* BOTON MENU  ***********/
#menufixed{
    position: fixed;
    left: -280px;
    display: none;
    background-color: var(--verde);
    width: 280px;
    height: 100vh;
    z-index: 9;
    /* transition: all 5s; */
}
.menufixed_content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.menufixed_box{
    padding-top: 80px;
}
.menufixed_box li{
    border-top: 1px solid #44cf05;
    border-bottom: 1px solid #48e700;
}
.menufixed_box li a{
    color: var(--blanco);
    padding: 10px 30px;
    display: block;
    font-family: 'aileronblack',sans-serif;
    transition: all .3s;
}
.menufixed_box li a:hover{
    color: var(--azul);
}

.menufixed_content .footer_rrss{
    padding-bottom: 20%;
}