.navegador {
    display: flex;
}
.LOGO_NAVEGADOR{
    display: flex;
    justify-content: center;
}
.CONTROL_NAVEGADOR {
    width: 55px;
    background: #232323;
    height: 100vh;
}
.CARTELERA_INICIO {
    display: flex;
    flex-direction: row;
    width: calc(100vw - 55px);
    height: 100vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 1) 100%), url(https://i.imgur.com/2oKqpOR.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.CONTROL_BOTONERA{
    height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.CONTROL_BOTON:hover{
	background-color: #303030;
}
.PANEL_BOTON:hover{
	border-bottom: 2px solid red;
}

.contenido_navegador {
    width: 100%;
}

.live_button {
    font-size: larger;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 280px;
}
.boton_registro_organizador:hover {
    text-decoration: underline;
    background: #ff2424;
}

.boton_registro_organizador {
    border: none;
    height: 60px;
    background: red;
    color: white;
    font-size: large;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}
.CONTENEDOR_INICIO {
    width: 100%;
    height: calc(100vh - 110px);
    min-height: 600px;
    display: flex;
    
}
.CONTENEDOR_NAVEGADOR {
    display: flex;
    width: 100%;
    height: 100%;
}
.CONTENIDO_NAVEGADOR {
	display: none;
    width: calc(100vw - 55px);
}
.CONTROL_IMG{
	width: 20px;
	cursor: pointer;
}
.CONTROL_BOTON {
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 17px;
    justify-content: center;
}
.iBOTON {
    margin: 0;
    font-style: normal;
    color: white;
    display: flex;
    justify-content: center;
    font-size: 20px;
}
.contenido_fade {
	animation-name: contenido_fade;
	animation-duration: 1.5s;
}

@keyframes contenido_fade {
	from {
		opacity: .4;
	}to {
		opacity: 1;
	}
}
