.formularioModal{
    display: none;
    position: fixed;
    z-index: 999999;
    /*overflow: auto;*/
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.flex{
    /*width: 100%;*/
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contenido-frmmodal{
    position: relative;
    background: #fefefe;
    margin: auto;
    width: 35%;
    box-shadow: 0 0 6px 1px rgba(0,0,0,.75);
    animation-name: modalfrm1;
    animation-duration: 1s;
}

.modalfrm-header, .modalfrm-footer{
    background: #537b2b;
    padding: 5px 15px;
}

.modalfrm-header h2{
    color: #ffffff;
}

.cerrar-modal{
    color: #f2f2f2;
    font-size: 30px;
    font-weight: bold;
}

.cerrar-modal:hover{
    color: #7f8c8d;
    cursor: pointer;
}


input.resaltar:focus, select.resaltar:focus, textarea.resaltar:focus  {
    border: 1px solid #000000;
    background-color: #dee6db;
    color: #000000;
}


.form-group input[type=text],     
.form-group input[type=email],
.form-group textarea, 
.form-group select
{

    border: 1px solid #707c64;
    font-size: 18px;
    line-height: 18px;
}


.form-group input[type=text]:focus,     
.form-group input[type=email]:focus,
.form-group textarea:focus, 
.form-group select:focus{

    box-shadow: 0 0 8px #537b2b;
    border: 1px solid #3b571f;
}


@keyframes modalfrm1{
    from{bottom:-100%; opacity: 0;}
    to{bottom: 0; opacity: 1;}
}

@media screen and (max-width: 1200px) {
    .contenido-frmmodal{
        width: 70%;
    }
}

@media screen and (max-width: 992px) {
    .contenido-frmmodal{
        width: 75%;
    }
}

@media screen and (max-width: 768px) {
    .contenido-frmmodal{
        width: 80%;
    }
}