.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 9997;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.signOutContainer {
    flex-shrink: 0;
    border-top: 1px solid #e5e7eb;
    background-color: white;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  
.drawerContainerRight {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background-color: white;
    z-index: 9998;
    width: 61%;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}



.right-menu .menu-top-wrap {
    min-height: calc(100% - 44px);
}

.account-overview .login-name {
    margin: 0 10px;
    padding: 24px 0 19px;
    color: #000;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 20px;
}

.account-overview .menu-item {
    border-bottom: 1px solid #ddd;
    /* margin: 0 10px; */
    /* padding: 0 5px 9px 10px; */
}

.menu-item img, 
.logout-button img, 
.right-menu-bottom img, 
.left-menu .item img {
    width: 16px;
    margin-right: 16px;
}

.account-overview .menu-item .label {
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #000;
}
.fontColor {
    color: #000;
}

.account-overview .menu-item .content .group {
    overflow: hidden;
    /* margin-bottom: 16px; */
    font-size: 12px;
    padding-right:10px;
}

.account-overview .menu-item .content .group div {
    float: left;
    margin-bottom: 16px;
    font-size: 12px;
}

.account-overview .menu-item .content .group span {
    float: right;
    font-size: 12px;
}

.negative {
    color: red;
}

.positive {
    color: green;
}

.menu-lvl-1 {
    padding: 0 13px;
}

.menu-lvl-1 .item {
    padding-left: 0;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    color: #000;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.menu-lvl-1 .item.no-border-bottom {
    border-bottom: none;
}

.right-menu .menu-lvl-1.settings .item {
    border-top: 1px solid #000;
    border-bottom: 1px solid #ddd;
}

.logout-button .menu-lvl-1.sign-out {
    border-top: 1px solid #ddd;
}

.right-menu-bottom {
    list-style: none;
    margin: 0;
    padding: 0;
}

.right-menu-bottom li {
    list-style: none;
}

.right-menu-bottom a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logout-button {
    list-style: none;
    margin: 0;
    padding: 0;
}

.logout-button li {
    list-style: none;
}

.sign-out-container {
  
    width: 100%;
    z-index: 10;
    margin-bottom: 10%
}

