body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.center {
    margin: 0;
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.shade {
    background-color: #ffffff83;
}

.contenedor {
    background-color: rgba(204, 189, 222, 0.13);
    background-image: url(https://source.unsplash.com/featured/1920x1080/?laboratory);
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
}

.watermark {
    background-color: transparent;
    height: 100vh;
    width: 100vw;
    background-image: url(/imgs/logo_transp.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    opacity: 0.12;
}


.mensaje {
    position: fixed;
    top: 15%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0);
    z-index: 4;
}

.checkbox label {
    color: whitesmoke;
    background-color: red;
}

.version {
    position: fixed;
    bottom: 2em;
    right: 12em;
    color: green;
    font-family: monospace;
}

.site-name {
    font-size: 3em;
    color: #1003c0;
}

.offline {
    border-radius: 2em;
    padding: 1em;
    background-color: rgba(235, 212, 0, 0.3);
    font-size: 4vw;
    color: #1003c0;
    text-align: center;
}

.legal-web-text {
    position: absolute; /* Posicionamiento absoluto */
    bottom: 0; /* Abajo */
    left: 0; /* Izquierda */
    width: 100%; /* 90% del ancho de la pantalla/contenedor padre */
    padding: 1em 6em;
    border: 1px solid #ddd;
    border-radius: 5px 5px 0 0; /* Redondeamos solo la parte superior */
    background-color: #f9f9f999;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidad */
}

.pop-message {
    position: absolute; /* Posicionamiento absoluto */
    bottom: 50%; /* Abajo */
    left: 0; /* Izquierda */
    width: 100%; /* 90% del ancho de la pantalla/contenedor padre */
    padding: 1em 6em;
    border: 1px solid #ddd;
    border-radius: 5px 5px 0 0; /* Redondeamos solo la parte superior */
    background-color: #f9f9f999;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidad */
}

#contenedorOverlay {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-height: 94%;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius: 2em;
}

#capaOverlay {
    z-index: 15;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Fondo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}

#capaOverlay.oculto {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}


#botonCerrarOverlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: blue;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}