#header_strip{position: fixed; z-index: 2001; top: 4px;}

.burger_list {
    list-style: none;
    padding-right: 0px;
    margin: 0;
    overflow-x: clip;
}

.menu_btn {
    position: absolute;
    z-index: 1003;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: var(--color-light);
    border-radius: 50%;
    width: 50px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    top: 4px;
    margin-right: 10px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.6);
}

.menu_burger {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu_burger::before,
.menu_burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.menu_burger::before {
    transform: translateY(-16px);
    margin-top: 8px;
}

.menu_burger::after {
    transform: translateY(16px);
    margin-top: -8px;
}

/* burger animation*/
.menu_btn.open {
    background-color: #ffffff;
    border: 1px solid var(--color-light)
}

.menu_btn.open .menu_burger {
    transform: translateX(35px);
    background: transparent;
    box-shadow: none;
}

.menu_btn.open .menu_burger::before {
    background: var(--color-light);
    transform: rotate(45deg) translate(-29.5px, 18.5px);
    box-shadow: none;
}

.menu_btn.open .menu_burger::after {
    background: var(--color-light);
    transform: rotate(-45deg) translate(-29.5px, -18.5px);
    box-shadow: none;
}

/* end animation*/
.burger_dropdown_content {
    z-index: 1002;
    display: none;
    position: absolute;
    background-color: #fff;
    max-height: 80vh;
    overflow-y: auto;
    width: 280px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    top: -5px;
    right: 30px;
    border-right: 35px solid var(--color-light);
    border-radius: 30px 0 30px 5px;
    line-height: 1.2em;
}

.burger_dropdown_content li {
    border-bottom: 1px solid var(--color-lightgrey);
}

.burger_dropdown_content a {
    color: var(--color-dark);
    text-decoration: none;
    display: flex;
    padding: 10px 10px 10px 5px;
    text-align: right;
    font-weight: 600;
}

.burger_dropdown_content a:hover {
    background-color: var(--color-bg-light);
}

.burger_dropdown_content i {
    margin-left: 5px;
    text-align: center;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    color: var(--color-dark);
    flex-shrink: 0;
    border: 1px solid var(--color-dark-tint);
}

.burger_dropdown_content a:hover i {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-bg-light);
    font-weight: bold !important;
}

.burger_active {
    color: var(--color-light) !important;
}

a.burger_active:hover {
    background-color: initial
}

a.burger_active i {
    background-color: var(--color-light) !important;
    border-color: var(--color-light) !important;
    color: #ffffff !important
}

#headerUser_pop a.burger_active i {
    background-color: white !important;
    color: var(--color-light) !important;
    font-weight: bold !important
}

a.burger_active:hover i {
    font-weight: 300 !important
}

.guide_title_btn {
    position: relative;
}

.guide_content ul {
    width: 100%
}

.guide_content li {
    padding-right: 20px;
    border-bottom: none;
}

.guide_content {
    display: flex;
    background-color: #fff;
    min-width: 175px;
    border-bottom: 1px solid var(--color-lightgrey);
    background-color: var(--color-bg-light)
}

@media screen and (max-width: 375px) {
    .burger_dropdown_content {
        min-width: 150px;
        width: 80vw;
    }
}