.sidebar {
    position: sticky;
    top: 0px;
    height: 100vh;
}

.sidebar-main {
    height: 550px;
    background-color: #f9fafb;
    max-width: 280px;
    width: 100%;
    border-radius: 5px;
    margin: auto;
    overflow-y: auto;
}

.sidebar-main::-webkit-scrollbar {
    width: 3px;
}

.sidebar-main::-webkit-scrollbar-thumb {
    background-color: #82a7ed;
    border-radius: 10px;
}

.sidebar-main::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar strong {
    font-size: 22px;
    color: #5686d2;
}

.sidebar-links li {
    margin-top: 5px;
    padding: 9px;
    border-radius: 5px;
}

.sidebar-links li:hover,
.sidebar-links li:hover a {
    background-color: #5686d2;
    color: white;
}

.sidebar-links li a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    height: auto;
    padding: 9px;
    font-weight: 500;
}

.navbar-bg {
    background-color: #F3EAF5;
    border-bottom: 1px solid #aba6a6;
}

.position-relative {
    position: relative;
}

.badge-top-right {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #5686d2;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
}

.locals-list a:hover {
    color: #5686d2;
}

.mobile-lang {
    display: none;
}

section ul {
  list-style-type: none;
  padding: 0;
}

.common-bg-color{
    background-color: #f9fafb !important;
}

.user-icon-bluish{
    display: none !important;
}

@media (max-width: 887px) {
    .custom-navbar ul li a {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .col-md-9,
    .col-lg-9 {
        width: 100% !important;
        padding-left: 0px !important;
    }

    .col-md-3,
    .col-lg-3 {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mobile-lang {
        display: block;
    }

    .desktop-lang {
        display: none;
    }
}