#mobile-menu {
    position: relative;
    z-index: 1000;
}
#btn-menu {
    z-index: 5;
    cursor: pointer;
    transition: left 500ms ease-in-out;
    div {
        width: 35px;
        height: 2px;
        margin-bottom: 8px;
        background-color: #1e293b;
        transition: transform 500ms ease-in-out, opacity 500ms, background-color 250ms;
    }
    #bottom {
        margin-bottom: 0;
    }
}
#btn-menu.active {
    div {
        background-color: #1e293b;
    }
    #top {
        transform: translateY(10px) rotate(-135deg);
    }
    #middle {
        opacity: 0;
        transform: rotate(135deg);
    }
    #bottom {
        transform: translateY(-10px) rotate(-45deg);
    }
}
#box {
    position: fixed;
    z-index: 4;
    overflow: auto;
    top: 0px;
    right: -275px;
    width: 275px;
    opacity: 0;
    padding: 20px 0px;
    height: 100%;
    background-color: #fff;
    color: #1e293b;
    transition: all 350ms ease-in-out;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
#box.active {
    right: 0px;
    opacity: 1;
}
#items {
    position: relative;
    top: 60px;
    .item {
        position: relative;
        cursor: pointer;
        font-size: 20px;
        padding: 10px 20px;
        transition: all 250ms;
    }
    .item-separator{
        height: 2px;
        background-color: #F1F5F9;
        margin: 5px 0;
    }
}
#btn-menu, #btn-menu * {
    will-change: transform;
}
#box {
    will-change: transform, opacity;
}
.item a {
    color: #1e293b;
    text-decoration: none;
}

@media (max-width: 767px){
    .btn-podcast, .topbar-btn{
        padding: 0;
        background: none;
        font-weight: 400;
        color: #ef8e01 !important;
        margin-left: 0;
    }
}

.topbar-btn:hover{
    background-color: transparent !important;
}