#header {
	background-color: white;
}
#header .padding {
	padding: 17px 40px 16px;
}
#header .logo {
	width: 120px;
    height: 37px;
	cursor: pointer;
}
#header .action {
	display: flex;
	gap: 20px;
}
#header .action .item {
	height: 36px;
	font-weight: 600;
	line-height: 32px;
	border-radius: 30px;
	border: 2px solid rgba(70, 45, 225, 0.2);
}
#header .action .language {
	position: relative;
	color: #462DE1;
	cursor: pointer;
	padding: 0 15px;
}
#header .action .language .icon {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}
#header .action .language .language-box {
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 50%;
	transform: translate(-50%);
	display: none;
	padding-top: 5px;
}
#header .action .language:hover .language-box {
	display: block;
}
#header .action .language .language-list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	cursor: auto;
	width: max-content;
	padding: 10px;
	border-radius: 10px;
	background-color: white;
	box-shadow: 0px 0px 40px #0000001a;
}
#header .action .language .language-item {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	padding: 5px 12px;
}
#header .action .language .language-item.active, #header .action .language .language-item:hover {
	color: #462DE1;
	border-radius: 40px;
	background-color: rgba(70, 45, 225, 0.1);
}
#header .action .login {
	padding: 0 20px;
}
#header .user-box {
	position: relative;
}
#header .user-box .personal {
	cursor: pointer;
}
#header .user-box .head {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid white;
}
#header .user-box .nickname {
	max-width: 100px;
	font-weight: bold;
	margin: 0 10px;
}
#header .user-box .arrow {
	width: 12px;
	height: 12px;
}
#header .user-box .menu-box {
	position: absolute;
	z-index: 1;
	top: 100%;
	right: 0;
	display: none;
	padding-top: 13px;
}
#header .user-box:hover .menu-box {
	display: block;
}
#header .user-box .menu {
	width: 200px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: white;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}
#header .user-box .menu-item {
	font-size: 14px;
	cursor: pointer;
	padding: 9px 20px;
}
#header .user-box .menu-item:hover {
    color: #462DE1;
	background-color: #F6F5FA;
}
#header .user-box .menu-item .icon {
	width: 18px;
	height: 18px;
	margin-right: 10px;
	background-size: 100% 100%;
}
#header .user-box .menu-item .icon.home {
	background-image: url(../../images/desk-icon.png);
}
#header .user-box .menu-item .icon.user {
	background-image: url(../../images/user-icon.png);
}
#header .user-box .menu-item .icon.logout {
	background-image: url(../../images/logout-icon.png);
}
#header .user-box .menu-item:hover .icon.home {
	background-image: url(../../images/desk-active-icon.png);
}
#header .user-box .menu-item:hover .icon.user {
	background-image: url(../../images/user-active-icon.png);
}
#header .user-box .menu-item:hover .icon.logout {
	background-image: url(../../images/logout-active-icon.png);
}
#header .language-icon {
	display: none;
	width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: 15px;
}
#header .switch {
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-size: 100% 100%;
}
#header .switch.open {
	display: none;
	background-image: url(../../images/list-icon.png);
}
#board {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: scroll;
	background-color: white;
}
#board .switch.shut {
	display: block;
	background-image: url(../../images/close-icon.png);
}
#board .list {
	display: flex;
	flex-direction: column;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
#board .list .item {
	padding: 25px 0;
	border-bottom: 1px solid #e9ecef;
}
#board .list .language-item {
	display: block;
	padding: 25px 0;
	border-bottom: 1px solid #e9ecef;
}
#languageModal .modal-content {
	position: relative;
	padding: 20px;
}
#languageModal .close {
	position: absolute;
	top: 12px;
    right: 12px;
	width: 25px;
	height: 25px;
}
#languageModal .title {
	font-size: 20px;
}
#languageModal .list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 20px;
}
#languageModal .list .item {
	padding: 10px 0;
}
#languageModal .list .item.active {
	color: #462DE1;
    border-radius: 40px;
    background-color: rgba(70, 45, 225, 0.1);
}
@media(max-width: 992px) {
	#header .action {
		gap: 10px;
	}
	#header .action .item {
		font-size: 14px;
	}
	#header .action .language .icon {
		width: 15px;
		height: 15px;
	}
	#header .action .login {
		padding: 0 15px;
	}
}
@media(max-width: 768px) {
	#header .logo {
		width: 116.8;
		height: 36px;
	}
	#header .padding {
		padding: 12px 20px;
	}
	#header .language-icon {
		display: block;
	}
	#header .switch.open {
		display: block;
	}
	#header .action {
		display: none;
	}
}