/* ------ 담당자 주석 표기, 주석 표기 시 가급적 영문표기(언어 설정 에러 시 한글 깨짐), 주요 부분 주석 표기, 사용하지 않는 부분 삭제, 에러 시 오타 확인 ---- */
/* ----------------------------------------------------
--- 1st : 2023.12.08 scyang emro DesignTeam
---------------------------------------------------- */

@charset "utf-8";
@import url("reset.css");
@import url("font.css");

html, body { 
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Pretendard', 'Malgun Gothic', sans-serif;  
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 688px; 
  height: 460px;   
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flex{
  display: flex;
  justify-content: space-between;
}
.hide {
  display: inline-block;
  position: absolute !important;
  z-index: -10 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  font-size: medium;
  line-height: normal;
  word-break: break-all;
}
::placeholder {
  color: #B2B2B2 !important;
}
.main_wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url(../img/login/login_bg.jpg) left top no-repeat;
  background-size: cover;  
}
.main_wrap.inlogin {
  background: url(../img/login/login_bg.jpg) left top no-repeat;
  background-size: cover;
}
.main_wrap .cont_box{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.main_wrap .slogan_txt {
  position: absolute;
  top: 50%; 
  left: max(9%, 50px);
  transform: translateY(-50%);
  color: #FFF;
  opacity: 1;
  transition: opacity 0.4s; 
}
.main_wrap .slogan_txt .slogan_main {
  transition: opacity 0.4s; 
}
/* 231110 scyang 내부로그인 좌측 글씨 반응형 좀 더 세부적으로 추가 */
@media (max-width: 1230px) {
  .slogan_txt,
  .slogan_main {
    opacity: 0;
  }
}
/* RIGHT */
.main_wrap .right_box{
  position: absolute; 
  top: 50%;
  right: max(11%, 50px);
  transform: translateY(-47%);
  width: 474px;  
  height: 560px;
}
.main_wrap .right_box .right_box_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 700px;
}
.main_wrap.inlogin .right_box .right_box_wrap {
  min-height:550px;
}
.main_wrap .right_box .login_cont{
  padding: 100px 74px;
  height: 515px;
  background: #FFF;
  margin-bottom: 30px;
}
.main_wrap .right_box .login_cont h2 {
  font-size: 25px;
  color: #555;
  font-family: 'SEBANG Gothic';
}
/* Form */
.login_form .Form {
  margin-top: 56px;
}
.login_form .Form li:nth-child(1) {
  margin-bottom: 8px;
}
.login_form .Form li {
  position: relative;
}
.login_form .Form li input {
  width: 100%;
  height: 45px;
  border: 1px solid #fff;
  border-bottom: 1px solid #909090;
  background: #fff;
  font-family: Arial;
  font-size: 14px;
  color: #444;
  box-sizing: border-box;
  padding-right: 40px;
}
.login_form .Form li input::placeholder {
  color: #BFBFBF !important;
}
.login_form .Form li span {
  position: absolute;
  right: 10px;
}
.login_form .Form li span img {
  vertical-align: -13px;
}

/* option */
.option {
  margin: 25px 0 30px 0;
  line-height: 18px;
  font-size: 14px;
  color: #737373;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
}
.option .checkBox {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.option .findpw a {
  color: #737373;
}
.option .findpw a:hover {
  text-decoration: underline;
}
.option .search {
  display: inline-block;
  float: right;
  padding-left: 15px;
}
.option .search a{
  color: #737373;
}
.option .search a:hover {
  color: #333;
  text-decoration: underline;
}
.option .search span{
  margin:0 5px;
}

/* INPUT-STYLE */
.checkBox input[type="checkbox"] { 
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip:rect(0,0,0,0);
  border: 0
}
.checkBox input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.checkBox input[type="checkbox"] + label:before {  /* 가짜 체크박스 */
  content: ' ';
  display: inline-block;
  width: 13px;  /* 체크박스의 너비를 지정 */
  height: 13px;  /* 체크박스의 높이를 지정 */
  line-height: 13px; /* 세로정렬을 위해 높이값과 일치 */
  margin-right: 5px;
  border: 1px solid #737373;
  text-align: center;
  vertical-align: middle;
}
.checkBox input[type="checkbox"]:checked + label{ /* checkbox-check text-color */
  color:#333;
}
.checkBox input[type="checkbox"]:checked + label:before {  /* checkbox-check */
  background: url(../img/inlogin_btn_check_on.png) no-repeat center 1px;
}
/* btn */
.login_form a.btnLogin {
  display: block;
  padding: 16px;
  width: 100%;
  height: 58px;
  background: #1F3742;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 2px;
  letter-spacing: 0;
}
.login_form a.btnLogin:hover {
  background: #00ABA9;
}
/* footer */
.footer p{
  text-align: center;
  font-size: 12px;
  color: #B2B2B2;
  letter-spacing: 0;
}

/* splogin start */
.main_wrap.splogin {
  position: relative;
  width: 100%;
  height: 100vh;
}
/* leftBox */
.main_wrap.splogin .leftBox {
  position: fixed;
  width: 65%;
  height: 100vh;
  top: 0;
  left: 0;  
  text-align: left;
  background: #000 !important;
}
/* background slide */
.main_wrap.splogin .mainImage .swiper-slide {
  width: 100%;
  height: 100vh;
  background-size: cover;
}
.main_wrap.splogin .slideBg01 {
  background: url(../img/login/splogin_bg_01.jpg) left center no-repeat; 
}
.main_wrap.splogin .slideBg02 {
  background: url(../img/login/splogin_bg_02.jpg) left center no-repeat; 
}
.main_wrap.splogin .slideBg03 {
  background: url(../img/login/splogin_bg_03.jpg) left center no-repeat; 
}
.main_wrap.splogin .slideBg04 {
  background: url(../img/login/splogin_bg_04.jpg) left center no-repeat; 
}
.main_wrap.splogin .slideBg05 {
  background: url(../img/login/splogin_bg_05.jpg) left center no-repeat; 
}
.main_wrap.splogin .slideBg06 { /* 240207 scyang 추가 */
  background: url(../img/login/splogin_bg_06.jpg) left center no-repeat; 
}
.main_wrap.splogin .slideBg07 { /* 240207 scyang 추가 */
  background: url(../img/login/splogin_bg_07.jpg) left center no-repeat; 
}
/* headline */
.headline {
  position: absolute;
  left: 5%;
  top: min(140px, 13.5vh); 
  width: 745px;
  z-index: 500;
  opacity: 1; 
  transition: opacity 0.4s; 
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.headline >div:nth-of-type(1) {
  font-size: 46px;
  line-height: 1;
  padding-bottom: 16px;
  font-weight: 500;
}
.headline >div:nth-of-type(2) {
  font-size: 22px;
  line-height: 1.4;
}
.headline >div:nth-of-type(2) span {
  font-weight: 500;
}
/* rightBox */
.main_wrap.splogin .rightBox {
  position: fixed;
  top: 0;
  right: 0;
  width: max(450px ,37%);
  height: 100vh;
  padding: 30px 0;
  background: #fff;
  border-radius: 15px 0 0 15px;
  z-index: 10;
  overflow: auto;
}
.main_wrap.splogin .center {
  position: absolute;
  width: 390px;
  height: 620px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -57%);
}
/* splogin title */
.main_wrap.splogin .center h2 {
  text-align: center;
}
.main_wrap.splogin .center h2::after{
  content: '';
  display: block;
  width: 43px;
  height: 1px;
  background-color:#D9D9D9;
  margin: 20px auto;
}
.main_wrap.splogin .center p {
  text-align: center;
  color: #333333;
  line-height: 1;
  font-size: 18px;
}
/* login_form */
.main_wrap.splogin .login_form {
  margin-top: 53px;
}
.main_wrap.splogin .login_form ul {
  margin-bottom: 10px;
}
.main_wrap.splogin .login_form li input {
  font-family: 'Pretendard', sans-serif;
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #909090;
  margin-bottom: 5px;
  color: #333;
  letter-spacing: 0.42px;
  font-size: 14px;
}
.main_wrap.splogin .login_form li input::placeholder {
  color: #5c5c5c !important;
}
.main_wrap.splogin .login_form .option {
  text-align: left;
  margin: 28px 0 45px;
}
.main_wrap.splogin .option {
  display: flex;
  justify-content: space-between;
}
.main_wrap.splogin .checkBox input[type="checkbox"]:checked + label:before {  /* checkbox-check */
  background: url(../img/login/splogin_btn_check_on.svg) no-repeat center 2px;
}
.main_wrap.splogin .findpw a {
  color: #737373;
}
.main_wrap.splogin .findpw a:hover {
  text-decoration: underline;
}
/* btn_login */
.main_wrap.splogin .login_form .btn_login {
  width: 100%;
  height: 58px;
  line-height: 58px;
  border-radius: 2px;
  background-color: #1F3742;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 10px;
}
.main_wrap.splogin .login_form .btn_login.new {
  background-color: #00ABA9;
}
.main_wrap.splogin .login_form .btn_login:hover {
  background-color: #23556e;
}
.main_wrap.splogin .login_form .btn_login.new:hover {
  background-color: #22bdba;
}
/* btn_link_container */
.main_wrap.splogin .btn_link_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-top: 26px;
}
.main_wrap.splogin .btn_link {
  background-color: #F4F4F4;    
  border-radius: 2px;
}
.main_wrap.splogin .btn_link a {
  display: block;
  color: #555;
  width: 100%;
  height: 50px;  
  padding: 0 28px;
  line-height: 50px;
  font-size: 15px;  
  text-align: left;
  font-weight: 500;
}
.main_wrap.splogin .btn_link .link_arrow {
  display: inline-block;
  width: 6px;
  height: 100%;
  float: right;
  background: url(../img/login/link_arrow_gray.svg) center no-repeat;
  transition: background .3s;
}
.main_wrap.splogin .btn_link:hover {
  background-color: #EDF6F6;
}
.main_wrap.splogin .btn_link:hover a {
  color: #1F3742;
}
.main_wrap.splogin .btn_link:hover .link_arrow {
  background-image: url(../img/link_arrow_green.svg);
}
/* footer */
.main_wrap.splogin .footer {
  position: absolute;
  bottom: 57px;
  width: 100%;
  line-height: 1;
}
.main_wrap.splogin .footer .footer_link a {
  color: #666;
  font-size: 12px;
  margin-bottom: 15px;
  letter-spacing: -0.24px;
}
.main_wrap.splogin .footer .footer_link a:hover {
  text-decoration: underline;
}
.main_wrap.splogin .footer .footer_link a:first-of-type {
  margin-right: 20px;
}
.main_wrap.splogin .footer .copyright {
  color: #B2B2B2;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 1380px) {
  .headline {
    width: 550px;
  }
}
@media (max-width: 1050px) {
  .headline {
    width: 450px;
  }
}
@media (max-width: 930px) {
  .headline {
    width: 320px;
  }
}
@media (max-width: 820px) {
  .headline {
    width: 240px;
  }
}
@media (max-width: 730px) {
  .headline {
    opacity: 0;
  }
}
@media (max-height: 830px) {
  .main_wrap.splogin .center {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
  }
  .main_wrap.splogin .login_form {
    margin-top:15px;
  }
  .main_wrap.splogin .footer {
    position: relative;
    bottom: inherit;
    margin-top: 8px;
  }
}


/* content */
ul.cont{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
ul.cont li{
  width: 175px;
  height: 60px;
  background: #EAF4FD;
  border: 1px solid #EAF4FD; 
  border-radius: 2px;
  transition: all 0.3s;
}
ul.cont li:hover{
  border:1px solid #0067C5;
  background: #ffffff;
}
ul.cont li a{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  line-height: 60px;
  color:#677B8C;
  font-size: 14px;
  font-weight: 500;
  padding-left:56px;
  position: relative;
}
ul.cont li:hover a {
  color: #0067C5;
}
ul.cont li span {
  display: inline-block;
}
ul.cont .cont-img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  position: absolute;
  top: 4px;
  left:20px;
}
ul.cont .cont-arr {
  width: 7px;
  height: 10px;
  position: absolute;
  top: 25px;
  right: 17px;
}
ul.cont .cont-img {
  background: url(../img/cont-img.png);
}
ul.cont .cont-arr {
  background: url(../img/cont-img.png);
}
ul.cont li:nth-child(1) .cont-img {
  background-position: -1px 1px;
}
ul.cont li:nth-child(2) .cont-img {
  background-position: -34px 1px;
}
ul.cont li:hover .cont-img {
  background-position-y: 30px;
}
ul.cont li .cont-arr {
  background-position: -70px -10px;
}
ul.cont li:hover .cont-arr {
  background-position-y: -40px;
}

/** POPUP_PW SEARCH **/
sc-window > .header {
	width: 100% !important;
	height: 45px  !important;
	background: #1F3742  !important;
	box-sizing:border-box  !important;
}

sc-window > sc-toolbar > .title {
	padding-left:20px !important;
	text-align: left !important;
	font-size: 18px !important;
	color: #FFFFFF !important;
	font-weight: 600 !important;
	line-height: 43px !important;
}

sc-window > .header > sc-button {
    background: #1F3742  !important;
}

.popupWrap {
  width: 100%;
  height: 100%;
  background: #fff;
  /* border-radius: 2px;
  box-shadow: 0px 2px 5px #dadada; */
}
.popupWrap .popupHead {
  width: 100%;
  height: 45px;
  background: #1F3742;
  box-sizing:border-box;
}
.popupWrap .popupHead b {
  padding-left:20px;
  text-align: left;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 43px;
}
.popupWrap .popupSection {
  padding: 40px;
  background: #fff;
}
.popupWrap .popupSection .commt {
  margin: 0 0 40px;
  text-align: center;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.popupWrap .popupSection .commt b {
  color: #ff2424;
}
.popupWrap .popupSection .formBox {
  width: 100%;
  height: auto;
  padding: 30px;
  background: #f7f7f7;
  box-sizing: border-box;
}
.popupWrap .popupSection .formBox p {
  overflow: hidden;
  padding-bottom: 10px;
}
.popupWrap .popupSection .formBox p:last-child {
  padding-bottom: 0;
}
.popupWrap .popupSection .formBox label {
  float: left;
  font-size: 14px;
  color: #666666;
  line-height: 32px;
  vertical-align: middle;
  font-weight: 500;
}
.popupWrap .popupSection .formBox input {
  float: right;
  width: 240px;
  height: 32px;
  padding-left: 12px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  vertical-align: middle;
}
.popupWrap .popupSection .btnArea {
  padding: 40px 0 0 0;
  text-align: center;
}
.popupWrap .popupSection .btnArea a {
  display: inline-block;
  width: 110px;
  height: 40px;
  margin: 0 2px;
  background: #1F3742 ;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
}
.popupWrap .popupSection .btnArea a:hover {
  background: #00ABA9;
}

/*** TERMS & PRIVACY ***/
.popupWrap .popupSection .article {
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  max-height: 580px;
  font-size: 14px;
}
.popupWrap .popupSection .article>div {
  padding: 20px;
  background: #f2f2f2;
}
.popupWrap .popupSection .article>div h3 {
	margin-bottom: 15px;
  color:#2484C6;
  font-size: 14px;
  font-weight: 500;
}
.popupWrap .popupSection .article ul li{
  padding-left: 20px; 
  list-style: none;
}
.popupWrap .popupSection .option{
  text-align:right;
}
.popupWrap .popupSection .radioBox input[type="radio"] + label{
  margin-right: 15px;
}

/** LOGIN SUCCESS & FAIL, ERROR **/
.messageWrap {
  background: #f1f1f1;
}
.messageWrap .wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.messageWrap .container {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 500px;
  height: 460px;
  transform: translate(-50%, -50%);
  box-shadow: 0px 3px 8px #dadada;
  background: #fff;
  border-radius: 5px;
}
.messageWrap .container2 {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 540px;
  height: 500px;
  margin-top: -300px;
  margin-left: -270px;
  box-shadow: 0px 3px 8px #dadada;
  background: #fff;
  border-radius: 5px;
}
.messageWrap .header {
  width: 100%;
  height: 52px;
  border-radius: 5px 5px 0 0;
  background: #41444e;
  box-sizing: border-box;
}
.messageWrap .header .logo {
  display: inline-block;
  width: 152px;
  height: 34px;
  margin: 20px 0 0 25px;
  background: url(../img/logo_message.png) no-repeat;
  text-indent: -10000px;
}
.messageWrap .section {
  width: 100%;
  box-sizing: border-box;
}
.messageWrap .section .subject {
  overflow: hidden;
  margin: 70px auto 50px;
}
.messageWrap .section .subject b, .messageWrap .section .subject span {
  display: inline-block;
}
.messageWrap .section .subject b {
  font-size: 80px;
  font-weight: normal;
  vertical-align: top;
  letter-spacing: -6px;
  line-height: 1;
}
.messageWrap .section .subject span {
  padding-top: 10px;
  padding-left: 22px;
  font-size: 28px;
  color: #303030;
  font-weight: 500;
  line-height: 1.2em;
}
.messageWrap .section .explan {
  width: 330px;
  min-height: 40px;
  margin: 0 auto;
  padding-left: 50px;
  background: url(../img/ico_caution_y.png) no-repeat;
  font-size: 12px;
  color: #7f7f7f;
  line-height: 18px;
}
.messageWrap .section .subject2 {
  width: 100%;
	margin: 20px auto 50px;
  text-align: center;
}
.messageWrap .section .subject2 b {
  display: inline-block;
  min-height: 32px;
  padding-left: 60px;
  padding-top: 7px;
  background: url(../img/ico_caution_y.png) no-repeat;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
}
.messageWrap .section .explan2 {
  width: 370px;
  margin: 0 auto;
  font-size: 13px;
  color: #252424;
  line-height: 1.5em;
  text-align: center;
}
.messageWrap .section .subject3 {
  width: 100%;
	margin: 20px auto 70px;
  text-align: center;
}
.messageWrap .section .subject3 b {
  display: inline-block;
  min-height: 71px;
  padding-left: 76px;
  padding-top: 5px;
  background: url(../img/ico_logout_y.png) no-repeat 8px 14px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3em;
  text-align: left;
}
.messageWrap .section .hr {
  width: 360px;
  height: 1px;
  margin: 40px auto;
  background: #d4d4d4;
}
.messageWrap .section .hr2 {
  width: 400px;
  height: 1px;
  margin: 40px auto;
  background: #b1b1b1;
}
.messageWrap .section .commt {
  font-size: 15px;
  color: #252424;
  text-align: center;
  line-height: 1.6em;
}
.messageWrap .section .commt b {
  font-weight: normal;
}
.messageWrap .section .btn_bg_msg {
  width: 280px;
  height: 52px;
  background: #1F3742;
  border: 0;
  border-radius: 4px;
  padding: 16px 0;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.3em;
  cursor: pointer;
  box-sizing: border-box;
}
.messageWrap .section .btn_bg_msg:hover {
  background: #00ABA9;
  transition: all 0.5s;
}
.messageWrap .section .btn_cnt {
  margin-top: 25px;
  text-align: center;
}

.popupSection .managerWrap {
  display: flex;
  justify-content: space-between;
}
.popupSection .managerName{
  margin-top: 20px;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}
.popupSection .managerInfo {
  margin-top: 20px;
  line-height: 1.2;
  color: #555;
}
.popupSection .managerInfo .infoLabel {
  width: 70px;
  font-weight: 700;
}

/* pop_credit.html */
.popupWrap .article.credit {
  height: inherit;
  line-height: 1.4;
}
.popupWrap .article.credit p {
  padding-top: 10px;
  display: flex;
}
.popupWrap .article.credit p:first-child {
  padding-top: 0px;
}
.popupWrap .article.credit p span {
  display: block;
}
.popupWrap .article.credit p span:first-child {
  margin-right: 5px;
}
.popupWrap .creditContent {
  padding-top: 30px;
}
.popupWrap .creditContent h3 {
  font-size: 18px;
  font-weight: 700;
  min-width: 100px;
}
.popupWrap .creditContent h3::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 17px;
  background-color: #00ABA9;
  margin-right: 5px;
  vertical-align: -2px;
}
.popupWrap .creditContent.agency {
  display: flex;
}
.popupWrap .creditContent.agency >div {
  margin-top: 5px;
}
.popupWrap .creditContent.agency >div p:first-child {
  padding-bottom: 5px;
}
.popupWrap .creditContent.agency .slash {
  padding: 0 10px;
}
.ratingStep {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 3%;
  row-gap: 30px;
  margin: 20px 10px;
}
.ratingStep li {
  position: relative;
}
.ratingStep li .num_circle {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  background-color: #58B8B8;
  border-radius: 50px;
  letter-spacing: -0.5px;
}
.ratingStep li:nth-child(even) .num_circle {
  background-color: #AADDDD;
}
.ratingStep li .step_arrow {
  position: absolute;
  background: url(../img/pop_step_arrow.png) center right no-repeat;
  width: 100px;
  height: 20px;
  top: 15px;
  left: 25%;
}
.ratingStep li .step_tit {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0 5px;
}
.ratingStep li .step_txt {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -1px;
  color: #666;
}

sc-window>div.content-wrap>div.content {
	position: absolute;
	background-color: #fff;
	border-radius: 3px;
	overflow: hidden;
}
