/********************************************************************************************** MODAL POPUP*/
.modalpop {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    animation: modalpop 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
}

.contenidopop {
    margin: auto;
    width: 700px;
    max-width: 90%;
    height: auto;
    background: white;
    border-radius: 10px;
    position: relative;
    text-align: center;
    padding: 0 0 25px 0;
}

#cerrarpop {
	display: none;
}

.contenidopop label {
    margin: 5px;
    position: absolute;
    font-size: 18px;
    z-index: 50;
    background: lightgrey;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    right: 0px;
    top: 0px;
    cursor: pointer;
    animation: modalpop 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
}

#cerrarpop:checked + label, #cerrarpop:checked ~ .modalpop {
	display: none;
}

@keyframes modalpop {
	100% {
		visibility: visible;
		opacity: 1;
	}
}