@charset "utf-8";
/* 아이랩스 전현진 팀장 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap');

:root {
    --color-gray: #707070;
    --color-gray-dark: #353535;

    --color-blue: #1064e3;
    --color-red: #f04045;
	--color-orange: #ff720a;
	--color-green: #009b9b;

    --color-stress: #FFB44D;
    --color-card: #6587FB;
    --color-work: #90c3fd;
    --color-inout: #6FCF74;
    --color-passport: #1d77fb;
    --color-secure: #4BE3FF;
    --color-contract: #0EA8ED;
    --color-coupon: #FF9258;
    --color-mro: #B271FF;

	--color-line-gray: #c9c9c9;

	--bg-gray: #f8f8f8;
}

/* reset css
*{
	-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;
	-webkit-transition:.3s ease-in-out;-moz-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;transition:.3s ease-in-out;
	-moz-box-shadow:0px 2px 5px rgba(0,0,0,0.3);-webkit-box-shadow:0px 2px 5px rgba(0,0,0,0.3);box-shadow:0px 2px 5px rgba(0,0,0,0.3);
	text-align:justify;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
} */

/* 초기화 */
html, body {
	margin: 0;
	padding: 0;
	-ms-overflow-style: scrollbar;
}

body.noScroll {
    overflow: hidden;
	height: 100vh;
}

body, textarea, select, td, th, button, input {
	font: 15px/1.5 'Noto Sans KR', 'Malgun Gothic', '돋움', 'Dotum', '굴림', 'Gulim', 'arial', 'sans-serif';
	font-variant-ligatures: normal;
	font-variant-caps: normal;
	font-variant-numeric: normal;
	font-variant-east-asian: normal;
	font-stretch: normal;
	color: #000;
	box-sizing: border-box;
	vertical-align: middle;
    letter-spacing: -.36px;
}

body * {
	box-sizing: border-box;
}

b,
strong {
	font-weight: 500;
}

h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p,
	blockquote, tbody, tfoot, thead, th, td, article, figure, em, address {
	margin: 0;
	padding: 0;
	font-style: normal
}

table {
	table-layout: fixed;
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

table caption {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
}

legend, .sound-only, .skip, .none {
	position: absolute;
	left: -5000px;
	top: 0;
	overflow: hidden;
	line-height: 0.1%;
	font-size: 0.1%;
	width: 0.1%;
	height: 0.1%;
}

img, fieldset {
	border: 0 none;
}

label, button {
	cursor: pointer;
}

a {
    display:inline-block;
	color: #000;
}

a:link, a:visited, a:hover, a:active, a:focus {
	text-decoration: none;
	color: #000;
}

a.underline {
	text-decoration: underline;
}

img {
	max-width: 100%;
}

img.objectfit {
	object-fit: cover;
}

button {
	border: none;
	margin: 0;
	padding: 0;
	background-color: transparent;
}

input[type=text],
input[type=password],
input[type=date],
textarea,
select {
	-webkit-border-radius: 0;
	-webkit-appearance: none;
}

input[type=text]::-webkit-input-placeholder {color: #b7b7b7;}
input[type=text]:-moz-placeholder {color: #b7b7b7;}
input[type=text]::-moz-placeholder {color: #b7b7b7;}
input[type=text]:-ms-input-placeholder {color: #b7b7b7;}
input[type=password]::-webkit-input-placeholder {color: #b7b7b7;}
input[type=password]:-moz-placeholder {color: #b7b7b7;}
input[type=password]::-moz-placeholder {color: #b7b7b7;}
input[type=password]:-ms-input-placeholder {color: #b7b7b7;}
input[type=date]::-webkit-input-placeholder {color: #b7b7b7;}
input[type=date]:-moz-placeholder {color: #b7b7b7;}
input[type=date]::-moz-placeholder {color: #b7b7b7;}
input[type=date]:-ms-input-placeholder {color: #b7b7b7;}
textarea::-webkit-input-placeholder {color: #b7b7b7;}
textarea:-moz-placeholder {color: #b7b7b7;}
textarea::-moz-placeholder {color: #b7b7b7;}
textarea:-ms-input-placeholder {color: #b7b7b7;}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input.basic-check,
input.basic-radio {
	display: none;
}

input.basic-check+label,
input.basic-radio+label {
	font-weight: normal;
	color: var(--basic-color);
}

input.basic-check+label span,
input.basic-radio+label span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: -3px 5px 0 0;
    border: 1px solid var(--color-line-gray);
	vertical-align: middle;
    border-radius: 50%;
	cursor: pointer;
}

input.basic-check:checked+label span,
input.basic-radio:checked+label span {
    /* border: 2px solid var(--blue-color); */
	background: url("../../images/common/ico_check.png") no-repeat center/cover;
}

input.basic-check+label span {
    border-radius: 3px;
}

input.basic-check+label b,
input.basic-radio+label b {
	font-weight: 400;
}

.all-check {
    width: 24px;
    height: 24px;
    margin-top: 0;
    border: none;
    background: url("../../images/common/ico_check_all.png") no-repeat center/cover;
    border-radius: 4px;
}

.all-check+label {
    font-size: 18px;
}

.all-check:checked {
    background: url("../../images/common/ico_check_all_on.png") no-repeat center/cover;
}

.arrow-check {
    width: 20px;
    height: 20px;
    margin-top: 0;
    border: none;
    background: url("../../images/common/ico_check_arrow.png") no-repeat center/cover;
}

.arrow-check:checked {
    background: url("../../images/common/ico_check_arrow_on.png") no-repeat center/cover;
}

.all-check:checked::after,
.arrow-check:checked::after {
    display: none;
}

.form-checkradio {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.form-checkradio.topline {
	align-items: flex-start;
}

.form-checkradio.topline .basic-check,
.form-checkradio.topline .basic-radio {
	margin-top: 5px;
}

input.basic-input {
	height: 52px;
	line-height: 50px;
	padding: 0 16px;
	border: 1px solid var(--color-line-gray);
}

select.basic-select::-ms-expand {
	display: none;
}

select.basic-select {
	height: 52px;
	padding: 0 30px 0 16px;
	border: 1px solid var(--color-line-gray);
	background: #fff url("../../images/common/ico_select.png") no-repeat center right;
	background-size: auto 100%;
    color: #000;
	-webkit-appearance: none;
	-moz-appearance: none;
}

select.basic-select.h50px {
    height: 50px;
	padding: 0 40px 0 20px;
}

textarea.basic-textarea {
	padding: 10px;
	border: 1px solid var(--color-line-gray);
	background-color: #fff;
}

dl.select-dl {
    position: relative;
    overflow: hidden;
	border: 1px solid var(--color-line-gray);
}

dl.select-dl dt {
    margin: 0 !important;
}

dl.select-dl dt a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-weight: 400 !important;
    color: var(--color-gray);
}

dl.select-dl.open dt a,
dl.select-dl dt a span {
    color: var(--color-basic);
}

dl.select-dl.open dt a span {
    transform: rotate(180deg);
}

dl.select-dl dd ul li a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}

dl.select-dl dd ul:hover li a {
    opacity: 0.7;
}

dl.select-dl dd ul li.active a,
dl.select-dl dd ul li a:hover {
    background-color: var(--bg-gray);
    opacity: 1;
}

.nopm, .nopm>li, .nopm>dt, .nopm>dd {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul, ul>li, dl, dl>dt, dl>dd {
	padding: 0;
	margin: 0;
	list-style: none;
}

.alignCenter {
	text-align: center !important;
}

.alignLeft {
	text-align: left !important;
}

.alignRight {
	text-align: right !important;
}

.floats {
	zoom: 1;
}

.floats:after {
	content: '';
	display: block;
	clear: both
}

.floats > li {
	float: left;
}

.floats > li.fr {
	float: right;
}

.flex-start {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.flex-spacebetween {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


/* 가로 스크롤 */
.width-scrollbox {
	overflow-x: auto;
	margin: 0 -20px;
	-ms-overflow-style: scrollbar;
	font-size: 0;
}

.width-scrollbox.w768 .scroll-con {
	width: 800px;
	padding: 0 20px 10px;
}

.width-scrollbox.w980 .scroll-con {
	width: 1000px;
	padding: 0 20px 10px;
}

@media screen and (min-width: 639px) {
}

@media screen and (min-width: 767px) {
	.width-scrollbox.w768 {
		margin: 0 !important;
	}

	.width-scrollbox.w768 .scroll-con {
		width: 100%;
		padding: 0;
	}
}

@media screen and (min-width: 979px) {
	.width-scrollbox.w980 {
		margin: 0 !important;
	}

	.width-scrollbox.w980 .scroll-con {
		width: 100%;
		padding: 0;
	}
}

@media screen and (min-width: 1139px) {
	.width-scrollbox.w980 .scroll-con.img990 img {
		max-width: 990px;
	}
}


/* 동영상 임베드 */
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.smooth,
.smooth * {
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.oneline {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* 햄버거 메뉴 */
.c-hamburger {
	display: block;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 50px;
	height: 50px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
	background-color: rgba(255,255,255,0);
}

.c-hamburger:focus {
	outline:none;
}

.c-hamburger span {
	display: block;
	position: absolute;
	top: 25px;
	left: 14px;
	right: 14px;
	height: 2px;
	background-color: #212121;
}

.c-hamburger span::before,
.c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #212121;
	content: "";
}

.c-hamburger span::before {
	top: -8px;
}

.c-hamburger span::after {
	bottom: -8px;
}

.c-hamburger--htx span {
	transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
	transition-property: top, transform;
}

.c-hamburger--htx span::after {
	transition-property: bottom, transform;
}

.open .c-hamburger--htx span{
	background: none !important;
}

.open .c-hamburger--htx span::before{
	top: 0;
	transform: rotate(45deg);
	background-color: #212121;
}

.open .c-hamburger--htx span::after{
	bottom: 0;
	transform: rotate(-45deg);
	background-color: #212121;
}

.open .c-hamburger--htx span::before,
.open .c-hamburger--htx span::after{
	transition-delay: 0s, 0.3s;
}


/* 버튼 모음 */
.btns {
	display: inline-block;
	height: 36px;
	line-height: 34px;
	padding: 0 15px;
	border: 1px solid #E3E3E3;
	background-color: #fff;
	text-align: center;
	color: #000;
	vertical-align: middle;
}

.btns.h50px {
	height: 50px;
	line-height: 48px;
    font-size: 18px;
}

.btns.h60px {
	height: 50px;
	line-height: 48px;
    font-size: 18px;
}

.btns.round2px {
	border-radius: 2px;
}

.btns.round4px {
	border-radius: 4px;
}

.btns.grayBtn {
	border-color: #ddd;
	background-color: #ddd;
	color: #767676;
}

.btns.whiteBtn {
	border-color: rgba(255,255,255,0);
	background-color: transparent;
	color: var(--color-blue);;
}

.btns.blueBtn {
	border-color: var(--color-blue);
	background-color: var(--color-blue);
	color: #fff;
}

.btns.blueLineBtn {
	border-color: var(--color-blue);
	background-color: #fff;
	color: var(--color-blue);
}

.btns.greenBtn {
	border-color: var(--color-green);
	background-color: var(--color-green);
	color: #fff;
}

@media screen and (min-width: 639px) {	
	.btns.h60px {
		height: 60px;
		line-height: 58px;
		font-size: 18px;
	}
}


/* 컬러 */
/* 텍스트 */
.colorWhite {
	color: #fff !important;
}

.colorGray {
    color: var(--color-gray) !important;
}

.colorDarkGray {
	color: var(--color-darkgray) !important;
}

.colorBlue {
	color: var(--color-blue) !important;
}

.colorRed {
	color: var(--color-red) !important;
}

.colorOrange {
	color: var(--color-orange) !important;
}

.colorGreen {
	color: var(--color-green) !important;
}

.color-stress {color: var(--color-stress);}
.color-card {color: var(--color-card);}
.color-work {color: var(--color-work);}
.color-inout {color: var(--color-inout);}
.color-passport {color: var(--color-passport);}
.color-secure {color: var(--color-secure);}
.color-contract {color: var(--color-contract);}
.color-coupon {color: var(--color-coupon);}
.color-mro {color: var(--color-mro);}


/* 배경 */
.bgGray {
	background-color: var(--bg-gray) !important;
}

.bgBlue {
	background-color: var(--color-blue) !important;
    color: #fff;
}

.bgRed {
	background-color: var(--color-red) !important;
    color: #fff;
}

.bgGreen {
	background-color: var(--color-green) !important;
    color: #fff;
}

.bgGradientRed {
	background: rgb(255,17,112); /* Old browsers */
	background: -moz-linear-gradient(-45deg,  rgba(255,17,112,1) 0%, rgba(253,142,0,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  rgba(255,17,112,1) 0%,rgba(253,142,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  rgba(255,17,112,1) 0%,rgba(253,142,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1170', endColorstr='#fd8e00',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}

.bgGradientBlue {
	background: #1d77fb; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #1d77fb 0%, #0098c6 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #1d77fb 0%,#0098c6 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #1d77fb 0%,#0098c6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d77fb', endColorstr='#0098c6',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    color: #fff;
}

.bg-stress {background-color: #fa8d00;color: #fff;}
.bg-card {background-color: #486eef;color: #fff;}
.bg-work {background-color: #3694ff;color: #fff;}
.bg-inout {background-color: var(--color-inout);color: #fff;}
.bg-passport {background-color: var(--color-passport);color: #fff;}
.bg-secure {background-color: #00a5f4;color: #fff;}
.bg-contract {background-color: #009ae6;color: #fff;}
.bg-coupon {background-color: #ff7c34;color: #fff;}
.bg-mro {background-color: #6f1ccc;color: #fff;}


/* 사이즈 */
.w10 {width: 10%;}
.w15 {width: 15%;}
.w20 {width: 20%;}
.w25 {width: 25%;}
.w30 {width: 30%;}
.w35 {width: 35%;}
.w40 {width: 40%;}
.w45 {width: 45%;}
.w49 {width: 49%;}
.w50 {width: 50%;}
.w55 {width: 55%;}
.w60 {width: 60%;}
.w65 {width: 65%;}
.w70 {width: 70%;}
.w75 {width: 75%;}
.w80 {width: 80%;}
.w85 {width: 85%;}
.w90 {width: 90%;}
.w95 {width: 95%;}
.w100 {width: 100%;}

.w50px {width: 50px !important;}
.w60px {width: 60px !important;}
.w100px {width: 100px !important;}
.w130px {width: 130px !important;}
.w150px {width: 150px !important;}
.w200px {width: 200px !important;}
.w250px {width: 250px !important;}
.w300px {width: 300px !important;}
.w350px {width: 350px !important;}
.w400px {width: 400px !important;}
.w450px {width: 450px !important;}
.w500px {width: 500px !important;}
.w550px {width: 550px !important;}
.w600px {width: 600px !important;}
.w650px {width: 650px !important;}
.w700px {width: 700px !important;}
.w750px {width: 750px !important;}
.w800px {width: 800px !important;}
.w850px {width: 850px !important;}
.w900px {width: 900px !important;}
.w950px {width: 950px !important;}
.w1000px {width: 1000px !important;}

.mgt0px {margin-top: 0px !important;}
.mgt5px {margin-top: 5px !important;}
.mgt10px {margin-top: 10px !important;}
.mgt12px {margin-top: 12px !important;}
.mgt15px {margin-top: 15px !important;}
.mgt20px {margin-top: 20px !important;}
.mgt25px {margin-top: 25px !important;}
.mgt30px {margin-top: 30px !important;}
.mgt35px {margin-top: 35px !important;}
.mgt40px {margin-top: 40px !important;}
.mgt50px {margin-top: 50px !important;}
.mgt60px {margin-top: 60px !important;}
.mgt70px {margin-top: 70px !important;}
.mgt80px {margin-top: 80px !important;}
.mgt90px {margin-top: 90px !important;}
.mgt100px {margin-top: 100px !important;}

.mgb0px {margin-bottom: 0px !important;}
.mgb5px {margin-bottom: 5px !important;}
.mgb10px {margin-bottom: 10px !important;}
.mgb15px {margin-bottom: 15px !important;}
.mgb20px {margin-bottom: 20px !important;}
.mgb30px {margin-bottom: 30px !important;}
.mgb40px {margin-bottom: 40px !important;}
.mgb50px {margin-bottom: 50px !important;}
.mgb60px {margin-bottom: 60px !important;}
.mgb70px {margin-bottom: 70px !important;}
.mgb80px {margin-bottom: 80px !important;}
.mgb90px {margin-bottom: 90px !important;}
.mgb100px {margin-bottom: 100px !important;}

.mgl5px {margin-left: 5px !important;}
.mgl10px {margin-left: 10px !important;}
.mgl20px {margin-left: 20px !important;}
.mgl30px {margin-left: 30px !important;}
.mgl40px {margin-left: 40px !important;}
.mgl50px {margin-left: 50px !important;}
.mgl60px {margin-left: 60px !important;}
.mgl70px {margin-left: 70px !important;}
.mgl80px {margin-left: 80px !important;}
.mgl90px {margin-left: 90px !important;}
.mgl100px {margin-left: 100px !important;}

.mgr5px {margin-right: 5px !important;}
.mgr10px {margin-right: 10px !important;}
.mgr20px {margin-right: 20px !important;}
.mgr30px {margin-right: 30px !important;}
.mgr40px {margin-right: 40px !important;}
.mgr50px {margin-right: 50px !important;}
.mgr60px {margin-right: 60px !important;}
.mgr70px {margin-right: 70px !important;}
.mgr80px {margin-right: 80px !important;}
.mgr90px {margin-right: 90px !important;}
.mgr100px {margin-right: 100px !important;}

.round4px {border-radius: 4px !important;}
.round5px {border-radius: 5px !important;}

/* 폰트 사이즈 */
.fsize0 {font-size: 0px !important;}
.fsize12 {font-size: 12px !important;}
.fsize13 {font-size: 13px !important;}
.fsize14 {font-size: 14px !important;}
.fsize16 {font-size: 16px !important;}
.fsize18 {font-size: 18px !important;}
.fsize20 {font-size: 20px !important;}
.fsize22 {font-size: 22px !important;}
.fsize24 {font-size: 24px !important;}
.fsize26 {font-size: 26px !important;}
.fsize28 {font-size: 28px !important;}
.fsize30 {font-size: 30px !important;}

@media screen and (min-width:767px) {
}

@media screen and (min-width:1239px) {
    body, textarea, select, td, th, button, input {
        font-size: 18px;
    }

    .respon {
        position: relative;
        width: 1200px;
        margin: 0 auto;
    }
}

@media screen and (min-width:1340px) {
}

@media screen and (min-width:1439px) {
}

@media screen and (min-width:1640px) {
}

@media screen and (min-width:1840px) {
}