@charset "utf-8";
@font-face {
    font-family: 'NEXON Lv1 Gothic OTF';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* rotate */
@keyframes rotate{
	to{ transform: rotate(360deg); }
  }

/* fade-in */
@keyframes fadeout {
	from {
		opacity:1;
	}
	to {
		opacity:0;
	}
}
@keyframes fadein {
	from {
		opacity:0.8;
	}
	to {
		opacity:0.8;
	}
}
@-moz-keyframes fadein { /* Firefox */
	from {
		opacity:0.8;
	}
	to {
		opacity:0.8;
	}
}
@-webkit-keyframes fadein { /* Safari and Chrome */
	from {
		opacity:0.8;
	}
	to {
		opacity:0.8;
	}
}
@-o-keyframes fadein { /* Opera */
	from {
		opacity:0.8;
	}
	to {
		opacity:0.8;
	}
}
/* fade-in END */
/* 로딩화면 loading */
#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	opacity: 0;
	background: rgba(255, 255, 255, 0.7);
	z-index: 1500;
	text-align: center;
	animation: fadein 10s ease-in;
	-webkit-animation: fadein 10s ease-in;
	pointer-events: none;
}
html.dark #loading {
	background: rgba(0, 0, 0, 1);
}
#loading .loading-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	z-index: 2000;
}
#loading .loading-center .loading-rotate {
	display: inline-block;
	width: 32px;
	height: 32px;
	border: 2px solid #000;
	background: transparent;
	border-bottom-color: transparent;
	border-radius: 100%;
	float: none;
	animation: rotate 0.7s linear infinite;
}
html.dark #loading .loading-center .loading-rotate {
	border: 2px solid #fff;
	border-bottom-color: transparent;
}
/* 로딩화면 END */




html {
	font-size: 14px;
	width: 100%;
	height: 100%;
	/*scroll-behavior: smooth;*/
	background: #f2f2f2;
}
html.dark {
	background: #222;
}
body {
	position: relative; /* For scrollyspy */
	margin: 0 auto;
	width: 100%;
	min-height: 100%;
	color: #000;
	font-family: 'NEXON Lv1 Gothic OTF', 'Noto Sans KR', 'Single Day', 'Jua', sans-serif;
	cursor: default;
	font-size: 18px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/*background: #f2f2f2;*/
}
html.dark body {
	background: rgba(34, 34, 34, 0.3);
	color: #eee;
}
#wrapper {
    min-height: 100vh;
}
#flexcolumn {
	display: flex;
	flex-direction: column;
	padding-left: 60px;
}
.box {
    width: 90%;
    max-width: 750px;
    height: 560px;
    margin: 60px 20px 40px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
/*
.box::before {
	content: '';
    background: url(./img/bishopillust.webp) no-repeat;
    background-size: contain;
    width: 285px;
    height: 265px;
    opacity: 1;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
*/
.boxtitle {
	font-weight: 900;
    font-size: 26px;
	color: #fff;
	text-shadow: 0 0 10px #237bff;
	font-family: 'Jua';
}
.boxdesc {
	margin-top: 18px;
    font-size: 16px;
	color: #fff;
	text-shadow: 0 0 5px #001b6d;
}
.boxdesc::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f0ad';
	font-weight: 400;
	margin-right: 4px;
}
.sheetlink {
	font-size: 15px;
	margin-top: 9px;
}
.sheetlink a {
	display: flex;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	text-shadow: 0 0 6px #03ff00;
}


/* 반복 스타일들 */
.mw-900 {max-width: 900px;}
.flex {display: flex;}
.fd-c {flex-direction: column;}
.fd-r {flex-direction: row;}
.ai-c {align-items: center;}
.jc-c {justify-content: center;}
.margin-0a {margin: 0 auto;}
.gap-5 {gap: 5px;}
.gap-10 {gap: 10px;}
.gap-20 {gap: 20px;}
.w100 {width: 100%;}
.w50 {width: 50%;}
.padding-2 {padding: 2px;}
.padding-5 {padding: 5px;}
.padding-10 {padding: 10px;} 
.pl-10 {padding-left: 10px;}
.pl-15 {padding-left: 15px;}
.pl-55 {width:100%;justify-content:flex-end;position:relative;right:10px;font-size:16px;}
.pl-56 {font-size:16px;}
.pr-10 {padding-right: 10px;}
.pr-15 {padding-right: 15px;}
.relative {position: relative;}
.mr5bb1 {margin-right:5px;border-bottom:1px solid #ddd;}
.fw700 {font-weight: 700;}
.fs16 {font-size: 16px;}
/* 반복 스타일 끝 */


#result-wrap {
	margin-left: 7px;
	margin-right: 7px;
}
#main {
	width: calc(100% - 4px);
	max-width: 896px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
}
#main div {
    padding: 0 10px;
}
#topbar {
	padding: 18px 15px 18px 11px;
	/*background: #3e3e3e;*/
	display: flex;
    flex-direction: row;
	position: relative;
	/*box-shadow: 0 0 2px #2e2e2e;*/
	min-height: 30px;
	margin-left: -60px;
}
.title {
	font-size: 100%;
}
.title a {
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	text-shadow: 0 0 5px #878787;
}
#menubtn {
	color: #fff;
	font-weight: 700;
	text-shadow: 0 0 5px #878787;
}
#menubtn::before {
	content: '\f0c9';
	font-family: 'Font Awesome 5 Pro';
	cursor: pointer;
	position: absolute;
	font-size: 28px;
	right: 26px;
	top: 12px;
	z-index: 8;
}
#backgroundMask {
	display: none;
	background: rgb(44 44 44 / 21%);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#backgroundMask.on {
	position: fixed;
	display: block;
	overflow-y: hidden;
	z-index: 9;
}
#leftmenu {
	position: fixed;
    width: 60px;
    top: 0;
    left: 0;
    height: 100%;
    /*background: #2e2e2e;*/
	z-index: 10;
	display: flex;
    flex-direction: column;
	padding-top: 0px;
	/*box-shadow: 0 0 2px #2e2e2e;*/
}
#rightmenu {
	position: fixed;
    width: 260px;
    top: 0;
    height: 100%;
    background: #fffaed;
	z-index: 10;
	display: flex;
    flex-direction: column;
	padding-top: 0px;
	box-shadow: 0 0 4px #ffd88f;
	right: -300px;
	overflow-y: auto;
}
html.dark #rightmenu {
	background: #333333;
	box-shadow: 0 0 4px #363636;
}
#rightmenu.on {
	right: 0;
}
#leftmenu div {
	padding: 5px 5px;
	margin: 10px 0;
	display: flex;
    justify-content: center;
}
#leftmenu a {
	text-decoration: none;
	color: #fff;
	width: 100%;
	height: 100%;
	text-align: center;
	cursor: pointer;
	position: relative;
	text-shadow: 0 0 5px #878787;
}
#rightmenu a {
	text-decoration: none;
	color: #000;
	height: 38px;
	text-align: center;
	margin: 5px 5px;
	background: #fffdf8;
	border: 2px solid #ffd587;
	border-radius: 2px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
}
html.dark #rightmenu a {
	color: #eee;
	background: #323232;
	border: 2px solid #a1a1a1;
}
.home::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f015';
	font-weight: 400;
	font-size: 22px;
}
.sheet::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f65b';
	font-weight: 400;
	font-size: 22px;
}
.blabla::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f059';
	font-weight: 400;
	font-size: 22px;
}
.moneypls::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f81d';
	font-weight: 400;
	font-size: 22px;
}
.darktoggle::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f186';
	font-weight: 400;
	font-size: 22px;
}
.updatelist::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f8fa';
	font-weight: 400;
	font-size: 22px;
}
.solerda::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f762';
	font-weight: 400;
	font-size: 22px;
}
.favomanage::before {
	font-family: 'Font Awesome 5 Pro';
	content: '\f02e';
	font-weight: 400;
	font-size: 22px;
}
#rightmenu div a::before {
	font-size: 18px;
}
.charasearchbox {
	position: relative;
	width: 300px;
	padding: 0 !important;
	margin: 22px 0 10px 0;
}
.charasearchbox .ssebtn:before {
    position: absolute;
    content: "\f002";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 20px;
    top: 2px;
    right: 4px;
    cursor: pointer;
	color: #fff;
	text-shadow: 0 0 5px #878787;
}
.charasearchbox .ssebtnmain {
	width: 0;
	padding: 0 !important;
}
.charasearchbox .ssebtn.ssebtnmain:before {
	height: 38px;
	width: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.charasearchbox2 .ssebtn:before {
	position: absolute;
	content: "\f002";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	width: 30px;
	height: 30px;
	top: -2px;
	right: 2px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #fff;
}
.search-input {
    width: 300px;
	height: 42px;
    background: rgb(50 162 255 / 40%);
    outline: none;
    padding: 2px 35px 2px 18px;
    margin: 0;
    border: 1px solid #fff;
	border-radius: 20px;
    transition: all 0.2s;
    font-size: 15px;
	box-shadow: 0 0 7px rgb(0 140 255 / 78%);
	color: #fff;
}
.search-input::placeholder {
	color: #fff;
}
.charasearchbox2 {
	position: absolute;
	right: 75px;
}
.charasearchbox2 .search-input {
	margin: 0;
    background: rgb(0 0 0 / 30%);
    width: 240px;
    height: 30px;
	font-size: 14px;
	box-shadow: 0 0 3px #878787;
	position: relative;
	top: -2px;
	border-radius: 2px;
}
#result {
	display: flex;
    width: 100%;
    max-width: 900px;
    margin: 10px auto;
	margin-top: 25px;
}
#result .mur {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	border: 2px solid #ffb0b0;
    border-radius: 4px;
    background: #fff3f3;
	font-weight: 700;
	min-height: 350px;
}
html.dark #result .mur {
	border: 2px solid #9f4f4f;
	background: #764646;
}
#result .suro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	border: 2px solid #92ccff;
    border-radius: 4px;
    background: #f3f7ff;
	font-weight: 700;
	min-height: 350px;
}
html.dark #result .suro {
	border: 2px solid #506c85;
	background: #3e537c;
}
#result .suro-final {
	font-size: 30px;
	margin-top: 5px;
}
#result .suro-final-slag {
	font-size: 15px;
}
#result .mur-final {
	font-size: 30px;
	margin-top: 5px;
}
#result .mur-final-desc {
	font-size: 15px;
}
#result .murimage img {
	max-width: 100%;
	height: 170px;
	margin: 10px 0;
}
#result .suroimage img {
	max-width: 100%;
	height: 170px;
	margin: 10px 0;
}
/* 비밀 기록 탈환 - 나중에 삭제*/
#secrets {
	margin-top: 0;
	margin-bottom: 10px;
}
.resultbox .innerbox.secretsuro {
	padding-top: 20px;
}
.resultbox .innerbox.secretsuro::before {
	content: '';
	display: none;
}
#secrets .secretsuro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	border: 2px solid #cabbff;
    border-radius: 4px;
    background: #f9f3ff;
	font-weight: 700;
}
html.dark #secrets .secretsuro {
	border: 2px solid #857da1;
	background: #70657a;
}
/* 비밀 기록 탈환 END*/
.resultbox {
	width: 900px;
	max-width: 100%;
	font-size: 17px;
	margin-top: 15px;
}
.resultbox input {
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	background: #f8f8f8;
	font-family: 'NEXON Lv1 Gothic OTF';
	font-size: 16px;
	outline: none;
	text-align: center;
}
html.dark .resultbox input {
	border: 1px solid #999999;
	background: #333333;
	color: #ddd;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#presetinfos {
	margin-top: 50px;
}
.resultbox .innerbox {
	background: #fff;
	border: 2px solid #cfcfcf;
	border-radius: 3px;
	width: calc(100% - 4px);
	padding-top: 50px;
	padding-bottom: 20px;
	position: relative;
}
html.dark .resultbox .innerbox {
	background: #333;
	border: 2px solid #666;
}
.resultbox .innerbox::before {
	content: '메뉴';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 30px;
	position: absolute;
	top: 0;
	background: #e3e3e3;
	font-size: 16px;
	font-weight: 700;
}
html.dark .resultbox .innerbox::before {
	background: #4c4c4c;
}

.lbcheckbox {
	cursor: pointer;
	display: flex;
    justify-content: center;
    align-items: center;
}
.lbcheckbox::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    padding: 0 4px;
    border-radius: 3px;
    background: #e1e1e1;
	color: #cdcdcd;
}
html.dark .lbcheckbox::before {
	background: #505050;
}
.mycheckbox input:checked + .lbcheckbox::before {
	background: #666666;
    color: #f7f7f7;
}
html.dark .mycheckbox input:checked + .lbcheckbox::before {
	background: #5f9971;
}
.resultbox .innerbox.plusspec {
	border-color: #ccc;
}
html.dark .resultbox .innerbox.plusspec {
	border-color: #666;
}
.resultbox .innerbox.charainfo::before {
	content: '캐릭터 정보';
	background: #f1f1f1;
}
#mycharadetails {
	display: none;
}
#mycharadetails.show {
	display: flex;
}
html.dark .resultbox .innerbox.charainfo::before {
	background: #4c4c4c;
}
.resultbox .innerbox.mycharadetail::before {
	content: '상세 정보';
	background: rgb(46 48 58 / 90%);
	color: #fff;
}
html.dark .resultbox .innerbox.mycharadetail::before {
	background: rgb(59 61 74 / 90%);
}
.resultbox .innerbox.plusspec::before {
	content: '추가스펙 (% 제외하고 입력)';
}
.resultbox .innerbox.doping::before {
	content: '도핑 설정';
}
.resultbox .innerbox.suroyoutube::before {
	content: '추천 수로 빌드';
}
.resultbox .innerbox.presetinfo::before {
	content: '현재 프리셋 정보';
	background: #f1f1f1;
}
.resultbox .innerbox.helpbox::before {
	content: '문의/건의사항';
	background: #f1f1f1;
}
.resultbox .innerbox.sponser::before {
	content: 'Sponser';
	background: #f1f1f1;
}
.resultbox .innerbox.faqbox::before {
	content: '자주 하시는 질문';
	background: #f1f1f1;
}
.resultbox .innerbox.updatebox::before {
	content: '업데이트 내역';
	background: #f1f1f1;
}
.resultbox .innerbox.coupangad::before {
	content: '광고';
}
.resultbox .innerbox.favomanagebox::before {
	content: '즐겨찾기 관리';
	background: #f1f1f1;
}

.resultbox .innerbox.myalert::before {
	content: '';
	background: transparent;
	height: 0;
}
.myalert {
	border-width: 0 0 0 5px !important;
    border-color: #ffdc55 !important;
	background: #fff5dc !important;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	box-shadow: 0 0 5px #ffe274;
}
#myalerts {
	display: none;
}
#myalerts.open {
	display: flex;
}
html.dark .myalert {
	border-color: #af9a48 !important;
	background: #625d49 !important;
}
span.alertdesc::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
	margin-right: 5px;
}


#favoritebtn {
	background:#8a8c8b;
	color:#fff;
	padding:0 4px;
	border-radius:3px;
	cursor:pointer;
	width:18px;
	height:24px;
	display:flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	top:38px;
	right:10px;
}
html.favoritetrue #favoritebtn {
	background:#292829;
	color:#ffe813;
}
html.favoritetrue.dark #favoritebtn {
	background:#5a5a5a;
	color:#ebd933;
}
.favoritelist {
	margin-top: 10px;
}
.favbubble {
	color: #fff;
    text-decoration: none;
    background: rgba(24, 36, 66, 0.54);
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 2px;
}
#favoritebtnmain {
	background:rgba(0, 48, 101, 0.82);
	color:#ffe813;
	padding:0 4px;
	border-radius:3px;
	width:18px;
	height:25px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.favnick {
	min-width: 160px;
}
.favodel01, .favodel02, .favodel03 {
	color: #fff;
    text-decoration: none;
    background: rgb(90 70 70 / 74%);
    padding: 2px 6px;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
}
.fav01, .fav02, .fav03 {
	border: 1px solid #aaa;
    padding: 5px 20px;
    border-radius: 2px;
    font-weight: 700;
    background: rgb(0 33 82 / 59%);
    color: #eee;
    box-shadow: 0 0 5px #95b8ff;
}




#helps, #sponser {
	margin-top: 30px;
}
.dopinginput {
	display: none;
}
.resultbox .innerbox.charainfo {
	border: 2px solid #ccc;
	padding-top: 40px;
}
html.dark .resultbox .innerbox.charainfo {
	border: 2px solid #666;
}
.dopingbox {
	border: 2px solid #cdcdcd;
	border-radius: 3px;
	padding: 3px 6px;
	cursor: pointer;
	background: #f9f9f9;
}
html.dark .dopingbox {
	border: 2px solid #777777;
	background: #333333;
}
.dopingbox label {
	cursor: pointer;
}
.recalc {
	border: 2px solid #cfcfcf;
	background: #f5f5f5;
	border-radius: 2px;
	width: 150px;
	height: 30px;
	font-family: 'NEXON Lv1 Gothic OTF';
	font-weight: 700;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
html.dark .recalc {
	border: 2px solid #7c7c7c;
	background: #464646;
	color: #eee;
}
.recalc:hover {
	border: 2px solid #cdcdcd;
	background: #ddd;
	transition: all 0.2s ease;
	}
html.dark .recalc:hover {
	border: 2px solid #8f8f8f;
	background: #747474;
}

.resultbox .innerbox.seedring {
	border-color: #ffcb69;
}
html.dark .resultbox .innerbox.seedring {
	border-color: #766b54;
}
.resultbox .innerbox.seedring::before {
	content: '시드링 설정';
	background: #fff0d3;
}
html.dark .resultbox .innerbox.seedring::before {
	background: #7a6d50;
}

.resultbox .innerbox.unionchamp {
	border-color: #c7f7af;
}
html.dark .resultbox .innerbox.unionchamp {
	border-color: #54765d;
}
.resultbox .innerbox.unionchamp::before {
	content: '챔피언의 가호 (0 ~ 5 입력)';

	background: #e1ffcc;
}
html.dark .resultbox .innerbox.unionchamp::before {
	background: #557a50;
}

.resultbox .innerbox.sixthskill::before {
	content: '6차 스킬 설정';
}
img.seedringimg {
	height: 32px;
	pointer-events: none;
	margin-bottom: 2px;
}
html.dark img.seedringimg {
	filter: sepia(0.2);
}
input.seedringinput {
	width: 32px;
	height: 32px;
	font-size: 15px;
}
.seedringdesc {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}
#seedcalc {
	border: 2px solid #ffe495;
	background: #fff8ea;
	border-radius: 2px;
	width: 150px;
	height: 30px;
	font-family: 'NEXON Lv1 Gothic OTF';
	font-weight: 700;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
html.dark #seedcalc {
	border: 2px solid #93886a;
	background: #6a6048;
	color: #eee;
}
#seedcalc:hover {
	border: 2px solid #ffe083;
	background: #ffe9be;
	transition: all 0.2s ease;
}
html.dark #seedcalc:hover {
	border: 2px solid #a18c4b;
	background: #a79268;
}

#champcalc {
	border: 2px solid #a4ff95;
	background: #f2ffea;
	border-radius: 2px;
	width: 150px;
	height: 30px;
	font-family: 'NEXON Lv1 Gothic OTF';
	font-weight: 700;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
html.dark #champcalc {
	border: 2px solid #6a9371;
	background: #486a4e;
	color: #eee;
}
#champcalc:hover {
	border: 2px solid #83ff89;
	background: #d6ffbe;
	transition: all 0.2s ease;
}
html.dark #champcalc:hover {
	border: 2px solid #4ba159;
	background: #6da768;
}
.ytlink {
	color:rgb(29, 127, 255);
	text-decoration: none;
}
html.dark .ytlink {
	color:rgb(229 197 91);
}
.mainleafbody {
	min-height: 33px;
	position: relative;
	left: 0;
	top: 15px;
}
.mainleaf {
	position: relative;
	top: -15px;
	left: 0;
	background: rgb(255 181 127 / 13%);
	border: 2px solid rgb(255 143 88 / 75%);
	border-radius: 3px;
	padding: 5px 0;
	width: 34px;
	height: 23px;
}
#leftmenu div a i.bubble {
	opacity: 0;
	pointer-events: none;
}
#leftmenu div a:hover i.bubble {
	opacity: 0.9;
}
#leftmenu div a i.bubble::before {
	content: '버블';
	background: #222;
	color: #fff;
	padding: 1px 6px;
	border-radius: 6px;
	position: absolute;
	top: 6px;
	right: -39px;
	width: auto;
	font-size: 14px;
	font-style: normal;
	letter-spacing: -0.5px;
	z-index: 1;
	white-space: nowrap;
	overflow: hidden;
}
html.dark #leftmenu div a i.bubble::before {
	background: #505050;
}
#leftmenu div a i.bubble::after {
	content: '';
	border: 5px solid transparent;
	border-top: 6px solid #222;
	right: -2px;
	top: 12px;
	position: absolute;
	transform: rotate(90deg);
}
html.dark #leftmenu div a i.bubble::after {
	border-top: 6px solid #505050;
}
#leftmenu div a.home i.bubble::before {
	content: '메인';
}
#leftmenu div a.sheet i.bubble::before {
	content: '시트 버전';
	right: -69px;
}
#leftmenu div a.blabla i.bubble::before {
	content: '도움말';
	right: -52px;
}
#leftmenu div a.darktoggle i.bubble::before {
	content: '다크모드';
	right: -65px;
}
#leftmenu div a.moneypls i.bubble::before {
	content: '후원';
}
#leftmenu div a.updatelist i.bubble::before {
	content: '업데이트';
	right: -65px;
}
#leftmenu div a.solerda i.bubble::before {
	content: '솔 에르다';
	right: -69px;
}
#leftmenu div a.favomanage i.bubble::before {
	content: '즐겨찾기';
	right: -65px;
}

#scroll-options a, #scroll-options a:hover {
	transition: background-color 0.2s;
}
.scrollup a { 
	position:fixed; 
	background: rgba(0, 0, 0, 0.39);
	right:20px; 
	bottom:25px; 
	height:40px; 
	width:40px;
	border-radius:50%;
	outline:none;
	text-decoration:none;
	z-index:9;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 2px;
}
.scrollup a:before {
	content: '\f062';
	font-family: "Font Awesome 5 Pro";
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	position: relative;
	top: -1px;
	left: 1.5px;
}
.scrollup a:hover { 
	background: rgba(0, 0, 0, 0.69);
}
.scrolldarktoggle a { 
	position:fixed; 
	background: rgba(0, 0, 0, 0.39);
	right: 65px; 
	bottom:25px;
	height:40px; 
	width:40px;
	border-radius:50%;
	outline:none;
	text-decoration:none;
	z-index:9;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 2px;
}
.scrolldarktoggle a:before {
	content: '\f186';
	font-family: 'Font Awesome 5 Pro';
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	position: relative;
	top: 0;
	left: 1px;
}
.scrolldarktoggle a:hover { 
	background: rgba(0, 0, 0, 0.69);
}
html.dark .scrollup a:hover, html.dark .scrolldarktoggle a:hover {
	background: rgba(77, 170, 255, 0.89) !important;
}




#siteinfo {
	width: 100%;
    margin-top: 0px;
    padding: 30px 0 32px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    font-size: 13px;
    font-weight: 700;
	color: #fff;
	text-shadow: 0 0 5px #000;
}
#siteinfo ul {
	text-decoration: none;
	list-style: none;
	padding: 0;
}
#siteinfo ul li {
	text-decoration: none;
	list-style: none;
	padding: 2px 0;
}
#siteinfo a {
	text-decoration: none;
	color: #fff;
	margin-right: 2px;
}
html.dark #siteinfo a {
	color: #eee;
}

.legendary {background: #7da758;}
.unique {background: #c5ab5f;}
.epic {background: #9970a9;}
.rare {background: #708ea9;}

html.dark .legendary {background: #5c7e3e;}
html.dark .unique {background: #927d3f;}
html.dark .epic {background: #654572;}
html.dark .rare {background: #516b81;}

::selection {
    background: #ddd;
}



@media (min-width: 1px) and (max-width: 799px) {
	#topbar {
		margin-left: -10px;
	}
	.title {
		margin-left: 5px;
	}
	#result {
		width: 100%;
		flex-direction: column;
		gap: 15px;
		margin-top: 15px;
		margin-bottom: 0;
	}
	#result .suro, #result .mur {
		width: calc(100% - 4px);
	}
	#flexcolumn {
		padding-left: 0;
	}
	#leftmenu {
		display: none;
	}
	.box {
		border-left: none;
	}
	.box::before {
		display: none;
	}
	html.dark .box {
		border-left: none;
	}
	#secrets {
		margin-top: 15px;
	}
	.alertdesc {
		font-size: 15px;
	}
	.mainleafbody {
		left: 10px;
	}
}



@media (min-width: 1px) and (max-width: 599px) {
	.m-fd-c {
		flex-direction: column;
	}
	.mfs16 {
		font-size: 16px;
	}
	.charasearchbox2 {
		right: 67px;
	}
	.charasearchbox2 .search-input {
		width: 150px;
	}
	.title-n {
		display: none;
	}
	#menubtn::before {
		right: 20px;
	}
	.title {
		margin-left: 4px;
	}
	.pl-55 {
		font-size: 14px;
	}
	.pl-56 {
		font-size: 14px;
	}
	.delmeifmobile {
		display: none;
	}
}
@media (min-width: 1px) and (max-width: 405px) {
	.title-n2 {
		display: none;
	}
	.title-n3 {
	    font-size: 14px;
	}
}