/*La sobrepocisión de los menús con z-index se da partir del 11 en adelante*/
/*Inicio estilos del menú*/
a{
    cursor: pointer;
}
i{
    font-size: 20px;
}
#acordion_menu {
    overflow-y: scroll;
}

#acordion_menu::-webkit-scrollbar {
    width: 6px;
}

#acordion_menu::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-color: #85C1E9;
}

#acordion_menu::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
}

.accordion-item {
    background-color: #fff;
    border: none;
}

.accordion-button {
    background-color: #fff;
}
.input_tablas{
    width:100%;border:none;outline:none;
}
tr:hover td input{
    background-color:#ECECEC;
}
/*Fin estilos del menú*/
/*Inicio estilos scroll*/
.scroll_oculto{
    overflow-y: scroll;
    overflow-x: scroll;
}
.scroll_oculto::-webkit-scrollbar{
    width: 0;
    height: 0;
}
.scroll{
    overflow-y: scroll;
    overflow-x: scroll;
}
.scroll::-webkit-scrollbar{
    width: 4px;
    height: 4px;
}
.scroll::-webkit-scrollbar-thumb {
    border-radius: 7px;
    background-color: #85C1E9;
}
/*Fin estilos scroll*/
#icono{
    animation: icono 8s ease;
    /* animation: margenA 5s ease; */
}
#formulario{
    animation: ocultar-2 10s ease;
}
.hoja_simulada_word{
    /* width: 210mm; */
    width: 297mm;
    /* z-index: 2; */
    position: relative;
    /* margin: 10px auto; */
    background-color: #fff;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
    /* padding: 40px; */
}
@keyframes ocultar-1{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes ocultar-2{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;        
    }
    100%{
        opacity: 1;
    }
}
@media(max-width:700px){
    .espacio{
        width: 100%;
        height: 70px;
        display: none;
    }
    #cont_menu{
        background-color: pink;
        position: relative;
        height: 70px;
        width: 100%;
    }
    #menu{
        background-color: red;
        width: 100%;
        height: 70px;
    }
    #menu_icono{
        width: 50px;
        height: 70px;
        padding: 10px;
        text-align: center;
        position: fixed;
        right: 0;
    }
    .menu_caja:nth-child(2){
        width: 200px;
        background-color:#fff;
        position:fixed;
        top:0;
        right: 0;
        z-index: 12;
        border-left: solid 1px #ECECEC;
    }
    .espacio{
        width: 100%;
        height: 70px;
        display: block;
    }
    #cont_principal{
        margin:0;
        padding: 0;
        width: 100%;
    }
}
@media(min-width:701px) {
    #cont_menu {
        position: fixed;
        width: 20%;
    }
    #cont_principal{
        width: 80%;
        margin-left: 20%;
    }
    .espacio{
        display: none;
    }
    #menu {
        width: 100%;
        background-color: #fff;
        border-right: solid 1px #B2BABB;
        display: block;
    }
    #menu_icono{
        width:50px;height: 130px;text-align:center;margin:0 auto;align-content:center;
    }
}