#right-sidebar{
    position: absolute;
}

#right-sidebar .body .opacity {
    background-color: var(--og-dark);
    opacity: 0.5;
}

#right-sidebar .body .menu-items {
    background-color: var(--og-white);
    min-width: 300px;
    padding-right: 1.5rem;
    padding-left: 2rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    position: absolute;
    right: 0;
    z-index: 1029;
    max-height: 89vh;
}

#right-sidebar .body .menu-items .div-close {
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#right-sidebar .body .menu-items .div-close #close-right-sidebar-icon {
    font-size: 1.5rem;
    padding: 1.25rem 0.25rem 1.25rem 0.25rem;
    cursor: pointer;
}

#right-sidebar .body .menu-items .div-help,
#right-sidebar .body .menu-items .div-a-item {
    padding: 1.25rem 0.25rem 1.25rem 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#right-sidebar .body .menu-items .div-help a {
    color: var(--og-dark);
    font-family: Roboto;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-decoration: none;
}

#right-sidebar .body .menu-items .div-a-item a {
    text-transform: uppercase;
    color: var(--og-dark);
    font-family: Roboto;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-decoration: none;
}

#right-sidebar .body .menu-items .div-logout {
    padding: 1.25rem 0.25rem 1.25rem 0.25rem;
}

.btn-logout, .btn-logout:focus, .btn-logout:hover {
    padding: 12px;
    color: var(--og-dark) !important;
    border-radius: 15px;
    border: 2px solid var(--og-third);
    text-transform: uppercase;
    min-width: 150px;
    box-shadow: unset;
    font-size: 16px;
    font-weight: 400;
}

#fixed-action-btn {
    position: fixed;
    right: 3rem;
    bottom: 4rem;
    z-index: 1030;
    display: flex;
    flex-flow: column-reverse nowrap;
    align-items: center;
    color: var(--og-white);
    font-size: 2rem;
    background: var(--second);
    border-radius: 50%;
}

#fixed-action-btn[aria-expanded="false"] {
    padding: 1rem 1.65rem;
}

#fixed-action-btn[aria-expanded="true"] {
    padding: 1rem;
    background-color: var(--third);
}

#fixed-action-btn[aria-expanded="false"] i.fa-ellipsis-v,
#fixed-action-btn[aria-expanded="true"] i.fa-ellipsis-h{
    display: inline-block;
}

#fixed-action-btn[aria-expanded="false"] i.fa-ellipsis-h,
#fixed-action-btn[aria-expanded="true"] i.fa-ellipsis-v{
    display: none;
}

/*  RIGHT SIDEBAR DARK MODE */
.dark-mode #right-sidebar .body .opacity {
    background-color: #000000;
    opacity: 0.65;
}

.dark-mode #right-sidebar .body .menu-items {
    background-color: #0f172a;
    border-left: 1px solid #334155;
    box-shadow: -10px 0 30px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.02);
    color: #f3f4f6;
}

.dark-mode #right-sidebar .body .menu-items .div-close,
.dark-mode #right-sidebar .body .menu-items .div-help,
.dark-mode #right-sidebar .body .menu-items .div-a-item {
    border-bottom: 1px solid rgba(148,163,184,.18);
}

.dark-mode #right-sidebar .body .menu-items .div-help a {color: white;}

.dark-mode #right-sidebar .body .menu-items .div-a-item a {color: white;}

.dark-mode #right-sidebar .body .menu-items .div-help a:hover,
.dark-mode #right-sidebar .body .menu-items .div-a-item a:hover {
    color: #60a5fa;
}

.dark-mode .btn-logout, .dark-mode .btn-logout:focus, .dark-mode .btn-logout:hover {
    background-color: transparent;
    color: #f3f4f6 !important;
    border: 2px solid #475569;
    box-shadow: none;
}

.dark-mode .btn-logout:hover {
    background-color: #172033;
    border-color: #60a5fa;
    color: #ffffff !important;
}

.dark-mode #fixed-action-btn[aria-expanded="true"] {
    background-color: var(--bg-action-btn);
}

