/* Google Web Font */

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap'); */

/* @font-face {
  font-family: "Noto Sans KR";
  src: url('../fonts/NotoSansKR-Thin.otf');
  font-weight: 100;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url('../fonts/NotoSansKR-Light.otf');
  font-weight: 300;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url('../fonts/NotoSansKR-Regular.otf');
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url('../fonts/NotoSansKR-Medium.otf');
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url('../fonts/NotoSansKR-Bold.otf');
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url('../fonts/NotoSansKR-Black.otf');
  font-weight: 900;
} */

:root {
  --main-color: #069edb;
  --sub-color: #08376a;
}

body {
  /* font-family: 'Noto Sans KR', sans-serif ; */
  font-size: 13px;
}

h2 {
  line-height: 1.3em;
}
h3, h4 {
  line-height: 1.3em;
}

h1, h5 {
  line-height: 1.5em;
}
h6 {
  line-height: 1.5em;
}

button {
  /* font-family: 'Noto Sans KR', sans-serif; */
}
.main_color {
  color: var(--main-color);
}
.btn_01 {
  background-color: var(--sub-color);
  color: #fff;
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
  font-size: 13px;
  height: 50px;
}

.bg_gray {
  background-color: #707070;
}

.last_text {
  width: 100%;
  font-size: 12px;
  padding-top: 10px;
  /* border: 1px solid #000; */
}

input[type="text"], 
input[type="password"], 
input[type="tel"], 
input[type="number"], 
input[type="date"], 
select{
  height: auto;
  max-height: 30px;
  min-height: 30px;
  padding: 5px;
}
select {
  background-image: url('/webdocs/resources/images/cc/icon/arrow_on.svg') ;
  background-size: 13px;
  background-position: center right 4px;
}
/* ■■■■■■■■■■■■■■■■■■ top banner ■■■■■■■■■■■■■■■■■■ */

section.top_banner {
  position: relative;
  text-align: center;
}
.back_btn {
  position: absolute;
  width: 60px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.back_btn img {
  width: 23px;
}
.top_banner .inner{
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.top_banner .inner img {
  display: block;
}
.top_banner .inner img:first-of-type {
  width: 100%;
  height: 2.5px;
  object-fit: cover;
  background-color:#1b3371;
}
.top_banner .inner img:last-of-type {
  width: 40%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 10px;
}

/*■■■■■■■■■■■■■■■■■■ items ■■■■■■■■■■■■■■■■■■ */
.circle_title,
.triangle_title {
  font-size: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  margin: 30px auto 10px;
}

.circle_title span {
  border: 4px solid var(--sub-color);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 7px;
}
.triangle_title {
  background-image: url('/webdocs/resources/images/cc/icon/arrow_left.svg');
  background-size: 12px;
  background-position: left center;
  padding-left: 20px;
}
.triangle_title b {
  min-width: 70px;
}
.triangle_title p {
  font-weight: 400;
  font-size: 13px;
}
.radio {
  -webkit-appearance:none;
  width:24px;
  height:24px;
  left: 0;
  /* right: 5%; */
  /* top: 50%; */
  transform: translateY(-7%);
  border:1px solid #ccc;
  border-radius:50%;
  outline:none;

}
.right_radio {
  right: 0 !important;
  left: auto;
}
.radio:before {
  content:'';
  display:block;
  width:60%;
  height:60%;
  margin: 20% auto;  
  border-radius:50%;  
}
.radio:checked:before {
  background:#069EDB;
}

/* check btn  */
.switch-button { 
  position: relative; 
  display: inline-block; 
  width: 52px; 
  height: 24px; 
}
.switch-button input { 
  opacity: 0; 
  width: 0; 
  height: 0; 
}
.onoff-switch { 
  position: absolute; 
  cursor: pointer; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  border-radius:20px;
  background-color: #ccc;
  -webkit-transition: .4s;
   transition: .4s; 
}
.onoff-switch:before { 
  content: '';
  position: absolute; 
  height: 20px; 
  width: 20px; 
  left: 2px; 
  bottom: 2px; 
  background-color: #fff; 
  background-image: url("/webdocs/resources/images/cc/png/agree_off_icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
  -webkit-transition: .5s; 
  transition: .4s;
  border-radius:20px; 
  font-size: 20px;
  line-height: 1.1;
}
.switch-button input:checked + .onoff-switch { 
  background-color: #ccc;
}
.switch-button input:checked + .onoff-switch:before { 
  content: '';
  background-image: url("/webdocs/resources/images/cc/png/all_agree_on_icon.png");
  background-color: var(--main-color);
  background-size: 15px;
  -webkit-transform: translateX(28px); 
  -ms-transform: translateX(28px); 
  transform: translateX(28px); 
}
.switch-button.first input:checked + .onoff-switch:before {
  background-color: #ff6600;
}
.a_button .check_02 {
  display: none;
}
.a_button .check_01.check {
  display: none;
}
.a_button .check_02.check {
  display: block;
}

/* style_sm_ko.css 파일 추가된 항목  */
.mb40{margin-bottom:40px !important}
.mb50{margin-bottom:50px !important}
.blue{color:#069EDB !important}
.dblue{color:#08386a !important}
.text_blue{color:#069EDB !important}

.emp_08{padding-top: 10px;}
select{height:20px;border:1px solid #d9d9d9;color:#000}

.fs12{font-size: 12px !important}

/* 개발자 추가 */
.fs13{font-size:13px !important}
.fs14{font-size:14px !important}
.fs15{font-size:15px !important}

.cc_layer_pop {
    top: 50% !important;
    transform: translate(0, -50%);
    position: fixed !important;
}

.cc_layer_pop .pop_tit {
	background: white;
	padding: 0px !important;
}

.cc_layer_pop .pop_tit h1 {
	background: white;
    color: black;
    text-align: left;
	width: calc(100% - 40px);
    padding: 20px 20px !important;
    font-size: 15px;
    font-weight: 600;
}

.cc_layer_pop button {
	color: #fff;
    padding: 10px 35px;
    font-weight: 600;
}

.cc_layer_pop .pop_tit a {
	top: 28px;
    right: 15px;
    width: 20px;
    height: 20px;
    background: unset;
    text-indent: unset;
}

.cc_layer_pop div button {
	color: #fff;
    padding: 10px 35px;
    font-weight: 600;
    font-size: 13px;
    height: 50px;
}

.cc_layer_pop.pop_wrap .pop_con {
	padding: 0px !important;
	color: #000;
}

/*
.pop_wrap .pop_tit {
	padding: 0;
}
.pop_wrap .pop_tit h1 {
	background: none;
    text-align: center;
    background-color: var(--main-color);
    color: #fff;
    padding: 10px;
    border-bottom: none;
    font-size: 15px;
    font-weight: 600;
}

.pop_wrap .pop_con {
	padding: 0px !important;
	color: #000;
}
*/
.pop_tit a {
	position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 15px;
}



.justify_content_center {
	justify-content: center !important;
}


/*
#mainPopUp .main_content .wrap {
  padding-bottom: 50px;
}


#mainPopUp .main_content .wrap p {
  font-size: 10px;
  text-align: left;
  color: #707070;
  margin-top: 30px;
}
*/

#mainPopUp .main_content .wrap p b {
  color: #000;
}

#mainPopUp .popup {
  display: block;
}

#mainPopUp .g_layer_box.full .inner {
	background: white;
}

#mainPopUp .main_content {
  overflow: auto;
}

#mainPopUp .g_layer_header {
	padding: 0;
	height: 48px;
}

#mainPopUp .g_layer_header h1{
	background-color: var(--main-color);
    color: #fff;
    padding: 15px 30px 15px 30px;
    border-bottom: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2em;
    height: 48px;
    letter-spacing: unset;
}

#mainPopUp .g_layer_header .over_flow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    padding: 15px 40px 15px 30px;
}

#mainPopUp .g_layer_header .svg {
	position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 15px;
}

#mainPopUp .g_layer_container {
	height: calc(100vh - 107px) !important;
	padding: 48px 5% 50px 5%;
    width: 100%;
}

#mainPopUp .g_layer_container > .wrap {
    width: 100%;
}

#mainPopUp .g_layer_footer {
    /*padding: 0 5% 50px 5%;*/
    max-width: 1200px;
    margin: auto;
}

#mainPopUp .g_layer_footer button{
	margin-bottom: 0;
	margin-top: 30px;
}

.right_header_btn {
	position: absolute;
    width: 30px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 40px;
}

.right_header_btn img {
    width: 23px;
}






