@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

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

.siderBar nav {
    position: relative;
    margin: 0px 15px;
    background: rebeccapurple
}

.siderBar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.siderBar nav ul li {
    width: 100%;
}

.siderBar nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

.siderBar nav ul li a:hover {
    background: #1d4f71;
    color: #fff;
}

.siderBar nav ul li a .fa {
    width: 16px;
    text-align: center;
    margin-right: 5px;
    float: right;
}

.siderBar nav ul ul {
    background: rgba(0, 0, 0, 0.2);
}

.siderBar nav ul li ul li a {
    border-left: 4px solid transparent;
    padding: 10px 20px;
}

.siderBar nav ul li ul li a:hover {
    border-left: 4px solid #3498db;
}

.sidebarLeft {
    width: 25%;
}

.siderBar {
    width: 100%;
}

.siderBar nav {
    display: flex;
    flex-direction: row;
}

@media screen and (min-width:1520px) {}

@media screen and (max-width:1024px) {
    .wrap-content {
        flex-direction: column !important;
    }

    .sidebarLeft {
        width: 100%;
        display: flex;
        margin-bottom: 15px;
    }

    .siderBar nav ul {
        display: flex;
    }
}

@media screen and (max-width:768px) {
    .card-header {
        flex-direction: column;
    }

    .search-list-user,
    .title-list-user {
        margin-bottom: 10px;
    }
}

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

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