
/************************************************
	layer
************************************************/

.layerSelect {
	display: none;
	/* z-index: 10; */
	z-index: 99999999;
}
.layerSelect .layerWrap {
	display: none;
	position: fixed;
	/* bottom: 50%; */
	/* width: 80%; */
  width: 1166px;
	border-radius: 15px;
	background-color: #fff;
	z-index: 1002;
	/* transition: all 0.3s ease-out; */
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-direction: column;
}
.layerSelect .layerWrap.on {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}
.layerSelect .layerMask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(34, 34, 34, 0.90);
	z-index: 1001;
}
.layerSelect .layerContents {
	overflow-y: auto;
	min-height: 50px;
	text-align: left;
	display: flex;
	gap: 16px;
	justify-content: center;
	/* justify-content: flex-start; */
  align-items: center;
	flex-direction: column;
  padding: 56px 56px 42px 56px;
}
.layerSelect .layerContents {
	gap: 48px;
}
.layerSelect#layerSort .layerContents {
	overflow-y: auto;
	max-height: 360px;
	min-height: 140px;
}
.layerSelect .layerHeader h4 {
  color: #000;
  font-family: Gilroy-Bold;
  font-size: 2.0833vw;
  /* font-size: 2.5rem; */
  font-weight: 400;
  line-height: 120%; /* 48px */
  letter-spacing: -0.8px;
}
.layerHeader {
	margin-bottom: 4px;
	width: calc(100% - 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 16px 24px;
  border-bottom: 1px solid #AEDCFC;
}
.layerHeader h1 {
  color: #003252;
  font-size: 24px;
  font-weight: 700;
}
.layerHeader .closeBtn {
  display: inline-block;
  background-image: url('../img/modal/close_btn.svg');
  background-repeat: no-repeat;
  background-position: center;
	background-size: 32px;
  width: 32px;
  height: 32px;
  font-size: 0;
}
.layerHeader.center h4,
.layerContents.center p {
	text-align: center;
	margin-bottom: 24px;
}
.layerContents .listLabel {
	padding: 8px 0;
	display: flex;
	gap: 16px;
	flex-direction: column;
	margin-bottom: 16px;
}
.layerContents.center .listLabel {
	margin: 0;
	padding: 0;
}
.layerContents .listLabel ul {
	list-style-type: disc;
}
.layerContents .listLabel li {
	font-size: 16px;
	line-height: 22px;
	background-position: 0 center;
	background-repeat: no-repeat;
	color: var(--Font_listSub, #5C6875);
}
.layerContents .listLabel p {
	font-size: 16px;
	line-height: 22px;
	color: var(--Font_listSub, #5C6875);
}
.layerBottom {
  display: flex;
  width: calc(100% - 240px);
  padding: 32px 120px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background-color: #AEDCFC;
}
.layerBottom span {
  border-radius: 4px;
  background-color: #01436E;  
  color: #FEFEFE;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #FEFEFE;
  padding: 2.5px 7.5px;
}
.layerBottom p {
  color: #222;
  text-align: center;
  font-family: "Noto Sans KR";
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
}
@media only screen and (max-width: 767px) {

}