@charset "utf-8";

.header{
    pointer-events: none;
}

.hLogoBx,
.hNavBtn{
    pointer-events: all;
}

.hNavBtn::before {
    content: "";
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: -13px;
    z-index: -1;
    margin: auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    -ms-filter: blur(24px);
    filter: blur(24px);
}

.hNavBtn:hover::before {
    opacity: 1;
}

.hShopBtnBx {
    position: relative;
    border-radius: 50%;
    transition: all .3s;
}

.hShopBtnBx.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.hShopBtn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hShopBtnBx::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--quaternary);
    z-index: -1;
    transition: all .3s;
}

.hShopBtnBx:hover::before {
    top: 0;
    left: 0;
}

.down {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}