* {
    list-style-type: none;
}
a {
    color: #001538 !important;
}
a:hover {
    text-decoration: none;
}
/* Sidebar Styling Start */
#sidebar-custom {
    visibility: hidden;
    overflow-y: auto;
    padding: 0 !important;
    padding-top: 5rem !important;
    padding-left: 3rem !important;
    margin-left: 10%;
    width: 0;
    height: 100%;
    min-height: -webkit-fill-available;
    background: #f7f7f7;
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    transition: 0.3s;
}
/* Helper */
.c-f-column {
    display: flex;
    flex-direction: column;
}

#sidebar-custom li {
    padding-right: 2rem;
    margin-bottom: 1rem;
    color: #001538;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.nav-item > a {
    font-size: 2rem;
    transition: 0.4s;
    text-decoration: none;
    text-decoration-color: #00bce8;
}
.nav-item .fa-chevron-right {
    font-size: 1.6rem;
}
.nav-item:hover > a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    -webkit-text-decoration-color: #00bce8;
    text-decoration-color: #00bce8;
}
.nav-wrapper {
    border-left: 3px solid #00bce8;
}
.close-btn-sidebar {
    display: none;
    font-size: 2.3rem;
    color: black;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
}
/* Sidebar Styling End */

/* Sidebar Category Styling Start */
.hide {
    display: none;
}
.sidebarMenu-Category {
    overflow-x: hidden;

    padding: 0 !important;
    padding-top: 5rem !important;
    width: 0;
    height: 100%;
    min-height: -webkit-fill-available;
    background: #f7f7f7;
    z-index: 999;
    position: absolute;
    top: 0;
    right: -100%;
    transition: 0.3s;
}
.siderBarMenu-Category-Active {
    display: flex;
    flex-direction: column;
}
.sidebarMenu-Category h2 {
    font-size: 1.7rem;
}
.sidebarMenu-Category .col a {
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.sidebarMenu-Category .col a:last-child {
    margin-bottom: 0;
}
.sidebarMenu-Category .category-btn-sidebar {
    color: black;
    font-size: 2rem;
}

.category-btn-sidebar {
    position: relative;
    padding: 15px 10px;
    display: flex;
    justify-content: space-evenly;
    align-self: start;
    flex-wrap: nowrap;
    margin-left: 4rem;
    background: #fff;
    font-size: 1rem;
    outline: none;
    border: 1.5px solid rgb(214, 213, 213);
    transition: 0.3s;
}
.category-btn-sidebar .navBack-btn {
    margin-left: 2rem;
    font-size: 1.3rem;
    outline: none;
    background: transparent;
    border: none;
}
.category-btn-sidebar .fa-chevron-left {
    position: absolute;
    top: 50%;
    left: 1.3rem;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: 0.3s;
}

.category-btn-sidebar:hover .fa-chevron-left {
    left: 1rem;
}
.sidebarMenu-Category a {
    padding: 1rem 0;
    padding-left: 1rem;
    font-size: 1rem;
    color: #000;
    transition: 0.2s;
    text-decoration: none !important;
}
.sidebarMenu-Category a:hover {
    background: #000;
    color: #fff !important;
}
