@charset "utf-8";

/* LEVELS 2 layout 케미/ http://chemi.kr/ */

/* .x */
.x { background: #fff; }

/* main menu custom */
#levels-group-1 .tls-item:nth-child(3) { padding-bottom: 10px; }
#levels-group-2 .tls-item:nth-child(2) { padding-bottom: 10px; }
#levels-group-4 .tls-item:nth-child(3) { padding-bottom: 10px; }
#levels-group-6 .tls-item:nth-child(2) { padding-bottom: 10px; }
#levels-group-7 .tls-item:nth-child(4) { padding-bottom: 10px; }

/* layout grid */
html { overflow: visible !important; margin-right: 0 !important; }
body { background-color: var(--background-base); }

.appbase { }
.time-scrollable {
	position: relative; display: block; margin-left: 318px;
    background-color: var(--background-scroll);
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
}
.tbsld .time-scrollable { margin-left: 0; }

.time-contents { position: relative; padding: 44px 0 0 0; min-height: calc(100vh - 44px); }

/* time-header */
.time-header {
    position: fixed; display: flex; top: 0; left: 0; right: 0; height: 44px; z-index: 2004;
	background-color: var(--background-header); border: none;
	box-shadow: 0 1px 0 rgba(0,0,0,.05),0 1px 3px rgba(0, 0, 0, 0.07);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
}
.lv-burg {
    position: relative; display: block; outline: none !important;
    width: 36px; height: 36px; margin: 4px 0 0 11px;
}

.lv-burg-bg { position: absolute; width: 30px; height: 30px; top: 3px; left: 3px; border-radius: 6px; }
.lv-burg:hover .lv-burg-bg { background-color: var(--background-icon-hover); }
.lv-burg:active .lv-burg-bg,
.tblay .lv-burg .lv-burg-bg { background-color: var(--background-icon-active) !important; }

.lv-burg-bread {
    position: absolute; display: block; background: transparent;
    width: 36px; height: 36px; top: 0; left: 0;
    transition: transform .1806s cubic-bezier(.04,.04,.12,.96);
    transform: none;
}
.lv-burg-patty { 
	position: absolute; display: block; z-index: 1;
    width: 15px; height: 1px; left: 11px;
    background-color: var(--background-burg-patty);
	transition: transform .1596s cubic-bezier(.52,.16,.52,.84) .1008s;    
}
.lv-burg-top .lv-burg-patty { top: 18px; transform: translateY(-5px); }
.lv-burg-bot .lv-burg-patty { bottom: 18px; transform: translateY(5px); }

.tblay .lv-burg-top { transition: transform .3192s cubic-bezier(.04,.04,.12,.96) .1008s; transform: rotate(-45deg); }
.tblay .lv-burg-bot { transition: transform .3192s cubic-bezier(.04,.04,.12,.96) .1008s; transform: rotate(45deg); }
.tblay .lv-burg-top .lv-burg-patty {transition: transform .1806s cubic-bezier(.04,.04,.12,.96); transform: none; }
.tblay .lv-burg-bot .lv-burg-patty { transition: transform .1806s cubic-bezier(.04,.04,.12,.96); transform: none; }

/* logo svg */
.th-logo { display: inline-block; margin: 0 2px 0 8px; }
.th-logo a { display: flex; align-items: center; justify-content: center; height: 100%; }
.th-logo svg { position: relative; display: inline-block; width: 23px; height: 23px; }
.th-logo img { position: relative; display: inline-block; width: 23px; height: 23px; border-radius: 6px; }

.dt-logo, .lt-logo { display: none !important; }
.dark-theme .dt-logo { display: flex !important; color: var(--text-color-dt-logo); }
.light-theme .lt-logo { display: flex !important; color: var(--text-color-lt-logo); }

.th-list { 
	position: relative; display: flex; flex-wrap: nowrap; height: 30px; flex-shrink: 0;
	margin: 7px 14px 0 auto;
}

.th-list-item { position: relative; display: block; margin-left: 10px; }
.th-list-item:first-child { margin-left: 0; }

.th-list-link {
	display: flex; align-items: center; justify-content: center;
	width: 30px; height: 30px; border-radius: 6px; color: var(--text-color-th-list);
}
.th-list-link.th-icon-ring { color: var(--text-color-th-noti); }
.th-nc-link {
	-webkit-transition: all .2s ease-out;
	transition: all .2s ease-out;
	-webkit-transition: all .3s cubic-bezier(.04,.04,.12,.96);
	transition: all .3s cubic-bezier(.04,.04,.12,.96);
	-webkit-transform: scale(0.1);
	transform: scale(0.1);
	visibility: hidden;
	opacity: 0;
}
.active .th-nc-link {
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: visible;
	opacity: 1;
}
.th-list-link svg { position: relative; display: inline-block; width: 24px; height: 20px; }
.th-list-link.th-icon-ring svg { width: 19px; height: 19px; }
.th-list-link:hover { background-color: var(--background-icon-hover); }
.th-list-link:active,
.th-list-link.active { background-color: var(--background-icon-active) !important; }

.th-dropdown {
	position: fixed; display: none; top: 41px; right: 14px; width: 350px; height: 500px; min-height: 200px; max-height: calc(75vh - 58px); z-index: 2005;
	background-color: var(--background-th-dropdown); border-radius: 6px;
	-webkit-backdrop-filter: saturate(50%) blur(20px);
	backdrop-filter: saturate(50%) blur(20px);
	-webkit-box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 8px 16px 0 rgba(0,0,0,.24);
	box-shadow: 0 0 0 1px rgba(32,34,37,.6), 0 8px 16px 0 rgba(0,0,0,.24);
}
.th-dropdown.active { display: block; }
.light-theme .th-dropdown {
	-webkit-box-shadow: 0 0 0 1px rgba(185,187,190,.2), 0 2px 10px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 0 1px rgba(185,187,190,.2), 0 2px 10px 0 rgba(0,0,0,.1);
}
.th-scrollable {
	width: 100% !important; height: 100% !important; overflow: hidden;
	-webkit-overflow-scrolling: touch;
}
.trkg { position: relative; display: block; padding: 0; }
.trkg-header { padding: 18px 18px 18px 18px; }
.trkg-header-flex { position: relative; display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; }
.trkg-header-title { font-size: 15px; font-weight: 500; letter-spacing: -0.3px; line-height: 22px; color: var(--text-color-i2); }
.trkg-header-more { margin: 0 0 0 auto; font-size: 13px; font-weight: 400; letter-spacing: -0.3px; line-height: 22px; color: var(--text-color-i3-w1); }
.trkg-header-more:hover,
.trkg-header-more:active { text-decoration: underline; }
.trkg-message { padding: 0 18px 18px 18px; font-size: 14px; color: var(--text-color-i2); }

.evo-list { position: relative; display: block; padding: 0; }
.evo-item { position: relative; display: block; padding: 0 18px 10px 18px; }
.evo-shot { position: relative; display: flex; flex-direction: row; padding: 0 0 10px 0; border-bottom: 1px solid var(--border-color-block); }
.evo-item:last-child .evo-shot { border-bottom: none; }
.evo-thumb { position: relative; width: 47px; flex-shrink: 0; margin: 0 0 0 9px; }
.evo-thumb-block { padding: 0; }
.evo-img-container {
	position: relative; width: 100%; padding-top: 100%; border-radius: 4px;
	background-color: var(--background-img-container);
}
.evo-img-neue { position: absolute; width: 100%; height: 100%; left: 0; top: 0; }
.evo-img-overlay {
	position: absolute; width: 100%; height: 100%; left: 0; top: 0;
	background-size: cover; border-radius: 4px;
	background-position: center center;
	box-shadow: 0 4px 14px rgba(0,0,0,.16);
}
.evo-img-overlay:after {
	content: ''; width: 100%; height: 100%; min-width: 100%; min-height: 100%;
	position: absolute; top: 0; display: block;
	pointer-events: none; border-radius: 4px;
	box-shadow: inset 0 0 0 1px rgba(128,128,128,0.1);
}
.evo-img {
	position: relative; display: block; opacity: 0;
	width: 100%; border-radius: 6px; vertical-align: middle;
}
.evo-img-link { position: absolute; display: block; width: 100%; height: 100%; left: 0; top: 0; }
.evo-num { display: none; font-size: 16px; font-weight: 400; line-height: 47px; color: var(--text-color-i2); margin: 0 12px 0 0px; }

.evo-info {
	position: relative; display: block; flex-grow: 1; padding: 3px 0 0 0;
}
.evo-title-link {
	position: relative; display: block; user-select: none;
	font-size: 14px; line-height: 19px; color: var(--text-color-i2); font-weight: 300; word-break: break-all;
}
.evo-title-link:hover,
.evo-title-link:active { text-decoration: underline; }
.evo-tcc {
	display: inline-block; background: rgba(114,137,218,.1); font-weight: 500 !important; color: var(--text-color-accent-purple);
	border-radius: 3px; padding: 0 3px; height: 19px; line-height: 19px; font-size: 14px;
}
.evo-author { font-size: 13px; line-height: 19px; color: var(--text-color-i3); padding-top: 1px; }

/* time-bomb */
.time-bomb { 
	position: fixed; top: 44px; left: 0; bottom: 0; z-index: 2003;
	width: 318px; display: block; overflow: hidden;
	background-color: var(--background-time-bomb);
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.tbsld .time-bomb {
	-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.blackout {
    position: fixed; display: none; background-color: var(--background-scrim);
    top: 44px; left: 0; right: 0; bottom: 0; height: 100%; z-index: 2001;
    pointer-events: none;
}
.tblay .blackout { display: block; pointer-events: all; }

.tb-roulette { 
	position: absolute; top: 0; left: 0; bottom: 0; width: 58px; 
	background-color: var(--background-tb-roulette); padding: 0;
}
.tb-levels-rl {
	position: relative; padding: 12px 0 30px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tlr-item {
    position: relative; display: flex; width: 58px; 
	list-style: none; justify-content: center; margin: 0 0 8px 0;
}
.tlr-grid { position: relative; display: block; width: 35px; height: 35px; }
.tlr-sapa {
    position: absolute; display: flex; left: 0; top: 0; align-items: center;
    width: 4px; height: 35px; 
    transition: all .1s ease;	
}
.tlr-sapa .tlr-aespa { 
	position: relative; display: none; width: 3px; height: 21px;
	border-radius: 0 4px 4px 0; background-color: var(--background-aespa);
}
.tlr-item.active .tlr-aespa { display: block; }

.tlr-thumb { position: relative; padding: 0; }
.tlth-img-container { 
	position: relative; width: 100%; padding-top: 100%;
    background-color: var(--background-img-container); border-radius: 50%;
    transition: all .2s ease-out;
}
.tlth-img-container.has-nb { background-color: var(--background-img-container-nb) !important; }
.tlth-img-neue { position: absolute; width: 100%; height: 100%; left: 0; top: 0; }
.tlth-img-overlay {
	position: absolute; width: 100%; height: 100%; left: 0; top: 0;
	background-size: cover; border-radius: 50%;
	background-position: center center;
	transition: all .2s ease-out;
}
.tlr-grid:hover .tlth-img-container { color: var(--text-color-iz); background-color: var(--background-accent); border-radius: 11px; }
.tlr-grid:hover .tlth-img-overlay { border-radius: 11px; background-size: 180%;  }

.tlth-img {
    position: relative; display: block; opacity: 0;
    width: 100%; border-radius: 50%; vertical-align: middle;
} 
.tlth-img-link { position: absolute; display: block; width: 100%; height: 100%; left: 0; top: 0; }

/* tb-circus */
.tb-circus { position: absolute; top: 0; left: 58px; right: 0; bottom: 53px; padding: 0; }
.tb-scrollable  {
    width: 100% !important; height: 100% !important; overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

/* tb-genre */
.tb-genre { }
.tb-genre-block {
	padding: 18px 0 8px 0; margin: 0 18px;
    border-bottom: 1px solid var(--border-color-levels);
}
.tb-genre-flex { position: relative; display: flex; flex-direction: row; align-items: center; }
.tbge-bnor { position: relative; width: 26px; flex-shrink: 0; margin: 1px 8px 0 0; }
.tbge-bnor-img { display: block; width: 26px; height: 26px; border-radius: 50%; }
.tbge-title { position: relative; display: block; }
.tbge-title-link { 
	position: relative; display: flex; align-items: center;
    color: var(--text-color-i1); font-weight: 500;  
}
.tbge-title-txt { font-size: 15px; line-height: 19px; max-width: 190px; }

/* tb-profile */
.tb-profile { position: absolute; right: 0; bottom: 0; width: 260px; background-color: var(--background-tb-profile); }
.tb-profile-block { padding: 12px 18px; margin: 0; }
.tb-profile-flex { position: relative; display: flex; flex-direction: row; align-items: center; }
.tbp-avatar { position: relative; width: 28px; flex-shrink: 0; margin: 1px 8px 0 0; }
.tbp-avatar-img { display: block; width: 28px; height: 28px; border-radius: 50%; }
.tbp-auth-item { position: relative; display: block; }
.tbp-auth-login { padding-left: 2px; margin-right: 4px; }
.tbp-auth-link { 
	position: relative; display: flex; align-items: center;
    color: var(--text-color-i1); font-weight: 500;  
}
.tbp-auth-login .tbp-auth-link:hover,
.tbp-auth-login .tbp-auth-link:active { text-decoration: underline; }
.tbp-auth-txt { font-size: 15px; line-height: 23px; white-space: nowrap; }
.tbp-auth-item svg {
	position: relative; display: inline-block; pointer-events: none; 
    width: 11px; height: 11px; margin-left: 3px;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.tbp-auth-link[aria-expanded=true] svg {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.tbp-auth-item .dropdown-menu { left: -9px; }

/* levels / main */
.tb-levels { position: relative; display: none; }
.tb-levels.active { display: block; }

.tb-levels-ss {
	position: relative; padding: 10px 0 0 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tls-item { position: relative; display: block; list-style: none; }
.tls-link { 
	position: relative; display: flex; height: 33px; padding: 1px 0 2px 8px; margin: 0 12px 1px 12px;
	align-items: center; overflow: hidden;  border-radius: 4px;
 	color: var(--text-color-iz); font-size: 26px; font-weight: 500; letter-spacing: -0.6px; line-height: 33px;
	-webkit-transition: all .2s ease; 
	transition: all .2s ease; 
}
.tls-link:hover { background-color: var(--background-tls-link-hover); }

.tls-label-wrap { padding: 0 20px; }
.tls-label { display: flex; flex-direction: row; flex-wrap: nowrap; padding: 2px 0; align-items: center; color: var(--text-color-i4); }
.tls-label svg { 
    position: relative; display: inline-block; pointer-events: none; 
    width: 9px; height: 9px; margin-right: 3px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	-webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.open .tls-label svg {
	-webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.tls-label-txt { font-size: 12px; font-weight: 300; line-height: 18px; color: var(--text-color-i4); }

.tlw-list { position: relative; display: none; padding: 0 0 10px 0; }
.open .tlw-list { display: block; }
.tlw-item { position: relative; display: block; list-style: none; padding: 1px 0; }
.tlw-link {
	position: relative; display: flex; align-items: center; overflow: hidden; color: var(--text-color-i3);
	height: 27px; padding: 0 8px 0 20px; margin: 0 12px; border-radius: 4px;
}
.tlw-link:hover,
.tlw-link:active,
.tlw-link.active { text-decoration: none; background-color: var(--background-tlw-link-active); }
.tlw-link.active .tlw-txt { text-decoration: underline; text-decoration-color: var(--text-color-accent-red); }
.tlw-txt {
	font-size: 16px; line-height: 21px; font-weight: 400;
    white-space: nowrap;
}
.tlw-link:hover,
.tlw-link:active,
.tlw-link.active { color: var(--text-color-i1); }

.tlw-svg {
	position: relative; display: block;
	width: 16px; height: 16px; margin-right: 4px;
}
.tlw-img-container { position: relative; display: block; margin-right: 4px; }
.tlw-img { display: block; width: 16px; height: 16px; border-radius: 50%; }

/* levels / footer */
.tb-levels-ft {
	position: relative; display: flex; flex-wrap: wrap; padding: 10px 0 40px 0; margin: 8px 18px 0 18px;
	border-top: 1px solid var(--border-color-levels);
}
.tlf-item { position: relative; display: block; list-style: none; }
.tlf-link { 
	position: relative; display: flex; height: 20px; padding: 0 2px; margin: 0 8px 2px 0;
	align-items: center; border-radius: 4px; white-space: nowrap;
 	color: var(--text-color-i3); font-size: 13px; font-weight: 300; line-height: 20px;
	-webkit-transition: all .2s ease; 
	transition: all .2s ease; 
}
.tlf-link:hover,
.tlf-link:active { background-color: var(--background-tlf-link-active); }

.tb-switch { position: relative; display: block; padding: 12px 18px 0 18px; }
.tb-switch-flex { display: flex; align-items: center; }
.tb-switch-item { position: relative; display: block; }
.tb-switch-link { 
	position: relative; display: flex; align-items: center; height: 20px; padding: 0 2px; border-radius: 4px;
	-webkit-transition: all .2s ease; 
	transition: all .2s ease; 
}
.tb-switch-link:hover,
.tb-switch-link:active { background-color: var(--background-tlf-link-active); }
.tb-switch-link span { font-size: 13px; font-weight: 300; line-height: 20px; color: var(--text-color-i3); white-space: nowrap; }
.tb-switch-link svg { position: relative; display: block; width: 12px; height: 12px; margin-right: 3px; fill: var(--svg-color-label); }

.an_on,
.dark-theme .an_off { display: none !important; }
.dark-theme .an_on { display: block !important; }

/* dropdown */
.dropdown-menu, #popup_menu_area {
	border-radius: 5px; min-width: 70px; padding: 0; overflow: hidden;
	background-color: var(--background-dropdown); border: none; outline: none;
	box-shadow: 0 8px 16px rgba(0,0,0,0.24);
	-webkit-backdrop-filter: saturate(121%) blur(12px);
    backdrop-filter: saturate(121%) blur(12px);
}
.dropdown-menu > li > a, #popup_menu_area a { 
	font-size: 13px; color: var(--text-color-i3); font-weight: 300;
	height: 30px; line-height: 30px; padding: 0 20px;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
#popup_menu_area a:hover,
#popup_menu_area a:focus { color: #ffffff; background-color: var(--background-menu-hover); }

/* mfp custom */
.mfp-bg { display: none; }
.mfp-container { padding: 0; }
.mfp-preloader { display: none !important; }
.mfp-wrap { right: 0; bottom: 0; width: auto; }
.mfp-content { margin-top: 44px; vertical-align: top; }

/* os-theme */
.os-viewport { overscroll-behavior: contain; }
.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical { width: 12px; }

.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar { padding: 2px 4px; }

.os-theme-dark > .os-scrollbar.active { padding: 2px 0; }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
	background: rgba(128,128,128,0.3);
}
.os-theme-dark > .os-scrollbar:hover > .os-scrollbar-track > .os-scrollbar-handle {
	background: rgba(128,128,128,0.7);
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle.active {
	background: rgba(128,128,128,0.7);
}

/* lv-mo */
.lv-mo .time-scrollable { margin-left: 0; }

.lv-mo .lv-burg.burg-lay { display: block !important; }
.lv-mo .lv-burg.burg-sld { display: none !important; }

.lv-mo .th-logo svg { width: 25px; height: 25px; }
.lv-mo .th-logo img { width: 25px; height: 25px; }

.lv-mo .time-bomb {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.lv-mo.tblay .time-bomb {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
/* lv-pc */
body.lv-pc { overflow-y: scroll; }
.lv-pc .time-contents { padding: 64px 20px 20px 20px; }
.lv-pc.levelsb .time-contents { padding: 44px 0 0 0; }

.lv-pc .th-list { margin: 7px 16px 0 auto; }
.lv-pc .th-list-item { margin-left: 8px; }
.lv-pc .th-dropdown { right: 16px; max-width: 350px; }

.lv-pc .mfp-wrap { overflow: hidden !important; }
.lv-pc .mfp-content { position: absolute; left: 0; top: 44px; bottom: 0; right: 0; margin-top: 0; }

@media (min-width: 320px) and (max-width: 990px) {
	.time-scrollable { margin-left: 0; }
	.time-bomb {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	.tblay .time-bomb {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	.th-dropdown {
		width: calc(100vw - 28px);
		max-height: 65vh; max-width: 412px;
	}
}
@media (max-width: 990px) {
	.hidden-half { display: none !important;}
}
@media (min-width: 991px) {
	.hidden-wide { display: none !important;}
}
