@charset "utf-8";

/*==================================== Noto Sans KR font - 한글 : 'Noto Sans KR' ========================*/
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-display: swap;
  src:url('/resources/css/iat/import/fonts/NotoSansKR-Thin.otf') format('woff2');
  font-weight: 100;
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-display: swap;
  src:url('/resources/css/iat/import/fonts/NotoSansKR-Light.otf') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-display: swap;
  src:url('/resources/css/iat/import/fonts/NotoSansKR-Regular.otf') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-display: swap;
  src:url('/resources/css/iat/import/fonts/NotoSansKR-Medium.otf') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-display: swap;
  src:url('/resources/css/iat/import/fonts/NotoSansKR-Bold.otf') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-display: swap;
  src:url('/resources/css/iat/import/fonts/NotoSansKR-Black.otf') format('woff2');
  font-weight: 900;
}
/*====================================  Colors ====================================*/
/* -- 변수는 IE11 지원 안됨
  #312783;  -- 메인 컬러(보라)
  #424656;  -- 전체 배경 및 기본 텍스트 컬러
  #dddddd;  -- 박스 테두리 및 dot 컬러 
  #999999;  -- Placeholder 텍스트 컬러
  #ffffff;  -- UI 영역 배경, 버튼 텍스트 컬러 등, 어두운 배경 위의 주 컬러
  #f5f5f5;  -- 읽기모드 배경
  #aaaaaa;  -- 비활성 모드 텍스트 컬러
  #f8f9ff;  -- RightBox 배경 컬러 
  #2c2c2c;  -- 인증 등록 관련 버튼색 
  #607d8b;  -- 뒤로 및 초기화 버튼색
*/

/*====================================  Reset ====================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 300;
  color: #424656;
}
/* input 필드 포커싱 시 굵은 아웃라인 방지 */
:focus {
  outline: 0;
}
body {
  background-color: #424656;
  font-size: 16px;
}
/* 링크 관련 */
a,
a:link,
a:visited {
  color: #424656;
  text-decoration: none;
}
a:hover {
  color: #312783;
  text-decoration: underline;
}

/*====================================  Utilities ====================================*/
/* 우측 개별 메시지 영역 */
.msgBlock {
  position: relative;
  margin-bottom: 10px;
}
.msgBlock:last-child {
  margin-bottom: 0;
}
.msgBlock * {
  font-size: 13px;
}
.underline {
  text-decoration: underline !important;
}
/* 사각 점 */
.rect-dot {
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -15px;
  font-size: 5px;
  margin-right: 5px;
  color: #dddddd;
  transform: scale(0.6);
}
/* 메시지 목록 스타일 */
.msgBlock ul,
.msgBlock ol {
  margin: 5px 0;
}
.msgBlock li {
  list-style-position: inside;
  text-indent: -13px;
  padding-left: 13px;
}
/* Position: Relative */
.relative {
  position: relative;
}
/* font bold */
.bold {
  font-weight: 400;
}
/* Button Color */
.btn-clr-darkgray {
  background-color: #2c2c2c !important;
}
.btn-clr-bluegray {
  background-color: #607d8b !important;
}
.btn-clr-darkbluegray {
  background-color: #3a4366 !important;
}
.text_center {
  text-align: center;
}

/* QR코드 영역 */
.qrcode {
  text-align: center;
}
.qrcode .icon-qrcode {
  width: 120px;
}
.qrcode .icon-qrcode {
  width: 175px;
}
/*-------------------- Layout -----------------*/
.flex-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.flex-item-width {
  flex: 1 1 0; /* 아이템 너비 동일하게 */
}
.flex-item-width2 {
  flex: 2 2 180px; /* 아이템 너비 2배로 */
}

.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
/*-------------------- Width -----------------*/
.wall {
  width: 100% !important;
}
.w50pro {
  width: 50% !important;
}
.w3split {
  width: 32% !important;
}
/*-------------------- Margin Top -----------------*/
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt55 {
  margin-top: 55px;
}
.mt60 {
  margin-top: 60px;
}
.mt65 {
  margin-top: 65px;
}
.mt70 {
  margin-top: 70px;
}
.mt75 {
  margin-top: 75px;
}
.mt80 {
  margin-top: 80px;
}
.mt85 {
  margin-top: 85px;
}
.mt90 {
  margin-top: 90px;
}
.mt95 {
  margin-top: 95px;
}
.mt100 {
  margin-top: 100px;
}
.mt104 {
  margin-top: 104px;
}
.mt105 {
  margin-top: 105px;
}
.mt109 {
  margin-top: 109px;
}
.mt110 {
  margin-top: 110px;
}
.mt113 {
  margin-top: 113px;
}
.mt115 {
  margin-top: 115px;
}
.mt119 {
  margin-top: 119px;
}
.mt120 {
  margin-top: 120px;
}
.mt125 {
  margin-top: 125px;
}
.mt130 {
  margin-top: 130px;
}
.mt135 {
  margin-top: 135px;
}
.mt140 {
  margin-top: 140px;
}
.mt145 {
  margin-top: 145px;
}
.mt150 {
  margin-top: 150px;
}
.mt160 {
  margin-top: 160px;
}
.mt200 {
  margin-top: 200px;
}
.mt209 {
  margin-top: 209px;
}
.mt210 {
  margin-top: 210px;
}
.mt213 {
  margin-top: 213px;
}
/*-------------------- Margin Right -----------------*/
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.mr35 {
  margin-right: 35px;
}
.mr40 {
  margin-right: 40px;
}
.mr45 {
  margin-right: 45px;
}
.mr50 {
  margin-right: 50px;
}
.mr55 {
  margin-right: 55px;
}
.mr60 {
  margin-right: 60px;
}
/*-------------------- Margin Bottom -----------------*/
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb54 {
  margin-bottom: 54px;
}
.mb55 {
  margin-bottom: 55px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb65 {
  margin-bottom: 65px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb75 {
  margin-bottom: 75px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb85 {
  margin-bottom: 85px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb95 {
  margin-bottom: 95px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb105 {
  margin-bottom: 105px;
}
.mb110 {
  margin-bottom: 110px;
}
.mb113 {
  margin-bottom: 113px;
}
.mb115 {
  margin-bottom: 115px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb125 {
  margin-bottom: 125px;
}
.mb130 {
  margin-bottom: 130px;
}
.mb135 {
  margin-bottom: 135px;
}
.mb140 {
  margin-bottom: 140px;
}
.mb145 {
  margin-bottom: 145px;
}
.mb150 {
  margin-bottom: 150px;
}
/*==================================== Header Area ====================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  width: 100%;
  height: 10vh;
}
/* 펜타 로고 */
.ci_logo {
  width: 180px;
  opacity: 0.7;
}
/* iSIGN+ 로고 */
.isign_logo {
  width: 90px;
  opacity: 0.7;
}

/*====================================  Contents Area ====================================*/
/* 원형 심볼 - 메인 로고 */
.circle-symbol {
  display: block;
  position: absolute;
  top: -50px;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 5px solid #424656;
  /* 배경색, 배경이미지, 반복여부, 고정방식(fixed, local), 위치지정(가로,세로[%,cm,px,em]), 크기(auto, px, %, cover, contain) */
  background: white url('/resources/img/iat/otp_logo.png') no-repeat scroll 50% 50%/80% 80%;
}
.circle-symbol.device_regist {
  background: white url('/resources/img/iat/icon-device_regist.png') no-repeat scroll 50%
  50%/80% 80%;
}
.circle-symbol.auth {
  background: white url('/resources/img/iat/icon-auth.png') no-repeat scroll 50% 50%/80%
  80%;
}
.circle-symbol.otp_manual_regist {
  background: white url('/resources/img/iat/icon-otp_manual_regist.png') no-repeat scroll
  50% 50%/80% 80%;
}
.circle-symbol.otp_auth {
  background: white url('/resources/img/iat/icon-otp_auth.png') no-repeat scroll 50% 50%/80%
  80%;
}
.circle-symbol.email_auth {
  background: white url('/resources/img/iat/icon-email_auth.png') no-repeat scroll 50% 50%/80%
  80%;
}

main {
  display: flex;
  width: 100%;
  height: 90vh;
  justify-content: center;
  align-items: center;
  transform: translateY(-5%);
}
/* UI Area */
.mainBox {
  position: relative;
  width: 700px;
  /* height: 396px; */
  /*height: 500px;*/
  min-height: 500px;
  padding: 60px 25px 25px 25px;
  text-align: normal;
  border-radius: 10px;
  background-color: white;
}
.mainBox_auto_height {
  height: auto;
}
/* UI Title */
.title {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 25px;
}
/* Container left, right box */
.content-container {
  display: block;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}
/* LeftBox */
.leftBox {
  float: left;
  position: relative;
  width: 60%;
  height: 100%;
  padding-right: 15px;
}
/* RightBox */
.rightBox {
  float: right;
  width: 40%;
  height: 100%;
  padding: 10px 10px 10px 20px;
  border: 1px solid #dddddd;
  background-color: #f8f9ff;
  border-radius: 5px;
}
/* 우측 도움말 폰트 크기 재설정 */
.rightBox .msgBlock * {
  font-size: 16px !important;
}
/* rightBox 부모와 높이 맞추기 */
.match-height {
  position: absolute;
  top: 0;
  right: 0;
}

/* 이미지 비밀문자 */
.secret_image {
  width: 190px;
  vertical-align: middle;
}

/* 에러 이미지 */
.error_img {
  width: 180px;
}

/* [C030]인증 – 인증 요청 탭 메시지 */
.messege {
  text-align: center;
  font-size: 16px;
  padding-top: 30px;
  font-weight: 400;
  color: #312783;
  height: 153px;
}

/*==================================== footer ====================================*/
footer {
  position: fixed;
  bottom: 15px;
  width: 100%;
}
footer p {
  text-align: center;
  font-size: 12px;
  font-weight: 100;
  color: #dddddd;
}

/*==================================== Controls ====================================*/
/*-------------------- 아이콘 : 아이디, 패스워드 -----------------*/
.icon-id-pw {
  position: absolute;
  display: inline-block;
  height: 14px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

/*-------------------- Input -----------------*/
input[type='text'],
input[type='password'] {
  line-height: 1;
  border: 1px solid #dddddd;
  width: 100%;
  color: #312783;
  background-color: white;
  font-size: 16px !important;
  padding: 8px 10px;
  border-radius: 3px;
  transition: all 0.3s;
}
/* 마우스 오버 및 포커싱 */
input[type='text']:hover,
input[type='password']:hover,
input[type='text']:focus,
input[type='password']:focus {
  border-color: #312783;
}
/* Placeholder Color */
input[type='text']::placeholder,
input[type='password']::placeholder {
  color: #999999;
}
/* 읽기 모드 */
input[type='text']:read-only,
input[type='password']:read-only {
  background-color: #f5f5f5;
  color: #999999;
  pointer-events: none;
}
/* 비활성 모드 */
input[type='text']:disabled,
input[type='password']:disabled {
  background-color: #dddddd;
  color: #aaaaaa;
  cursor: not-allowed;
}
/*-------------------- Email 안내에 사용된 작은 아이콘 -----------------*/
.icon_email_sm {
  width: 20px !important;
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 8px;
}

/*------------------- Button : Basic -----------------*/
.btn {
  padding: 8px 12px;
  min-width: 100px;
  color: white;
  background: #312783;
  font-size: 16px;
  font-weight: 300;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.9;
  border-radius: 3px;
}
.btn:hover {
  opacity: 1;
  box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn:active {
  box-shadow: none;
}
.btn:disabled {
  opacity: 0.3;
  box-shadow: none;
  cursor: default;
}
/* Big Button */
.btn-big {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 400;
}
.timer {
  font-size: 16px;
  color: #ff5722;
}

/*------------------- ICON Button -----------------*/
.btn_icon {
  display: inline-block;
  vertical-align: middle;
  padding: 8px 8px;
  min-width: 50px;
  color: white;
  background: url('/resources/img/iat/restart-line.png') no-repeat center center/24px 24px
  #ececec;
  font-size: 14px;
  font-weight: 300;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.9;
  border: 1px solid #ddd8d8;
  border-radius: 3px;
}
.btn_icon:hover {
  opacity: 1;
  box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn_icon:active {
  box-shadow: none;
}
.btn_icon:disabled {
  opacity: 0.3;
  box-shadow: none;
  cursor: default;
}

/*------------------- CheckBox -----------------*/
/* 체크박스 전체 */
.cbx {
  position: relative;
  height: 15px;
  line-height: 15px;
  display: inline-block;
}
/* 원본 체크박스 숨김 */
.cbx input[type='checkbox'] {
  position: absolute;
  display: inline-block;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
/* 라벨 */
.cbx input[type='checkbox'] + label {
  display: inline-block;
  position: relative;
  color: #424656;
  cursor: pointer;
  width: auto !important;
  padding-left: 22px;
}
/* 라벨 마우스 오버 시  */
.cbx input[type='checkbox'] + label:hover {
  color: #312783;
}
/* 체크 시 라벨 색상 */
/* .cbx input[type='checkbox']:checked + label {
  color: #312783;
} */
/* 가상 체크박스 */
.cbx input[type='checkbox']::before {
  margin-top: 0; /* 레이블과 세로정렬 */
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 2px;
}
/* 체크 시 안쪽 체크표시 */
.cbx input[type='checkbox']:checked::before {
  content: '';
  display: inline-block;
  background-image: url('/resources/img/iat/check.png');
  background-repeat: no-repeat;
  background-color: #312783;
  border-color: #312783;
  background-size: 10px 10px;
  width: 13px;
  height: 13px;
  background-position: center center;
}
/* 비활성 상태 */
.cbx input[type='checkbox']:disabled {
  opacity: 0.3;
  cursor: default;
  /* color: var(--clr-text); */
}
/* 비활성된 레이블 */
.cbx input[type='checkbox']:disabled + label {
  opacity: 0.5;
  cursor: default;
}

/* ======================================= 팝업 윈도우 ======================================= */
/* 오버레이 검은막 */
.popup {
  /* 고정너비: 오버레이 / 반응형: 전체영역 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  transition: all 0.3s;
  opacity: 0;
  z-index: -10;
}
.popup.active {
  opacity: 1;
  z-index: 10;
}
/* 실제 팝업 컨텐츠 영역 - width는 html 태그에 직접 설정함 */
.popup-win {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 0.3rem;
  box-shadow: 0 3px 10px #000000;
  transition: all 0.3s;
  padding: 20px;
}
.popup-heaer {
  position: relative;
}
.popup-heaer h2 {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #dddddd;
}
/* X 닫기 아이콘 */
.icon-close {
  position: absolute;
  top: -2px;
  right: 0;
  font-size: 20px;
  font-weight: bold;
  color: #aaaaaa;
}
.icon-close:hover {
  color: #312783;
  cursor: pointer;
}

/*==================================== 페이지 애니메이션 ====================================*/
@-webkit-keyframes slideInUp {
  /* 애니메이션 설정 */
  from {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* 요소에 애니메이션 적용 시 사용하는 클래스 */
.trans {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* ============================  커스텀 셀렉트박스  ========================== */

/* ------------  전체 컨테이너 -------------- */
.custom__select {
  position: relative;
  display: inline-block;
  width: 100%;
}
/* ------------ 셀렉트 -------------- */
.custom__select select {
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  outline: none; /* Focusing 되면 생기는 테두리 스타일 제거 */
  appearance: none; /* 기본 스타일 제거  */
  padding: 8px 30px 8px 12px;
  width: 100%;
  background: #fff;
  color: #312783;
  transition: all 0.3s;
  border: 1px solid #dddddd;
  border-radius: 3px;
}
/* Placeholder를 사용할 경우 값을 선택하지 않으면 폼이 전송되지 않도록 required 를 넣어야 함 *****/
/* ------ Placeholder 항목이 처음에 보이고 선택 옵션에는 보이지 않도록 함 */
.custom__select select option[value=''][disabled] {
  display: none;
}
/* ------------ 마우스 오버 -------------- */
.custom__select select:focus,
.custom__select select:hover {
  border-color: #312783;
}
/* --------- 우측 화살 아이콘 영역 ---------- */
.custom__select .custom__arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #e7e7ef;
  width: 20px;
  height: calc(100% - 2px);
  margin: 1px;
  border-radius: 0 4px 4px 0;
  pointer-events: none; /* 클릭방지 */
}
/* --------- 우측 화살 아이콘 기본 스타일 ---------- */
.custom__arrow::before,
.custom__arrow::after {
  --size: 3px; /* 화살표 아이콘 크기 (border) */
  content: '';
  position: absolute;
  width: 0; /* 보더로 화살표를 만들것이므로 */
  height: 0;
  /* 세로 중앙 정렬 */
  left: 50%;
  transform: translate(-50%, -50%);
}
/* --------- 위로 화살 아이콘 ---------- */
.custom__arrow::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid #7c8190;
  top: 40%;
}
/* --------- 아래로 화살 아이콘 ---------- */
.custom__arrow::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid #7c8190;
  top: 60%;
}
/*---------------------------------- 탭 메뉴 -----------------------------------*/
/* 전체영역 */
.tab_upbar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 개별 탭 */
.tab_upbar .tab {
  position: relative;
  cursor: pointer;
  padding: 0.4rem 1rem;
  margin: 0;
  display: inline-block;
  color: #424656;
  font-weight: 400;
  border-radius: 0.3rem 0.3rem 0 0;
  min-width: 5rem;
  text-align: center;
  /* border-left: 0.1rem solid #ebebeb; */
  /* border-right: 0.1rem solid #ebebeb; */
}
/* 탭하단 흰색라인 */
.tab_upbar .tab::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0rem;
  width: 100%;
  height: 0.1rem;
  background-color: #fff;
}
/* 컨텐츠 전체  */
.tab_upbar .panels {
  /* background: #fffffff6; */
  width: 100%;
  border-top: 0.1rem solid #312783;
  border-radius: 0.3rem;
  overflow: hidden;
  padding-top: 1rem;
}
/* 개별 컨텐츠  */
.tab_upbar .panel {
  display: none;
  animation: fadein 0.8s;
}
/* 컨텐츠 문장 설정 */
.tab_upbar .panel > p {
  font-size: 1.4rem;
  line-height: 1.5;
}
/* 컨텐츠 fadeIn */
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 컨텐츠 타이틀 */
.tab_upbar .panel-title {
  font-size: 2rem;
  font-weight: bold;
}
/* 라디오 버튼 숨김  */
.tab_upbar .radio {
  display: none;
}
/* 탭 클릭 시 컨텐츠 활성화 : 한 화면에 존재하는 탭 id 와 class 명이 모두 달라야 함 */
.tab_upbar .one:checked ~ .panels .one-panel,
.tab_upbar .two:checked ~ .panels .two-panel,
.tab_upbar .three:checked ~ .panels .three-panel,
.tab_upbar .four:checked ~ .panels .four-panel,
.tab_upbar .five:checked ~ .panels .five-panel,
.tab_upbar .six:checked ~ .panels .six-panel,
.tab_upbar .seven:checked ~ .panels .seven-panel,
.tab_upbar .eight:checked ~ .panels .eight-panel,
.tab_upbar .nine:checked ~ .panels .nine-panel,
.tab_upbar .ten:checked ~ .panels .ten-panel,
.tab_upbar .eleven:checked ~ .panels .eleven-panel,
.tab_upbar .twelve:checked ~ .panels .twelve-panel,
.tab_upbar .thirteen:checked ~ .panels .thirteen-panel,
.tab_upbar .fourteen:checked ~ .panels .fourteen-panel,
.tab_upbar .fifteen:checked ~ .panels .fifteen-panel {
  display: block;
}
/* 탭클릭 시 탭 상단 보더 및 폰트색상 : 한 화면에 존재하는 탭 id 와 class 명이 모두 달라야 함 */
.tab_upbar .one:checked ~ .tabs .one-tab,
.tab_upbar .two:checked ~ .tabs .two-tab,
.tab_upbar .three:checked ~ .tabs .three-tab,
.tab_upbar .four:checked ~ .tabs .four-tab,
.tab_upbar .five:checked ~ .tabs .five-tab,
.tab_upbar .six:checked ~ .tabs .six-tab,
.tab_upbar .seven:checked ~ .tabs .seven-tab,
.tab_upbar .eight:checked ~ .tabs .eight-tab,
.tab_upbar .nine:checked ~ .tabs .nine-tab,
.tab_upbar .ten:checked ~ .tabs .ten-tab,
.tab_upbar .eleven:checked ~ .tabs .eleven-tab,
.tab_upbar .twelve:checked ~ .tabs .twelve-tab,
.tab_upbar .thirteen:checked ~ .tabs .thirteen-tab,
.tab_upbar .fourteen:checked ~ .tabs .fourteen-tab,
.tab_upbar .fifteen:checked ~ .tabs .fifteen-tab {
  background: #fff;
  color: #312783;
  bottom: -0.1rem;
  font-weight: 400;
  border-top: 0.2rem solid #312783;
  border-left: 0.1rem solid #312783;
  border-right: 0.1rem solid #312783;
}
/*--------------------------- 앱스토어 버튼 --------------------------*/
/* QR 이미지 */
img.icon-qr-appstore {
  display: inline-block;
  width: 10%;
}
img.icon-qr-appstore.left,
img.icon-qr-appstore.right {
  margin: 0 20px;
}

/* 버튼 */
.btn_google_appstore,
.btn_apple_appstore {
  margin: 0 10px;
}
.btn_google_appstore img,
.btn_apple_appstore img {
  width: 100%;
}

.oauth-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2개의 열로 분할 */
  gap: 10px; /* 그리드 아이템 사이의 간격 */
  justify-items: center; /* 가로 중앙 정렬 */
  align-items: center; /* 세로 중앙 정렬 */
  padding: 20px 0; /* 상단 여백 추가 */
}

.oauth-container a {
  display: inline-block; /* 링크를 인라인 블록으로 설정 */
  width: 100%; /* 부모 컨테이너 너비에 맞춤 */
  max-width: 200px; /* 최대 너비 설정 */
}

.oauth-container img {
  width: 100%; /* 이미지 너비를 a 태그 너비에 맞춤 */
  height: auto; /* 이미지의 원래 비율을 유지 */
}
