.navbar {
    position: relative;
    flex-shrink: 0;
    z-index: 9;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    margin-left: 6px;
}

.navbar ul li {
    padding: 2px 2px;
    flex-shrink: 0;
    margin: 2px 0;
}

.navbar ul li a {
    color: var(--primary-text);
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    padding: 4px 13px;
}

.navbar ul li a:hover {
    color: var(--primary-text) !important;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
}

.active a {
    color: var(--primary-text) !important;
    position: relative;
    /* border: 1px solid var(--primary-text);
    border-radius: 10px; */
}

.active {
    border-radius: 10px;
    /* background-color: var(--primary); */
    background-attachment: fixed;
    position: relative;
}

.active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: .5;
    z-index: 1;
    border-radius: 10px;
}

.active>* {
    z-index: 100;
}

.mobile_menu {
    cursor: pointer;
}

.mobile_menu svg {
    font-size: 35px;
    stroke: var(--teritary);
    stroke-width: 0.8;
    color: var(--teritary-text);
    margin-right: 10px;
}


.menu_drawer_section {
    padding-bottom: 122px;
    padding-top: 10px;
}


/* Side Bar */

.navbar ul {
    position: relative;
    display: block;
    white-space: nowrap;
    justify-content: flex-end;
    z-index: 3;
    padding-bottom: 10px;
    background-color: #fff;
}

.active::after {
    border-radius: 0;

}

.navbar ul li a {
    color: var(--secondary-text);
}

.navbar ul li:not(.active) a:hover {
    color: var(--secondary-text) !important;
}

.active a {
    background-color: var(--teritary) !important;
    color: var(--teritary-text) !important;
}

.active {
    border-radius: 0;
}

.menu_title {
    margin-left: 10px;
    font-size: 17px;
    font-weight: 400;
    stroke: var(--primary-bg);
    stroke-width: 0.3;
}

.menu_section a {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.menu_section a svg {
    font-size: 17px;
}

.mobile_menu svg {
    margin-right: 0;
}

.loggedInText {
    color: #000;
    font-size: 17px;
    font-weight: 400;
    max-width: 200px;
}


.menu_header_text button {
    border: 0;
    background-color: transparent;
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    margin: 0px 7px;
}

.menu_header_text button:hover {
    color: var(--primary);
}


.navbar ul li a {
    font-size: 15px;
    font-weight: 300;
}