.epmw-widget {
    display: block;
}

.epmw-burger {
    width: fit-content !important;
    height: fit-content !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    cursor: pointer !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.epmw-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #D3BC8D;
    border-radius: 999px;
    margin: 3px;
}

.epmw-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    padding: 14px 20px;
}

.epmw-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.epmw-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.epmw-popup-logo{
    width: 80px;
}
.epmw-popup-logo,
.epmw-popup-logo a {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.epmw-popup-logo img,
.epmw-popup-logo .custom-logo {
    display: block;
    width: 100%;
    height: auto;
}

.epmw-close {
    background: transparent !important;
    color: inherit;
    cursor: pointer !important;
    font-size: 36px !important;
    line-height: 0.8 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 0 8px !important;
}

.epmw-popup-inner {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    padding: 26px 0;
    box-sizing: border-box;
}

.epmw-popup-nav {
    width: 100%;
}

.epmw-popup-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epmw-popup-menu li {
    margin: 0 0 21px;
}

.epmw-popup-menu a {
    font-size: 18px;
    line-height: 1.15;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.epmw-popup-menu a:hover,
.epmw-popup-menu a:focus {
    opacity: 0.72;
}

.epmw-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: 13px 22px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.epmw-empty {
    color: inherit;
}

body.epmw-menu-open {
    overflow: hidden;
}
