.right_drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    box-shadow: 0 0 5px 0px #00000025;
    z-index: 99999999;
    min-width: 240px;
    background-color: #fff;
    padding: 10px 0;
    transform: translate(100%, 0px);
    transition: all 350ms ease-in-out;
}

@media(max-width: 768px) {
    .right_drawer {
        width: 100%;
    }
}

.open_right_drawer {
    transform: translate(0px, 0px) !important;
}

.drawer_head {
    display: flex;
    padding: 10px 15px 15px 15px;
    align-items: center;
}

.drawer_head .close {
    color: var(--secondary-text);
    margin-right: 10px;
}

.drawer_head .close svg {
    font-size: 20px;
}

.drawer_head .title {
    color: var(--secondary-text);
    font-weight: 400;
    width: 100%;
}

.drawer_head .title svg {
    font-size: 26px;
}

.right_drawer hr {
    margin: 0;
    color: rgba(0, 0, 0, 0.2)
}

.drawer_overlay {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
}

.drawer_body {
    overflow: auto;
    height: 100%;
    scrollbar-width: thin;
}