header {
    background-color: #DECEB2;
    padding: 17px 0 23px;
}

.no-scroll {
    overflow: hidden;
}

.pageoverlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 11;
    visibility: hidden;
    opacity: 0;
    background: #363636;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
}

.pageoverlay.is-visible {
    opacity: .5;
    visibility: visible;
}

.header__logo {
    margin-right: 15px;
}

.header__member-info {
    color: #01204E;
    font-weight: bold;
    line-height: 1.42em;
    font-size: 0.9375rem;
}

.header__icon--hamburger {
    cursor: pointer;
}

.header__icon--hamburger div {
    width: 25px;
    height: 3px;
    background-color: #01204E;
    margin-top: 4px;
    border-radius: 1px;
    transition: 0.25s linear;
}

/* ---------------------- Sidebar ----------------------*/
.sidebar {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    right: 0;
    visibility: hidden;
    width: calc(100vw - 20px);
    height: 100vh;
    z-index: 12;
    transition: transform .5s cubic-bezier(.645, .045, .355, 1), visibility .5s cubic-bezier(.645, .045, .355, 1);
    background: #96CDAC;
    padding: 27px 23px;
    overflow: auto;
    max-width: 400px;
}

.sidebar.is-visible {
    visibility: visible;
    transform: unset;
}

.sidebar__code {
    color: #fff;
    background-color: #005A42;
    font-weight: bold;
    font-size: 1rem;
    display: block;
    margin: 0 auto 12px;
    width: 170px;
    padding: 0 5px;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    border-radius: 17px;
}

.sidebar__logo {
    margin-right: 15px;
}

.sidebar__account-name, .sidebar__account-phone {
    color: #005A42;
    font-weight: bold;
}

.sidebar__account-name {
    font-size: 1.25rem;
    margin-bottom: 7px;
}

.sidebar__account-phone {
    font-size: 0.875rem;
    margin-bottom: 28px;
}

.sidebar__btn {
    display: block;
    color: #005A42;
    border: 1px solid #005A42;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    line-height: 1.42em;
    padding: 8px 10px;
    margin-bottom: 15px;
}