/*MODAL*/
.modal-view {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.192);
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    display: none;
    justify-content: center;
}

.modal-page {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.modal-container {
    position: fixed;
    top: 30px;
    width: 55%;
    height: auto;
    background-color: #FDFDFD;
    transform: translateY(-110%);
    /* Oculta la modal inicialmente por encima */
    transition: transform .3s ease;
    border-radius: 10px;
    z-index: 2001;
}

    .modal-container.big {
        width: 95% !important;
    }

    .modal-container.show-modal {
        transform: translateY(0%);
    }

.header-modal {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #F3F3F3;
    padding: 20px;
    border-radius: 10px 10px 0px 0px;
}

.btn-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: solid 1px transparent;
    background-color: #1975C5;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.article-modal {
    padding: 20px;
    box-sizing: border-box;
    max-height: 650px;
    overflow-y: auto;
}

.form-modal {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    box-sizing: border-box;
}

.section-form-modal {
    border: solid 1px #e2e2e2;
    padding: 5px 10px 10px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
    padding: 22px;
}

.footer-form-model{
    display: flex;
    flex-direction: row;
    justify-content: end;
    box-sizing: border-box;
    padding: 20px 10px 0px;
}

.title-section-modal {
    position: absolute;
    top: -11px;
    background-color: #FDFDFD;
    left: 10px;
}

    .title-section-modal span {
        font-size: 14px;
        color: #4d4c4c;
    }


.container-group-form {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: stretch;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 5px;
}

    .container-group-form .container-input.row3 {
        width: 32.9%;
    }

    .container-group-form .container-input.row2 {
        width: 49.5%;
    }

.txt-tarea {
    height: 100px;
    min-height: 100px;
    max-width: 100%;
    min-width: 100%;
}

.footer-modal {
    height: auto;
    padding: 5px 20px 20px 20px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

#black-screen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1999;
    box-sizing: border-box;
    border: solid 1px transparent;
    background-color: rgba(0, 0, 0, 0.11);
    width: 100%;
    height: 100%;
}

@media (max-width:800px) {
    .modal-container {
        width: 90%;
    }

    .article-modal {
        height: 70vh;
    }

    .container-group-form .container-input.row3 {
        width: 100%;
    }

    .container-group-form .container-input.row2 {
        width: 100%;
    }
}
