/*
@font-face {
	font-family: 'NanumSquare Bold';
	src: url('../../font/NanumSquareB.eot');
	src: url('../../font/NanumSquareB.eot') format('embedded-opentype'),
		url('../../font/NanumSquareB.woff2') format('woff2'),
		url('../../font/NanumSquareB.woff') format('woff'),
		url('../../font/NanumSquareB.ttf') format('truetype');
}

@font-face {
	font-family: 'NanumSquare ExtraBold';
	src: url('../font/NanumSquareEB.eot');
	src: url('../font/NanumSquareEB.eot') format('embedded-opentype'),
		url('../font/NanumSquareEB.woff2') format('woff2'),
		url('../font/NanumSquareEB.woff') format('woff'),
		url('../font/NanumSquareEB.ttf') format('truetype');
}

@font-face {
	font-family: 'NanumSquare Light';
	src: url('../font/NanumSquareL.eot');
	src: url('../font/NanumSquareL.eot') format('embedded-opentype'),
		url('../font/NanumSquareL.woff2') format('woff2'),
		url('../font/NanumSquareL.woff') format('woff'),
		url('../font/NanumSquareL.ttf') format('truetype');
}

@font-face {
	font-family: 'NanumSquare Regular';
	src: url('../font/NanumSquareR.eot');
	src: url('../font/NanumSquareR.eot') format('embedded-opentype'),
		url('../font/NanumSquareR.woff2') format('woff2'),
		url('../font/NanumSquareR.woff') format('woff'),
		url('../font/NanumSquareR.ttf') format('truetype');
}
*/
body {
	width: 100%;
	max-width:1080px;
	height: 100%;
	margin: 0 auto;
	line-height: 1.2;
	/*font-family: 'NanumSquare Regular', sans-serif !important;*/
	font-family: 'AppleSDGothicNeo','Apple SD Gothic Neo','Malgun Gothic','맑은 고딕',sans-serif;
	background-color: #fff;
}
html {
	background-color: #dedede;
}
html, body {height: 100%;}
::-webkit-scrollbar {display:none;}

#spinner_overay {
	background: #ffffff;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 5000;
	background-color: rgba(255, 255, 255, .8);
}
.spinner {
	position: fixed;
	top: 45%;
	left: 43%;
	height: 55px;
	width: 55px;
	animation: rotate 0.8s infinite linear;
	border: 5px solid #cf000e;
	border-right-color: transparent;
	border-radius: 50%;
}
.sub-spinner {
	position: absolute;
	top: 0;
	left: 47.5%;
	height: 17px;
	width: 17px;
	animation: rotate 0.8s infinite linear;
	border: 2px solid #cf000e;
	border-right-color: transparent;
	border-radius: 50%;
}
@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

input[type=checkbox] {display: none;}
input[type=checkbox]+label {
	background: url('http://www.saenong.com/assets/user/images/ico_checkbox_unselected.png') no-repeat;
	height: 15px;
	width: 15px;
	background-size: auto 100%;
	margin: 0;
}
input[type=checkbox]:checked+label {
	background: url('http://www.saenong.com/assets/user/images/ico_checkbox_selected.png') no-repeat;
	height: 15px;
	width: 15px;
	background-size: auto 100%;
	margin: 0;
}

.other-checkbox {display: none !important;}
.other-checkbox+label {
	background: url('http://www.saenong.com/assets/user/images/ico_checkbox_unselected_1.png') no-repeat !important;
	height: 15px !important;
	width: 15px !important;
	background-size: auto 100% !important;
	margin: 0 !important;
}
.other-checkbox:checked + label {
	background: url('http://www.saenong.com/assets/user/images/ico_checkbox_selected_1.png') no-repeat !important;
	height: 15px !important;
	width: 15px !important;
	background-size: auto 100% !important;
	margin: 0 !important;
}

input[type=radio] {display: none;}
input[type=radio]+label {
	background: url('http://www.saenong.com/assets/user/images/ico_radiobox_unselected.png') no-repeat;
	height: 15px;
	width: 15px;
	background-size: auto 100%;
	margin: 0;
}
input[type=radio]:checked+label {
	background: url('http://www.saenong.com/assets/user/images/ico_radiobox_selected.png') no-repeat;
	height: 15px;
	width: 15px;
	background-size: auto 100%;
	margin: 0;
}

select {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   background: url('http://www.saenong.com/assets/user/images/ico_bottom_1.png') no-repeat !important;
	background-size: 9px 5px !important;
	background-position: 95% 50% !important;
}

.switch {
	width: 42px;
	height: 21px;
	float: right;
	position: relative;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.slider:before {
	position: absolute;
	content: "";
	height: 19px;
	width: 19px;
	left: 2px;
	bottom: 1px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked+.slider {background-color: #cf000e;}
input:focus+.slider {box-shadow: 0 0 1px #cf000e;}
input:checked+.slider:before {-webkit-transform: translateX(20px); -ms-transform: translateX(20px); transform: translateX(20px);}
.slider.round {border-radius: 34px;}
.slider.round:before {border-radius: 50%;}

::-webkit-input-placeholder { color: #b4b4b4; }

input[type=text] {font-size: 12px; border: 1px solid #d8d8d8; width: 100%; -webkit-appearance: none;}
input[type=text]:focus {outline: none; border: 1px solid #cf000e;}

input[type=email] {font-size: 12px; border: 1px solid #d8d8d8; width: 100%; -webkit-appearance: none;}
input[type=email]:focus {outline: none; border: 1px solid #cf000e;}

input[type=number] {font-size: 12px; border: 1px solid #d8d8d8; width: 100%; -webkit-appearance: none;}
input[type=number]:focus {outline: none; border: 1px solid #cf000e;}

input[type=password] {color: #222222; font-size: 12px; border: 1px solid #d8d8d8; width: 100%; -webkit-appearance: none; -webkit-border-radius: 0; font-family: sans-serif;}
input[type=password]:focus {color: #222222; outline: none; border: 1px solid #cf000e; font-family: sans-serif;}

#input-other {font-size: 12px; color: #222222; border: none; border-bottom: 1px solid #cf000e; -webkit-appearance: none; -webkit-border-radius: 0;}
#input-other:focus {outline: none; border-bottom: 1px solid #cf000e;}

select {font-size: 12px; border: 1px solid #e4e4e4; width: 100%; background: #fff; -webkit-border-radius: 0; color: #222222;}
select:focus {outline: none; border: 1px solid #cf000e; color: #222222; background: #fff;}

textarea {border: 1px solid #e4e4e4; padding: 12px; color: #222222; font-size: 12px; -webkit-appearance: none; -webkit-border-radius: 0; width: 100%;}
textarea:focus {outline: none; border: 1px solid #df322b;}


.btn-top {
	opacity:0.6;
	position: fixed;
	z-index: 1000;
	bottom: 55px;
	right: 10px;
	display: none;
}

.dialog-overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .6);
	z-index: 2000;
}

.dialog-overlay-notice {
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .6);
	z-index: 2000;
}

.filter-overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
	z-index: 2000;
}

.navbar {
	width: 0px;
	white-space: nowrap;
	text-align: center;
	height: 100% !important;
	margin-bottom: 0 !important
}

.navbar.navbar-inverse.navbar-fixed-top {
	border: none;
}

.navbar.navbar-inverse.navbar-fixed-top hr {
	margin-bottom: 5px !important;
	margin-top: 5px !important;
}

.navbar-fixed-top {
	right: inherit;
}

#right-filter {
	line-height: 1 !important;
}

#right-filter .menu-overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
	z-index: 2000;
}

#right-filter-wrapper {
	top: 0;
	width: 67%;
	height: 100%;
	right: -100%;
	position: fixed;
	background: #fff;
	margin-left: auto;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 3000;
}

#right-filter-wrapper .header-filter {
	position: fixed;
	width: 67%;
	height: 9%;
	background: #fff;
	padding: 17px 15px;
	z-index: 10;
}

#right-filter-wrapper .search-content {
	position: absolute;
	width: 100%;
	top: 51px;
	z-index: 100;
	padding-bottom: 5px;
	background: #fff;
	height: 92%;
}

#right-filter-wrapper .search-content .menu-content {
	height: 97%;
}

#right-filter-wrapper .search-content .menu-content .menu-item {
	width: 100%;
	font-size: 15px;
	color: #bfbfbf;
	padding: 15px 0px;
	text-align: center;
	background: #f6f6f6;
	border-bottom: 1px solid #e4e4e4;
}

#right-filter-wrapper .search-content .menu-content .menu-item.active {
	width: 102%;
	background: #fff;
	color: #222222;
}

#right-filter-wrapper .search-content .menu-content .content {
	width: 100%;
	padding: 15px;
	height: 100%;
	overflow-y: auto;
}

.search-item {
	border-radius: 3px;
	padding: 5px;
	background: #de322a;
	float: left;
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.search-item .item-txt {
	font-size: 12px;
	color: #fff;
	float: left;
}

.search-item .item-close {
	width: 9px;
	height: 9px;
	float: right;
	margin-left: 5px;
	margin-top: 2px;
}

.mod_slider_mask {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10000;
	height: 100%;
	width: 100%;
	background: #000000;
	opacity: 0.8;
}

.mod_slider_viewer {
	height: 100% !important;
	padding: 0;
	background: transparent;
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	z-index: 15000 !important;
}

.dialog-day {position: fixed; width: 72%; height: 42%; top: 30%; left: 15%; z-index: 3000; display: block;}
.dialog-normal {position: fixed; display: none; top: 30%; left: 10%; background: #fff; z-index: 3000; width: 80%;}
.dialog-setting {position: fixed; display: none; top: 30%; left: 10%; background: #fff; z-index: 3000; width: 80%;}
.dialog-spot {position: fixed; display: none; top: 30%; left: 10%; background: #fff; z-index: 3000; width: 80%;}
.dialog-sharing {position: fixed; display: none; top: 30%; left: 10%; background: #fff; z-index: 3000; width: 80%;}

.dialog-header {width: 100%; height: 30px; z-index: 10; padding-top: 15px;}
.dialog-header .tag-close {width: 15px; height: 15px; float: right; margin-right: 15px;}
.dialog-title {width: 100%; margin: 15px 0px; text-align: center;}
.dialog-title .tag-title {font-size: 15px; color: #222222; font-weight: bold;}
.dialog-content {width: 100%; margin-bottom: 15px; text-align: center; padding: 0px 15px; font-size: 12px; color: #777777;}
.dialog-footer {width: 100%; padding-top: 20px;}
.dialog-footer .btn {background: #cf000e; text-align: center; font-size: 14px; padding: 10px 0px; height: 40px; width: 100%; color: #fff; border-radius: 0;}
.dialog-footer .btn-1 {width: 50%; height: 40px; padding: 12px 0px; text-align: center; color: #fff; font-size: 14px;}

.bg-line {width: 100%; height: 9px; background: #f6f6f6; border-top: 1px solid #dedede;}



.red{color:#cf000e !important;}
