#header{
    width: 100%;
    height: 120px;
    position: fixed;
    transition: box-shadow .3s,  background-color .3s;
    z-index: 1000;
    top: 0;
    left: 0;
}

#header.scroll{
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.header_center{
    width: 90%;
    height: 100%;
    min-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_menu{
    height: 100%;
    display: flex;
    align-items: center;
}

.logo_menu>a{
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.mainmenu{
    margin-left: 100px;
    height: 100%;
    display: flex;
    align-items: center;
}

ul.mainmenu>li{
    width: 180px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.mainmenu>li>a{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #111;
    position: relative;
}

ul.mainmenu>li:hover a{
    font-weight: 600;
}

ul.mainmenu>li>a span{
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #111;
    left: 0;
    bottom: 0;
    transition: width .3s;
}

ul.mainmenu>li:hover a span{
    width: 100%;
}

ul.submenu{
    width: 200px;
    border: 1px solid #111;
    box-sizing: border-box;
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

ul.submenu.show{
    opacity: 1;
    visibility: visible;
}

ul.submenu li{
    width: 100%;
    text-align: center;
    margin-bottom: 18px;
    font-size: 16px;
    font-family: 'Pretendard-Regular', sans-serif;
    cursor: pointer;
}

ul.submenu li:last-child{
    margin-bottom: 0;
}

ul.submenu li:hover{
    font-family: 'Pretendard-SemiBold', sans-serif;
}

.header_more{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.ver{
    margin-bottom: 15px;
}

.ver ul{
    display: flex;
}

.ver ul li{
    font-size: 14px;
    line-height: 15px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    cursor: pointer;
}

.ver ul li:first-child{
    border-right: 1px solid #ccc;
    padding-right: 15px;
}

.ver ul li:last-child{
    padding-left: 15px;
}

.ver ul li.ver_on{
    font-weight: 500;
    color: #111;
}

.more_icon{
    display: flex;
    align-items: center;
}

.search{
    width: 180px;
    border-bottom: 1px solid #111;
    padding: 0 5px 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 30px;
}

.search input{
    width: 90%;
    border: 0;
    background-color: transparent;
}

.search i{
    font-size: 26px;
    color: #111;
    cursor: pointer;
}

.user{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin-right: 30px;
}

ul.usermenu{
    width: 100px;
    border: 1px solid #111;
    box-sizing: border-box;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

ul.usermenu.show{
    opacity: 1;
    visibility: visible;
}

ul.usermenu li{
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
    margin-bottom: 13px;
    cursor: pointer;
}

ul.usermenu li:last-child{
    margin-bottom: 0;
}

.basket{
    display: flex;
    align-items: center;
    justify-content: center;
    display: unset;
    position: relative;
    cursor: pointer;
    margin-right: 30px;
}

.count{
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #fff02a;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #111;
    font-family: 'Pretendard-Light', sans-serif;
    right: -5px;
    bottom: 0;
}

.menu_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu_box{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}

.menu_box.show{
    opacity: 1;
    visibility: visible;
}

.menu_box_inner{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width: 25%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -25%;
    transition: right .5s;
}

.menu_box.show .menu_box_inner{
    right: 0;
}

ul.main>li{
    margin-bottom: 20%;
}

ul.main>li:last-child{
    margin-bottom: 0;
}

ul.main>li a{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #999;
    transition: color .3s;
}

ul.main>li:hover a{
    color: #111;
}

ul.sub li{
    margin-top: 15px;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    font-family: 'Pretendard-Regular';
}

ul.sub li:hover{
    color: #111;
}

.menu_box_inner i.close_btn{
    font-size: 30px;
    position: absolute;
    top: 40px;
    left: 50px;
    cursor: pointer;
}
