#slide-out a{
    color: #039BE5;
}

.botoes-mobile a {
    color: #000;
    text-align:  center;
    border: 1px solid #35a7e9;
    border-radius:.25em;
    font-weight: 600;
    text-transform: uppercase;
}
.botoes-mobile a:hover {
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.5);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,.5);
    box-shadow: 1px 1px 1px rgba(0,0,0,.5);
    background-color: #ffffff;
}
#disciplinas-mobile, #aulas-mobile {
    transition: all .5s ease;
    overflow: hidden;
}
#aulas-mobile a:hover, #sidebar-mobile a:hover, #disciplinas-mobile a:hover {
    background-color: rgba(209, 230, 245, .4);
}

#aulas-mobile a, #sidebar-mobile a, #disciplinas-mobile a {
    font-size: .9rem;
    word-break: keep-all;
    height: auto;
    padding: 0 0.75em;
    margin: 0 -0.75em;
}
#sidebar-mobile h4 {
    font-size: 1.5rem;
}
#sidebar-mobile .divider {
    margin: 8px -17px;
}
#sidebar-mobile li .row {
    position: relative;
}
#sidebar-mobile li.ativo .row{
    background-color: #e3f2fd;
    border-left:solid 2px #219de6;
}
#sidebar-mobile li.ativo .row:hover {
    background-color: #d1e6f5;
}
#sidebar-mobile li .row:hover {
    background-color: rgba(209, 230, 245, .4);
}

#sidebar-mobile li a:hover {
    background-color: rgba(209, 230, 245, .4);
}
#sidebar-mobile li .row a:hover {
    background-color: transparent;
}
#sidebar-mobile li .col.s1.m2 {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.logo-mobile {
    position: absolute;
    margin-left:  auto;
    right: 50%;
    transform: translate(50%,0) !important;
}

/*Botao menu*/

.botao-hamburguer{
    width: 25px;
    height: 55px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.botao-hamburguer .linha{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.botao-hamburguer .linha:nth-child(1) {
    top: 20px;
}

.botao-hamburguer .linha:nth-child(2) {
    top: 28px;
}

.botao-hamburguer .linha:nth-child(3) {
    top: 36px;
}

.botao-hamburguer.open .linha:nth-child(1) {
    top: 30px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.botao-hamburguer.open .linha:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.botao-hamburguer.open .linha:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.show-on-small {
    display: none !important;
}
.hide-on-small-only {
    display: block;
}

@media screen and (min-width: 1024px) {
    .disciplinas-mobile, .aulas-mobile {
        padding: 0 !important;
    }
    #sidebar-mobile .divider {
        margin: 8px -51px !important;
    }
}

@media screen and (max-width: 600px) {
    .show-on-small {
        display: block !important;
    }
}

@media screen and (max-width: 425px) {
    .hide-on-small-only {
        display: none;
    }
}

