.overlay {
    position: fixed;
    inset: 0;
    background: rgba(191, 191, 191, 0.8);
    display: none;
    z-index: 9999;
}

.overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.initalHiddenOverlay {
    display: none;
}

.overlayCenter {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.overlayPanel {
    transform: translateX(100vw);
    transition: transform 350ms ease-out;
}

.overlay.show .overlayPanel {
    transform: translateX(0);
}

body.noscroll {
    overflow: hidden;
}

.submenu {
    position: absolute;
    top: 100px;
    margin-right: 60px;
    background-color: #2A3647;
    border-radius: 20px 0 20px 20px;
    width: 150px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 30px 0px;
    padding-left: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.submenu p {
    font-size: 16px;
    font-weight: 400;
    color: #CDCDCD;
    margin: 0px;
    cursor: pointer;
    padding: 5px;
    width: 85%;
    text-align: left;
}

.submenu p:hover {
    background-color: #2A3D59;
    border-radius: 12px;
}

.submenu a {
    color: #CDCDCD;
    display: block;
    width: 85%;
    padding: 5px;
}

.submenuHelpButtonMobile {
    display: none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: #2A3647;
    border-radius: 16px;
    text-align: center;
    width: 312px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
}