
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
#BannerModal {
    width:100%;
    height:100%;
}
#titleBannerEmploye {
    font-weight:900;
}
.modalContainer {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 250px;
    /*padding-bottom:20vh;*/
    bottom:15% !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
/*#0537fe*/
    .modalContainer .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 20px;
        border: 1px solid lightgray;
        border-top: 10px solid #ebebef;
        width: 60%;
    }

    .modalContainer .closeModal {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

        .modalContainer .closeModal:hover,
        .modalContainer .closeModal:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }
.sectionAllHigth {
    min-height: 100vh;
}
.listTipyEmployee {
    margin:5px;
}
#checkTipoPlaza2 {
    /* ...existing styles */
    /*//display: grid;*/
    place-content: center;
    color: red;
}
#checkTipoPlaza2::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}
 #checkTipoPlaza2:checked::before {
        transform: scale(1);
    }
form {
    background-color: #fff;
}
#divideSection {
    border: 0.5px solid #97c93f;
    
}
#ContainerButtonsRequeriments {

    display:flex;
    justify-content:space-evenly;
    flex-wrap:wrap;
    align-content:space-evenly;
}
#textTeam {
    font-weight: 900;
    padding-right: 5px;    
}
#textEnterprise {
    font-weight:100;
    padding-right: 5px;
    /*color: #97c93f;*/
    font-size:45px;
    font-family:Impact,fantasy;
}


.button-33 {
    background-color: #222;
    border-radius: 4px;
    border-style: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: "Farfetch Basis","Helvetica Neue",Arial,sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    max-width: none;
/*    height:34px !important;
*/    min-height: 34px;
    /*max-height:34px;*/
    min-width: 10px;
    outline: none;
    overflow: hidden;
    padding:0;
    padding: 9px 10px 8px;
    /*position: relative;*/
    text-align: center;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
}

    .button-33:hover,
    .button-33:focus {
        opacity: .75;
    }


.sectio {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sectio:nth-child(1) {
        color: #e0ffff;
    }

    .sectio:nth-child(2) {
        color: #42455a;
        background: transparent;
    }

    .sectio:nth-child(3) {
        color: #e0ffff;
    }

    .sectio:nth-child(4) {
        color: #42455a;
        background: #e0ffff;
    }

    .sectio .container {
        /*margin: 100px;*/
        margin-top:0;
    }

    .sectio h1 {
        font-size: 3rem;
        margin: 20px;
    }

    .sectio h2 {
        font-size: 40px;
        text-align: center;
        text-transform: uppercase;
    }

    .sectio .text-container {
        display: flex;
    }

        .sectio .text-container .text-box {
            margin: 20px;
            padding: 20px;
            background: #00c2cb;
        }

            .sectio .text-container .text-box h3 {
                font-size: 30px;
                text-align: center;
                text-transform: uppercase;
                margin-bottom: 10px;
            }

@media (max-width: 900px) {
    .sectio h1 {
        font-size: 2rem;
        text-align: center;
    }

    .sectio .text-container {
        flex-direction: column;
    }
}

.reveal {
    position: relative;
    opacity: 0;
}

    .reveal.active {
        opacity: 1;
    }

.active.fade-bottom {
    animation: fade-bottom 1s ease-in;
}

.active.fade-left {
    animation: fade-bottom 1s ease-in;
}

.active.fade-right {
    animation: fade-right 1s ease-in;
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}





/*Modal*/

.page {
    background: url(img/foto.jpg) center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fondo_transparente {
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.226);
    position: absolute;
    height: 100vh;
    width: 100%;
    display: none;
}

.modal {
    background: linear-gradient(0deg,white 70%, crimson 30%);
    width: 600px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 30px;
}

.modal_cerrar {
    background: white;
    position: absolute;
    right: -20px;
    color: crimson;
    top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal_titulo {
    color: white;
    font-size: 40px;
}

.modal_mensaje {
    padding: 10px 30px;
}

.modal_botones {
    width: 100%;
    background: whitesmoke;
    border-top: whitesmoke 1px;
    padding-top: 20px;
    display: flex;
    justify-content: space-evenly;
}

.boton {
    background: white;
    padding: 8px 30px;
    color: crimson;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid crimson
}

    .boton:hover {
        background: crimson;
        color: white;
    }
           
/*modal 2*/
.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    overflow-y: scroll;
}

    .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
    }

    .modalDialog > div {
        width: 700px;
        position: relative;
        margin: 10% auto;
        padding: 5px 20px 13px 20px;
        border-radius: 10px;
        background: #fff;
        background: -moz-linear-gradient(#fff, #999);
        background: -webkit-linear-gradient(#fff, #999);
        background: -o-linear-gradient(#fff, #999);
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    }

.close {
    background: #606061;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

    .close:hover {
        background: #00d9ff;
    }

#ContainerButtonsRequeriments {
    margin-top:5%;
    display:flex;
    flex-direction:row;
    justify-content:center;
}
.DocumentRequeried {
    background-color: white;
    color: aquamarine;
    width: 12%;
    height: 8vh;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    border-radius: 70px;
    text-align: center;
    font-weight: 800;
    border-color: #6c6c6e;
}



.TextButton {
    background-image: linear-gradient( to right, #54b3d6, #54b3d6 50%, #000 50% );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.TextButton:before {
    content: '';
    background: #54b3d6;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
}

.TextButton:hover {
    background-position: 0;
}

.TextButton:hover::before {
    width: 100%;
}
#ContainerButtonsRequeriments {
    background-color:#fff;
  /*  height:30%;
    display:flex;
    justify-content:center;
    align-content:center;
    align-items:center;
    flex-wrap:wrap;*/
}

.modal-footer {
    border-top: 0px;
}


@media (max-width: 768px) {
    form {
        background-color: #fff;
    }
    #ContainerButtonsRequeriments {
        height:30vh;
        justify-content:space-around;
        font-size:10px;
    }
    #ContainerBannerSection {
        width:100vw;
        padding-left:0;
        padding-right:0;
    }
    #myModal {
        display:none !important;
        /*z-index:1;*/
    }
}