@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.menu-panel {
    position: absolute;
    color: #333;
    width: 264px;
    padding: 20px;
    margin: auto;
    font-family: "Poppins", sans-serif !important;
    text-align: left;
    border-radius: 6px;
    background: white;
    box-shadow: 0 7px 35px 0px rgba(0, 0, 0, .12);
    transition: opacity .4s;
    z-index: 1;
    top: 64px;
    left: 75px;
    opacity: 0;
    visibility: hidden
}

.menu-panel.open {
    opacity: 1;
    visibility: inherit
}

.menu-panel:after {
    position: absolute;
    top: -8px;
    right: 25px;
    content: "";
    display: block;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white
}

.menu-panel .menu-action {
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.menu-panel .menu-action .btn {
    border: none;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: opacity .3s ease-out;
    -moz-transition: opacity .3s ease-out;
    -webkit-transition: opacity .3s ease-out;
    -o-transition: opacity .3s ease-out;
    padding: 8px 10px;
}

.menu-panel .menu-action .btn:hover {
    opacity: 0.5;
}

.menu-panel .menu-action .btn-default {
    background: transparent;
    color: #999
}

.menu-panel .menu-action .btn-primary {
    background: transparent;
    color: #2ab27b
}

.menu-panel h4 {
    text-transform: uppercase;
    margin: 8px 0;
    font-weight: 400;
    color: #a1a0a3;
    font-family: 'Inter', sans-serif;
    font-size: 14px
}

.menu-panel ul,
.menu-panel ul li {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0 5px;
    line-height: 30px;
    font-size: 14px;
}

.menu-panel ul li {
    height: 35px;
    line-height: 30px;
    padding: 2px 5px;
    margin: 0;
    display: block;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
}

.menu-panel ul li:hover {
    cursor: pointer;
    color: #1ABC9C;
    background: #fff;
}

.menu-panel ul li input[type="checkbox"] {
    padding: 5px;
    color: #888;
    text-decoration: none;
    margin-right: 10px;
    color: #41c4b1
}

.menu-panel ul li a:hover,
.menu-panel ul li a:focus {
    background: #1ABC9C;
    color: #fff
}