@import url('./variables.css');

.contenedor-modal {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 30;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
}
.modal {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}
.contenido-modal {
    background-color: var(--bgc-naranja);
    box-shadow: 0 0 2em #4f4f4f;
    position: absolute;
    padding: 1em;
    margin: auto;
    height: 75%;
    width: 75%;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.titulo-modal {
    text-align: center;
    position: absolute;
    max-height: 10%;
    margin: 0 auto;
    height: 10%;
    right: 0;
    left: 0;
}
.btn-cerrar-modal {
    position: absolute;
    right: 1em;
    top: 1em;
}
.cuerpo-modal {
    max-height: calc(90% - 2em);
    max-width: calc(100% - 2em);
    position: absolute;
    margin: 0 auto;
    height: 100%;
    bottom: 1em;
    right: 0;
    left: 0;
}
