@charset "utf-8";

#wrap {
	position: relative;
	padding: 40px;
	box-sizing: border-box;
}


#header {
  position: relative;
  padding: 20px 30px;
  background-color: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
}
#header .logo {
	font-family: 'GmarketSans';
	font-size: 50px;
	gap: 10px;
}
#header .logo img {
	vertical-align: middle;
}
#header .user {
	justify-content: end;
	gap: 16px;
	font-size: 20px;
}
#header .user h3 {
	font-size: 24px;
	margin-right: 5px;
}
#header .user select {
	min-width: 120px;
	height: 56px;
	border: 1px solid #000000;
	border-radius: 15px;
	padding: 0 25px 0 5px;
	font-size: 16px;
	font-weight: 700;
	background: url("../images/arrow-down-black.svg")no-repeat calc(100% - 6px) 50% / 18px;
}
#header .user .logout_btn {
	width: 136px;
	height: 56px;
	line-height: 56px;
	border-radius: 15px;
	border: 1px solid var(--Gradient);
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
	box-sizing: border-box;
}


.tab_menu {
	margin-bottom: 20px;
}
.tab_menu .flex {
	gap: 20px;
}
.tab_menu .flex a {
	flex: 1;
	height: 80px;
	line-height: 72px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	border-radius: 20px;
	border: 4px solid var(--yellow);
	background-color: var(--white);
	box-sizing: border-box;
}
.tab_menu .flex a.active {
	background-color: var(--yellow);
	font-weight: 700;
}


.not_scroll {
	overflow: hidden!important;
}


#container {
	background-color: var(--white);
	padding: 30px;
	border-radius: 20px;
	box-sizing: border-box;
}


.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 80%;
    max-width: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 38;
	background: #fff;
	border-radius: 10px;
}
.modal .modal_cont .scroll {
	position: relative;
	background: #fff;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 30px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
	width: 20px;
	height: 20px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal .item {
	border: 0.5px solid rgba(133, 133, 133, 0.5);
	border-radius: 10px;
	overflow: hidden;
}
.modal .item > strong {
	width: 100px;
	padding: 10px 20px;
	background: var(--underline);
	font-size: 20px;
	font-weight: 500;
	border-right: 0.5px solid rgba(133, 133, 133, 0.5);
	box-sizing: border-box;
}
.modal .list {
	gap: 10px;
}
.modal .item > div {
	flex: 1;
	padding: 10px 20px;
	box-sizing: border-box;
}
.modal .item > div input {
	display: block;
	width: 100%;
	font-size: 20px;
}
.modal .btn_area {
	margin-top: 20px;
}
.modal .btn_area button {
	width: 100%;
	max-width: 200px;
	height: 40px;
	background-color: var(--yellow);
	border-radius: 10px;
	font-size: 20px;
	margin: 0 auto;
}


.t_scroll {
	overflow-x: auto;
}
.list_table thead th {
	background: var(--text);
	color: var(--white);
	border-right: 1px solid var(--white);
	padding: 16px 7px;
	font-size: 24px;
	font-weight: 700;
}
.list_table tbody tr {
	background: rgba(224, 229, 236, 0.30);
}
.list_table tbody tr:nth-child(odd) {
	background: var(--stroke);
}
.list_table tbody td {
	border-right: 1px solid var(--white);
	padding: 16px 7px;
	text-align: center;
	font-size: 24px;
}
.list_table .btn_form {
	justify-content: center;
}





@media screen and (max-width: 1440px){
	#wrap {
		padding: 20px;
	}
}
@media screen and (max-width: 1024px) {
	#header .logo {
		font-size: 28px;
	}
	#header .logo img {
		width: 44px;
	}
	#header .user {
		font-size: 16px;
	}
	#header .user h3 {
		font-size: 20px;
	}
	#header .user select {
		height: 44px;
		background-size: 16px;
	}
	#header .user .logout_btn {
		width: 104px;
		height: 44px;
		line-height: 45px;
	}

	.tab_menu .flex a {
		height: 60px;
		line-height: 54px;
		font-size: 18px;
	}

	#container {
		padding: 20px;
	}


	.list_table thead th {
		font-size: 20px;
	}
	.list_table tbody td {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	#header {
		padding: 15px 20px;
		border-radius: 10px;
		gap: 10px;
	}
	#header .logo {
		font-size: 24px;
	}
	#header .user {
	}

	.tab_menu .flex {
		gap: 10px;
	}
	.tab_menu .flex a {
		flex: none;
		width: calc(50% - 5px);
		height: 50px;
    	line-height: 45px;
		border-radius: 10px;
		border-width: 3px;
		font-size: 16px;
	}

	#container {
		border-radius: 10px;
	}

	.list_table thead th {
		font-size: 16px;
	}
	.list_table tbody td {
		font-size: 16px;
	}

	.modal .item > strong {
		width: 100%;
		border-right: 0;
		border-bottom: 0.5px solid rgba(133, 133, 133, 0.5);
		font-size: 16px;
	}
	.modal .item > div {
		width: 100%;
	}
	.modal .item > div input {
		font-size: 16px;
	}
	.modal .btn_area button {
		font-size: 16px;
	}

}
@media screen and (max-width: 480px) {
	#header .logo {
		font-size: 20px;
		gap: 5px;
	}
	#header .logo img {
		width: 30px;
	}
	#header .user select {
		width: 100px;
		padding: 0 10px;
		background-position: calc(100% - 10px) 50%;
		background-size: 14px;
		font-size: 14px;
		border-radius: 10px;
	}
}
@media screen and (max-width: 385px) {
	#header .logo {
		width: 100%;
	}
	#header .user,
	#header .user > div {
		width: 100%;
	}
	#header .user select {
		width: 100%;
	}
}