﻿body {
    margin:0;
}

.modal{
    width:100%;
    background:rgba(0,0,0,0.8);
    z-index:111499;
    position:fixed;
    top:0px;
    left:0px;
    bottom:0px;
    display:flex !important;

    animation:modal 2s 2s forwards;
    visibility:hidden;
    opacity:0;
}
.modal-msg {
    width: 100%;
    background: white;
    z-index: 5000;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    display: flex;
    box-shadow: 10px 4px 80px #ccc;
}
.contenido {
    margin: 70px auto;
    padding: 10px !important;
    width: 50%;
    height: fit-content;
    /*min-height:30%;*/
    background: white;
    border-radius: 10px;
    font-size: 16px;
}
#cerrar{
    display:none;
}
#cerrar + label{
    position:fixed;
    color:white;
    font-size:25px;
    z-index:1001;
    background:darkred;
    height:40px;
    width:40px;
    line-height:40px;
    border-radius:50%;
    top:10px;
    right:10px;
    cursor:pointer;
    text-align:center;

    animation:modal 2s 2s forwards;
    visibility:hidden;
    opacity:0;
}
#cerrar-msg{
    display:none;
}
.btn-cerrar {
    position: fixed;
    color: white;
    font-size: 25px;
    z-index: 5001;
    background: darkred;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    top: 10px;
    right: 10px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.btn-cerrar-2 {
    position: absolute;
    color: white;
    font-size: 25px;
    z-index: 5001;
    background: darkred;
    height: 52px;
    width: 40px;
    line-height: 40px;
    border-top-right-radius: 10px;
    top: 0px;
    right: 0px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
#cerrar:checked + label, #cerrar:checked ~ .modal{
    display:none;
}
.boton-cerrar-pop {
    right: 0px;
    position: absolute;
    top: 0px;
    width: 30px;
    padding: 14px 9px;
    margin: auto;
    background: darkred;
    color: white;
    font-size: 13px;
    border-radius: 0px 10px 0px 0px;
    cursor:pointer;
}

.msj-solicitud{
    width:60% !important;
}
@keyframes modal{
    100%{
        visibility:visible;
        opacity:1;
    }
}
