li {
  list-style: none;
}
a {
  text-decoration: none;
}
a, a:visited, a:hover, a:active {
  color: inherit;
}
.mobile{
    display:none;
}
.general{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	background-color: #0A3D62;
}
.header_estilos{
	height: 15%;
	width: 100%;
	background-color: #0A3D62;
}
.header_izquierda{
	width: 35%;
	height: 100%;
}
.general_logo{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.logo_encuesta{
	position: relative;
	width: 100%;
	height: 90%;
	left: 0.5rem;
	top: -1.5rem;
}
.header_derecha{
	width: 78%;
	height: 100%;
}
.navegacion_encuesta{
	position: relative;
	width: 70%;
	padding-left: 2rem;
	top: 3.5rem;
}
.navegacion_estilo{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.seccion_url{
	font-family: roboto;
	font-size: 1.4rem !important;
	color: #FFFFFF;
}

/*--------------------------------------------MOBILE----------------------------------------------------*/ 
@media only screen and (min-width: 320px) and (max-width: 480px) {
    .header_estilos .general{
        display:none;
    }
    .mobile{
        width:100%;
        display:flex;
        flex-direction:row;
    }
    .header_izquierda_mob{
        margin-top:1.5rem;
        width:40%;
    }
    .logo_mobile{
        width:100%;
    }
    .logo_encuesta_mob{
        position:relative;
        width:80%;
    }
    .header_derecha_mob{
        margin-top:1.5rem;
        width:60%;
        background-color:red;
    }
    .navegacion_encuesta_mob{
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        display:flex;
        flex-direction:column;
        margin-top:0.8rem;
    }
    .navegacion_estilo_mob .seccion_url_mob{
        margin-top:.1rem;
        margin-left:2rem;
        color: #000000;
    }
    .navegacion_estilo_mob a:hover{
        background-color: gray;
    }
    .navegacion_encuesta_mob{
        max-height: 0;
        transition: max-height .5s ease-out;
    }   
    .hamb{
        position:absolute;
        cursor: pointer;
        margin-top:2.5rem;
        margin-left:20rem;
    }/* Style label tag */
    
    .hamb-line {
        background: black;
        display: inline-block;
        height: 2px;
        position: relative;
        width: 24px;
    
    } /* Style span tag */
    
    .hamb-line::before,
    .hamb-line::after{
        background: black;
        content: '';
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    .hamb-line::before{
        top: 0.35rem;
    }
    .hamb-line::after{
        top: -5px;
    }
    
    .side-menu {
        display: none;
    } /* Hide checkbox */    
 

    .side-menu:checked ~ .navegacion_encuesta_mob{
        max-height: 100%;
    }
    .side-menu:checked ~ .hamb .hamb-line {
        background: transparent;
    }
    .side-menu:checked ~ .hamb .hamb-line::before {
        transform: rotate(-45deg);
        top:0;
    }
    .side-menu:checked ~ .hamb .hamb-line::after {
        transform: rotate(45deg);
        top:0;
    }

}
