@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap");


* {
padding: 0;
margin: 0;
box-sizing: border-box;
}

body {
font-family: "Poppins", sans-serif;

--black: #242424;
--white: #f5f5f5;
--pill: #e0d4be;
--red: #cc033f;
--main-color-1: #698ab7;
--main-color-2: #60893a;
}

ul {
list-style: none;
}

.page-wrap {
position: relative;
}

header {
width: 100%;
min-height: 100vh;
overflow-x: hidden;
}

#barraMenu {
    min-height: 100px;
    background-color: #343434;
    border-bottom: 0;
	position: sticky;
	top: 0px;
	z-index: 999;
}
.contenidoBarraMenuInicioSesion {
    min-height: 100px;
    display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 1rem 0 1rem;
}

.contenidoBarraMenuInicioSesion img {
    width: 100%;
    max-width: 200px;
}

.barraMenuInicioSesion{
	padding: 0 1rem 0 1rem;
}

.datosBarraMenuInicioSesion {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #cccccc60;
    border-radius: 1rem;
	padding: 1rem;
}
#bodyIntrasolPrincipal{
	background-color: #cccccc60;
	z-index: -2;
}

.flex{
    display: flex;
    width: 100%;
    height: 85%;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: absolute;
}
.datosMenu{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: scroll;
    padding: 1rem;
    width: 20%;
}
.datosMenu p{
    font-size: .9rem;
    font-size: .9rem;
    margin: 0.5rem;
}
.datosMenu p:hover {
    cursor: pointer;
    font-weight: bold;
}
.datosMenu .seleccionado{
    border-bottom: 1px solid;
    font-weight: bold;
}
/* CAMBIA EL FORMATO DE LAS BARRAS DE SCROLL  ──────────────────────────────────────────────────────────────────*/

.datosMenu::-webkit-scrollbar {
    -webkit-appearance: none;
}

.datosMenu::-webkit-scrollbar:vertical {
    width:10px;
}

.datosMenu::-webkit-scrollbar-button:increment,.datosMenu::-webkit-scrollbar-button {
    display: none;
} 

.datosMenu::-webkit-scrollbar:horizontal {
    display:none
}

.datosMenu::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.datosMenu::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.datosContenedor{
    height: 100%;
    width: 80%;
    padding: 1rem;
    overflow: scroll;
}
#contenidoSecciones{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.datosContenedor::-webkit-scrollbar {
    -webkit-appearance: none;
}

.datosContenedor::-webkit-scrollbar:vertical {
    width:10px;
}

.datosContenedor::-webkit-scrollbar-button:increment,.datosContenedor::-webkit-scrollbar-button {
    display: none;
} 

.datosContenedor::-webkit-scrollbar:horizontal {
    display:none
}

.datosContenedor::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.datosContenedor::-webkit-scrollbar-track {
    border-radius: 10px;  
}

.datosContenedor h1{
    color: #404040;
    margin: 1rem 0;
}
.datosContenedor p{
    margin-bottom: 1rem;
}

.cabeceraContenedor{
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid grey;
    margin-bottom: 1rem;
}
.cabeceraContenedor h1{
    font-size: 2.5rem;
}

section{
    width: 60%;
    min-height: 100px;
}

.respuesta{
    background-color: #343434;
    padding: 0.5rem;
    border-radius: 5px;
    max-width: 100%;
    overflow-x: auto;
}
.respuesta p{
    font-family: 'Courier New', Courier, monospace;
    color: #ffff;
    margin-bottom: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.datosMenuMovil{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: scroll;
    padding: 1rem;
    width: 100%;
}
.datosMenuMovil p{
    font-size: .9rem;
    font-size: .9rem;
    margin: 0.5rem;
}
.datosMenuMovil p:hover {
    cursor: pointer;
    font-weight: bold;
}
.datosMenuMovil .seleccionado{
    border-bottom: 1px solid;
    font-weight: bold;
}
.botonMenu{
    display: none;
    width: 100%;
    height: 5%;
}
.botonMenu img{
    margin-left: 1rem;
    margin-top: 0.5rem;
}
.botonMenu img:hover{
    cursor: pointer;
}
