@import url('https://cdn.jsdelivr.net/gh/leetaewook/gmarket-sans-dynamic-subset/GmarketSans.css');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@charset "UTF-8";

:root {	
	--main-bg-color: #FFFFFF;
}


*{
	/* padding 또는 border 영역을 포함하여 크기를 width, weight를 결정 */
	box-sizing: border-box; 

	/* Long press 설명표시 방지, 선택 방지 */
	 -webkit-touch-callout: none; /* iOS Safari */
	 -webkit-user-select: none; /* Safari, Chrome, Opera, Samsung */
	 -khtml-user-select: none; /* Konqueror HTML */
	 -moz-user-select: none; /* Firefox */
	 -ms-user-select: none; /* Edge, IE */
	 user-select: none; /* Modern browsers */
}

html, body {
	/* body margin이 기본이 8 8 8 8이므로 0으로 설정 */
	margin: 0;
	padding:0;
	height:100%;
	font-family: "Pretendard Variable", Pretendard, "Gmarket Sans", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
	box-sizing:border-box;
}


body {
	background: var(--main-bg-color);
	margin-left: auto;
	margin-right: auto;

	/* Hide scrollbar */
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
	scrollbar-width: none; /* for Firefox */
}
::-webkit-scrollbar {
	display: none; /* for Chrome, Safari, and Opera */
}

input {
	font-family: "Pretendard Variable", Pretendard, "Gmarket Sans", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}
textarea {
	font-family: "Pretendard Variable", Pretendard, "Gmarket Sans", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

a:link { text-decoration: none; color:#6b6b6b; }
a:visited { text-decoration: none; color:#6b6b6b; }
a:active { text-decoration: none; color:#6b6b6b; }
a:hover { text-decoration: none; color:#7b889f; }

/* text-align */
.ta_l { text-align:left;}
.ta_c { text-align:center;}
.ta_r { text-align:right;}

/*###################################################
// 버튼 종류
###################################################*/
.blue_btn {
	color: #344861;
	font-size: 20px;
	font-weight: 700;
	border: 2px solid #344861;
	border-radius: 30px;
	padding: 12px 20px;
}

.brown_btn {
	color: #5C4100;
	font-size: 20px;
	font-weight: 700;
	border: 2px solid #5C4100;
	border-radius: 30px;
	padding: 12px 20px;
}

.button {
	font-weight: 700;
	margin-top: 10px;
	padding: 0px 10px 0px 10px;
	border-radius: 10px;
	color:rgba(18, 69, 186, 1);
	min-width:30vw;
	height:48px;
	border-radius: 24px;
	font-size:20px;
	line-height:48px;
	
}

.button_blue {
	background: #3C22C4;
	box-shadow: 0 0 0 2px rgba(255, 201, 64, 0.25) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.button_font_white { color: #FFFFFF; }

.button_size_45 { width: 45vw; }
.button_size_80 { width: 80vw; }


/*###################################################
// 전체 Layout
###################################################*/
.wrapper {
	display: flex;
	flex-direction: column;
	height:100%;
}

header {
	display: flex;
	flex-direction: row;
	flex-shrink: 0;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	padding: 0 5px;
	font-weight: 700;
	font-size: 1.5em;
}

footer {
	display: flex;
	flex-shrink: 0;
	height: 50px;
	background-color: #EFEFEF;
	color: #fff;
	justify-content: center;
	align-items: center;
}

main {
	flex: 1;
	overflow: auto;
	text-align: center;

}

/*###################################################
// 헤더 영역
###################################################*/
header .title {
	flex: 3;
	display: flex;
	justify-content: center;
	align-items:center;
	font-weight: 700;
	font-size: min(5.555vw, 30px);
	color: #333333;
}
header .left {
	flex: 2;
	display: flex;
	flex-direction: row;
	align-items:center;
	justify-content: left;
}
header .right {
	flex: 2;
	display: flex;
	flex-direction: row;
	align-items:center;
	justify-content: flex-end;
}
header .left img {
	margin-left: 8px;
}
header .right img {
	margin-right: 8px;
}
header div .btn, .btn2 {
	display: flex;
	align-items:center;
	justify-content: center;

	min-width: 25px;
	height: 25px;
}
header div .btn2 {
	font-size: 19px;
	color: #666666;

	background-image: url("/images/bt_back_2.png");
	background-repeat: no-repeat;
	background-size: contain;

	margin-left: 8px;
	padding-left: 20px;
}
header div .help {
	height: 30px;
	margin-top:5px;
	margin-left: 8px;
}

/*###################################################
// 메인 영역
###################################################*/
.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100%;
}

.main .content {
	display: flex;
	width: 100vw;

	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.main .content .item {
	display: flex;
	flex-direction: column;
	justify-content:  flex-end;
	align-items: center;

	width: 38vw;
	height: 45.6355vw;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	margin-bottom: 3.333vw;
}
.main .content .bg1 {
	background-image: url("/images/main_section_stage.png");
}
.main .content .bg2 {
	background-image: url("/images/main_section_daily.png");
}
.main .content .bg3 {
	background-image: url("/images/main_section_random_2.png");
}
.main .content .bg4 {
	background-image: url("/images/main_section_statistics.png");
}
.main .content .item .title {
	width: 80%;
	height: 8vw;
	margin-bottom: 7%;
	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 4vw;
	font-weight: 600;
	color: #344861;

	background-color: #FFFFFF;
	border-radius: 4.56335vw;
}
.main .content .item .calendar {
	position: relative;
	width: 36vw;
	height: 50%;
	margin-left: 1.3vw;
	margin-bottom: 8%;
}
.main .content .item .month {
	height: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	font-weight: 600;
}
.main .content .item .day {
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #1D69FF;

	font-size: 8vw;
	font-weight: 900;
}
.main .content .item .calendar .checked {
	position: absolute;
	right: 1vw;
	top: 6vw;
}
.main .content .item .calendar .checked .new {
	height: 12vw;
}
.main .content .item .calendar .checked .complete {
	height: 10vw;
}

.main .tournament {
	display: flex;
	flex-direction: column;
	width: 84vw;
	height: 20.843vw;
	background-image: url("/images/main_tournament_bg.png");
	background-repeat: no-repeat;
	background-size: 100%;

	padding-left: 30vw;
	padding-right: 4vw;
}
.main .tournament .title {
	width: fit-content;
	font-size: 8vw;
	font-weight: 800;
	color: #344861;
	margin-top: 2.5vw;
}
.main .tournament .sub {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1.2vw;
	margin-left: 1vw;
}
.main .tournament .sub .remain {
	display: flex;
	justify-content: center;
	align-items: center;

	height: 5vw;

	background-color: #C2853B;
	border-radius: 1vw;

	font-size: 3.2vw;
	color: #FFFFFF;

	padding: 0 1vw;
}
.main .tournament .sub .remain img {
	height: 4vw;
	margin-right: 0.5vw;
}
.main .tournament .sub .score {
	font-size: 3.6vw;
	font-weight: 600;
	color: #344861;
}

.main .button_wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	margin-top: 3vw;
}
.main .how_to_btn {
	display: flex;
	justify-content: center;
	align-items: center;

	height: 8vw;
	padding: 0 3vw;

	font-size: 3.8vw;
	font-weight: 600;
	color: #FFFFFF;

	background: #344861;
	box-shadow: 0 0 0 2px rgba(255, 201, 64, 0.25) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);

	border-radius: 2.3vw;
}
.main .youtube_btn {
	height: 8vw;
	vertical-align: bottom;
}

.random_game_selector_bg {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
.random_game_selector_bg .selector {
	display: flex;
	flex-direction: column;
	width: 90vw;
	height: 50vh;
	background: no-repeat #FFFFFF;
	border-radius: 8vw;

	position: fixed;
	bottom: -50vh;

	/*기본 padding */
	padding: 2vw 8vw;
}
.random_game_selector_bg .selector .item {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #EAEEF8;
	font-size: 2.5vh;
}
.random_game_selector_bg .selector .item:last-child {
	border-bottom: 0;
}

.random_game_selector_bg .selector .off {
	color: lightgray;
}


/*###################################################
// 달력
###################################################*/
.schedule {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-top:2vw;
}


.schedule .cal_bg {
	position: relative;
	width:100vw;
	height:180vw;
	/*height: calc(100vh - 60px);*/
	background-size: contain;
	background-repeat: no-repeat;
}

.schedule .matrix_cal_bg {
	/*background-image: url("/images/matrix_cal_bg.png");*/
}
.schedule .sudoku_cal_bg {
	/*background-image: url("/images/sudoku_cal_bg.png");*/
}

.schedule .matrix_cal_bg_en {
	/*background-image: url("/images/en/matrix_cal_bg.png");*/
}
.schedule .sudoku_cal_bg_en {
	/*background-image: url("/images/en/sudoku_cal_bg.png");*/
}

.schedule .calendar {
	position: relative;
	/*top:39vw;*/
	width: 92vw;
	top:10vw;
	left:4vw;	
}

.schedule .calendar .calendar_inner {
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

	border:0px solid red;
	border-radius: 24px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2), -1px -1px 2px rgba(202, 212, 232, 0.2), inset 0px 5px 62px rgba(220, 226, 239, 0.2), inset 0px 5px 62px rgba(238, 241, 247, 0.2);
	padding: 8vw 0;
}

.schedule .calendar .calendar_inner .schedule_table th {

	font-size: 4.5vw;
	font-weight: 700;
	line-height: 19.09px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	width:11vw;

}

.schedule .calendar .calendar_inner .schedule_table th td {

	font-size: 4.5vw;
	font-weight: 700;
	line-height: 19.09px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	width:11vw;

}

.schedule .calendar .calendar_inner .schedule_table tbody td {
	height:18vw;
	vertical-align:top;
}

.schedule .calendar .calendar_inner .schedule_table tbody th {

	height:8vw;
	border:0px solid red;
	vertical-align:middle;

}


.schedule .calendar .calendar_inner .schedule_table .day_b_font {
	font-size: 3.8vw;
	font-weight: 700;
	line-height: 10vw;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color:#344861;
	border:0px solid red;
}

.schedule .calendar .calendar_inner .schedule_table .day_b_div {
	width:0px;
	position:absolute;
	left:0.5vw;
	top:1.6vw;
}

.schedule .calendar .calendar_inner .schedule_table .day_b_div img {
	width:10.0vw;
}

.schedule .calendar .calendar_inner .schedule_table .day_d_font {

	font-size: 3.8vw;
	font-weight: 700;
	line-height: 10vw;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color:#FFFFFF;
	z-index:1;
	position: relative;
	padding-right:2px;
}

.schedule .calendar .calendar_inner .schedule_table .day_d_div,
.schedule .calendar .calendar_inner .schedule_table .day_e_div,
.schedule .calendar .calendar_inner .schedule_table .day_a_div
 {
	width:0px;
	position:absolute;
	left:-3.2vw;
	top:-1vw;
}

.schedule .calendar .calendar_inner .schedule_table .day_d_div img,
.schedule .calendar .calendar_inner .schedule_table .day_e_div img,
.schedule .calendar .calendar_inner .schedule_table .day_a_div img
 {
	width:17.0vw;
}


.schedule .calendar .calendar_inner .schedule_table .day_e_font {

	font-size: 3.8vw;
	font-weight: 700;
	line-height: 10vw;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color:#FFFFFF;
	z-index:1;
	position: relative;
	padding-right:2px;
}

.schedule .calendar .calendar_inner .schedule_table .day_a_font {

	font-size: 3.8vw;
	font-weight: 700;
	line-height: 10vw;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color:#333333;
	z-index:1;
	position: relative;
	padding-right:2px;
}


.schedule .calendar .blank_1{
	position: relative;
	border:0px solid green;
	min-height:5px;
	height:calc(1vw*5.5);
}

.schedule .calendar .yearmonth {
	display: flex;
	justify-content: center;
	font-size: 5.5vw;
	font-weight: 700;
	padding-top: calc(1vw*0.1);
	color:#333333;
}

.schedule .calendar .yearmonth img {
	width:8vw;
	vertical-align: bottom;
}


/*###################################################
// 스테이지 화면
###################################################*/
.stage_wrapper {
	display: flex;
	flex-direction: column;
	width: 100vw;
	overflow-y: hidden;
	align-items: center;
	padding: 4vw;
}
.stage_wrapper .status {
	position: absolute;
	top: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 50%);
	border-radius: 4.5vw;
	font-weight: 700;
	font-size: 3.8vw;
	color: #333333;
	padding: 2.5vw 4.5vw;
}
.stage_wrapper .row_wraper {
	display: flex;
	width: 92vw;
	height: 25vw;
}
.stage_wrapper .row_wraper:nth-child(2) {
	/*margin-top: 10vw;*/
}

.stage_wrapper .row {
	display: flex;
	width: 92vw;
	height: 25vw;
}

.stage_wrapper .foward {
	flex-direction: row;
	/*justify-content: space-between;*/
	justify-content: space-evenly;
}

.stage_wrapper .reverse {
	flex-direction: row-reverse;
	justify-content: space-evenly;
	padding: 0 10.5vw;
}

.stage_wrapper .row .stage_box {
	flex:1;
	display: flex;
	justify-content: center;
	background-image: url("/images/loop_bar_240.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 3vw;	/*width, height*/
}

.stage_wrapper .row .empty_box {
	flex:1;
	display: flex;
}
.stage_wrapper .forward .stage_box:first-child {
	background-position: calc(10vw) center;
}
.stage_wrapper .forward .stage_box:last-child {
	background-position: right 10vw center;
}
.stage_wrapper .forward .last {
	background-position-x: -19vw !important;
}
.stage_wrapper .forward .first_first {
	background-position: 19vw center !important;
}
.stage_wrapper .forward .first_last {
	background-size: 30% 3vw;	/*width, height*/
}

.stage_wrapper .reverse .last {
	background-position-x: 19vw;
}

.stage_wrapper .loop_left_top {
	background-image: url("/images/loop_left.png");
	background-repeat: no-repeat;
	background-position: 0 11vw;
	background-size: contain;
}
.stage_wrapper .loop_left_bottom {
	background-image: url("/images/loop_left.png");
	background-repeat: no-repeat;
	background-position: 0 -11vw;
	background-size: contain;
}
.stage_wrapper .loop_right_top {
	background-image: url("/images/loop_right.png");
	background-repeat: no-repeat;
	background-position: right 11vw;
	background-size: contain;
}
.stage_wrapper .loop_right_bottom {
	background-image: url("/images/loop_right.png");
	background-repeat: no-repeat;
	background-position: right -11vw;
	background-size: contain;
}

.stage_wrapper .stage {
	width: 22vw;
	height: 25vw;
	font-size: 5vw;
	font-weight: 700;
}
.stage_wrapper .complete {
	/*background-image: url("/images/stage_complete.png");*/
	background-image: url("/images/stage_complete_2.png");
	background-size: 100%;
	color: #ffffff;
}
.stage_wrapper .open {
	background-image: url("/images/stage_open.png");
	background-size: 100%;
	color: #ffffff;
}
.stage_wrapper .lock {
	background-image: url("/images/stage_lock.png");
	background-size: 100%;
	color: #8A733C;
}
.stage_wrapper .ready {
	background-image: url("/images/stage_ready.png");
	background-size: 100%;
	color: #8A733C;
}
.stage_wrapper .ready_en {
	background-image: url("/images/en/stage_ready.png");
	background-size: 100%;
	color: #8A733C;
}
.stage_wrapper .gold {
	background-image: url("/images/stage_gold.png");
	background-size: 100%;
	color: #ffffff;
}
.stage_wrapper .silver {
	background-image: url("/images/stage_silver.png");
	background-size: 100%;
	color: #ffffff;
}
.stage_wrapper .bronze {
	background-image: url("/images/stage_bronze.png");
	background-size: 100%;
	color: #ffffff;
}
.stage_wrapper .stage span {
	display: inline-block;
	margin-top: 14vw;
}

.cloud {
	position: sticky;
	bottom: 0;
}
.cloud div {
	position: absolute;
	bottom: 0;
	background-image: url("/images/stage_cloud.png");
	background-size: cover;
	width: 100vw;
	height: 42.578vw;
}


/*###################################################
// 매트릭스
###################################################*/
.matrix_game {
	display: flex;
	flex-direction: column;
	height:100%;
	align-items: center;
}
.matrix_game .game_wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 96vw;
	margin-top: 5vw;
}
.matrix_game .level_wrapper {
	width: 100%;
	height: 10vw;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1vw;
}
.matrix_game .game_wrapper .title {
	flex: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
	font-weight: 700;
}
.matrix_game .game_wrapper .title img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.matrix_game .level_wrapper .help {
	flex: 1;
	display: flex;
	align-items: center;
	margin-left:1vw;
}
.matrix_game .level_wrapper .help img {
	height: 7.2vw;
}
.matrix_game .level_wrapper .level {
	height: 100%;
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: end;
}
.matrix_game .level_wrapper .level img {
	height: 9vw;
}

.matrix_game .game_wrapper .cell_bg_correct {
	background: #344861;
}
.matrix_game .game_wrapper .cell_bg_incorrect {
	background-color: #FFFFFF;
}
.matrix_game .game_wrapper .cell_bg_fail {
	background-color: #FF6163;
}


.matrix_game .game_wrapper .game_div {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: between;
	align-items: center;
}
.matrix_game .game_wrapper .game_div .grid {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #FFFFFF;
	font-family: "Gmarket Sans","Pretendard Variable", Pretendard,  -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
.matrix_game .game_wrapper .game_div .guide {
	position: absolute;
	width: 96vw;
	pointer-events: none;
	background: none;
}
.matrix_game .game_wrapper .game_div .grid .row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.matrix_game .game_wrapper .game_div .grid .cell {
	flex: 1 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 0.17vw solid #C4C4D2;
	border-bottom: 0.17vw solid #C4C4D2;
	touch-action: manipulation;
}
.matrix_game .game_wrapper .game_div .grid .cell_i {
	flex: 1 1;
	display: flex;
	justify-content: center;
	align-items: center;
	touch-action: manipulation;
}
.matrix_game .game_wrapper .game_div .grid .cell .content {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #344861;
	touch-action: manipulation;
}
.matrix_game .game_wrapper .game_div .grid .cell_i .content {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #344861;
	touch-action: manipulation;
}
.matrix_game .game_wrapper .game_div .cell:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.matrix_game .game_wrapper .game_div .cell_i:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.matrix_game .game_wrapper .game_div .grid .cell:first-child  {
	border-right: 0.5vw solid #C4C4D2;
}
.matrix_game .game_wrapper .game_div .grid .cell:last-child  {
	border-right: 0;
	border-left: 0.33vw solid #C4C4D2;
}
.matrix_game .game_wrapper .game_div .grid .no_border {
	border: none;
}
.matrix_game .game_wrapper .game_div .grid .no_bottom_border {
	border-bottom: none;
}
.matrix_game .game_wrapper .game_div .grid .info_bg_cnt {
	background-color: #F3F6F8;
}
.matrix_game .game_wrapper .game_div .grid .info_bg_size {
	background-color: #C4CFE5;
}
.matrix_game .game_wrapper .game_div .grid .thick_bottom_line {
	border-bottom-width: 0.5vw;
}
.matrix_game .game_wrapper .game_div .grid .thick_top_line {
	border-top: 0.5vw solid #C4C4D2;
}
.matrix_game .game_wrapper .game_div .grid .thick_right_line {
	border-right-width: 0.5vw;
}
.matrix_game .game_wrapper .game_div .grid .bottom_dark_line {
	border-bottom-color: #666666;
}
.matrix_game .game_wrapper .game_div .grid .right_dark_line {
	border-right-color: #666666;
}
.matrix_game .game_wrapper .game_div .grid .bg_div {
	background-image: linear-gradient(-45deg, #C4CFE5 50%, #F3F6F8 51%);
}
.matrix_game .game_wrapper .game_div .grid .font_size_1, .font_size_2, .font_size_3 {
	font-size: 6vw;
}
.matrix_game .game_wrapper .game_div .grid .font_size_4, .font_size_5, .font_size_6 {
	font-size: 6vw;
}
.matrix_game .game_wrapper .game_div .grid .font_size_7, .font_size_8 {
	font-size: 5vw;
}
.matrix_game .game_wrapper .game_div .grid .font_size_9, .font_size_10, .font_size_11 {
	font-size: 4vw;
}
.matrix_game .game_wrapper .game_div .grid .h_font_size_1 {
	font-size: 4vw;
}
.matrix_game .game_wrapper .game_div .grid .h_font_size_4, .h_font_size_5 {
	font-size: 4vw;
}
.matrix_game .game_wrapper .game_div .grid .h_font_size_6, .h_font_size_7, .h_font_size_8 {
	font-size: 3.5vw;
}
.matrix_game .game_wrapper .game_div .grid .h_font_size_9, .h_font_size_10, .h_font_size_11 {
	font-size: 3vw;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_t {
	border-top-width: 1vw;
	border-top-style: solid;
	border-top-color: #286EFF;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_b {
	border-bottom-width: 1vw;
	border-bottom-style: solid;
	border-bottom-color: #286EFF;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_l {
	border-left-width: 1vw;
	border-left-style: solid;
	border-left-color: #286EFF;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_r {
	border-right-width: 1vw;
	border-right-style: solid;
	border-right-color: #286EFF;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_t_red {
	border-top-width: 1vw;
	border-top-style: solid;
	border-top-color: #FF362A;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_b_red {
	border-bottom-width: 1vw;
	border-bottom-style: solid;
	border-bottom-color: #FF362A;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_l_red {
	border-left-width: 1vw;
	border-left-style: solid;
	border-left-color: #FF362A;
}
.matrix_game .game_wrapper .game_div .grid .indiate_border_r_red {
	border-right-width: 1vw;
	border-right-style: solid;
	border-right-color: #FF362A;
}
.matrix_game .incorrect {
	display: flex;
	position: absolute;
	width:96vw;
	height:96vw;
	/*background: rgba(0, 0, 0, 0.5);*/
	justify-content: center;
	align-items: center;
	margin-top: 10vw;
}
.matrix_game .incorrect img {
	object-fit: none;
}

.matrix_game .game_wrapper .cell_cnt {
	position: relative;
	width: 100%;
	height: 10px;
}
.matrix_game .game_wrapper .cell_cnt span {
	display: inline-block;
	position: absolute;
	font-size: 3.2vw;
	top: 3px;
	right: 3px;
	margin:0;
	padding:0;
	line-height: 1;
}

.matrix_game .game_wrapper .control_btn_wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 2.5vw 0;
	font-size: 4.5vw;
	font-weight: 500;
}
.matrix_game .game_wrapper .control_btn_wrapper .center {
	flex: 0 0 0;
}
.matrix_game .game_wrapper .control_btn_wrapper .left {
	flex: 1 1 0;
}
.matrix_game .game_wrapper .control_btn_wrapper .right {
	flex: 1 1 0;
}
.matrix_game .game_wrapper .control_btn_wrapper .left,.right {
	display: inline-flex;
	justify-content: center;
}
.matrix_game .game_wrapper .control_btn_wrapper img {
	height: 13.5vw;
	vertical-align: bottom;
	border-radius: 6.75vw;
}
.matrix_game .game_wrapper .control_btn_wrapper .left img {
	height: 11.5vw;
	border-radius: 0vw;
}
.matrix_game .game_wrapper .control_btn_wrapper .center div {
	padding: 0.5vw 1.5vw;
	border: 1vw solid #FFFFFF;
	border-radius: 8.25vw;
}
.matrix_game .game_wrapper .control_btn_wrapper .center div img {
	width: 24.394vw;
}
.matrix_game .game_wrapper .control_btn_wrapper .center .on {
	border: 1vw solid #286EFF;
}
.matrix_game .game_wrapper .control_btn_wrapper .center .on_red {
	border: 1vw solid #FF362A;
}
.matrix_game .game_wrapper .control_btn_wrapper .center .off {
	border: 1vw solid #FFFFFF;
}

.matrix_game .game_wrapper #pointer {
	position:absolute;
	height: 10vw;
	pointer-events: none;
}

.matrix_game .game_wrapper .status_div {
	width:96vw;
	height: 12vw;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size:5vw;
	font-weight: 700;
	border: 0.5vw solid #C4C4D2;
	border-radius: 6vw;
	background-color: #F3F6F8;
}

.matrix_game .game_wrapper .status_div #remain {
	flex: 1;
	font-family:"Pretendard Variable", Pretendard,"Gmarket Sans", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	font-variant-numeric: tabular-nums;
}

.matrix_game .game_wrapper .status_div #incorrect_status {
	flex: 1;
	display: flex;
	justify-content: start;
	align-items: center;
	padding-left: 4vw;

}
.matrix_game .game_wrapper .status_div #incorrect_status img {
	width:5.5vw;
	padding-right: 3px;
}
.matrix_game .game_wrapper .status_div #hint_status {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 2.5vw;
}
.matrix_game .game_wrapper .status_div #hint_status img  {
	height: 8vw;
	margin-top: 0.8vw;
}

.matrix_game .game_wrapper .view_answer {
	margin: 2vw 0;
}

.matrix_game .sample {
	display: flex;
	justify: space-between;
}
.matrix_game .sample a {
	flex: 1 1;
	font-size: 3.5vw;
	border: 1vw solid #5C4100;
	border-radius: 3vw;
	margin: 3vw 1vw;
	padding: 1vw 2vw;
}

#alert_message {
	position: absolute;
	top:0;
	left: 2vw;

	width: 96vw;
	height: calc(14vw + 60px);

	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;

	font-size: 3.8vw;
	font-weight: 500;
	padding: 2vw 5vw;

	background: #C4CFE5;
	border-radius: 0 0 5vw 5vw;
}
#alert_message p {
	padding: 0;
	margin: 0.5vw 0;
	text-align:center;
}

/*---------------------------------------------------------
 Tutorial
----------------------------------------------------------*/
.matrix_game .information_wrapper {
	display: flex;
	width: 100vw;
	flex-direction: row;
	background: rgba(0, 0, 0, 0.2);
	padding: 2vw;
}
.matrix_game .information_wrapper .logo img {
	width: 35vw;
}
.matrix_game .information_wrapper .title {
	font-size: 4.5vw;
	font-weight: 600;
	text-align: left;
	padding: 3vw 0 0 2vw;
}
.matrix_game .information_wrapper .speech_bubble {
	display: flex;
	align-items: center;
	width:75vw;
	height:31vw;
	background-image: url("/images/speech_bubble.png");
	background-size: contain;
	background-repeat: no-repeat;
	overflow:hidden;

	padding: 4vw 12vw 4vw 4vw;
}
.matrix_game .information_wrapper .speech_bubble .message {
	width: 100%;
	text-align: left;
}
.matrix_game .information_wrapper .grandfather {
	position: absolute;
	right: 2vw;
	width: 30vw;
}

/*###################################################
// 순위표 화면 
###################################################*/
.leader_board {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height:100%;
	padding: 10px 20px;
}

.leader_board .tab_wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	position: absolute;
}

.leader_board .tab_wrapper .tab_on {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 32vw;
	height: 10vw;
	background: #344861;
	border-radius: 19px 19px 0 0;

	font-size: 5vw;
	font-weight: 700;

	margin-right: 0.6vw;

	color: #FFFFFF;
}

.leader_board .tab_wrapper .en {
	font-size: 4vw;
}

.leader_board .tab_wrapper .tab_off {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 32vw;
	height: 10vw;
	background: #EAEEF8;

	border-radius: 19px 19px 0 0;

	font-size: 4.5vw;
	font-weight: 700;

	margin-left: 0.6vw;
}

.leader_board .list_frame {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2), -1px -1px 2px rgba(202, 212, 232, 0.2), inset 0px 5px 62px rgba(220, 226, 239, 0.2), inset 0px 5px 62px rgba(238, 241, 247, 0.2);
	padding: 12px;
	margin-top: 9.9vw;
}
.leader_board .list_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow-y: auto;
	border-radius: 10px;
}
.leader_board table {
	width: 100%;
	font-size: 16px;
	color: #000000;
}

.leader_board table tr {
	height: 40px;
}

.leader_board table tr td {
	font-size: 1.1em;
	border-bottom: 1px solid #C4C4D2;
	vertical-align: middle;
}
.leader_board table tr:last-child td {
	border:none;
}
.leader_board table tr td:last-child {
	padding-right: 5px;
	font-variant-numeric: tabular-nums;
}


.leader_board .rank {
	font-weight: 700;
	font-size: 1.1em;
}
.leader_board .gold {
	background-image: url("/images/icon_medal_1.png");
	background-repeat: no-repeat;
	background-position: center;
	/*background-size: contain;*/
	font-size: 1em;
	color: #000000;
}
.leader_board .silver {
	background-image: url("/images/icon_medal_2.png");
	background-repeat: no-repeat;
	background-position: center;
	/*background-size: contain;*/
	font-size: 1em;
	color: #000000;
}
.leader_board .bronze {
	background-image: url("/images/icon_medal_3.png");
	background-repeat: no-repeat;
	background-position: center;
	/*background-size: contain;*/
	font-size: 1em;
	color: #FFC300;
}

.leader_board .on {
	background-color: #EAEEF8;
}
.leader_board .nickname {
	font-weight: 600;
	padding-left: 5px;
}
.leader_board .score {
	font-weight: 600;
}
.leader_board .time {
	display: none;
	font-weight: 600;
}
.leader_board .nickname img {
	margin-left: 5px;
	vertical-align: middle;
}

.leader_board .input {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 91vw;
	height: 18vw;
	border: 0.5vw solid #C4C4D2;
	background: #F3F6F8;
	border-radius: 9vw;
	margin-top: 16px;
	padding: 0 3vw;
}
.leader_board .input textarea {
	flex: 1;
	font-size: 4.5vw;
	height: 10.5vw;
	border: none;
	border-radius: 5.3vw;
	padding: 2.8vw 4.1vw 0 4.1vw;
	margin-right: 1.5vw;
	outline: none;
	overflow: hidden;
}
.leader_board .input .medal_1 {
	background-image: url("/images/icon_medal_1_2.png");
	background-size: 8vw 8vw;
	background-position: left 1vw center;
	background-repeat: no-repeat;
	padding-left: 10vw;
}
.leader_board .input .medal_2 {
	background-image: url("/images/icon_medal_2_2.png");
	background-size: 8vw 8vw;
	background-position: left 1vw center;
	background-repeat: no-repeat;
	padding-left: 10vw;
}
.leader_board .input .medal_3 {
	background-image: url("/images/icon_medal_3_2.png");
	background-size: 8vw 8vw;
	background-position: left 1vw center;
	background-repeat: no-repeat;
	padding-left: 10vw;
}
.leader_board .input .save {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18vw;
	height: 10.5vw;
	font-size: 5vw;
	font-weight: 700;
	color: #344861;
	border: 2px solid #344861;
	border-radius: 5.25vw;
}

.leader_board .footer {
	display: flex;
	flex-shrink: 0;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	margin: 10px 0;
}

.leader_board .footer div {
	/*box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(171, 0, 0, 0.2);*/
}

/*###################################################
// 댓글 화면 
###################################################*/
.comment_board {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding: 10px 20px;
}

.comment_board .tab_wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.comment_board .tab_wrapper .tab_on {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 32vw;
	height: 10vw;
	background: #344861;
	border-radius: 19px 19px 0 0;

	font-size: 5vw;
	font-weight: 700;

	margin-right: 0.6vw;

	color: #FFFFFF;
}

.comment_board .tab_wrapper .tab_off {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 32vw;
	height: 10vw;
	background: #EAEEF8;

	border-radius: 19px 19px 0 0;

	font-size: 4.5vw;
	font-weight: 700;

	margin-left: 0.6vw;
}

.comment_board .tab_wrapper .en {
	font-size: 4vw;
}

.comment_board .input {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 91vw;
	height: 18vw;
	border: 0.5vw solid #C4C4D2;
	background: #F3F6F8;
	border-radius: 9vw;
	padding: 0 3vw;
}
.comment_board .input textarea {
	flex: 1;
	font-size: 4.5vw;
	height: 10.5vw;
	border: none;
	border-radius: 5.3vw;
	padding: 2.8vw 4.1vw 0 4.1vw;
	margin-right: 1.5vw;
	outline: none;
	overflow: hidden;
}
.comment_board .input .medal_1 {
	background-image: url("/images/icon_medal_1_2.png");
	background-size: 8vw 8vw;
	background-position: left 1vw center;
	background-repeat: no-repeat;
	padding-left: 10vw;
}
.comment_board .input .medal_2 {
	background-image: url("/images/icon_medal_2_2.png");
	background-size: 8vw 8vw;
	background-position: left 1vw center;
	background-repeat: no-repeat;
	padding-left: 10vw;
}
.comment_board .input .medal_3 {
	background-image: url("/images/icon_medal_3_2.png");
	background-size: 8vw 8vw;
	background-position: left 1vw center;
	background-repeat: no-repeat;
	padding-left: 10vw;
}
.comment_board .input .save {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 18vw;
	height: 10.5vw;
	font-size: 5vw;
	font-weight: 700;
	color: #344861;
	border: 2px solid #344861;
	border-radius: 5.25vw;
}

.comment_board .list_frame {
	flex: 1;
	display: flex;
	width: 100%;
	padding: 2vw;
	overflow: hidden;
}
.comment_board .list_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.comment_board .list_wrapper .comment {
	width: 90%;
	text-align: left;
	background: #EAEEF8;
	border-radius: 2vw 2vw 2vw 0;
	padding: 2vw;
	margin-bottom: 2.5vw;

	color: #333333;
	font-weight: 600;
}
.comment_board .list_wrapper .comment:last-child {
	margin-bottom: 0px !important;
}
.comment_board .list_wrapper .comment .content {
	margin-bottom: 0.8vw;
	font-size: 4vw;
}
.comment_board .list_wrapper .comment .content img {
	width: 5.5vw;
	vertical-align: middle;
	margin: 0 2px 3px 0;
}
.comment_board .list_wrapper .comment textarea {
	font-size: 4.5vw;
	width: 100%;
	height: 10.5vw;
	border: none;
	border-radius: 5.3vw;
	padding: 2.8vw 4.1vw 0 4.1vw;
	margin-right: 1.5vw;
	outline: none;
	overflow: hidden;
}
.comment_board .list_wrapper .mine {
	align-self: flex-end;
	border-radius: 2vw 2vw 0 2vw;
}
.comment_board .list_wrapper .comment .writer {
	text-align: right;
	color: #333333;
	font-size: 3.5vw;
	margin-top: 0.8vw;
	font-weight: 400;
}
.comment_board .list_wrapper .mine .writer {
	float:left;
}
.comment_board .list_wrapper .comment .writer span {
	font-weight: 500;
}
.comment_board .list_wrapper .comment .btn {
	float: right;
	border: 1px solid #344861;
	border-radius: 3vw;
	font-size: 3.2vw;
	font-weight: 600;
	color: #344861;
	padding: 0.5vw 1.5vw;
	margin-left: 1vw;
}

.comment_board .list_wrapper .more {
	align-self: center;
	border-bottom: 1px solid #6b6b6b;
	font-size: 4vw;
}

.comment_board .footer {
	display: flex;
	flex-shrink: 0;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
}

/*###################################################
// statistics_board 
###################################################*/


.statistics_board {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 10px 20px;
}

.statistics_board .sub_title {
	width: 100%;
	font-size: 7vw;
	font-weight: 400;
	text-align: left;
	margin-bottom: 3vw;
	color: #344861;
}

.statistics_board .tournament {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.statistics_board .tournament .item {
	display: flex;
	justify-content: center;
	align-items: end;
	width: 20vw;
	height: 24vw;
	font-size: 3vw;
	color: #666666;
	margin-bottom: 2.5vw;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
}

.statistics_board .list_frame {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2), -1px -1px 2px rgba(202, 212, 232, 0.2), inset 0px 5px 62px rgba(220, 226, 239, 0.2), inset 0px 5px 62px rgba(238, 241, 247, 0.2);
	padding: 12px;
	margin-top: 5.9vw;
}
.statistics_board .list_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow-y: auto;
	border-radius: 10px;
}
.statistics_board table {
	width: 100%;
	font-size: 16px;
	color: #000000;
}

.statistics_board table tr {
	height: 32px;
}

.statistics_board table tr td {
	font-size: 1.1em;
	border-bottom: 1px solid #C4C4D2;
	vertical-align: middle;
}
.statistics_board table tr:last-child td {
	border:none;
}
.statistics_board table tr td:last-child {
	padding-right: 5px;
	font-variant-numeric: tabular-nums;
}

.statistics_board .title {
	font-weight: 400;
	font-size: 1.0em;
	padding-left:5px;
}

.statistics_board .rate {
	font-weight: 700;
	font-size: 1.0em;
}


.statistics_board .score {
	font-weight: 400;
	font-size: 1.0em;
}

.statistics_board .matrix_title {
	text-align:left;
	font-size:1.2em;
	padding:0vw 1.0vw 0vw 1.1vw;
	font-weight:bold;
	color: #C40000;
}

.statistics_board .footer {
	display: flex;
	flex-shrink: 0;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	margin: 10px 0;
}

/*###################################################
// 토너먼트 화면
###################################################*/
.tournament_board {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height:100%;
	padding: 10px 20px;
}

.tournament_board .header {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	position: relative;
	width: 100vw;
	height: 45.6vw;

	background-repeat: no-repeat;
	background-size: contain;
}
.tournament_board .header .title {
	font-size: 4vw;
	font-weight: 500;
	color: #FFFFFF;
	margin-top: 2.5vw;
}
.tournament_board .header .time {
	font-size: 3vw;
	font-weight: 500;
	color: #FFFFFF;
	margin-top: 1.2vw;
}
.tournament_board .header .time img {
	height: 4vw;
	vertical-align: bottom;
	margin: 0 1vw;
}
.tournament_board .header .help {
	position: absolute;
	top: 2vw;
	right: 2vw;
	width: 5vw;
}

.tournament_board .list_frame {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	padding: 12px;
}
.tournament_board .list_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.tournament_board table {
	width: 100%;
	font-size: 16px;
	color: #000000;
}

.tournament_board .ghost-row {
	position: absolute;
	transition: top 0.3s ease;
	z-index: 1000;
	pointer-events: none;
	display:none;
}

.tournament_board table tr {
	height: 40px;
}

.tournament_board table tr td {
	font-size: 1.1em;
	border-bottom: 1px solid #C4C4D2;
	vertical-align: middle;
}
.tournament_board table tr:last-child td {
	border:none;
}
.tournament_board table tr td:last-child {
	padding-right: 5px;
	font-variant-numeric: tabular-nums;
}

.tournament_board .rank {
	font-weight: 700;
	font-size: 1.1em;
}

.tournament_board .medal {
	width: 7vw;
	height: 7vw;
	vertical-align: bottom;
	object-fit: contain;
}

.tournament_board .on {
	background-color: #EAEEF8;
}
.tournament_board .nickname {
	font-weight: 600;
	padding-left: 5px;
}
.tournament_board .score {
	font-weight: 600;
}
.tournament_board .nickname img {
	margin-left: 5px;
	vertical-align: middle;
}

.tournament_board .footer {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	height: 12vw;
	width: 100%;
}
.tournament_board .footer img {
	height: 10vw;
}

/*---------------------------------------
	Help screen 
---------------------------------------*/

#tournament_help_screen {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	background: rgba(0, 0, 0, 0.5);
}
#tournament_help_screen .tournament_help_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90vw;
	height: 100vw;
	background: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(171, 0, 0, 0.2);
	border-radius: 5vw;
}
#tournament_help_screen .tournament_help_wrapper .title {
	font-size: 6vw;
	font-weight: 600;
	color: #344861;
	margin: 5vw;
}

#tournament_help {
	position: relative;
	width: 90vw;
	max-width: 100vw;
	height: 100%;
	overflow: hidden;
}
#tournament_help .slides {
	display: flex;
	width: 270vw;
	height: 100%;
	transition: transform 0.4s ease;
}

#tournament_help .slides .slide {
	flex: 1 0;
	width: 80vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}
#tournament_help .slides .slide .content {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;

}
#tournament_help .slides .slide .content .example {
	display: flex;
	width: 100vw;
	height: 40vw;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#tournament_help .slides .slide .content .message {
	display: flex;
	font-size: 1.1em;
	color: #344861;
	padding: 5vw;
	text-align: center;
}

#tournament_help_screen .page {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
#tournament_help_screen .page div {
	margin: 1vw;
	width: 1vw;
	height: 1vw;
	border-radius: 0.5vw;
	background-color: #EFEFEF;
}
#tournament_help_screen .page .now {
	background-color: #344861;
}
#tournament_help_screen #tournament_help_btn {
	height: 8vw;
	margin: 3vw;
}

/*###################################################
// popup screen 
###################################################*/

.result_screen {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(20px);

	/*background: var(--main-bg-color);*/
	/*background-image: url('/images/bg.png');*/
	/*opacity: 0.5;*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.result_screen .result_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90vw;
	min-height: 35%;
	background: no-repeat #C4CFE5;
	border-radius: 8vw;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 20px 64px rgba(0, 0, 0, 0.25), 0px 5px 5px 4px rgba(202, 212, 232, 0.2), inset 0px 5px 62px rgba(220, 226, 239, 0.2), inset 0px 5px 62px rgba(238, 241, 247, 0.2);

	/*기본 padding */
	padding: 25px 0 35px 0;
}

.result_screen .result_wrapper .title {
	font-weight: 700;
	font-size: 8.5vw;
	padding: 0 20px;
	display: none;
	color:#5C4100;
}
.result_screen .result_wrapper span {
	color: #FF8C00;
}
.result_screen .result_wrapper .message {
	margin-top: 20px;
	padding: 5px 2vw;
	display: none;
	color:#333333;
	font-size: 4.3vw;
	font-weight: 500;
	width:80vw;
}
.result_screen .result_wrapper .message .direction_hint_bg {
	display: inline-flex;
	background-image:url(/images/direction_hint_bg.png);
	width:55vw;
	height:49.5vw;
	padding:1vw;
	background-size: cover;
	justify-content: center;
	align-items: center;
}
.result_screen .result_wrapper .message .direction_hint_bg .direction_hint {
	width:100%;
}

.result_screen .result_wrapper .close_button {
	position: relative;
	border:0px solid red;
	float:right;
	top:-5px;
	height:25px;
	width:100%;
	text-align:right;
	padding-right:30px;
	display:none;
}

.result_screen .result_wrapper .result_icon_success_div, 
.result_screen .result_wrapper .result_icon_fail_div,
.result_screen .result_wrapper .result_icon_medal_div {
	position: relative;
	border:0px solid red;
	width:100%;
	height:10px;
	display:none;
}

.result_screen .result_wrapper .result_success_icon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top:calc(1vw*-31);
}

.result_screen .result_wrapper .result_fail_icon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top:calc(1vw*-27);
}

.result_screen .result_wrapper .result_medal_icon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top:calc(1vw*-25);
}

.result_screen .result_wrapper .game_step {
	font-weight: 700;
	margin-top: 25px;
	border-radius: 10px;
	background: rgba(228, 174, 0, 1);
	color: rgba(92, 65, 0, 1);
	min-width:35vw;
	height:38px;
	border-radius: 19px;
	font-size:20px;
	padding: 0px 10px 0px 10px;
	line-height:38px;
}

.result_screen .button {
	font-weight: 700;
	margin-top: 25px;
	padding: 0px 10px 0px 10px;
	border-radius: 10px;
	color:rgba(18, 69, 186, 1);
	min-width:30vw;
	height:48px;
	border-radius: 24px;
	font-size:20px;
	line-height:48px;
	
}


.result_screen .button_size_80 {
	width:80vw;
}

.result_screen .button_size_50 {
	width:50vw;
}

.result_screen .button_size_40 {
	width:40vw;
}

.result_screen .button_size_20 {
	width:20vw;
}

.result_screen .button_size_15 {
	width:10vw;
}

.result_screen .button_size_10 {
	max-width:10vw;
	width:5vw;
}

.result_screen .button_blue {
	background: #3C22C4;
	box-shadow: 0 0 0 2px rgba(255, 201, 64, 0.25) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen .button_white {
	background: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen .button_brown {
	background: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(126, 89, 0, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen .button_red {
	background: #FF6163;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen .button_font_white {
	color:#FFFFFF;
}

.result_screen .button_font_blue {
	color:#344861;
}

.result_screen .result_wrapper .table {
	margin-top: 20px;
	padding: 10px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	background: blue;
	color: white;
}

.result_screen .result_wrapper table {
	width: 100%;
}
.result_screen .result_wrapper table td {
	border-spacing: 0;
	vertical-align: top;
	padding-top: 2vw;
}

.result_screen .result_wrapper .nickname_input {
	width: 232px;
	height: 56px;
	border: none;
	outline: none;
	border-radius: 28px;
	text-align: center;
	margin: 24px 0;
	color: #333333;
	font-size: 20px;
	font-weight: 700;
}

.result_screen .result_wrapper .nickname_button {
	float:left;
	width: 112px;
	margin: 0 4px;
}

.result_screen .help_wrapper {
	height:60px;
	background: no-repeat #FFC300;
	width:100%;
}

.result_screen .help_wrapper .title {
	font-weight: 700;
	font-size:20px;
	color:#5C4100;
	line-height:60px;
}

.result_screen .help_wrapper .close_button {
	position:absolute;
	top:10px;
	left:90%
}

#main .capture_comment_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height:14vw;
	font-size: 4.5vw;
	margin: 3vw 0 0 0;
	background-color: #344861;
}
#main .capture_comment_wrapper div {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	height: 10vw;
	border-radius: 7vw;
	padding: 0 3vw 0 9vw;
	margin-right: 2vw;

	background-size: 6vw 6vw;
	background-repeat: no-repeat;
	background-position: left 2vw center;
}

#main .capture_comment_wrapper img {
	width: 10vw;
	height: 10vw;
	border-radius: 3vw;
	background-color: white;
	margin-right: 2vw;
}

/*###################################################
// request nickname
###################################################*/
#request_nickname .welcome_wrapper {
	display: flex;
	flex-direction: row;
}
#request_nickname .welcome_wrapper .grandfather {
	width: 45vw;
	/*border: 1px solid white;*/
}
#request_nickname .welcome_wrapper .speech_bubble_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width:50vw;
	/*border: 1px solid yellow;*/
}
#request_nickname .welcome_wrapper .speech_bubble_wrapper .speech_bubble {
	position:absolute;
	margin: 2vw 0 0 15vw;
	width:65vw;
	height:26vw;
	background-image: url("/images/speech_bubble.png");
	background-size: contain;
	background-repeat: no-repeat;
	overflow:hidden;

	padding: 4vw 12vw 4vw 4vw;
	/*border: 1px solid red;*/
}
#request_nickname .welcome_wrapper .speech_bubble_wrapper .speech_bubble .message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	width: 100%;
	font-size: 4vw;
	line-height: 6vw;
	/*border: 1px solid blue;*/
}
#request_nickname .welcome_wrapper .speech_bubble_wrapper .speech_bubble span {
	color: #1C5AE8;
	font-weight: 600;
}

#request_nickname .welcome_wrapper .speech_bubble_wrapper .btn_wrapper {
	position:absolute;
	display: flex;
	margin: 30vw  0 0 13vw;
}

#request_nickname .welcome_wrapper .button_later {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: fit-content;

	height:48px;
	padding: 0px 15px 0px 15px;
	border-radius: 24px;

	background: #344861;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(171, 0, 0, 0.2);

	font-size:4vw;
	font-weight: 700;
	color:#FFFFFF;
}

#request_nickname .welcome_wrapper .speech_bubble_wrapper .speech_bubble .button_set_nickname {
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: fit-content;

	width: 10vw;
	height:6vw;
	padding: 0px 10px 0px 10px;
	border-radius: 3vw;

	font-size:3.2vw;

	margin: 1vw 0 0.5vw;
	background-color: #FF6163;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(171, 0, 0, 0.2);
	color:#FFFFFF;
}

/*###################################################
// result screen 
###################################################*/

.result_screen2 {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 1);
	/*backdrop-filter: blur(20px);*/

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.result_screen2 .result_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 94vw;
	background: no-repeat #344861;
	border-radius: 8vw;

	/*기본 padding */
	padding: 2vw 8vw;
}
.result_screen2 .capture {
	width: 100vw;
	height: 100vw;
	border-radius: 0;
	padding: 2vw 10vw;
}

.result_screen2 .result_wrapper .logo {
	display: flex;
	width: 50vw;
}

.result_screen2 .result_wrapper .title_wrapper {
	width: 100%;
	display: flex;
	height: 17.567vw;
}
.result_screen2 .result_wrapper .title_wrapper .title {
	flex-grow: 1;
	font-size: 8vw;
	font-weight: 700;
	color: #FFFFFF;
	margin-top: 5vw;
	text-align: left;
	margin:  auto 0 2vw 3vw;
}
.result_screen2 .result_wrapper .title_wrapper .medal {
	width: 13vw;
	height: 17.567vw;
	margin-right: 1vw;
}

.result_screen2 .result_wrapper .score_wrapper {
	width: 100%;
	height: 32.7vw;
	display: flex;
	justify-content: center;
	font-size: 5vw;
	text-align: left;
	background-image: url("/images/sns_center_bg.png");
	background-repeat: no-repeat;
	background-size: contain;
	margin-top: 1.2vw;

	position: relative;
	isolation: isolate;
}
.result_screen2 .result_wrapper .score_wrapper .white_bg {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	opacity: 0.8;
	border-radius: 3vw;
}
.result_screen2 .result_wrapper .score_wrapper table {
	width: 90%;
	margin: 1vw 0;
}
.result_screen2 .result_wrapper .score_wrapper tr {
	height: 8.5vw;
}
.result_screen2 .result_wrapper .score_wrapper th {
	width: 50%;
	font-weight: 400;
	padding-left: 2vw;
}
.result_screen2 .result_wrapper .score_wrapper td {
	width: 50%;
	font-weight: 600;
}

.result_screen2 .result_wrapper .nickname_wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	font-size: 5vw;
	margin-top: 2vw;
}
.result_screen2 .result_wrapper .nickname_wrapper .title {
	display: flex;
	height: 8vw;
	align-items: center;
	padding-left: 2vw;
	color: #FFFFFF;
}
.result_screen2 .result_wrapper .nickname_wrapper .nickname {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10vw;
	background-color: #FFFFFF;
	border-radius: 2vw;
	color: #344861;
	font-weight: 600;
}

.result_screen2 .result_wrapper .hash_tag {
	display: flex;
	width: 100%;
	font-size: 5vw;
	color: #FFFFFF;
	text-align: left;
	margin-top: 2.5vw;
}


.result_screen2 .button_wrapper {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}

.result_screen2 .button {
	font-weight: 700;
	margin-top: 25px;
	padding: 0px 10px 0px 10px;
	border-radius: 10px;
	color:rgba(18, 69, 186, 1);
	min-width:30vw;
	height:48px;
	border-radius: 24px;
	font-size:20px;
	line-height:48px;
	
}

.result_screen2 .button_size_80 {
	width:80vw;
}

.result_screen2 .button_size_50 {
	width:50vw;
}

.result_screen2 .button_size_40 {
	width:40vw;
}

.result_screen2 .button_size_20 {
	width:20vw;
}

.result_screen2 .button_size_15 {
	width:10vw;
}

.result_screen2 .button_size_10 {
	max-width:10vw;
	width:5vw;
}

.result_screen2 .button_blue {
	background: #3C22C4;
	box-shadow: 0 0 0 2px rgba(255, 201, 64, 0.25) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen2 .button_white {
	background: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen2 .button_brown {
	background: #FFFFFF;
	box-shadow: 0 0 0 2px rgba(126, 89, 0, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen2 .button_red {
	background: #FF6163;
	box-shadow: 0 0 0 2px rgba(18, 69, 186, 0.8) inset;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25), 0px 4px 8px 0px rgba(0, 0, 171, 0.2);
}

.result_screen2 .button_font_white {
	color:#FFFFFF;
}

.result_screen2 .button_font_blue {
	color:#344861;
}

/*###################################################
// matrix help screen 
###################################################*/
#matrix_help_screen {
	display: flex;
}
#matrix_help_screen .page {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 20vw;
}
#matrix_help_screen .page div {
	margin: 3vw 1.5vw;
	width: 6vw;
	height: 6vw;
	border-radius: 4vw;
	background-color: white;
}
#matrix_help_screen .page .now {
	background-color: #32ADE6;
}
#matrix_help_screen .page img {
	width: 6vw;
	height: 6vw;
	border-radius: 4vw;
}
#matrix_help_screen .close {
	position: absolute;
	top: 3vw;
	right: 3vw;
}
#matrix_help_screen .close img {
	width: 3vw;
	vertical-align: bottom;
	-webkit-filter: brightness(0) invert(1);
}

#matrix_help {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	height: 100%;
	overflow: hidden;
}
#matrix_help .slides {
	display: flex;
	width: 600vw;
	height: 100%;
	transition: transform 0.4s ease;
}

#matrix_help .slides .slide {
	flex: 1 0;
	width: 90vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
	margin: 0 5vw;
}
#matrix_help .slides .slide .content_help {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	padding-top: 10vw;

}
#matrix_help .slides .slide .content_help .example {
	display: flex;
	flex-grow: 1;
	width: 100%;
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
}
#matrix_help .slides .slide .content_help .message {
	display: flex;
	width: 100%;
	font-size: 1.1em;
	color: #FFFFFF;
	margin-top: 3vw;
	text-align: left;
}
#matrix_help .slides .slide .content_help .message ul {
}
#matrix_help .slides .slide .content_help .message ul li {
	margin-top: 1vw;
}

/*###################################################
// tutorial screen 
###################################################*/
#tutorial_help_screen {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	flex-direction: column;
	align-items: center;

	background: rgba(255, 255, 255, 1);
}
#tutorial_help_screen .logo img {
	height: 50px;
	margin-top: 10px;
}
#tutorial_help_screen .close {
	position: absolute;
	top: 10px;
	right: 10px;
}
#tutorial_help_screen .close img {
	width: 5vw;
	height: 5vw;
	object-fit: contain;
}
#tutorial_help_screen .tutorial_help_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

#tutorial_help {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	overflow: hidden;
}
#tutorial_help .slides {
	display: flex;
	width: 400vw;
	height: 100%;
	transition: transform 0.4s ease;
}

#tutorial_help .slides .slide {
	flex: 1 0;
	width: 100vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
}
#tutorial_help .slides .slide .example {
	width: 100vw;
	height: 106.666vw;
}

#tutorial_help_screen .page {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
#tutorial_help_screen .page div {
	margin: 1vw;
	width: 1vw;
	height: 1vw;
	border-radius: 0.5vw;
	background-color: #EFEFEF;
}
#tutorial_help_screen .page .now {
	background-color: #344861;
}
#tutorial_help_screen #tutorial_help_btn {
	height: 8vw;
	margin: 3vw;
}

/*###################################################
// Matrix Tip
###################################################*/
#matrix_tip_screen {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	flex-direction: column;
	align-items: center;

	background: rgba(255, 255, 255, 1);
}
#matrix_tip_screen .close {
	position: absolute;
	top: 10px;
	right: 10px;
}
#matrix_tip_screen .close img {
	width: 5vw;
	height: 5vw;
	object-fit: contain;
}
#matrix_tip_screen .matrix_tip_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

#matrix_tip {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	overflow: hidden;
}
#matrix_tip .slides {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
}

#matrix_tip .slides .slide {
	flex: 1 0;
	width: 100vw;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
}
#matrix_tip .slides .slide .example {
	width: 98vw;
	max-height: 90vh;
	object-fit: contain;
}

#matrix_tip_screen .page {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	object-fit: contain;
}
#matrix_tip_screen .page div {
	margin: 3vw 1.5vw;
	width: 6vw;
	height: 6vw;
	border-radius: 4vw;
	background-color: #EFEFEF;
}
#matrix_tip_screen .page .now {
	background-color: #344861;
}
#matrix_tip_screen #matrix_tip_btn {
	height: 8vw;
	margin: 3vw;
}
