/* menu CSS */

.menuBox {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    color: #212b36;
    display: flex;
    flex-direction: column;
}

.menuMainBox {
    position: relative;
    min-height: 64px;
    transition: height 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.unoffset .menuMainBox {
    height: 64px;
}

@media screen and (min-width: 1000px) {
    .offset .menuMainBox {
        height: 72px;
    }

    .unoffset .menuMainBox {
        height: 88px;
    }
}

.offset .menuShadowBox {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 24px;
    width: calc(100% - 48px);
    margin: auto;
    border-radius: 50%;
    box-shadow: 0 8px 16px 0 rgba(145, 158, 171, 0.24);
}

.menuMainBox1 {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuDesktopBox {
    display: none;
}

@media screen and (min-width: 1000px) {
    .menuDesktopBox {
        display: flex;
        flex-direction: row;
    }
}

.menuDesktopItemBox {
    margin-left: 40px;
    cursor: pointer;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.menuDesktopItemBox1 {
    font-weight: 600;
    line-height: 1.5714285714285714;
    font-size: 0.875rem;
    color: inherit;
    text-decoration: none;
}

.menuDesktopItemBox1:hover {
    opacity: 0.48;
    color: inherit;
}

@media screen and (min-width: 1000px) {
    .menuDrawerButtonBox {
        display: none;
    }
}

.menuDrawerButton {
    position: relative;
    padding: 8px;
    outline: 0;
    border: 0;
    border-radius: 50%;
    font-size: 1.5rem;
    color: inherit;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.1);
}

.menuDrawerButton:hover {
    background-color: #F4F6F8;
}

.menuDrawerBox {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: 1200;
    pointer-events: none;
}

.menuDrawerOverlayBox {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(75deg,
            rgba(22, 28, 36, 0.48) 0%,
            rgba(22, 28, 36, 1) 100%);
    opacity: 0;
    transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuDrawerBox1 {
    z-index: 2200;
    position: fixed;
    top: 0;
    outline: 0;
    left: 0;
    height: 100%;
    width: 260px;
    padding-bottom: 40px;
    box-shadow: 8px 24px 24px 12px rgba(22, 28, 36, 0.16);
    background-color: #fff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    pointer-events: all;
    transform: translateX(-260px);
    transition: transform 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.menuDrawerLogoBox {
    margin-top: 24px;
    margin-left: 3px;
    width: 80px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuDrawerBox2 {
    display: flex;
    flex-direction: column;
}

.menuDrawerItemBox {
    height: 48px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    color: inherit;
    text-decoration: none;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    line-height: 1.5714285714285714;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.menuDrawerItemBox:hover {
    color: inherit;
    background-color: #F4F6F8;
}

.menuDrawerIconBox {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}
