/* PANTONES */
/******************************
COLOR       PANTONE             HEXA            RGB
ROSA        1895 C              f5b6cd          245 182 205
MORADO      270 C               b4b5df          180 181 223
AZUL        283 C               92c1e9          146 193 233
VERDE       360 C               6cc24a          108 194 74

*******************************/


.cls_menu {
    margin:auto;
    font-size: 14px;
    width:100%;
    height: 100px;
    font-family:Arial, Helvetica, sans-serif;
    font-weight: bold;
    background-image: linear-gradient(#f5b6cd, #ffffff);
}

ul, ol {
    list-style:none;
}

.nav {
    width: auto; /*Le establecemos un ancho*/
    /*margin-left: 30%;
    margin-right:auto;*/
}

.nav > li {
    float:left;
}

.nav li a {
    /*background-color:#f7b8d3;*/
    color:#fff;
    font-weight: bold;
    text-decoration:none;
    padding:10px 12px;
    display:block;
}

.nav_sub li a {
    background-color:#92c1e9;
    color:#fff;
    font-weight: bold;
    text-decoration:none;
    padding:10px 12px;
    display:block;
}

.nav li a:hover {
    background-color:#92c1e9;
    font-weight: bold;
}

.nav li ul {
    display:none;
    position:absolute;
    min-width:140px;
}

.nav li:hover  > ul {
    display:block;
}

.nav li ul li {
    position:relative;
}

.nav li ul li ul {
    right:-100px;
    top:0px;
}

/* Clases para los iconos de redes y boton para moviles*/
@media screen and (max-width: 767px) {
    .cls_menu{
        font-size: 10px;
        font-weight: bold;
        height: auto;
        padding-bottom: 50px;
    }

    .nav li a {
        /*background-color:#f7b8d3;*/
        color: #000000;
        white-space:nowrap;
        font-size: 15px;
    }
    .nav br {
        display: none;
    }
}

@media screen
and (min-device-width : 768px)
and (max-device-width : 1366px)
{
    .nav li a {
        /*background-color:#f7b8d3;*/
        color: #000000;
        white-space:nowrap;
        font-size: 15px;
    }
    .nav br {
        display: none;
    }

    .nav_btn
    {
        position: absolute;
        left: 10px;
    }
}




#loading-screen {
    background-color: rgba(25,25,25,0.7);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    margin-top: 0;
    top: 0;
    text-align: center;
}
#loading-screen img {
    width: 100px;
    height: 100px;
    position: relative;
    margin-top: -50px;
    margin-left: -50px;
    top: 50%;
}
