:root {
	--blue: #7BD1E3;
	--shadow-blue: #DCF2F7;
	--border-radius: 30px
}

.shadow{
	box-shadow: 0 9px 11px #ddd;
}



.absolute-center {
	position: absolute !important;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: var(--border-radius);
}



.fixed {
	position: sticky;
	top: 67px;
	z-index: 1111;
	background: #F7F7F7;
	/* min-height: 83px; */
	display: flex;
	align-items: center;
	padding: 0;
}

#menu-box {
	display: flex;
	width: 1190px;
	margin: 0 auto;
	padding: 30px 0 50px 0
}

#menu-box li {
	list-style: none;
	cursor: pointer;
}

.sub-menu-box,
.menu .select-box,
#menu-box>li {
	border-radius: var(--border-radius);
}

#menu-box>li {
	position: relative;
	margin-right: 30px;
	min-width: 118px;
	height: 30px;
	border: 1px solid #e3e3e3;
	font-size: 17px;
	line-height: 30px;
	text-align: center;
}



.menu .select-box {
	display: none;
	position: absolute;
	left: 0;
}

.menu:hover {
	border: 1px solid var(--blue) !important;
	color: var(--blue) !important;
}

.menu_active {
	border: 1px solid var(--blue) !important;
	color: var(--blue) !important;
}

.bubble {
	width: 0;
	height: 0;
	border: 10px solid;
	border-color: transparent transparent var(--blue) transparent;
	position: absolute;
}

.sub-menu-box {
	z-index: 111;
	position: absolute;
	min-width: inherit;
	max-width: 356px;
	/* max-width: 484px; */
	width: max-content;
	background: var(--blue);
	left: 0;
	top: 40px;
	flex-wrap: wrap;
	display: none;
}

.menu:hover .sub-menu-box{
	display: flex;
}

.sub-menu-box li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: inherit;
	position: relative;
	color: white;
	width: max-content;
	padding: 0 5px;
	box-sizing: border-box;
}

.sub-menu-box li:hover {
	text-decoration: underline;
}

/* .sub-menu-box li+li::before {
			content: '';
			background: white;
			height: 100%;
			width: 1px;
			position: absolute;
			left: 0;
		} */

.menu-summary {
	position: relative;
	min-width: inherit;
	height: inherit;
	padding: 0 12px;
	display: block;
}




.bubble-box {
	min-width: inherit;
	height: 18px;
	position: absolute;
	top: -10px;
	left: 0;
}



.select-box .bubble,.sub-menu-box .bubble {
	left: 48px;
	top: -8px;
}


.select-box,
.sub-menu-box {
	/* padding: 1px 5px; */
	border: 1px solid transparent;
	top: 130%;
}

.select {
	color: #5fa0ae;
	width: max-content;
	display: block;
}

.select-box {
	background: var(--shadow-blue);
}

.select-box .bubble {
	border-color: transparent transparent var(--shadow-blue) transparent;
}

.select-box,
.select {
	min-width: inherit;
	height: inherit;
}

.select-box li{
	padding: 1px 12px;
}


