﻿
/*----------------------------------------------------------------------------------------------------------------------*/

.contModal1 {
    width: calc(100vw);
    height: calc(100vh);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    border: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
}

.contModal2 {
    width: 86%;
    max-height: 480px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.12), 0 16px 16px rgba(0, 0, 0, 0.24);
}

.contModal3 {
    width: 86%;
    max-width: 1000px;
    max-height: calc(90vh);
    position: absolute;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px 10px;
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.12), 0 16px 16px rgba(0, 0, 0, 0.24);
}

.tituloModal {
    padding: 10px 0;
    border: 0;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: calc(15 / 13 * 100%);
    font-weight: 500;
}

.msgModal {
    max-height: 180px;
    overflow-y: auto;
    text-align: justify;
    padding: 10px 10px;
    color: rgba(0, 0, 0, 0.60);
    font-weight: 300;
}

.btnModal1 {
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    font-family: Roboto;
    padding: 14px;
    width: 70%;
    max-width: 230px;
    min-width: 130px;
    background-color: rgb(0, 151, 171);
    outline: none;
}

    .btnModal1:hover {
        background-color: rgba(0, 151, 171, 0.85);
    }


.btnModal2 {
    cursor: pointer;
    width: 100px;
    height: 35px;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    color: white;
    background-color: rgba(26,115,232,1);
    float: right;
    outline: none;
}

    .btnModal2:hover {
        background-color: rgba(26, 115, 232, 0.90);
    }


.btnCerrarFrm1 {
    background-image: url(/img/btnCerrarForm1.png);
    background-position: top;
    background-size: cover;
    cursor: pointer;
    float: right;
    width: 27px;
    height: 29px;
    border-radius: 100px;
    outline: none
}

    .btnCerrarFrm1:hover {
        background-image: url(/img/btnCerrarForm2.png);
        background-position: top;
        background-size: cover
    }



/*----------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width:780px) {
    .contModal2 {
        width: 50%;
    }
}

/*----------------------------------------------------------------------------------------------------------------------*/
