/*-----------------------------------------------------------------------------
// css: center & login view + menu + efects -- v.32.0023 :: Lightning X - PMVC
-----------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.loginBody {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    background-color: #d5c5db;
    background-image: url("");
    background-repeat: repeat-y;
    opacity: 0.9;
    margin-top: 50px;
}
.col-center{
    float: none;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}


/*-----------------------------------------------------------------------------
// css: Generic Animation v.32.0023 :: Lightning X - PMVC
-----------------------------------------------------------------------------*/
.fadeLx {
    animation:fadeIn 0.55s linear;
}

.fadeLx.none {
    display:none
}

@keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

.slideLx {
    transition: height .25s ease;
    overflow: hidden;
}
.slideLx:not(.show) {
    display: none;
}
.slideLx.none {
    display: none
}

#ajx-over {
    margin: 0px 0px;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    position: fixed;
    background: rgba(39, 38, 46, 0.60);
    z-index: 9999;
}
.cntLx {
    position: absolute;
    vertical-align: middle;
    top: 40%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
}

.cntTx {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    text-align: center;
    border: 1px solid #B0B0B0;
    padding: 7px 12px 7px 12px;

    background: rgba(39, 38, 46, 0.3 );
    /* left: calc(50% - 20px ); */
}


/*-----------------------------------------------------------------------------
// css: MENU AREA LxMainMenu
-----------------------------------------------------------------------------*/

.mainMenu{
    margin:0;
    padding:0;
    list-style:none;
}

.mainMenu > li {
    float: left;
}

.mainMenu li a {
    background: #f8f9fa;
    border-right: 1px solid #e8e9ea;
    color :#666;
    display: block;
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    z-index: 1000;

    display: flex;
    flex-direction: column;
}

.mainMenu li a:hover {
    background:#E0E0F0;
}

/* ocultar */
.mainMenu li ul {
    display: none;
    position: absolute;
    min-width: 180px;
    margin: 0;
    padding:0;
    list-style: none;
    z-index: 1001;

    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

    transition: all 0.5s linear;
    -moz-box-shadow: 3px 7px 14px rgba(0,0,0,0.8);
    -webkit-box-shadow: 3px 7px 14px rgba(0,0,0,0.8);
    box-shadow: 3px 7px 14px rgba(0,0,0,0.8);
}


/* show when over */

.mainMenu li:hover > ul {
    /*text-shadow: 1px 1px 1px #000;*/
    -transition: opacity 0.65s;
    display: block;
}

.mainMenu li ul li {
    position: relative;
}

.mainMenu li ul li ul {
    /*right:-140px;*/
    left:170px;
    top:0;
    list-style: none;
}

.mainMenu li .flecha{
    font-size: 4px;
    padding-left: 6px;
    display: none;
}

.mainMenu li a:not(:last-child) .flecha {
    display: inline;
}


/* viewWidt < 320  : Smartphone & tablet */
@media only screen and (max-width:991px){

    .mainMenu li a {
        border-right: 0px solid #e8e9ea;
        float: none;
        display: block;
        text-align: left;
        position: relative;
    }

    .mainMenu > li {
        float: none;
    }
}