﻿/*ANIMACION MENU*/
#appBody {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 4;
    transform-style: preserve-3d;
    perspective: 100px;
    pointer-events:none;
}
#appBody > div {
    pointer-events: auto;
    position: absolute;
    display: block;
    background: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all ease-in-out 0.1s;
    box-shadow: 0 3px 35px rgba(0,0,0,0.5);
}
#appBody.opened > div {
    transform: scaleX(0.7) scaleY(0.9) rotateY(-3deg);
    right: -60%;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}
#appBody.opened > div * {
    pointer-events: none;
}
#appBody.opened2 > div {
    left: -60%;
    transform: scaleX(0.7) scaleY(0.9) rotateY(3deg);
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}
#appBody.opened2 > div * {
    pointer-events: none;
}

/*ANIMACION MENU FIN*/

#filtrosAdmin {
    display: block;
    position: absolute;
    box-sizing: border-box;
    padding: 0 30px;
    margin-bottom: 20px;
    pointer-events: auto !important;
    margin-top:-66px;
}

@media screen and (max-width:800px) {
    #filtrosAdmin {
        max-width:50%;
    }
}

#appBody #appMenuBar {
    background: linear-gradient(to bottom, #39a8f0, #268bcf, #005095);
    position: relative;
    display: block;
    height: 80px;
    width: 100%;
}

#appBody #appMenuBar .btnMenu {
    position: absolute;
    background: url('../_media/images/menuIcon.png') no-repeat center center;
    background-size: 28px;
    background-position: 2px;
    display: block;
    width: 32px;
    height: 30px;
    left: 10px;
    top: 35px;
    cursor: pointer;
}

#appBody #appMenuBar .logo {
    position: absolute;
    background: url('../_media/images/logoW.png');
    display: block;
    width: 127px;
    height: 29px;
    background-size: 127px;
    cursor: pointer;
    pointer-events: none;
    left: 50%;
    margin-left: -63.5px;
    top: 35px;
}

#appBody #appMenuBar .btnSearch {
    position: absolute;
    background: url('../_media/images/iconSearchUser.png') no-repeat center center;
    display: block;
    width: 34px;
    background-size: 30px;
    height: 30px;
    right: 10px;
    top: 35px;
    cursor: pointer;
}

#appBody #appMenuBar .marquesina {
    color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    height: 24px;
    box-sizing: border-box;
    padding-top: 2px;
    overflow: hidden;
}

#appBody #appMenuBar .marquesina > div {
    color: #fff;
    position: absolute;
    width: 100%;
    top: 0;
    font-size: 11px;
    line-height: 20px;
    box-sizing: border-box;
    vertical-align: text-bottom;
    padding: 0 4px;
}

#appBody #appMenuBar .marquesina > div img {
    display: inline-block;
    max-height: 11px;
    line-height: 20px;
    vertical-align: middle;
}

#marquesinaGPS {
    margin-top: 0px;
    margin-left: 0px;
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    opacity: 0;
}

#marquesinaGPS.active {
    opacity: 1;
}

#appMenuBar .marquesina.active {
    background-color: #bfd16f;
}

#marquesinaGPS.active > img {
    background: transparent;
    border-radius: 60px;
    height: 11px;
    width: 8.266px;
    position: absolute;
    top: 4.5px;
    left: 5.867px;
    z-index: 10;
}

#marquesinaGPS.active > .pulse {
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
    background: transparent;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 30px;
    position: absolute;
    -webkit-animation: pulse 1.5s ease-out;
    -moz-animation: pulse 1.5s ease-out;
    animation: pulse 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    z-index: 1;
    top: 7px;
}

    @-webkit-keyframes pulse {
        0% {
            -webkit-transform: scaleY(0) scaleX(0);
            opacity: 0.0;
        }

        25% {
            -webkit-transform: scaleY(0) scaleX(0.5);
            opacity: 0.0;
        }

        50% {
            -webkit-transform: scaleY(0.1) scaleX(0.5);
            opacity: 0.1;
        }

        75% {
            -webkit-transform: scaleY(0.3) scaleX(1);
            opacity: 0.4;
        }

        100% {
            -webkit-transform: scaleY(0.5) scaleX(1);
            opacity: 0.0;
        }
    }

    #appBody #appMenuBar .marquesina > div span {
        vertical-align: middle;
    }

    #appBody #appMenuBar .marquesina > div > span {
        display: inline-block;
        margin: 0 2px;
    }

    #appBody #appMenuBar .marquesina .left {
        text-align: left;
    }

    #appBody #appMenuBar .marquesina .center {
        text-align: center;
    }

    #appBody #appMenuBar .marquesina .right {
        text-align: right;
    }

    #appBody #appContent {
        height: 100%;
        width: 100%;
        position: absolute;
        box-sizing: border-box;
        padding-top: 80px;
        top: 0;
        pointer-events: none;
    }

        #appBody #appContent > div {
            height: 100%;
            width: 100%;
            box-sizing: border-box;
            pointer-events: auto;
        }

            #appBody #appContent > div > iframe {
                height: 100%;
                width: 100%;
                display: block;
                border: 0;
            }

    #app {
        background: url("../_media/images/fondo.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%;
    }

    #appCol {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        box-sizing: border-box;
        padding-right: 25%;
    }

        #appCol.hide {
            display: none;
        }

        #appCol #persona {
            display: block;
            width: 100%;
            padding: 50px 30px;
            vertical-align: middle;
            height: 164px;
            box-sizing: border-box;
        }

            #appCol #persona > .avatar {
                display: block;
                float: left;
                width: 64px;
                height: 64px;
                background: #eee;
                border-radius: 100px;
                line-height: 64px;
                text-align: center;
                font-size: 28px;
                font-weight: bold;
                color: #333742;
            }

            #appCol #persona > div:nth-child(2) {
                display: block;
                height: 70px;
                padding-left: 74px;
                color: #fff;
                box-sizing: border-box;
                padding-top: 10px;
                width: 100%;
            }

            #appCol #persona:after {
                display: block;
                content: '';
                clear: both;
            }

            #appCol #persona > div:nth-child(2) > div:nth-child(1) {
                font-size: 16px;
                letter-spacing: 0.02em;
                font-weight: 500;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 100%;
            }

            #appCol #persona > div:nth-child(2) > div:nth-child(2) {
                font-size: 11px;
                color: #ddd;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        #appCol > #enlaces {
            display: block;
            width: 100%;
            height: 100%;
            padding-top: 164px;
            box-sizing: border-box;
            top: 0;
            position: absolute;
            pointer-events: none;
        }

            #appCol > #enlaces > ul {
                display: block;
                width: 100%;
                height: 100%;
                padding: 0;
                margin: 0;
                list-style: none;
                overflow-y: auto;
                pointer-events: auto;
            }

                #appCol > #enlaces > ul > li {
                    display: block;
                }

                    #appCol > #enlaces > ul > li > * {
                        display: block;
                        color: #fff;
                        text-decoration: none;
                        padding: 10px 33px;
                        font-weight: 500;
                        cursor: pointer;
                        transition: background ease-in-out 0.1s, color ease-in-out 0.1s;
                    }

                    #appCol > #enlaces > ul > li.sub > * {
                        display: block;
                        color: rgba(255,255,255,0.5);
                        text-decoration: none;
                        padding: 5px 33px 5px 55px;
                        font-size: 12px;
                        font-weight: 500;
                        cursor: pointer;
                        transition: background ease-in-out 0.1s, color ease-in-out 0.1s;
                    }

                    #appCol > #enlaces > ul > li > *:hover {
                        background: #fff;
                        color: #333742;
                    }


    #appSearch {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        box-sizing: border-box;
        padding-left: 30%;
    }

        #appSearch.hide {
            display: none;
        }

        #appSearch #appSearchTop {
            display: block;
            width: 100%;
            padding: 50px 30px 20px 30px;
            vertical-align: middle;
            height: auto;
            box-sizing: border-box;
        }

            #appSearch #appSearchTop input.appBuscador {
                display: inline-block;
                width: 80%;
                height: 64px;
                border-radius: 10px 0 0 10px;
                background: rgba(255,255,255,0.5);
                border: 0;
                outline: none;
                line-height: 64px;
                text-align: left;
                padding-left: 20px;
                box-sizing: border-box;
                font-size: 28px;
                font-weight: lighter;
                color: #fff;
            }
            #appSearch #appSearchTop div.btnBuscador {
                display: inline-block;
                width: 20%;
                height: 64px;
                border-radius: 0 10px 10px 0;
                margin-left: -10px;
                border: 0;
                outline: none;
                background: url('../_media/images/iconSearchUser.png'), #005095;
                background-repeat: no-repeat;
                background-position: center center;
                background-size: 30px;
                line-height: 64px;
                text-align: center;
                box-sizing: border-box;
                font-size: 28px;
                font-weight: lighter;
                color: #fff;
                cursor: pointer;
            }

        #appSearch > #appSearchResults {
            display: block;
            width: 100%;
            box-sizing: border-box;
            height: 100%;
            padding: 0;
            box-sizing: border-box;
            top: 0;
            position: relative;
            overflow: auto;
            color: #fff;
            text-align: center;
        }

    #appSearchResults > div.results {
        display: block;
        position: fixed;
        pointer-events: none;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        box-sizing: border-box;
        padding-top: 130px;
        padding-left: 30%;
        padding-right: 0px;
    }

        #appSearchResults > div.results > div {
            pointer-events: auto;
            overflow: auto;
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

    #appSearch .resultAlumn {
        display: block;
        width: 100%;
        position: relative;
        box-sizing: border-box;
        padding: 10px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        min-height: 90px;
    }

        #appSearch .resultAlumn > div:nth-child(1) {
            position: absolute;
            width: 30px;
        }

            #appSearch .resultAlumn > div:nth-child(1) > img {
                width: 20px;
                margin: 0 15px;
            }

        #appSearch .resultAlumn .curso {
            display: block;
            position: absolute;
            box-sizing: border-box;
            padding: 4px 7px;
            width: 50px;
            text-align: center;
            background: linear-gradient(#bfd16f,#a6b563);
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
            font-size: 10px;
            text-shadow: 0px 1px 1px #7b9b5d;
            margin-top: 5px;
        }

        #appSearch .resultAlumn > div:nth-child(2) {
            display: block;
            width: 100%;
            box-sizing: border-box;
            padding-left: 60px;
            text-align: left;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: bold;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        #appSearch .resultAlumn > div:nth-child(3) {
            display: block;
            width: 100%;
            box-sizing: border-box;
            padding-left: 75px;
            padding-top: 0px;
            text-align: left;
            font-size: 12px;
        }

            #appSearch .resultAlumn > div:nth-child(3) > div {
                display: block;
                width: 100%;
                box-sizing: border-box;
                padding-top: 10px;
                text-align: left;
                font-size: 12px;
                line-height: 12px;
            }

    #appSearch .hide {
        display: none !important;
    }

    @media screen and (min-width:800px) {
        #app > div {
            display: block;
            max-width: 1600px;
            width: 100%;
            height: 100%;
            margin: 0 auto;
            position: relative;
            box-shadow: 0 3px 35px rgba(0,0,0,0.5);
        }

            #app > div:after {
                content: '';
                display: block;
                clear: both;
            }

            #app > div > #appCol {
                position: relative;
                display: block;
                z-index: 5;
                width: 21%;
                background: rgba(0,0,0,0.6);
                box-sizing: border-box;
                padding: 0;
                float: left;
            }

                #app > div > #appCol.hide2 {
                    display: none;
                }

            #app > div > #appBody {
                position: relative;
                display: block;
                z-index: 5;
                width: 79%;
                /*background: #fff;*/
                box-sizing: border-box;
                float: right;
            }

        #appSearch {
            padding-left: 40%;
            display: none;
        }

        #appSearchResults > div.results {
            padding-left: 40%;
        }

        #appSearch.openedSearch {
            display: block;
        }

        #app > div, #appBody > div {
            box-shadow: none !important;
        }

            #app > div > #appBody > div > #appMenuBar > .btnMenu {
                display: none !important;
            }

            #app > div > #appBody > div > #appMenuBar > .btnSearch {
                display: block !important;
            }

        #appBody.opened > div {
            transform: scaleX(0.9) scaleY(0.9);
            right: -100%;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
        }

        #appBody.opened2 > div {
            transform: scaleX(0.9) scaleY(0.9);
            left: -100%;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
        }

        /*#appBody.opened > div * {
        pointer-events: auto;
    }

    #appBody.opened2 > div * {
        pointer-events: auto;
    }*/

    }

    @media screen and (max-width:300px) {
        #app #appMenuBar .logo {
            top: 40px;
            width: 80px;
            background-size: 80px;
            height: 17px;
            margin-left: -40px;
        }

        #app #appCol .avatar {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 14px;
        }

        #app #appCol #persona {
            padding: 20px 20px;
            height: 80px;
        }

        #app #appCol #enlaces {
            padding-top: 80px;
        }

            #app #appCol #enlaces ul li a {
                font-size: 12px !important;
            }

        #app #appCol #persona > div:nth-child(2) {
            padding-top: 4px;
        }

            #app #appCol #persona > div:nth-child(2) > div:nth-child(1) {
                font-size: 12px;
            }

            #app #appCol #persona > div:nth-child(2) > div:nth-child(2) {
                font-size: 10px;
            }

        #appCol #persona > div:nth-child(2) {
            display: block;
            height: 40px;
            padding-left: 50px;
        }
    }

    @media screen and (max-height:500px) {

        #appSearch #appSearchTop {
            padding-top: 20px;
        }
    }

.Quatuor
{
    font-size:12px;
    color:#bbb;
    text-align:left;
    padding-left:10px;
    line-height:25px;
    vertical-align:middle;
    pointer-events:auto;
    opacity:1;
}
#enlaces {
    padding-bottom: 25px !important;
}