@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 2000;
    background-color: #FBFBF9;
    box-shadow: 1px 8px 6px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 8px 6px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 8px 6px -1px rgba(0,0,0,0.75)
}

header .navbar .container .navbar-brand b{
  margin: 10px;
}

.navbar{
    background-color:rgb(63, 187, 192); 
}

.container__menu{
    max-width: 1200px;
    height: 100%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.logo {
    margin-left: 30px;
}

.menu{
    display: flex;
    align-items: center;
}

.menu ul{
    display: flex;
}

.menu ul li{
    list-style: none;
    margin-left: 36px;
    margin-top: 20px;
}

.menu ul li a{
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    background: transparent;
    
}

.menu ul li a:hover{
    color: #022af5;
    transition: all 0.4s;
}

#selected{
    color: #022af5;
}
#cita{
    padding: 10px 10px;
    border-radius: 50px;
    color: #FBFBF9;
    background-color: #022af5;
}

#cita:hover{
    color: #fff;
    background-color: #106af1;
}

#intranet {
    padding: 10px 10px;
    border-radius: 50px;
    color: #FBFBF9;
    background-color: #022af5;
}

#intranet:hover {
    color: #fff;
    background-color: #106af1;
}

.menu nav img{
    display: none;
}

.menu #btn_menu{
    display: none;
}

@media screen and (max-width: 1200px){

    .menu nav{
        position: fixed;
        top: 0;
        right: -250px;
        background: white;
        width: 250px;
        height: 100vh;
        padding: 40px;
        z-index: 1;
        transition: all 300ms;
       
    }

    .menu ul{
        flex-direction: column;
        margin-top: 40px;
    }

    .menu ul li{
        margin-top: 30px;
        margin-left: 0;
    }

    .menu ul li a{
        color: #bebebe;
    }

    #selected{
        background: none;
        padding: 0px;
        border-radius: none;
        color: #000 !important;
    }

    .menu nav img{
        display: block;
        width: 180px;
        margin-bottom: -10%;
    }

    #back_menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        display: none;
    }

    .menu #btn_menu{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        font-size: 24px;
        border-radius: 50px;
        cursor: pointer;
        transition: all 300ms;
    }

    .menu #btn_menu:hover{
        background: rgba(255, 255, 255, 0.2);
    }

    .separador{
        height: 200px;
    }
    
}


/*MODAL*/

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
}