/* ----------- global ----------- */
/* panel */
.container {
	width: 100%;
	height: 100%;
	padding: 40px;
	margin-top: 8px;
	border-radius: 5px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
}

/* placeholder */
.input_wrap input::placeholder,
.date-time-field input::placeholder,
.textarea_wrap textarea::placeholder{
	color: #8d8d8d;
}

/* radio */
.radio_wrap {
	display: flex;
	align-items: center;
}
.radio_wrap input {
	width: 16px;
	height: 16px;
	background-color: #fff;
	appearance: none;
	border-radius: 50%;
	cursor: pointer;
	outline: 0 none;
	border: 1px solid #b2b2b2;
}
.radio_wrap input:focus {
	outline: 0 none;
	outline-offset: 0;
	outline-color: transparent;
	box-shadow: none;
}
.radio_wrap input:checked {
	background-color: #4229ff;
	border: 1px solid #4229ff;
}
.radio_wrap input:disabled {
	background-color: #ccc;
	border: 1px solid #b2b2b2;
}
.radio_wrap label {
	margin-left: 8px;
}

/* checkbox */
.checkbox_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.checkbox_wrap input {
	position: relative;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border-radius: 2px;
	appearance: none;
	cursor: pointer;
	outline: 0 none;
	border: 1px solid #b2b2b2;
	overflow: hidden;
}
.checkbox_wrap input:focus {
	outline: 0 none;
	outline-offset: 0;
	outline-color: transparent;
	box-shadow: none;
}
.checkbox_wrap input:checked {
	appearance: none;
	background-color: #4229ff;
}
.checkbox_wrap input:checked:before {
	position: absolute;
	display: block;
	content: '';
	top: -0.5px;
	left: -0.6px;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-image: url('/images/icon-checkbox.svg');
	background-position: center center;
	background-size: 15px;
	background-color: #4229ff;
}
.checkbox_wrap input:checked:disabled:before {
	background-image: url('/images/icon-checkbox-g.svg');
	background-color: #e2e2e5;
	border: 1px solid #b2b2b2;
	border-radius: 2px;
}

.checkbox_wrap input:disabled {
	background-color: #e2e2e5;
}
.checkbox_wrap label {
	margin-left: 8px;
}

/* selectbox */
.select_wrap select,
.select_wrap select:not([size]) {
	width: 100%;
	height: 44px;
	font-size: 16px;
	background-image: url('/images/icon-expand.svg');
	background-position: right 12px center;
	background-size: 24px;
	background-repeat: no-repeat;
	padding-left: 14px;
	padding-right: 38px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	appearance: none;
	cursor: pointer;
}


/* input */
.input_wrap input {
	width: 100%;
	height: 44px;
	font-size: 16px;
	padding: 0 14px;
	border: 1px solid #0000004d;
}
.input_wrap input:focus {
	border: 1px solid #0000004d;
}
.date-time-field input {
	width: 176px;
	height: 44px;
	padding: 4px 14px;
	font-size: 16px;
}

/* textarea */
.textarea_wrap textarea {
	width: 100%;
	min-height: 160px;
	padding: 14px;
	font-size: 16px;
	border: 1px solid #0000004d;
	resize: none;
}

/* table */
.poomsae_table_wrap {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.15);
	overflow-x: auto;
	overflow-y: hidden;
}
.poomsae_table_wrap table {
	width: 100%;
}
.poomsae_table_wrap thead {
	position: sticky;
	top: 0;
}
.poomsae_table_wrap thead::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border-bottom: 2px solid #000000;
}
.poomsae_table_wrap thead tr th {
	height: 70px;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	background-color: #f2f2f6;
}
.poomsae_table_wrap tbody tr th,
.poomsae_table_wrap tbody tr td {
	height: 70px;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	background-color: #ffffff;
	padding: 0 0.75rem;
}
.poomsae_table_wrap tbody tr:last-child td {
	border-bottom: 0;
}
.poomsae_table_wrap tbody tr:hover td {
	background-color: rgb(251 251 255);
}

.poomsae_table_wrap.th2 thead tr th,
.poomsae_table_wrap.th2 tbody tr th,
.poomsae_table_wrap.th2 tbody tr td {
	height: 60px;
	padding: 0 20px;
}
.poomsae_table_wrap.th2 tbody tr:last-child th {
	border-bottom: 0;
}
.poomsae_table_wrap.th2 thead::after {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.poomsae_s_table_wrap,
.poomsae_s_table_wrap table {
	width: 100%;
}
.poomsae_s_table_wrap tr {
	border-bottom: 1px solid #e5e7eb;
}
.poomsae_s_table_wrap tr:last-child {
	border-bottom: 0;
}
.poomsae_s_table_wrap th {
	width: 150px;
	height: 60px;
	background-color: #fcfcff;
	padding: 0 20px;
	text-align: left;
	letter-spacing: -0.025em;
}
.poomsae_s_table_wrap td {
	height: 60px;
	padding: 8px 20px;
	text-align: left;
	letter-spacing: -0.025em;
}

/* button */
.media_btn_wrap {
	display: flex;
	align-items: center;
}
.media_btn_wrap button {
	position: relative;
	display: block;
	border-radius: 0.25rem;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.3);
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	padding-left: 2rem;
	padding-right: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}
.media_btn_wrap button::after {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url('/images/icon-image.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1.5rem;
}
.media_btn_wrap.pdf button::after {
	background-image: url('/images/icon-pdf.svg');
}
.media_hidden {
	display: none;
}
.base_btn {
	min-width: 130px;
	height: 44px;
	padding: 2px 16px;
	font-size: 16px;
	border: 1px solid #000000;
}
.base_btn.black {
	background-color: #000000;
	color: #ffffff;
}
.base_btn.red {
	border: 1px solid #d60812;
	background-color: #ffeaed;
	color: #d60812;
}
.base_btn.primary {
	border: 1px solid #4229ff;
	background-color: #e9eaff80;
	color: #4229ff;
}
.referee_btn {
	width: 30px;
	height: 30px;
	background-image: url('/images/icon-referee-plus.svg');
}
.enter_btn {
	width: 24px;
	height: 24px;
	background-image: url('/images/icon-nm-enter.svg');
	background-position: center;
	background-repeat: no-repeat;
}

/* pagination */
.pagination_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 80px;
	gap: 6px;
}
.pagination_wrap a,
.pagination_wrap button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 4px;
	color: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 0, 0, 0.3);
}
.pagination_wrap a.active,
.pagination_wrap button.active {
	background-color: #000;
	color: #fff;
}

/* operation button (Filter) */
.operation_btn {
	display: flex;
	width: 92px;
	height: 44px;
	padding: 10px 16px 10px 10px;
	object-fit: contain;
	border-radius: 22px;
	background-color: #5b5d7b;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.4px;
	text-align: left;
	color: #fff;
}
.operation_btn img {
	margin-right: 5px;
}

/* search input */
.operation_search_wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.operation_search_wrap:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background-size: contain;
	margin-left: 10px;
	background-image: url('/images/icon-search-gray.svg');
}

/* loading */
.loading_wrap {
	position: absolute;
	top: -50px;
	left: 0;
	z-index: 200;
	width: 100%;
	height: calc(100% + 50px);
	background-color: rgba(0, 0, 0, 0.647);
	/* opacity: 0.5; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.loading_wrap img {
	width: 72px;
}
.loading_wrap p {
	color: #fff;
	padding-bottom: 103px;
}

/***************** 대진표 start *****************/
.list_match {
	display: flex;
	flex-direction: column;
}
.list_match li {
	display: flex;
	flex-direction: column;
	position: relative;
}
/* 16강 -A */
.list_match li > p {
	position: absolute;
	top: -20px;
}
.list_match dl {
	display: flex;
	gap: 5%;
	padding: 7px 2px;
}

.list_match dl dt {
	width: 15%;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.list_match dl dd {
	width: 80%;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 10px;
}
.list_match dl dt img {
	width: 100%;
}
.list_match dl dt p {
	font-size: 6px;
}
.list_match dl dd div {
	height: 0.5px;
	background-color: rgba(255, 255, 255, 0.3);
	width: 95%;
	margin-top: -2px;
}

.list_match li .wrap_player:first-of-type dl {
	background-image: url('/images/match-table-left-top.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.list_match li .wrap_player:last-of-type dl {
	background-image: url('/images/match-table-left-bottom.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding: 8px 2px 6px;
}

.list_match li .wrap_player {
	display: flex;
	flex-direction: column;
	position: relative;
}
.list_match li .wrap_player.wrap_player_win,
.list_match li .wrap_player.wrap_player_null {
	opacity: 1;
}
.list_match li .wrap_player {
	opacity: 0.5;
}
.list_match li .line_match {
	position: absolute;
	bottom: 0;
	right: 0;
}
.list_match li .wrap_player .line_match {
	border-left: 1px solid #1aff03;
}
.list_match li .wrap_player:last-of-type.wrap_player_win .line_match {
	border-top: 1px solid #1aff03;
}
.list_match li .wrap_player:first-of-type .line_match {
	border-bottom: 1px solid #1aff03;
}
.list_match li .wrap_player:last-child {
	flex-direction: column-reverse;
}

.list_match li .wrap_player:last-of-type .line_match {
	top: 0;
	bottom: unset;
	border-bottom: none;
	border-right: none;
}

.list_match.list_match_reverse .wrap_player {
	align-items: flex-end;
}
.list_match.list_match_reverse li > p {
	position: absolute;
	top: -20px;
	right: 0;
}
.list_match.list_match_reverse li .line_match {
	bottom: 0;
	left: 0;
	right: unset;
	border-left: none;
}
.list_match.list_match_reverse li .wrap_player .line_match {
	border-right: 1px solid #1aff03;
}
.list_match.list_match_reverse dl {
	display: flex;
	flex-direction: row-reverse;
}
.list_match.list_match_reverse dl dd {
	justify-content: flex-end;
}
.list_match.list_match_reverse li .wrap_player:first-of-type dl {
	background-image: url('/images/match-table-right-top.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.list_match.list_match_reverse li .wrap_player:last-of-type dl {
	background-image: url('/images/match-table-right-bottom.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.table_match_left,
.table_match_right {
	display: flex;
}
.table_match_right {
	/* 왜 있는건지 패딩은 확인해 봐야함 */
	/* padding-right: 32px; */
}
.table_match_left .list_match:last-child li:first-of-type .line_match,
.table_match_right .list_match:first-child li:first-of-type .line_match {
	border-bottom: none;
}
.table_match_left .list_match:last-child li:first-of-type .wrap_player_win .line_match,
.table_match_right .list_match:first-child li:first-of-type .wrap_player_win .line_match {
	border-bottom: 1px solid #1aff03;
}
.container_final {
	display: flex;
	align-items: center;
	justify-content: center;
}
.container_winner_player {
	width: 100px;
	height: 100px;
	border-radius: 4px;
	border: solid 2px #1aff03;
	background-color: #07063e;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
}
.container_winner_player > img {
	position: absolute;
	height: 90%;
	top: 0;
	object-fit: contain;
}
.container_winner_player > div {
	width: 95px;
	border: solid 1px #e0f5fd;
	border-radius: 4px;
	background-color: #04101c;
	display: flex;
	z-index: 1;
	padding: 2px 5px;
	gap: 5px;
}
.container_winner_player > div dt {
	width: 20%;
	font-size: 6px;
	line-height: 1;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
}
.container_winner_player > div dd {
	width: calc(80% - 5px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.container_winner_player > div dd p {
	font-size: 9px;
	color: #fff;
	line-height: 1;
}
/***************** 대진표 fin *****************/

/* ----------- document ----------- */
.documentFile * {
	border-width: unset; /* 2 */
	border-style: unset; /* 2 */
	/*border-color: unset; !* 2 *!*/
}
/* 문서 폰트 사이즈 medium */
.document__font-medium table tr th {
	font-size: 16px;
	padding: 5px 6px;
	line-height: 1;
}
.document__font-medium table tr td {
	font-size: 13px;
	padding: 1px 6px;
}
.document__font-medium table .item__type-new {
	height: 26px;
	vertical-align: bottom;
}
/* 문서 폰트 사이즈 large */
.document__font-large table tr th {
	font-size: 16px;
	line-height: 1;
	padding: 6px;
}
.document__font-large table tr td {
	font-size: 16px;
	line-height: 1;
	padding: 3px 6px;
}
.document__font-large table .item__type-new {
	height: 30px;
	vertical-align: bottom;
}
.contents__document {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.table__document-border {
	border-collapse: collapse;
	width: 100%;
}
.table__document-border * {
	border: 2px solid black;
}


/* search_select */

.search_select .selectContainer{
	height: 100% !important;
	background-image: url('/images/icon-expand.svg') !important;
	background-position: right 8px center !important;
	background-size: 24px !important;
	background-repeat: no-repeat !important;
	border-radius: 0 !important;
	border: 1px solid #0000004d !important;
	cursor: pointer;
}
.search_select .selectContainer .clearSelect {
	width: 40px !important;
	height: 100%;
	top: 0 !important;
	right: 0 !important;
	background-color: #fff;
	text-align: center;
	color: #000 !important;
}
.search_select .selectContainer .clearSelect svg {
	width: 20px;
	margin: 0 auto;
}
.search_select .selectContainer input {
	cursor: pointer !important;
	font-size: 16px !important;
	padding: 0 40px 0 14px !important;
}
.search_select .selectContainer.focused,
.search_select .selectContainer:hover {
	border: 1px solid #0000004d !important;
}
.search_select.error .selectContainer,
.search_select.error .selectContainer:hover {
	border: 1px solid #c92512 !important;
}
.search_select .selectContainer .listContainer {
	color: #000 !important;
	z-index: 11 !important;
}
.search_select .selectContainer .listContainer .listItem .item {
	padding: 0 14px;
}