#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* headerBox */
.headerBox {
    width: 100%;
    padding: 20px;
    height: 78px;
    transition: all 0.2s ease-in-out;


}

.headerBox.bgColor {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
}

/* //////////////////// */
/* //////////////////// */
/* LEFT AREA */
/* //////////////////// */
/* //////////////////// */

.headerBox .headerLogo img {
    width: 137px;
}

/* //////////////////// */
/* //////////////////// */
/* RIGHT AREA */
/* //////////////////// */
/* //////////////////// */

.headerBox .headerUser {
    width: auto;
}

.headerBox .headerUser p {
    margin: 0 17px 0 53px;
    font-size: 15px;
    color: #ffffff;
}

.headerBox .headerUser img {
    width: 13px;
}

.headerBox .headerUser div {
    background: #D9D9D9;
    width: 36px;
    height: 36px;
    border-radius: 100%;
}

/* //////////////////// */
/* //////////////////// */
/* MENU(CENTER AREA) */
/* //////////////////// */
/* //////////////////// */
.headerBox .headerMenuBox {
    width: auto;
}


.headerBox .headerMenuBox .menu {
    width: 180px;
    height: 36px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.5;
    cursor: pointer;
    transition: all .2s ease-in-out;
    position: relative;

    &:hover {
        .tootip {
            opacity: 1;
        }
    }

    .tootip {
        position: absolute;
        top: 45px;
        left: 0;
        opacity: 0;
        transition: all .2s ease-in-out;


        .tri {
            width: 0;
            height: 0;
            border-top: 0 solid transparent;
            border-bottom: 13px solid #363636;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            margin: 0 0 0 25px;
        }

        .box {
            background: #363636;
            border-radius: 5px;
            padding: 8px;
            width: 218px;

            p {
                font-size: 15px;
                font-weight: 600;
                color: #ffffff;
                margin: 0 0 0 10px;

                span {
                    color: #EC2C7E;
                }
            }
        }
    }
}

.headerBox .headerMenuBox .menu.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    opacity: 1;
    color: #ffffff;

}

.headerBox .headerMenuBox .menu.active a {
    color: #ffffff;
    text-decoration: none;
}

.headerBox .headerMenuBox .menu:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    opacity: 1;
}

.headerBox .headerMenuBox ul {
    background: rgba(255, 255, 255, 0.2);
    width: 1px;
    height: 22px;
    margin: 0 12px;
}

/* //////////////////// */
/* //////////////////// */
/* IMAGE MENU */
/* //////////////////// */
/* //////////////////// */

#imageMenu {
    position: absolute;
    top: 36px;
    transition: all .2s ease-in-out;
    padding: 8px 0 0;
}

#imageMenu .box {
    width: 180px;
    height: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    padding: 0 5px;
    transition: all .2s ease-in-out;

}

#imageMenu .box div {
    width: 100%;
    height: 50%;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
}

#imageMenu .box div .empty {
    width: 0;
}


#imageMenu .box div:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#imageMenu .box div img {
    width: 14px;
}

#imageMenu .box div a {
    text-decoration: none;
    color: #ffffff;
}

#imageMenu .box div:first-child img {
    width: 20px;
}

#imageMenu .box div p {
    width: calc(100% - 14px);
    text-align: center;
    font-size: 14px;
}

#menuWrapper {
    position: relative;
}

#menuWrapper:hover #imageMenu .box {
    opacity: 1;
    height: 72px;
}

#menuWrapper:hover .menu {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    opacity: 1;
}

#mobileMenu,
#header .headerBox .headerMobile {
    display: none;
}

@media (max-width :1280px) {
    .headerBox .headerMenuBox .menu {
        width: 150px;
    }

    #imageMenu .box {
        width: 150px;
    }
}

@media (max-width : 1100px) {
    .headerBox .headerUser p {
        margin: 0 10px;
    }

    #imageMenu .box,
    .headerBox .headerMenuBox .menu {
        width: 130px;
    }

    #imageMenu .box div img {
        display: none;
    }

    #imageMenu .box div p {
        font-size: 12px;
        width: 100%;
    }
}

@media (max-width : 900px) {

    .headerBox {
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(20px);
    }

    .headerBox .headerMenuBox,
    .headerBox .headerUser {
        display: none;
    }

    #header .headerBox .headerMobile {
        display: flex;
    }

    #header .headerBox .headerMobile #pinkBtn {
        width: 74px;
        height: 31px;
        margin: 0 16px 0 0;
        border-radius: 50px;
        font-size: 16px;
    }



    #header .headerBox .headerMobile img {
        width: 18px;
    }
}