#nav-logo{
    margin: auto;
}

#btn-menu{
    display: none;
}

.menu-list {
    z-index: 50;
    top: 0;
    left: 0;
    width: 85%;
    margin: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 768px){
    .menu-list{
        border-radius: 25px;
    }
}

.menu-list .card-body{
    padding: 0;
}



@-moz-document url-prefix() {
   .dropright .dropdown-toggle::after{
        margin-top: -15px !important;
    }
}

@media screen and (max-width: 767px){
    #btn-salir{
        display: none;
    }

    #nav-logo{
        display: none;
    }

    #btn-menu{
        display: block;
    }

    .name-dropdown{
        opacity: 0;
        position: absolute;
    }

    .dropright .dropdown-toggle:after{
        display: none;
    }


    .menu-list {
        position: fixed;
        width: 60px;
        display: flex;
        flex-flow: column wrap;
        height: 100%;
        -webkit-transform: translate(0, -100%);
        transform: translate(0, -100%);
        transition: all 0.4s ;
        opacity: 0;
    }

    .nav__list--active {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
    }

   .nav__item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        text-decoration: none;
        font-size: 24px;
    }

    .nav__item .nav-link{
        width: 100%;
        text-align: center;
    }
}



