/* Header styles */
#header {
    position: fixed;
    height: 140px;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    overflow: hidden;
}

.header_box {
    width: 100%;
    height: 140px;
    min-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    width: 300px;
    height: 120px;
}

.logo img {
    width: 300px;
}

.logo video {
    width: 300px;
}

.header_menu {
    position: relative;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding-top: 45px;
    font-weight: bold;
    text-align: center;
}

header .active {
    position: relative;
    height: 40px;
    width: 180px;
    padding-top: 3px;
    box-sizing: border-box;
    background-color: rgb(211, 206, 196);
    margin: 0px 10px;
    transition: 1.16s;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(95, 95, 95);
    border-image: initial;
}

header .active:hover {
    background-color: rgb(167, 252, 0);
    color: rgb(95, 95, 95);
}

.header_elem {
    position: relative;
}

.header_page {
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 1001;
    background-color: #fff;
    /* height: 170px; */
    display: block;
    /* transition: all 0.3s ease-in-out; */
}

.header_page_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
    justify-content: flex-end;
}

.header_page_menu {
    position: relative;
    display: flex;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.header_page_menu li {
    width: 174px;
    height: 40px;
    padding-top: 3px;
    box-sizing: border-box;
    transition: 0.3s;
}

header li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.header_page_menu li:hover {
    background-color: #555;
    color: #A7FC00;
}

#menu_toggle {
    display: none;
}

.hamburger {
    display: none;
}

/* Login section styles */
#login {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

#login li {
    cursor: pointer;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* 로그인 버튼 */
#login .login {
    background-color: #555;
    color: #fff;
    border: 2px solid #555;
}

#login .login:hover {
    background-color: #A7FC00;
    color: #555;
    border-color: #A7FC00;
}

/* 회원가입 버튼 */
#login .sign {
    background-color: transparent;
    color: #555;
    border: 2px solid #555;
}

#login .sign:hover {
    background-color: #555;
    color: #A7FC00;
}

/* 관리자 정보 텍스트 */
#login .admin {
    color: #555;
    font-size: 14px;
    padding: 8px 12px;
    cursor: default;
}

/* 로그아웃 버튼 */
#login .logout {
    background-color: #d32f2f;
    color: #fff;
    border: 2px solid #d32f2f;
}

#login .logout:hover {
    background-color: #fff;
    color: #d32f2f;
    border-color: #d32f2f;
}

.mobil_only {
	display: none !important;
}