@charset "utf-8";

/* font */
@font-face {
    font-family: "notokr";
    src: url(font/NotoSansKR-Bold.woff) format("woff");
    font-weight: 700;
}
@font-face {
    font-family: "notokr";
    src: url(font/NotoSansKR-Medium.woff) format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "notokr";
    src: url(font/NotoSansKR-Regular.woff) format("woff");
    font-weight: normal;
}

/* common */
* {
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100vh;
    font-family: "notokr", sans-serif;
    font-size: 12px;
    color: #333333;
    letter-spacing: -0.5px;
    overflow-y: hidden;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
address,
menu {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}
table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 12px;
    table-layout: fixed;
}
fieldset,
img {
    border: 0;
    vertical-align: top;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
    display: block;
}
input,
textarea,
select {
    text-align: left;
    font-family: "notokr", sans-serif;
    vertical-align: middle;
    outline-style: none;
    font-size: 12px;
    letter-spacing: -0.5px;
    border: 0;
}
header,
section,
article,
aside,
nav,
footer {
    display: block;
}
hr,
caption,
legend {
    display: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
label {
    cursor: pointer;
}
input[type="text"],
textarea,
select {
    width: 100%;
}
input[type="checkbox"] {
    appearance: none;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
}
input[type="checkbox"]:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    /* border: 1px solid #e5e5e5; */
    border-radius: 2px;
}
input[type="checkbox"]:checked:after {
    /* border: 1px solid #0971bd; */
    background-color: #0d81d5;
    background: url("../img/login/checkbox_checked.png") no-repeat -1px -1px;
    background-size: 21px 21px;
}
select::-ms-expand {
    display: none;
}
button {
    border: 0;
    outline: 0;
    cursor: pointer;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color:#aaa !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color:#aaa !important;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}

.wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1366px;
}

.wrap.main_visual {
    background: url("../img/login/main_visual.png") no-repeat center 0;
}
.wrap.login_visual.visual_type01,
.wrap.visual_type02 {
    background: url("../img/login/login_visual.png") no-repeat center 0;
}
.wrap.join_visual.visual_type01 {
    background: url("../img/login/join_visual.png") no-repeat center 0;
}
.wrap.login_visual.visual_type02 {
    background: url("../img/login/id_pw_visual.png") no-repeat center 0;
}

.container {
    width: 1140px;
    height: 100%;
    margin: 0 auto;
}
.left_area {
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
}
.right_area {
    height: 100%;
    float: right;
    display: flex;
    align-items: center;
}
/* 수정 */
.form_wrap .form_area input,
.form_wrap .form_area select {
    height: 48px;
    padding: 0 16px;
}
.login_visual.visual_type01 .form_wrap .form_area input {
    padding-left: 48px;
}
/*  //수정 */
.form_area {
    position: relative;
}
.form_area input,
.form_area select {
    width: 100%;
    font-size: 15px;
    color: #111;
    border: 1px solid #333;
    letter-spacing: 0.5px;
}

.form_area.checkboxs {
	font-size: 16px;
	padding-top: 14px;
}

.form_area.checkboxs input[type='checkbox'] {
	width: 21px;
	height: 21px;
	padding: 0;
	border-radius: 2px;
}
.form_area.checkboxs span {
	margin: 0px 15px 0px 5px;
}

.defaul_btn {
    width: 180px;
    height: 56px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border-radius: 3px;
    margin-top: 40px;
    background-color: #0d81d5;
}
.defaul_btn + .defaul_btn {
    margin-left: 6px;
}
.login_visual .defaul_btn {
    width: 480px;
}
.refuse_btn {
    width: 114px;
    height: 48px;
    color: #fff; /** #666666 */
    border: 1px solid #666666;
    background-color: #0d81d5; /** #fff */
}
.unselected_btn {
    color: #ffffff;
    background-color: #cccccc;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
/* .tab_wrap .form_wrap .form_area input {
    padding-left: 16px;
} */
.tab_wrap {
    flex-direction: column;
}
.tab_wrap .fill_width {
    width: 100%;
}

/* header */
header {
    width: 100%;
    height: 81px;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease-in-out;
}

header::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

header .container {
    overflow: hidden;
}
header .left_area {
    height: 100%;
}
header a {
    display: block;
}
header .main_logo {
    width: 111px;
    height: 28px;
    background: url("../img/login/posco_logo.png") no-repeat;
    margin-top: 5px;
}
header .system_name {
    width: 91px;
    height: 28px;
    background: url("../img/login/main_title.png") no-repeat;
    background-size: 91px 21px;
}
header .system_name {
    margin-top: 6px;
    margin-left: 9px;
}

header .right_area {
    height: 100%;
}
header .right_area .gnb {
    height: 100%;
}
header .right_area .gnb ul {
    height: 100%;
    display: flex;
    align-items: center;
    text-align: right;
}
header .right_area .gnb ul li {
    height: 100%;
    position: relative;
}
header .right_area .gnb ul li.on a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #0d81d5;
}
header .right_area .gnb ul li + li {
    margin-left: 49px;
}
header .right_area .gnb ul li a {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 80px;
    color: #fff;
    padding: 0 8px;
}
header .right_area .login_info {
    margin-left: 69px;
}
header .right_area .login_info a {
    width: 26px;
    height: 26px;
    background: url("../img/login/header_login_icon.png") no-repeat 0 0;
}

/* 211129 추가 */
header .right_area .posco_ci {
    margin-left: 33px;
    width: 118px;
    height: 23px;
    overflow: hidden;
    display:block;
    /* background: url("../img/login/posco_ci.png") no-repeat 0 0; */
}
header.on .right_area .posco_ci {
    background-position: 0 -23px;
}
.posco_ci:hover {
	cursor: pointer;
}
/* //211129 추가 */

header:hover .main_logo {
    background-image: url("../img/login/posco_logo_over.png");
}
header:hover .system_name {
    background-image: url("../img/login/main_title_over.png");
}
header.on {
    background-color: #ffffff;
    opacity: 0.8;
}
header.on img {
    display: none;
}
header.on .colored_logo,
header.on .colored_title {
    display: block;
}

header.on .gnb ul li a {
    color: #111111;
}
header.on .right_area .login_info a {
    background-image: url("../img/login/header_login_icon_over.png");
}

/* main_contents */
.wrap.main_visual .visual_area {
    padding: 6.875% 0 5.52% 0;
}
@media screen and (max-width: 1366px) {
    .wrap.main_visual .visual_area {
        padding: calc(6.875% - 20px) 0 calc(5.52% - 20px) 0;
    }
}
.wrap .visual_area .contents_title_area h2 {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
}
.wrap .visual_area .contents_title_area p {
    font-size: 23px;
    color: #fff;
    margin-top: 11px;
}

.main_visual .scroll_area {
    height:calc(100% - 81px) ;
    position:relative;
    background:transparent;
    top:81px;
}

.main_visual .contents_wrap {
    background:#fff;
    margin-top:220px;
    height:174px;
}
.contents_wrap {
    width: 100%;
    background-color: #ffffff;
}
.contents_wrap .contents_area {
    width: 100%;
    height: 100%;
}
.contents_wrap .contents_area .contents_link_area {
    position: relative;
    height: 100%;
}
.contents_wrap .contents_area .contents_link_area .container {
    display: flex;
}
.contents_wrap .contents_area .contents_link_item {
    width: 25%;
    height: 320px;
    position: relative;
    top: -220px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 127px 0 31px 38px;
    z-index: 10;
    /* cursor: pointer; 2021-11-24 주석처리 */
}
.contents_wrap .contents_area .contents_link_item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
}
.contents_wrap .contents_area .contents_link_item p {
    font-size: 16px;
    font-weight: 600; /** 2021-11-17 (400) */
    color: #666666;
    margin-top: 10px;
    line-height: 1.5;
}
.contents_wrap .contents_area .contents_link_item .link_item_btn {
    margin-top: 58px;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    background: url("../img/login/start_ic.png") no-repeat 65px 4px;
    cursor: pointer; /*  2021-11-24 추가 */
}
.contents_link_item + .contents_link_item {
    margin-left: 29px;
}
.contents_link_item.active:after {
    content: "";
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    border: 3px solid #0d81d5;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0px 10px 25px rgb(135 135 135 / 17%);
    z-index: -1;
}
.contents_link_item.main_research {
    background: url("../img/login/main_icon01.png") no-repeat 43px 42px;
}
.contents_link_item.main_repair {
    background: url("../img/login/main_icon02.png") no-repeat 43px 42px;
}
.contents_link_item.main_transport {
    background: url("../img/login/main_icon03.png") no-repeat 43px 42px;
}
.contents_link_item.main_laboratory {
    background: url("../img/login/main_icon04.png") no-repeat 43px 42px;
}

/* footer */
footer {
    width: 100%;
    letter-spacing: -0.1px;
    border-top: 1px solid #eeeeee;
    background-color: #fff;
}
.footer_top {
    height: 46px;
    background-color: #e9e9e9; /** 2021-11-23  #f9f9f9 */
}
.footer_top .left_area ul {
    height: 100%;
    display: flex;
    align-items: center;
}
.footer_top .left_area ul li + li {
    position: relative;
    margin-left: 34px;
}
.footer_top .left_area ul li + li::before {
    content: "";
    display: block;
    width: 2px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    background-color: #888888;
}
.footer_top .left_area ul li a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.footer_top .right_area p {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
}

.footer_bottom {
    height: 104px;
    padding-top: 20px;
}
.footer_bottom .left_area {
    display: block;
}
.footer_bottom .left_area ul {
    display: flex;
    align-items: center;
}
.footer_bottom .left_area ul li + li {
    margin-left: 21px;
    position: relative;
}
.footer_bottom .left_area ul li + li::before {
    content: "";
    display: block;
    width: 1px;
    height: 12px;
    position: absolute;
    top: 2px;
    left: -11px;
    background-color: #cccccc;
}
/* 수정 */
.footer_bottom .left_area ul li a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}
/* //수정 */
.footer_bottom .left_area .footer_info {
    margin-top: 16px;
    font-size: 13px;
    color: #999999;
    overflow: hidden;
}
.footer_bottom .left_area .footer_info span {
    position: relative;
    display: block;
    float: left;
}
.footer_bottom .left_area .footer_info span + span {
    margin-left: 22px;
}
.footer_bottom .left_area .footer_info span + span::before {
    content: "";
    display: block;
    width: 1px;
    height: 11px;
    position: absolute;
    top: 2px;
    left: -9px;
    background-color: #999999;
}
.footer_bottom .left_area .copyright {
    display: block;
    position: relative;
    top: 6px;
    font-size: 13px;
    color: #999999;
    text-align: left;
}

.footer_bottom .right_area {
    align-items: flex-start;
}
.footer_bottom .right_area .form_area {
    top: -5px;
}
.footer_bottom .right_area .form_area select {
    padding: 7px 26px 9px 15px;
    border: 1px solid #999999;
    border-radius: 3px;
    background: url("../img/login/open_icon.png") no-repeat 155px center;
}


.wrap.login_visual,
.wrap.join_visual {
    text-align: center;
}
.wrap.login_visual .visual_area,
.wrap.join_visual .visual_area {
    height: 260px;
    letter-spacing: 0.5px;
}
.wrap.login_visual .visual_area .contents_title_area,
.wrap.join_visual .visual_area .contents_title_area {
    padding-top: 81px;
}
.wrap.login_visual .contents_title_area h2,
.wrap.join_visual .contents_title_area h2 {
    padding-top: 38px;
    font-size: 42px;
}
.wrap.login_visual .contents_wrap,
.wrap.join_visual .contents_wrap {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* 로그인 */
.middle_align {
    height: calc(100% - 151px);
    display: flex;
    align-items: center;
    min-height: 340px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .middle_align {
        min-height: 400px;
    }
   }
  
.middle_align .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrap.login_visual .contents_title_area p {
    font-size: 16px;
    font-weight: 500;
}
.scroll_area {
    width: 100%;
    height: calc(100% - 260px);
    background-color: #ffffff;
    overflow-y: auto;
}

.wrap.login_visual .form_wrap .form_area {
    margin: 0 auto;
}
.wrap.login_visual .form_wrap .form_area + .form_area {
    margin-top: 10px;
}
.wrap.login_visual .form_wrap .form_area .id_area {
    background: url("../img/login/ic_id.png") no-repeat 20px center;
}
.wrap.login_visual .form_wrap .form_area .pw_area {
    background: url("../img/login/ic_password.png") no-repeat 20px center;
}

.wrap.login_visual .form_wrap .support_login {
    margin-top: 16px;
}
.wrap.login_visual .form_wrap .support_login a {
    display: inline-block;
    font-size: 16px;
    color: #333;
    padding-right: 14px;
    margin-left: -26px;
    /* background: url("../img/login/right_arrow.png") no-repeat center right; */
    background: url("../img/login/start_ic.png") no-repeat center right;
}
.wrap.login_visual .form_wrap .support_login a + a {
    margin-left: 40px;
}

/* 에러메세지 레이어팝업 */
.login_error {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}
.login_error.on {
   opacity: 1;
   z-index: 9999;
}
.login_error .error_alert {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 280px;
    background-color: #fff;
    border-radius: 14px;
    text-align: center;
}
.login_error .error_alert p {
    position: relative;
    top: -1px;
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    line-height: 30px;
}
.login_error_btn {
    width: 178px;
    height: 56px;
    margin-top: 41px;
}

/* 회원가입 */
.wrap.join_visual .sub_title {
    display: inline-block;
    height: 32px;
    line-height: 30px;
    padding: 0 20px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-top: 16px;
    background-color: #2b2b2c;
    letter-spacing: 0px;
}
.join_area{
    width: calc(100% - 460px);
    padding: 32px 20px 26px;
    border-top: 2px solid #333333;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 auto;
}

.join_area .defaul_btn.active, .join_area .sex_btn.active {
    color: #333;
    border: 3px solid #0d81d5;
    /* background-color: rgb(168,215,250); */
}
.form_area.on > input {
    border: 2px solid #0b7fd3;
    /* border: 1px solid #0d81d5; */
}
.form_area.failed > input {
    border: 2px solid #f36350;
}

/** 2021-11-04 김종휘 추가 */
.form_area.failed > select {
	border: 2px solid #f36350 !important;
}

.form_area.failed .error_msg{
    position:absolute;
    left:0;
    bottom:-18px;
}

.form_field {
    
}
.form_field:after {
    clear:both;
    display:block;
    content:'';
}

.join_area .form_field input {
    padding-left: 16px;
}

.join_area .form_field select {
    padding-left: 16px;
    border: 1px solid #333; /* #e5e5e5 */
    background: url("../img/login/select_bt_arrow.png") no-repeat right 25px center;
}
.form_field .form_group .form_area + .form_area {
    margin-left: 8px;
}
.form_field + .form_field {
    margin-top: 23px;
}
.form_field .left_area {
    width: 161px;
}
.form_field .right_area {
    display: block;
    width: calc(100% - 161px);
}
.form_field .form_group {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
.form_field .form_area {
    display: flex;
    width: 100%;
}
.form_field .vertical_align .form_area + .form_area {
   margin-top: 10px;
}
.form_field label {
    position: relative;
    font-size: 16px;
    color: #111111;
    line-height: 48px;
}
.form_field label.required:after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    right: -9px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #0d81d5;
}

.join_area .defaul_btn {
    color: #fff;
    /* background-color: #fff; */
    border: 1px solid #333;
    height: 48px;
    font-size: 16px;    
}

/* 2021-11-23 성별버튼 추가 */
.join_area .sex_btn {
    color: #333;
    width: 100%;
    background-color: #fff;
    border: 1px solid #333;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
}

.join_area + .defaul_btn {
    color: #333;
    background-color: #fff;
    border: 1px solid #333;
}
.form_field button {
    margin-top: 0;
}
.form_field .form_area input + button {
    position: relative;
    width: 120px;
    margin-left: 7px;
    font-size: 15px;
}
.form_field .assi_desc {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #666666;
}
.form_field .error_msg {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #f36350;
    min-height:14px;
}
.join_area .check_terms_area .form_area {
    margin-top: 32px;
}
.join_area .check_terms_area:first-child .form_area:first-child {
    margin-top: 0;
}
.join_area .check_terms_area .check_desc {
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    margin-left: 7px;
    vertical-align: middle;
}
.join_area .check_terms_area .check_desc strong {
    font-size: 13px;
    color: #0d81d5;
}
.terms_conditions_box {
    margin-top: 15px;
    padding: 30px 27px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
    overflow-y: auto;
}
.terms_conditions_box .terms_title {
    display: block;
    color: #333333;
}
.terms_conditions_box .terms_title + .terms_title {
    margin-top: 24px;
}
.terms_conditions_box .terms_desc {
    margin-top: 14px;
    line-height: 21px;
    color: #666666;
    font-weight: normal;
}
.terms_conditions_box .terms_desc + .terms_sub_title {
    margin-top: 20px;
}
.terms_conditions_box .terms_sub_title {
    display: block;
    color: #666666;
}
.terms_conditions_box .terms_sub_title + .terms_desc {
    margin-top: 7px;
}

.info_area {
    padding-top: 84px;
    background: url("../img/login/complited_check.png") no-repeat center top;
}
.info_area span {
    display: block;
    font-size: 15px;
    color: #888888;
}
.info_area span + span {
    margin-top: 12px;
}
.info_area .info_desc {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
}

.certification_time {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    color: #0d81d5;
}

/* 탭 */
.tab_area {
    width: calc(100% - 660px);
    margin: 0 auto;
}
.tab_area .tap_list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
.tab_area .tap_list li {
    width: 100%;
    height: 54px;
}
.tab_area .tap_list li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 54px;
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    background-repeat: no-repeat;
    background-position: 66px center;
    padding-left: 19px;
}

.tab_wrap .tap_list .tab_phone {
    background-image: url("../img/login/tab_phone_off.png");
}
.tab_wrap .tap_list .tab_email {
    background-image: url("../img/login/tab_email_off.png");
}
.tab_wrap .tap_list a.on.tab_phone {
    background-image: url("../img/login/tab_phone_on.png");
}
.tab_wrap .tap_list a.on.tab_email {
    background-image: url("../img/login/tab_email_on.png");
}


.tab_wrap .tap_list .tab_id_search {
    background-image: url("../img/login/tab_id_search_off.png");
}
.tab_wrap .tap_list .tab_pw_search {
    background-image: url("../img/login/tab_pw_search_off.png");
}
.tab_wrap .tap_list a.on.tab_id_search {
    background-image: url("../img/login/tab_id_search_on.png");
}
.tab_wrap .tap_list a.on.tab_pw_search {
    background-image: url("../img/login/tab_pw_search_on.png");
}

.tab_wrap .tap_list a.on {
    color: #0d81d5;
}
.tab_wrap .tap_list  a.on:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #0d81d5;
    border-radius: 4px;
    box-sizing: border-box;
}

.tab_wrap .tab_content {
    margin-top: 32px;
}

.tab_wrap .form_wrap {
    display: none;
    text-align: left;;
}
.tab_wrap .form_wrap.on {
    display: block;
}

.banner_area {
    width: 100%;
    height: 170px;
    margin-top: 70px;
    font-size: 14px;
    font-weight: 500;
    background: url("../img/login/bottom_banner.png") no-repeat center 0;
}

.banner_area strong {
    display: block;
    font-size: 24px;
    padding-top:33px;
}
.banner_area p {
    font-weight: normal;
    color: #888888;
    margin-top:10px;
}
.banner_area .banner_email {
    display:inline-block;
    color: #0d81d5;
    background:url("../img/login/mail_ic.png") no-repeat 0 3px;
    padding-left:28px;
    min-height:17px;
    margin-top:21px;
}

/* window popup */
.win_pop_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 876px;
    overflow: hidden;
}
.win_container {
    width: 100%;
    height: 100%;
    padding: 30px 32px;
}
.win_pop_header {
    padding-bottom: 17px;
}
.win_pop_title {
    font-size: 23px;
    font-weight: 700;
}
.win_pop_contents {
    width: 100%;
    height: calc(100% - 44px);
    overflow-y: auto;
    border-top: 1px solid #f8f8f8;
}
.win_pop_contents.on {
    border-top-color: #757575;
}
.top_area {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 23px 27px 17px;
    background-color: #f8f8f8;
}
.top_area .pop_contents_list + .pop_contents_list {
    margin-left: 44px;
}
.top_area .pop_contents_list li.on a {
    color: #0d81d5;
    text-decoration: underline;
}
.top_area .pop_contents_list li.on a::before {
    background-color: #0d81d5;
}
.top_area .pop_contents_list li a {
    position: relative;
    display: block;
    line-height: 22px;
    font-size: 14px;
    color: #000;
    padding-bottom: 8px;
    padding-left: 8px;
}
.top_area .pop_contents_list li a::before {
    content: "";
    width: 2px;
    height: 2px;
    position: absolute;
    top: 15px;
    left: 0;
    transform: translateY(calc(-50% - 4px));
    background-color: #000;
}

.bottom_area {
    height: calc(100% - 220px);
    margin-top: 24px;
    border-top: 2px solid #333333;
    padding: 30px 20px 30px 0;
}
.info_law_box + .info_law_box{
    margin-top: 26px;
}
.info_law_title {
    font-size: 16px;
    font-weight: 500;
}
.info_law_paras {
    font-size: 14px;
    color: #666666;
    margin-top: 13px;
}
.info_law_paras p {
    line-height: 22px;
}
.info_law_paras p + p {
    margin-top: 10px
}
.paras_list {
    padding-top: 7px;
}
.paras_list li {
    line-height: 22px;
    font-size: 14px;
}
.paras_list li + li {
    margin-top: 9px;
}
ol.paras_list a {
    display: inline-block;
    color: #0d81d5;
}
ol.paras_list li + li {
    margin-top: 0;
}
.table_area {
    margin-top: 20px;
}
.table_area table {
    width: 100%;
}
.table_area thead {
 background-color: #f5f5f5;
}
.table_area th,
.table_area td {
    height: 54px;
    line-height: 22px;
    padding: 0 40px;
    font-size: 14px;
    color: #666666;
}
.table_area th {
    color: #000;
}

.table_area tbody tr+ tr {
    border-top: 1px solid #e5e5e5;
}
.table_area tbody tr:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.top_btn {
    visibility: hidden;
    position: absolute;
    width: 48px;
    height: 48px;
    right: 80px;
    bottom: 34px;
    background: url("../img/login/top_btn.png") no-repeat;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.top_btn:hover {
    background-image: url("../img/login/top_btn_over.png");
}
.top_btn.on {
    visibility: visible;
    opacity: 1;
}

/** 2021-11-03 추가 */
.dotline { border-top: 2px dashed #333; border-bottom: 2px dashed #333;  padding: 7px 0px; }
.sublist { margin: 10px 0px 20px 30px; }
.sublist li { line-height: 22px; }
.paras_list li.mag { padding-left: 20px; }
.hide { display: none !important; }
.emailSpan {
	font-size: 20px;
    line-height: 42px;
    margin: 0px 5px;
}

/* 레이어팝업 */
.modal_alert {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}
.modal_alert.on {
   opacity: 1;
   z-index: 9999;
}
.modal_alert .confirm_alert {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 280px;
    background-color: #fff;
    border-radius: 14px;
    text-align: center;
}
.modal_alert .confirm_alert p {
    position: relative;
    top: -1px;
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    line-height: 30px;
}
.confirm_alert .btnDiv {
    width: 100%;
    height: 56px;
    /* margin-top: 41px; */
}

.confirm_btn {
    width: 178px;
    height: 56px;
}
.cancel_btn {
    width: 178px;
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.confirm_btn:first-child {
	margin-right: 10px;
}
