/* ================= HEADER ================= */
.header {
    height: 60px;
    box-shadow: 0 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
    padding-left: 20px;
    transition: 0.5s;
}

/* ================= LOGO ================= */
.logo {
    line-height: 1;
}

.logo img {
    max-height: 26px;
    margin-right: 6px;
}

.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #21186B;
    font-family: "Nunito", sans-serif;
}

/* ================= SIDEBAR ================= */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 260px;
    z-index: 996;
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(1, 41, 112, 0.1);
}

.nav-item:hover rect, .nav-link.hover rect {
    stroke: #f6f9ff !important;
}

/* collapsed sidebar */
.toggle-sidebar .sidebar {
    width: 80px;
}

/* ================= MAIN LAYOUT ================= */
main {
    margin: 5em 1.3em 1em;
}

/* ================= NAV ================= */
.header-nav > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================= BUTTON ================= */
.ayuda_boton {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #21186B;
    background: #f6f9ff;
    padding: 10px 15px;
    border-radius: 4px;
    margin-right: 50px;
}

/* ================= SIDEBAR NAV ================= */
.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #012970;
    background: #f6f9ff;
    padding: 10px 15px;
    border-radius: 4px;
}

.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}

.change-padding {
    padding: 8px !important;
}

.ocultar-sb {
    display: inherit;
}

.nav-link.collapsed > i {
    color: #21186B;
    margin-left: .5em;
}

.ayuda_boton:hover {
    color: #73E5E3;
}

.sidebar-nav .nav-item {
    margin-bottom: 5px;
}

.header .toggle-sidebar-btn {
    font-size: 32px;
    padding-left: 10px;
    cursor: pointer;
    color: #21186B;
}

.profile-title {
    white-space: initial;
    font-family: Nunito, sans-serif;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}

.dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}

.header-nav .nav-profile {
    color: #21186B;
}

.sidebar-nav .nav-item:hover a{
    background-color: #21186B;
}

.nav-item:hover path, .nav-link.hover path {
    stroke: #f6f9ff !important;
}

.sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #4154f1;
}

#home:hover path {
    fill: #f6f9ff;
}

.connections-button-2 {
    color: #21186B;
    border: 1px solid #21186B;
    border-radius: 30px;
    cursor: pointer;
}

.connections-button-text {
    font-size: 16px;
    text-decoration: none !important;
    color: #21186B;
}
/* ================= MEDIA QUERIES ================= */
@media (min-width: 1199px) {
    .toggle-sidebar .main {
        margin-left: 80px;
    }
}

@media (min-width: 1199px) {
    .main {
        margin-left: 260px;
        transition: margin-left 0.3s ease;
        padding: 20px;
    }
}
/* desktop */
@media (min-width: 1200px) {
    main {
        margin-left: 8em;
        margin-top: 5em;
        margin-right: 2em;
    }

    .logo {
        width: 180px;
    }

    .btn-not-display-now {
        display: none;
    }
}

/* tablet and below */
@media (max-width: 1199px) {
    main {
        margin: 5em 1.3em 1em;
    }

    .toggle-sidebar .sidebar {
        left: -300px;
    }

    .sidebar {
        left: 0;
    }
}

/* small devices */
@media (max-width: 600px) {
    .ayuda_boton {
        font-size: 12px;
        padding: 9px 13px;
        margin-right: 0;
    }
}

/* hide sidebar icon */
@media (max-width: 1100px) {
    .ocultar-sb {
        display: none !important;
    }
}
