.slide-out-menu-wrapper-3637c149 {
    display: inline-block;
}

.burger-icon-3637c149 {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line-3637c149 {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #9BB4C3;
    transition: all 0.3s ease;
}

/* Burger Animation to X */
.burger-icon-3637c149.is-open .burger-line-3637c149:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-icon-3637c149.is-open .burger-line-3637c149:nth-child(2) {
    opacity: 0;
}

.burger-icon-3637c149.is-open .burger-line-3637c149:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Slide Out Panel */
.slide-out-panel-3637c149 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background-color: #252C3A;
    z-index: 99998;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 100px 50px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}

body.admin-bar .slide-out-panel-3637c149 {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .slide-out-panel-3637c149 {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

.slide-out-panel-3637c149.is-open {
    right: 0;
}

/* Overlay Background */
.slide-out-overlay-3637c149 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.slide-out-overlay-3637c149.is-open {
    opacity: 1;
    visibility: visible;
}

/* Navigation Links */
.slide-out-nav-3637c149 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.slide-out-nav-3637c149 li {
    margin-bottom: 25px;
}

.slide-out-nav-3637c149 a {
    color: #FFFFFF;
    font-size: 1.5REM;
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: 400;
    transition: color 0.3s;
    display: inline-block;
}

.slide-out-nav-3637c149 a:hover {
    color: #9BB4C3;
}