/* Modal */
.container-modal{
    width:100%;
    height: 100vh;
    position: fixed;
    top:0; left:0;
    background-color: rgba(144,148,150,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.content-modal{
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 2px;
}

.content-modal .btn-cerrar{
    
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    
}

.content-modal .btn-cerrar label{
    
    padding: 2px 2px;
    background-color:#FF74B1;
    color:#fff;
    border-radius: 0px;
    cursor: pointer;
    transition: all 300ms ease;
}

.content-modal .btn-cerrar label:hover{
    background-color:#000000;
    
}

.boton-modal{
    
    padding: 2px;
    background-color:#fff;
}

.boton-modal label{
    padding:10px 15px;
    background-color:#FF74B1;
    color:#fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}

.boton-modal label:hover{
    background-color:#000000;
}


.cerrar-modal{
    width: 100%;
    height: 100vh;
    position: absolute;
    top:0; left:0;
    z-index:-1;
}

#btn-modal{
    display: none;
}

#btn-modal:checked ~ .container-modal{
    display: flex;
}
