.sidebar {
    /* width: 300px; */
    padding: 12px 20px;
    transition: 0.3s width ease-in-out;
    box-shadow: 0 3px 10px #cacaca;
    border-radius: 10px;
    height: fit-content;
	margin-bottom:20px;
}

/* @media screen and (max-width: 1212px) { */
    /* .sidebar { */
        /* display: flex; */
        /* width: 30px; */
    /* } */
/* } */

/* @media screen and (max-width: 600px) { */
    /* .sidebar { */
        /* display: none; */
    /* } */
/* } */

.sidebar__logo-wrapper {
    display: block;
    text-decoration: none;
}

.sidebar__logo {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 1212px) {
    .sidebar__logo {
        display: none;
    }
}

.sidebar__logo-text {
    display: block;
    margin: 0;
    font-size: 20px;
    border-bottom: .5px solid #ccc;
    padding-bottom: 11px;
}

/* @media screen and (max-width: 1212px) { */
    /* .sidebar__logo-text { */
        /* display: none; */
    /* } */
/* } */

.sidebar__title {
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 1212px) {
    .sidebar__title {
        display: none;
    }
}

.sidebar__menu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style-type: none;
}

.sidebar__menu::after {
    position: absolute;
    right: 0;
    top: -21px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #ffffff66;
}


/* @media screen and (max-width: 600px) { */
    /* .sidebar__menu { */
        /* flex-direction: row; */
    /* } */
/* } */

.sidebar__item:hover .sidebar__item-text,
.sidebar__item .is-active .sidebar__item-text {
    color: #D6A156;

}

.sidebar__item:hover .sidebar__icon,
.sidebar__item .is-active .sidebar__icon {
    color: #D6A156;
}

.sidebar__link {
    display: flex;
    align-items: center;
    color: #808191;
    text-decoration: none;
    gap: 8px;
    font-size:15px;
}

.sidebar__item-text {
    display: block;
    font-size: inherit;
    color: inherit;
}

/* @media screen and (max-width: 1212px) { */
    /* .sidebar__item-text { */
        /* display: none; */
    /* } */
/* } */

.sidebar__svg-icon {
    width: 14px;
    padding: 8px;
    background-color: #353340;
    border-radius: 10px;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px dashed #ccc;
    border-radius: 10px;
    /* margin-left: 30px; */
    /* width: calc(100% - 350px); */
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1;
}

.main-wrapper .dash-heading {
    font-size: 20px !important;
    border-bottom: .5px solid #ccc;
    padding-bottom: 11px;
}

@media screen and (max-width: 600px) {
    .topbar {
        padding: 32px 32px 16px;
    }
    .main-wrapper{
        padding: 0;
        margin: 0;
        width: 100%;
    }

}

.topbar__search {
    display: flex;
    width: 100%;
    max-width: 450px;
    height: 34px;
}

.topbar__input {
    width: 100%;
    height: 100%;
    padding: 0 40px 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #19191a;
    background-repeat: no-repeat;
    background-position: 96%;
    background-size: 14px;
    border: none;
    border-radius: 8px;
    outline: 0;
    box-shadow: 0 0 0 2px #000;
}

.topbar__user-wrapper {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar__user {
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    object-fit: cover;
}

.topbar__notif {
    position: relative;
    cursor: pointer;
}

.topbar__notif::after {
    position: absolute;
    top: 0;
    right: 3px;
    width: 5px;
    height: 5px;
    content: "";
    background-color: red;
    border: 2px solid #1f1d2b;
    border-radius: 50%;
}

.topbar__notif-svg {
    width: 20px;
}



.navbar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    margin: 0;
    background-color: #262837;
    list-style-type: none;
    border-radius: 15px;
}




@media screen and (max-width: 600px) {
    .navbar {
        display: flex;
        row-gap: 15px;
        column-gap: 10px;
    }
}

.navbar__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #808191;
    text-decoration: none;
}

.navbar__link:hover {
    color: #fff;
}

.navbar__link:hover .navbar__icon {
    color: #6c5ecf;
}

.navbar__icon {
    width: 18px;
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #353340;
    border-radius: 10px;
}


li.sidebar__item i {
    width: 30px;
    font-size: 22px;
    text-align: center;
}
.title.bg-dark.p-3 h2 {
    font-size: 1.4rem;
}