*,*:after,*:before{
    margin: 0;
    padding: 0;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*********************************/
/*       ESTILOS GLOBALES        */
/*                               */
/*********************************/
@font-face{
    font-family: "CaviarDreams";
    src: url('../fonts/CaviarDreams.ttf');
}

body{
    font-family: "CaviarDreams",Arial;
    background-color: #FFF;
    padding-top: 50px;
    height: 100%;
    margin: 0;
}

#preload{
    background-color: #333;
    background-image: url('../img/prueba.png');
    background-size: 100vw 100vh;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1999;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
}

#loaderlogo{
    width: 250px;
    height: 100px;
    margin: 200px auto 50px auto;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: -1px 2px 2px #000;
    text-align: center;
    color: rgba(255,255,255,0.9);
}

.loader-frame{
    width: 100px;
    height: 100px;
    margin: auto;
    position: relative;
}

.loader1, .loader2{
    position:absolute;
    border: 5px solid transparent;
    border-radius: 50%;
}

.loader1{
    width: 90px;
    height: 90px;
    border-top: 8px solid #e80909;
    border-bottom: 8px solid #e80909;
    border-style: groove;
    animation: clockwisespin 2s linear infinite;
}

.loader2{
    width: 80px;
    height: 80px;
    border-left: 8px solid #0581fd;
    border-right: 8px solid #0581fd;
    border-style: groove; 
    top: 5px; left: 5px; 
    animation: anticlockwisespin 2s linear infinite;
}

@keyframes clockwisespin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes anticlockwisespin{
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/*********************************/
/*       ESTILOS DEL NAVBAR      */
/*                               */
/*********************************/

.navbar{
    margin-bottom: 0;
    border-radius: 0;
    background-color: whitesmoke;
}
.navbar-brand{
    margin: 0;
    padding: 0;
}

.navbar-toggle-left{
    position: relative;
    float: left;
    margin-top: 10px;
    margin-right: -5px;
    margin-bottom: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    transform: translateX(10px);
}

.navbar-toggle-left .glyphicon{
    font-weight: 600;
    font-size: 17px;
    color: #6C6C6C;
    top: 0;
    line-height: 0;
}

.buscador.navbar-left{
    display: none;
}

.dataTables_info, .dataTables_pagination, .dataTables_filter, .dataTables_length, .dataTables_paginate{
    display: none;
}


@media (max-width:906px){
    #input-search-desktop{
        display: none;
    }

    .navbar-brand{
        transform: translate(-50%,0%);
        left: 50%;
        position: absolute;
    } 
    .buscador.navbar-left{
        display: block;
    }
}

@media (max-width:480px){
    #input-search-desktop{
        display: none;
    }

    .navbar-brand{
        transform: translateX(12%);
        left: 0;
        position: absolute;
    }
    .buscador.navbar-left{
        display: block;
    }
}

.container .navbar-brand{
    padding: 0px;
}

.logo{
    height: 50px;
    padding-right: 0px;
    padding-left: 10px;
    align-content: center;
}

.navbar-inverse{
    height: 50px;
    padding-top: 0px;

}

.navbar a , .navbar-right{
    font-weight: 600;
    font-size: 15px;

}

.navbar-left{
    padding-left: 1px;
    text-align: center;
}

input[type="search"]{
    margin-top: 4px;
    width: 30px; 
    background: whitesmoke url('../img/search-icon.png') no-repeat 9px center; 
    padding: 9px 10px 9px 32px;
    border-radius: 3em;
    -webkit-transition: all .5s; 
    -moz-transition: all .5s; 
    -o-transition: all .5s; 
    transition: all .5s; 
    outline: none; 
}

input[type="search"]:focus{
    width: 130px; 
    padding-left: 32px; 
    color: #000;
    background-color: #FFF;
    font-weight: 600;

}

.content-search{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50px;
    left: 0;
    background: rgba(0,0,0,0.5);
    display: none;
}

.content-table{
    width: 80%;
    max-height: 200px;
    height: auto;
    background: rgba(0,0,0,0.7);
    margin-left: 10%;
    overflow-y: visible;
    overflow-x: hidden;
    box-shadow: 0px 0px 10px rgba(255,255,255,0.5);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.content-table table{
    width: 100%;
}

tbody tr td a{
    display: block;
    padding: 10px;
    color: white !important;
    text-decoration: none !important;
}

tbody tr td a:hover{
    background: rgba(255,255,255,0.8) !important;
    color:#FFF !important;
}

#table_length, #table_filter, #table_info, #table_paginate{
    display: none;
}

td.dataTables_empty {
    color: #FFF;
    padding: 30px;
    text-align: center;
}

@media (max-width:906px){
    input[type="search"]{
        margin-left: 7px;
    }
    input[type="search"]:focus{
        width: 96%; /*tamaño del boton buscar al hacer click*/
        padding-left: 32px; /*espacio entre el icono lupa y el placeholder*/
        color: #000;
        background-color: #FFF;
        font-weight: 600;
    }
    .content-search{
        top: 114px;
    }
    .content-table{
        margin-top: 0%;
    }
}

@media (max-width:480px){
    input[type="search"]{
        margin-left: 7px;
    }
    input[type="search"]:focus{
        width: 96%; /*tamaño del boton buscar al hacer click*/
        padding-left: 32px; /*espacio entre el icono lupa y el placeholder*/
        color: #000;
        background-color: #FFF;
        font-weight: 600;
    }
    .content-search{
        top: 114px;
    }
    .content-table{
        margin-top: 0%;
    }
}

.navbar li i{
    color: #004083;
    font-size: 10px;
    text-align: center;
}

.navbar li .dropdown-menu{
    font-size: 14px;
    color: #FFF;
    background-color: whitesmoke; 
    text-align: justify;
}

.navbar-default .navbar-toggle {
    border: none;
}

.navbar-toggle .icon-bar {
    height: 3px;
    border-radius: 1px;
}

.navbar-toggle {
    border-radius: 2px;
}

.navbar-default .navbar-toggle .icon-bar{
    background-color: #6C6C6C;
}

.navbar-brand:link, .navbar-brand:visited{
    color: #004083 !important;  
}

.navbar-brand:hover, .navbar-brand:active{
    color: #5e5e5e !important;   
}

#navbar li a:hover, .navbar li a:active{
    color: #004083 !important;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

@media (max-width: 910px){
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: rgba(255,255,255,0.5) !important;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #5e5e5e;
}

/*********************************/
/*       ESTILOS DEL INDEX       */
/*                               */
/*********************************/

.whatsapp {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
  }
  
  .whatsapp img{
    margin-left:-4px;
    margin-top: 4px;
  }
  
.aboutDiextama{
    padding: 50px 0px;
    background-color: #FFF;
    margin: 30px;
}

.aboutDiextama h2{
    font-size: 45px;
    text-transform: uppercase;
    color: #303030;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.aboutDiextama h3{
    font-size: 25px;
    line-height: 1.375em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.aboutDiextama .text-bold{
    font-weight: 600;
}

.aboutDiextama p{
    font-size: 16px;
    line-height: 1.5em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
}

.aboutDiextama blockquote p{
    font-size: 30px;
    color: #303030;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;

}

.aboutDiextama i{
    padding: 100px 30px;
    font-size: 250px;
    color: #004083;
    font-weight: 200;
    margin-bottom: 30px;
    align-content: center;
}

.misionDiextama{
    padding: 0px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    border-color: rgba(50,50,50,0.2);
    background-color: rgba(0,0,0,0.08);
    margin: 50px;
    border-radius: 9px;
}

.misionDiextama h2{
    padding-top: 20px;
    font-size: 45px;
    text-transform: uppercase;
    color: #004083;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.misionDiextama p{
    font-size: 18px;
    line-height: 1.5em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: right;
}

.misionDiextama img{
    border-radius: 9px;
}

.visionDiextama{
    padding: 0px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    border-color: rgba(50,50,50,0.2);
    background-color: rgba(0,0,0,0.08);
    margin: 50px;
    border-radius: 9px;
}

.visionDiextama h2{
    padding-top: 70px;
    font-size: 45px;
    text-transform: uppercase;
    color: #004083;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.visionDiextama p{
    font-size: 18px;
    line-height: 1.5em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
}

.visionDiextama img{
    border-radius: 9px;
}

.valoresDiextama{
    padding: 20px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.2);
    border-color: rgba(50,50,50,0.2);
    background-color: rgba(0,0,0,0.08);
    margin: 50px;
    border-radius: 9px;
}

.valoresDiextama h2{
    padding-top: 0px;
    font-size: 45px;
    text-transform: uppercase;
    color: #004083;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.valoresDiextama p{
    font-size: 18px;
    line-height: 1.5em;
    color: #303030;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.valoresDiextama img{
    text-align: center;
}

.valoresDiextama h4{
    font-size: 22px;
    font-weight: 600;
}

.fotoDiextama{
    text-align: center;
    padding-top: 50px;
    background-color: #FFFFFF;
}

@media (max-width:480px){
    .aboutDiextama i{
        padding: 0px 30px;
        font-size: 200px;
        color: #004083;
        font-weight: 200;
        margin-bottom: 30px;
        align-content: center;
    }

}

/*********************************/
/*     ESTILOS DEL PIE PAGINA    */
/*                               */
/*********************************/


.pieDiextama{
    text-align: left;
    padding: 20px 10px;
    color: #FFFFFF;
    background-color: #242424;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.pieDiextama a{
    color: #FFFFFF;
    text-shadow: 1px 5px 10px rgba(0,0,0,0.5);
    border-radius: 5px;
}

.pieDiextama a:hover{
    text-shadow: 1px 5px 10px rgba(255,255,255,0.2);
    text-decoration: none;
}

.pieDiextama .ico-redes{
    padding: 50px;
    text-align: center;
}

.pieDiextama i{
    padding: 6px;
    font-size: 45px;
    width: 60px;
    height: 60px;
    margin: 10px;
}

.pieDiextama .loc{
    font-size: 20px;
}

.pieDiextama .facebook:hover{background: #3b5998;}
.pieDiextama .twitter:hover{background: #1DA1F2;}
.pieDiextama .instagram:hover{background: #fcaf45;}
.pieDiextama .youtube:hover{background: #CD201F;}


.copyDiextama{
    font-size: 13px;
    text-align: center;
    color: #FFF;
    padding-top: 20px;
    background-color: #191919;
}

.designer{
    border-top: 1px solid #161616;
    font-size: 13px;
    text-align: center;
    color: #FFF;
    padding-top: 20px;
    background-color: #191919;
}

@media (max-width:480px){
    .pieDiextama i{
        font-size: 35px;
        padding: 0px;
        width: 40px;
        height: 40px;
        margin: 5px;
    }
}

/*********************************/
/*    ESTILOS MAPA DEL SITIO     */
/*                               */
/*********************************/

.sitemap{
    font-size: 17px;
}

.sitemap h1{
    font-weight: 600;
}

.sitemap .titulos{
    font-size: 19px;
    font-weight: 600;
}

.sitemap .texto-color a{
    color: #000;
}

.sitemap i{
    font-size: 30px;
}

.tree
{
    min-height: 20px;
    margin-bottom: 20px;
    padding: 19px;

    /*border: 1px solid #999;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    background-color: #fbfbfb;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
       -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);*/
}
.tree li
{
    position: relative;

    margin: 0;
    padding: 10px 5px 0 5px;

    list-style-type: none;
}
.tree li::before,
.tree li::after
{
    position: absolute;
    right: auto;
    left: -20px;

    content: '';
}
.tree li::before
{
    top: 0;
    bottom: 50px;

    width: 1px;
    height: 100%;

    border-left: 1px solid #999;
}
.tree li::after
{
    top: 25px;

    width: 25px;
    height: 20px;

    border-top: 1px solid #999;
}
.tree li span
{
    display: inline-block;

    padding: 3px 8px;

    text-decoration: none;

    border: 1px solid #999;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.tree li.parent_li > span
{
    cursor: pointer;
}
.tree > ul > li::before,
.tree > ul > li::after
{
    border: 0;
}
.tree li:last-child::before
{
    height: 30px;
}
.tree li.parent_li > span:hover,
.tree li.parent_li > span:hover + ul li span
{
    color: #000;
    border: 1px solid #94a0b4;
    background: #eee;
}

