﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 500;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 700;
  src: url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2') format('woff2'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff') format('woff'), url('https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf') format('opentype');
}

/*
    기존색
#1e319d
*/

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

:root {
    --base: #214821;
    --btn: #fff;
}

/* common */
* {
  box-sizing: border-box;
}


html, body {
  height: 100%;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-tap-highlight-color: transparent;
}


body {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #222;
  background: #fff;
  word-break: break-all;
}
.all {
  overflow: auto;
  height: 100%;
}

@media screen and (max-width:767px) {
.all {
  overflow: auto;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.all::-webkit-scrollbar {
 display: none;
}
}
.wrap {
  width: 100%;
  height: 100%;
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  overflow: auto;
}
.wrapper {
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.container {
  width: 100%;
  height: 100%;
  padding: 0 15px;
}
.content {
  padding: 56px 0 50px;
}
.h-auto {
  height: auto;
}
/*input*/

input {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  color: #222;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  padding: 0 !important;
  height: 50px;
  font-size: 18px;
}
textarea {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  color: #222;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 10px !important;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px !important;
}
input[readonly] {
  color: #777;
}


/*label*/
label.btn-sl{
    display: inline-block;
    text-align: center;
    font-weight: 500;
    
}
label.btn-lg{
    display: block;
    text-align: center;
}



/*button*/
button {
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  font-weight: 500;
}

.btn {
  border-radius: 100px;
  cursor: pointer;
}
.w-100 {
  width: 100% !important;
}
.btn-lg {
  padding: 0 30px;
  font-size: 18px;
  margin-top: 30px;
  color: #fff;
  border: 1px solid transparent;
  height: 50px;
  line-height: 50px;
}
.btn-md {
  padding: 0 20px;
  font-size: 16px;
  color: #fff;
  border: 1px solid transparent;
  min-width: 120px;
  height: 40px;
  line-height: 40px;
}
.btn-sl {
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  border: 1px solid transparent;
  min-width: 120px;
  height: 35px;
  line-height: 35px;
}
.btn-sm {
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid transparent;
  min-width: 56px;
  background-color: transparent;
  height: 30px;
  line-height: 30px;
}


.btn-sg {
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    border: 1px solid transparent;
    min-width: 20px;
    height: 35px;
    line-height: 35px;
}

.btn-primary {
    background: var(--base);
    color: var(--btn);
}
.btn-navy {
  background: var(--base);
  color: var(--btn);
}
.btn-grey {
  background: #f0f0f0;
  color: #555;
}
.btn-green {
  background: #6ac37b;
  color: #fff;
}
.btn-pink {
  background: #fa6079;
  color: #fff;
}


.btn-yellow {
    background: #FFC947;
    color: #fff;
}
.btn-mint {
  background: #01ccb9;
  color: #fff;
}
.btn-blue {
    background: #185ADB;
    color: #fff;
}



.btn-orange {
    background: #FFA500;
    color: #fff;
}

.btn-white {
	background: #FFFFFF;
	color: #555;
}


.btn-red {
	background: #FF0000;
	color: #FFFFFF;
}



.btn-primary-outline {
    color: var(--base);
    border-color: var(--base);
    background-color: var(--btn);
}
.btn-wh-outline {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}
/*splash-area*/
.splash-area {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--base);
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash-logo {
  width: 150px;
  margin-top: -130px;
}
.splash-logo img {
  width: 100%;
}
/*login*/
.d-table {
  display: table;
  width: 100%;
  height: 100%;
}
.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.login-area {
  height: calc(100% - 35px);
}
.login {
  padding: 50px 0;
  overflow: auto;
}
.login-logo {
  padding-bottom: 80px;
  text-align: center;
}
.login-logo img {
  margin: 0 auto;
  width: 300px;
}

.login .input-group input {
    width: 100%;
    background-color: transparent;
    font-size: 18px;
    height: 50px;
    color: #222;
    padding-left: 50px !important;
}

.input-group {
    position: relative;
}

.effect {
    border: 0;
    padding: 7px 0;
    border-bottom: 1px solid #ddd;
}

    .effect ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #5f76ff;
        transition: 0.3s;
    }

input[readonly].effect ~ .focus-border {
    background-color: transparent;
}

.effect:focus ~ .focus-border {
    width: 100%;
    transition: 0.3s;
}

.ic-id:before, .ic-pw:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 13px;
    left: 10px;
    background-size: cover;
}


.login-btn-area button:last-child {
  margin-top: 10px;
}
.ic-id:before {
  background-image: url("../images/ic-login-user.png");
}
.ic-pw:before {
  background-image: url("../images/ic-login-pw.png");
}
/*marquee*/
.row {
  margin: 0 -15px;
}
.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
marquee {
  height: 35px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: rgba(0,0,0,.8);
  margin-top: auto;
  display: block;
}
marquee p {
  font-size: 12px;
  color: #fff;
  padding: 10px 0;
}
/*header*/
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #eee;
  height: 56px;
}
/*헤더버튼 수정 여기부터*/
.header .header-btn-area {
  position: absolute;
  top: 16px;
  left:12px;
}
.header .header-btn-area button {
  width: 24px;
  height: 24px;
  background-size: cover;
  display: inline-block;
  padding: 0;
}
.header .header-btn-area button + button {
  margin-left: 15px;
}
.header .btn-back {
  background-image: url(../images/ic-back.png);
}
.header .btn-home {
  background-image: url(../images/ic-home.png);
}
/*헤더버튼 수정 여기까지*/
    .header .logo {
        background-image: url(../images/logo_ver.png);
        width: 150px;
        height: 38px;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 16px;
        top: 9px;
    }
.header .logo img {
  width: 100%;
}
.header .header-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 80px;
}
/*padding*/
.p-t-5 {
  padding-top: 5px;
}
.p-t-10 {
  padding-top: 10px;
}
.p-t-30 {
  padding-top: 30px;
}
/*margin*/
.m-t-15 {
  margin-top: 15px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-t-35 {
  margin-top: 35px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-t-11 {
  margin-top: 11px;
}
.m-b--5 {
  margin-bottom: -5px !important;
}
/*input-effect*/
.content .input-group input {
  height: 30px;
}
.input-effect {
  margin-top: 35px;
}

.effect-label {
    border: 0;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
}

.effect-label ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--base);
  transition: 0.3s;
}
input[readonly].effect-label ~ .focus-border {
  background-color: transparent;
}
.effect-label:focus ~ .focus-border {
  width: 100%;
  transition: 0.3s;
}
.effect-label ~ label, input[readonly].effect-label ~ label {
  position: absolute;
  left: 0;
  width: 100%;
  top: 4px;
  color: #aaa;
  transition: 0.3s;
  z-index: -1;
  font-size: 18px;
}
.effect-label:focus ~ label, .has-content.effect-label ~ label {
  top: -16px;
  font-size: 14px;
  color: #888;
  transition: 0.3s;
}
input[readonly].effect-label ~ label{
  top: -16px;
  font-size: 14px;
  color: #888;
  transition: 0.3s;
}
input[value].effect-label ~ label{
  top: -16px;
  font-size: 14px;
  color: #888;
  transition: 0.3s;
}
.fiexd-label {
  position: absolute;
  top: -16px;
  font-size: 14px;
  color: #888;
}
.b-r-6 {
  border-radius: 6px;
}

/*check-set*/
.check-set {
  width: 100%;
  position: relative;
}
.check-set .input-group {
  width: calc(100% - 77px);
}
.check-set input {
  padding-right: 30px !important;
}
.check-set.input-p-50 input {
  padding-left: 50px !important;
}
.check-set.input-p-40 input {
  padding-left: 40px !important;
}
.check-set.input-p-r-60 input {
  padding-right: 60px !important;
}
.check-set button {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
}


.check {
  position: absolute;
  top: 5px;
  width: 18px;
  height: 18px;
  background-size: cover;
  right:0;
}
.ok {
  background-image: url(../images/ic-ok.png);
}
.try {
  background-image: url(../images/ic-try.png);
}
.try-text {
  font-size: 13px;
  color: #ff6574;
  padding-top: 5px;
}

.try-text-ok {
    font-size: 13px;
    color: #3c913a;
    padding-top: 5px;
}



.text-ea:after {
  content: 'EA';
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 16px;
  color: #888;
}
.ic-search:after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/ic-search-gr.png");
  background-size: cover;
}
.input-unit {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 16px;
}
.input-unit-right {
  position: absolute;
  right: 0;
  top: 4px;
  font-size: 16px;
}
/*login-here*/
.login-here {
  padding-top: 30px;
  text-align: center;
}
.login-here p {
  font-size: 14px;
  color: #888;
  padding-bottom: 5px;
}
.login-here a {
  font-size: 16px;
  color: var(--base);
  font-weight: 500;
}
/*main-top-btn*/
.main-top-btn {
  width: 100%;
  padding: 15px 0;
}
.top-btn-item {
  padding: 14px 15px;
  border-radius: 6px;
  display: flex;
  flex-direction: row;
  align-items : center;
  cursor: pointer;
  margin-top: 5px;
}
.top-btn-item:first-child {
  margin-top: 0;
}


.tnb {
    background-color: #c0392b;
}

.cpoint {
    background-color: #5F707A;
}

.etu {
    background-color: #F0EDCC;
}


.money1 {
    background-color: #00A4E0;
}
.money2 {
    background-color: #3457A5;
}
.money3 {
    background-color: #D55252;
}

.money4 {
    background-color: #1895A3;
}



.top-btn-img {
  width: 50px;
  height: 50px;
}
.top-btn-img img {
  width: 100%;
}
.top-btn-text {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}


.top-etu-text {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: var(--base);
}



.top-btn-point {
  margin-left: auto;
  font-size: 16px;
  font-weight: 500;
  color: #fcff00;
  position: relative;
  padding-right: 12px;
}



.top-etu-point {
    margin-left: auto;
    font-size: 16px;
    font-weight: 500;
    color: var(--base);
    position: relative;
    padding-right: 12px;
}



.arrow-right:after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  top: 11px;
  right: 0px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg) translateY(-50%);
  transition: all .3s ease-in-out;
  transform-origin: 50% 0;
  z-index: 1;
}


/*main-bottom-btn*/
.main-bottom-btn {
  margin: 0 -15px;
  display: flex;
  flex-direction: row;
  justify-content : space-between;
  align-items: flex-start;
}
.bottom-btn-item {
  padding: 12px 0 15px;
  cursor: pointer;
  flex: 1;
}
.bottom-btn-img {
  width: 50px;
  margin: 0 auto;
}
.bottom-btn-img img {
  width: 100%;
}
.bottom-btn-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding-top: 8px;
}


/*lnb*/
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  height: 24px;
}
.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  padding: 0 2px;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 20px;
  height: 2px;
  background-color: #222;
  border-radius: 100px;
  position: absolute;
}
.hamburger-inner::before, .hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #222;
  border-radius: 100px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff;
}
.left .menu-icon, .right .menu-icon {
  position: absolute;
  left: -85%;
  top: 16px;
  width: 24px;
  height: 24px;
  text-align: center;
  z-index: 3002;
  display: inline-block;
  overflow: visible;
}
.right .menu-icon {
  position: fixed;
  right: 15px;
  left: auto;
}
#mobile-menu-container ul {
  padding-left: 0;
  width: 100%;
  margin: 0;
  display: block;
}
#mobile-menu-container.left, #mobile-menu-container.right {
  min-height: 100%;
  width: 85%;
  position: fixed;
  background: transparent;
  height: 100%;
  left: -85%;
  z-index: 3001;
  max-width: 100%;
  top: 0;
}

@media screen and (min-width:768px) {
#mobile-menu-container.left, #mobile-menu-container.right {
  max-width: 350px;
}
}
#mobile-menu-container.right {
  right: -85%;
  left: auto;
}
.menu {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: absolute;
  z-index: 3001;
  background: #fff;
}
.right .menu {
  right: 0;
}
 .menu::-webkit-scrollbar {
 width: 8px;
}
.menu::-webkit-scrollbar {
 background: transparent;
}
.menu::-webkit-scrollbar-thumb {
 background: rgba(0,0,0,0.2) !important;
}
#shadow-glass {
  position: fixed;
  z-index: 2900;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: none;
  top: 0;
  left: 0;
}


/*lang-area*/
.lang-area {
  height: 56px;
  width: 100%;
  background: var(--base);
  position: fixed;
  z-index: 9999;
}



/*btn-lang*/
.btn-lang > div {
  float: left;
  padding: 15px;
}
.btn-lang input[type='radio'] {
  opacity: 0;
  float: left;
  width: 1px;
  position: absolute;
}
.btn-lang input[type='radio'] + label {
  clear: none;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.btn-lang input[type='radio'] + label:last-child {
  margin-right: 0;
}
.btn-lang input[type='radio']:checked + label {
  color: #fcff00 !important;
  border-bottom: 2px solid #fcff00;
  font-weight: 700;
}



/*lnb-content*/
.lnb-content {
  position: relative;
  margin-top: 56px;
  width: 100%;
  height: calc(100% - 56px);
}
.user-area {
  background: var(--base);
  padding: 0 15px;
  height: 80px;
  position: relative;
  width: 100%;
}
.user-id {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  bottom: 25px;
  width: calc(100% - 120px);
}
.user-area button {
  width: auto;
  height: auto;
  right: 15px;
  top: inherit;
  bottom: 24px;
  padding: 0 15px;
  position: absolute;
}


/*main-bottom-btn*/
.lnb-top-btn {
  display: flex;
  flex-direction: row;
  justify-content : space-between;
  border-bottom: 1px solid #e3e9ed;
}
.lnb-top-btn-item {
  padding: 15px 0 12px;
  cursor: pointer;
  flex: 1;
  border-left: 1px solid #e3e9ed;
}
.lnb-top-btn-item:first-child {
  border-left: none;
}
.lnb-top-btn-img {
  width: 40px;
  margin: 0 auto;
}
.lnb-top-btn-img img {
  width: 100%;
}
.lnb-top-btn-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding-top: 5px;
}
/*lnb-bottom-btn*/
.lnb-bottom-btn {
  padding: 8px 15px;
}
.lnb-botton-btn-item {
  width: 100%;
  position: relative;
  font-size: 16px;
  color: #666;
  padding: 14px 0;
  cursor: pointer;
}
.lnb-bottom-btn .arrow-right:after {
  border-color: #ccc;
  top: 23px;
}
.lnb-ic:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 20px;
  background-size: cover;
  vertical-align: middle;
  margin-right: 20px;
  margin-top:-3px;
}
.lnb-reservation:before {
  background-image: url("../images/ic-reservation.png");
}
.lnb-matching:before {
  background-image: url("../images/ic-matching.png");
}
.lnb-transaction:before {
  background-image: url("../images/ic-transaction.png");
}

.lnb-alliance:before {
  background-image: url("../images/ic-alliance.png");
}


.lnb-alliance2:before {
    background-image: url("../images/ic-alliance2.png");
}
.lnb-profile:before {
  background-image: url("../images/ic-profile.png");
}
.lnb-notice:before {
  background-image: url("../images/ic-notice.png");
}
.lnb-shopping:before {
  background-image: url("../images/ic-shopping.png");
}
.lnb-otc:before {
  background-image: url("../images/ic-otc.png");
}
.lnb-game:before {
  background-image: url("../images/ic-game.png");
}
.lnb-copy:before {
  background-image: url("../images/ic-copy.png");
}
.lnb-order:before {
  background-image: url("../images/ic-order.png");
}
.lnb-qna:before {
  background-image: url("../images/ic-qna.png");
}
/*top-point*/
.top-point {
width: 100%;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-point.tnp {
  background-color: var(--base);
}
.top-point.cpoint {
  background-color: #00a4e0;
}
.top-point.etu {
  background-color: #3457a5;
}
.point-title {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.point-num {
  font-size: 16px;
  color: #fcff00;
  font-weight: 500;
}
.ic-point:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/ic-point.png");
  background-size: cover;
  margin-left: 8px;
  vertical-align: middle;
  margin-top: -2px;
}
/*tab-area*/
.tab-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.tab-area a {
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: #222;
  font-weight: 500;
  border-bottom: 2px solid #eee;
  padding: 10px 0;
}
.tab-area a.active {
  color: var(--base);
  border-color: var(--base);
}


/*btn-modal*/
.modal.on {
    opacity: 1;
    visibility: visible;
}

.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
    background: rgba(0,0,0, .7);
    transition: opacity .25s ease;
    z-index: 9999;
    overflow: auto;
}

.modal-state {
    display: none;
}

    .modal-state:checked + .modal {
        opacity: 1;
        visibility: visible;
    }

.layer {
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

    .layer .layer-content {
        display: table-cell;
        vertical-align: middle;
        position: relative;
        top: -100px;
        transition: top .25s ease;
        padding: 50px 15px;
    }

    .layer .blank {
        display: inline-block;
        width: 0;
        height: 100%;
        vertical-align: middle
    }

.modal-state:checked + .modal .layer-content {
    top: 0;
}

.modal-inner {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: auto;
    background: #fff;
    max-width: 440px;
    border-radius: 6px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 99999;
}

    .modal-close:after, .modal-close:before {
        content: '';
        position: absolute;
        width: 1px;
        height: 20px;
        background: #aaa;
        display: block;
        transform: rotate(45deg);
        left: 50%;
        margin: 9px 0 0 0;
        top: 0;
    }

    .modal-close:before {
        transform: rotate(-45deg);
    }

.modal-title {
    font-size: 20px;
    font-weight: 500;
    padding: 25px 20px;
}

.modal-content {
    padding: 5px 20px 25px;
}

.input-btn-modal {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 30px;
    cursor: pointer;
}

.modal .input-group input {
    height: 30px;
}

.modal .input-group input {
    position: relative;
    z-index: 99;
}

.modal .effect-label ~ label {
    z-index: inherit;
}

.modal .check-set input {
    padding-right: 0 !important;
}

.modal .effect-label ~ .focus-border {
    z-index: 99;
}



/*radio*/
.contact-radio {
  padding-bottom: 10px;
}
.radio-ch {
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.radio-label {
  cursor: pointer;
  font-size: 18px;
}
.radio-ch input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  height: auto;
}
.radio-ch input[type="radio"] + .radio-label:before {
  content: '';
  background: #f4f4f4;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 8px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
}
.radio-ch input[type="radio"] + .radio-label:after {
  content: '';
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin-left: -18px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
  left: 0;
  top:2px;
}
.radio-ch input[type="radio"]:checked + .radio-label:before {
  background-color: var(--base);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  left: -13px;
  top: 7px;
  z-index: 999;
}
.radio-ch input[type="radio"]:checked + .radio-label:after {
  border-color: var(--base);
}
/*radio-label-set*/
.radio-label-set .radio-ch {
 padding-top: 8px;  
  margin: 0 15px 0 18px;
}
.radio-label-set .radio-ch:last-child {
  margin: 0 0 0 40px;
}
.radio-label-set .radio-ch input[type="radio"] + .radio-label:after{
  top:10px;
}
.radio-label-set .radio-ch input[type="radio"]:checked + .radio-label:before{
  top:7px;
}
/*choice-text*/
.choice-area {
  border-radius: 6px;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: center;
  margin-top: 15px;
}
.choice-text {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 3px;
}
/*navy -info*/
.navy-info {
  background-color: var(--btn);
  border-radius: 6px;
  padding: 15px;
  margin-top: 20px;
}
.navy-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--base);
}
.navy-text {
  font-size: 20px;
  color: var(--base);
  padding: 2px 0 8px;
  letter-spacing: -.03rem;
}

.navy-text-red {
    font-size: 20px;
    color: red;
    padding: 2px 0 8px;
    letter-spacing: -.03rem;
}







/*basic -info*/
.basic-info {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 15px;
  margin-top: 20px;
}
.basic-title {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
.basic-text {
  font-size: 14px;
  color: #999;
  padding: 2px 0 8px;
  word-break: break-word;
}

.basic-text-red {
    font-size: 14px;
    color: red;
    padding: 2px 0 8px;
    word-break: break-word;
}

.email-text {
  font-size: 14px;
  color: #555;
}
.email-text:before {
  content: '';
  display: inline-block;
  background-image: url("../images/ic-email.png");
  background-size: cover;
  width: 15px;
  height: 10px;
  vertical-align: middle;
  margin-right: 5px;
}
.email-info {
  font-size: 14px;
  color: #999;
  padding-top: 2px;
}

.basic-text-black {
    font-size: 14px;
    color: black;
    padding: 2px 0 8px;
    word-break: break-word;
}




/*table*/
table {
  width: 100%;
  table-layout: fixed;  
}
th, td {
  font-size: 14px;
  padding: 5px !important;
  height: 35px;
}
th {
  font-weight: 500;
}
td {
  color: #666;
  border-bottom: 1px solid #ddd;
}


.leveltd {
    color: #666;
    border: 1px solid black;
    text-align: center;
}




.stat_fail {
    color: #ff5a5f;
    border-bottom: 1px solid #ddd;
}

.stat_ok {
    color: #048A81;
    border-bottom: 1px solid #ddd;
}


tfoot td {
  background: #eff3f6;
  color: #37497b;
  font-weight: 500;
}
/*basic-table*/
.basic-table {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.basic-table thead {
  border-top: 2px solid #222;
  border-bottom: 1px solid #222;
}
.basic-table th, .basic-table td {
  text-align: center;
}
.table-title {
  font-size: 19px;
  font-weight: 500;
  padding-bottom: 5px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
/*table-responsive*/
.table-responsive {
  width: 100%;
  overflow: auto;
}
.table-responsive table {
  white-space: nowrap;
  table-layout: auto;
}
/*card-area*/
.card-area {
  background: #eff3f6;
  padding: 0 15px 15px;
  display: inline-block;
  width: 100%;
}
.card {
  display: flex;
  flex-direction: row;
  align-items : center;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0px 20px 10px rgba(27,29,30,0.08);
  -moz-box-shadow: 0 0px 20px 10px rgba(27,29,30,0.08);
  -ms-box-shadow: 0 0px 20px 10px rgba(27,29,30,0.08);
  -o-box-shadow: 0 0px 20px 10px rgba(27,29,30,0.08);
  box-shadow: 0 0px 20px 10px rgba(27,29,30,0.08);
  width: 100%;
  padding: 15px;
  margin-top: 15px;
}

.card-img2 {
  width: 30px;
}

.card-img {
    width: 140px; /*판매화면 이미지 표시 기존width:80%*/
}

.card-img img {
  width: 100%;
}

.card-img2 img {
  width: 100%;
}

.card-text {
  padding-left: 15px;
}
.card-w {
    width: calc(100%); /*판매화면 이미지 표시 기존width: calc(100% - 80%);*/
}
.card-title {
  font-size: 19px;
  font-weight: 500;
}
.card-price {
  color: #666;
  font-size: 16px;
}
.text-yellow {
  color: #ffa200;
}
.card .radio-ch {
  margin-left: auto;
}
.d-block {
  display: block;
}
.f-left {
  float: left;
}
.card-table {
}
/*card-table*/
.card-table {
    padding-top: 14px;
    width: calc(100% - 140px); /*판매화면 이미지 표시 기존width:100%*/
    display: inline-block;
    margin-bottom: -4px;
}
.card-table th, .card-table td {
  font-size: 14px;
  height: auto;
  padding: 0 !important;
}
.card-table th {
  color: #666;
}
.card-table td {
  color: #222;
  border-bottom: 0;
  text-align: right;
}
/*card-list-area*/
.card-list-area {
  padding: 20px 15px;
  border-bottom: 1px solid #eff3f6;
  
}
.card-list {
  display: flex;
  flex-direction: row;
  align-items : center;
  width: 100%;
}
.card-list .card-img {
  width: 50px;
}
.card-number {
  font-size: 12px;
  color: #aaa;
  margin-top: -3px;
}
.card-list .card-price {
  margin-left: auto;
}
.card-list-area .card-table {
    padding-top: 8px;
    width: 100%;
    margin-bottom: 5px;
    
}
/*btn-area*/
.btn-area {
  width: 100%;
  display: inline-block;
  margin-bottom: -5px;
}
.btn-area .row {
  margin: 0 -3px;
}
.btn-area.btn-3 .row div {
  width: 33.3333%;
  float: left;
  padding: 0 3px;
}
.btn-area.btn-2 .row div {
  width: 50%;
  float: left;
  padding: 0 3px;
}
.btn-area.btn-3 .row div button, .btn-area.btn-2 .row div button, .btn-area.btn-3 .row div label, .btn-area.btn-2 .row div label {
  width: 100%;
  padding: 0 5px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  min-width: 100%;
}
/* pagenation*/

.pagenation {
  margin-top: 30px;
  text-align: center;
  position: relative;
}
.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.pagenation ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagenation li {
  float: left;
  position: relative;
}
.pagenation li.active {
  color: #222;
  display: block;
  padding: 6px 3px 8px;
  font-size: 12px;
  border: 1px solid #e1e1e1;
  width: 32px;
  height: 30px;
  z-index: 9;
  margin-left: -1px;
  background: #f7f7f7;
  font-weight: 500;
}
.pagenation li a {
  color: #aaa;
  display: block;
  padding: 6px 3px 8px;
  font-size: 12px;
  border: 1px solid #e1e1e1;
  width: 32px;
  height: 30px;
  margin-left: -1px;
}
.prev a:before, .prev-double a:before, .next a:before, .next-double a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-size: cover;
}
.prev-double a:before {
  background-image: url(../images/ic-left-double.png);
}
.prev a:before {
  background-image: url(../images/ic-left.png);
}
.next-double a:before {
  background-image: url(../images/ic-right-double.png);
}
.next a:before {
  background-image: url(../images/ic-right.png);
}
/*full-modal*/
.full-modal .layer .layer-content {
  padding: 0;
}
.full-modal .modal-inner {
  max-width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: auto;
}
.b-b-0 {
  border-bottom: 0;
}
.full-modal .modal-close:after, .full-modal .modal-close:before {
  width: 2px;
  background: #222;
  border-radius: 1px;
}
.full-modal .modal-content {
  padding: 56px 15px 50px;
}



/*text-left table*/
.text-left table th, .text-left table td {
  text-align: left;
}
.text-left table tbody th {
  border-bottom: 1px solid #ddd;
}
.text-left table th, .text-left table td {
  padding: 0 15px !important;
}
/*btn-date*/
.btn-date {
  width: 100%;
  padding-top: 15px;
  display: inline-block;
  margin-bottom: -5px;
}
.btn-date > div {
  float: left;
  width: 25%;
}
.btn-date .radio {
  margin: 0;
  float: left;
  height: 26px;
  padding: 0 !important;
}
.btn-date input[type='radio'] {
  opacity: 0;
  float: left;
  width: 1px;
  position: absolute;
}
.btn-date input[type='radio'] + label {
  clear: none;
  width: 100%;
  cursor: pointer;
  background: #f5f5f5;
  border: 1px;
  border-left: 0;
  border-style: solid;
  text-transform: uppercase;
  text-align: center;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.btn-date > div:first-child input[type='radio'] + label {
  border-radius: 6px 0 0 6px;
  border-left: 1px solid #e1e1e1;
}
.btn-date > div:last-child input[type='radio'] + label {
  border-radius: 0 6px 6px 0;
}
.btn-date input[type='radio'] + label:last-child {
  margin-right: 0;
}
.btn-date input[type='radio']:checked + label {
  color: var(--base) !important;
  background: #fff;
}
.btn-date input[type='radio'] + label {
  color: #888;
  border-color: #e1e1e1;
}
/*date-input-area*/
.date-input-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items : center;
  margin-top: 20px;
}
.from {
  width: 6%;
  text-align: center;
}
.date-input-area .input-group {
  width: 47%;
}
.date-input-area input {
  padding-right: 30px !important;
}
.ic-calendar {
  position: absolute;
  right: 0;
}
.ic-calendar:after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/ic-calendar.png);
  background-size: cover;
}
.btn-search:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../images/ic-search-wh.png");
  background-size: cover;
  vertical-align: middle;
  margin: -2px 8px 0 0;
}
/* side-menu-test */
.side-menu-test{
  flex-direction: column;
  text-align: left;
}
.list-group{
  flex-direction: column;
  line-height: 40px;
  width: 150px;
  white-space: nowrap;
}


/*chart*/
.bg {
  background: #f0f2f2;
}
.chart {
  margin: 15px auto 0;
  display: flex;
}
.chart ul {
  padding-top: 20px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  display: flex;
}
.chart ul:first-child {
  padding-top: 0;
  margin: 0 auto;
}
/* 원본
.chart-img {
  width: 50px;
  margin: 0 auto;
  padding-bottom: 3px;
}
.chart-img img {
  width: 100%;
}
*/
.chart-img2 {
    width: 50px;
    margin: 0 auto;
    padding-bottom: 3px;
}

.chart-img2 img {
    width: 100%;
}


/*좌측상단*/
.chart-img {
    position: absolute;
    top: 5px; /* 상단 여백 */
    left: 5px; /* 좌측 여백 */
    width: 24px; /* 이미지 크기 조정 */
    height: 16px;
}

    .chart-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 이미지 비율 유지 */
    }






.chart li {
  float: left;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
}
.chart li a {
  padding: 8px;
  color: #222;
  font-size: 14px;
  display: inline-block;
  border-radius: 5px;
  min-width: 100px;
  min-height: 75px;
  background: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: -5px;
}


    .chart li a:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 8px;
        left: 0;
        bottom: 0;
        z-index: 1;
    }


.orgChart {
    position: relative;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(27,29,30,0.08);
    background: #fff;
    font-size: 15px;
    color: #000;
}


.orgSelChart {
    position: relative;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(27,29,30,0.08);
    background: #c9d6de;
    font-size: 15px;
    color: #000;
}


    .chart li a.red:after {
        background-color: #e00000;
    }

    .chart li a.blue:after {
        background-color: #28c2ff;
    }

.chart li a.rank1:after {
    background-color: #FF0000;
}

.chart li a.rank2:after {
    background-color: #FFA500;
}

.chart li a.rank3:after {
    background-color: #FFFF00;
}

.chart li a.rank4:after {
    background-color: #008000;
}

.chart li a.rank5:after {
    background-color: #0000FF;
}

.chart li a.rank6:after {
    background-color: #4B0082;
}

.chart li a.rank7:after {
    background-color: #EE82EE;
}

    .chart li a.rank8:after {
        background-color: #f7e3af;
    }

    .chart li a.rank9:after {
        background-color: #a6733d;
    }

    .chart li a.rank10:after {
        background-color: #6a605c;
    }











.chart li::before, .chart li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 1px solid #c0c0c8;
  width: 50%;
  height: 20px;
}
.chart li::after {
  right: auto;
  left: 50%;
  border-left: 1px solid #c0c0c8;
}
.chart li:only-child::after, .chart li:only-child::before {
  display: none;
}
.chart li:only-child {
  padding-top: 0;
}
.chart li:first-child::before, .chart li:last-child::after {
  border: 0 none;
}
.chart li:last-child::before {
  border-right: 1px solid #c0c0c8;
}
.chart ul ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  border-left: 1px solid #c0c0c8;
  width: 0;
  height: 20px;
}
/*profile*/
.profile-title {
  font-size: 15px;
  color: var(--base);
  font-weight: 500;
  margin-top: 30px;
}
/*notice*/
.notice-search-area {
  width: 100%;
  margin: 15px 0 -5px;
  display: inline-block;
  padding: 0 15px;
}
.notice-search-area .row {
  margin: 0 -3px;
}
.notice-search-area .row > div {
  float: left;
  padding: 0 3px;
}
.notice-select {
  width: 100px;
}
.notice-search {
  width: calc(100% - 100px);
  position: relative;
}
.notice-search input {
  background: #f7f7f7;
  padding: 0 10px !important;
  height:38px;
  border-radius: 6px;
  font-size: 16px;
  padding-right: 35px !important;
  line-height: 1.4;
}
.notice-search .ic-search {
  position: absolute;
  right: 0;
}
.notice-search .ic-search:after {
  opacity: 0.6;
  top: 5px;
  right: 10px;
}
select {
  width: 100%;
  padding: 0 10px!important;
  border: 0;
  height: 38px;
  font-family: 'Roboto', 'Noto Sans KR', Arial, sans-serif;
  background: url(../images/ic-arrow.png) no-repeat 100% 50%;
  background-size: 20px;
  border-radius: 6px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 15px;
  color: #222;
  -webkit-tap-highlight-color: transparent;
  background-color: #f7f7f7;
}
select::-ms-expand {
display:none
}
/*list-area*/

.list {
  display: flex;
  flex-direction: row;
  align-items : center;
  cursor: pointer;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}
.list-text {
  width: calc(100% - 25px);
}
.list .arrow-right {
  margin-left: auto;
  position: relative;
}
.list .arrow-right:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  right: 2px;
  border-bottom: 1px solid #a5a5a5;
  border-right: 1px solid #a5a5a5;
  transform: rotate(-45deg) translateY(-50%);
  transition: all .3s ease-in-out;
  transform-origin: 50% 0;
  z-index: 1;
}
.list-num {
  font-size: 14px;
}
.text-primary {
  color: var(--base);
}
.list-user {
  font-size: 14px;
  color: var(--base);
}
.list-title {
  font-size: 18px;
  padding-top: 2px;
  font-weight: 500;
}
.list-date {
  font-size: 14px;
  color: #aaa;
}
.list-date li {
  float: left;
}
.list-date li:after {
  content: '';
  width: 1px;
  height: 8px;
  background-color: #ddd;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 5px 0;
}
.list-date li:last-child:after {
  display: none;
}
.list-content {
  padding: 20px 15px;
  font-size:16px;
  color: #666;
  word-break: keep-all;
}
.list-btn {
  position: absolute;
  right: 15px;
  width: 80px;
}
.list-btn label {
  width: 100%;
  padding: 0 5px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  min-width: 100%;
}
.list-btn-set {
  cursor: default;
}
.list-btn-set .list-text {
  width: calc(100% - 85px);
}
.list-btn .btn-sl {
  min-width: 80px;
}
/*qna*/
.qna-info {
  background: #f9f9f9;
  color: #aaa;
  font-size: 14px;
  padding: 6px 15px;
  margin: 0 -15px;
}
.text-red {
  color: #ff3050;
}
/*tree*/
.tree {
  padding-left: 30px;
  padding-top: 10px;
}
.tree li {
  list-style-type: none;
  color: #222;
  position: relative;
  margin-left: -15px;
}
.tree li:after {
  position: absolute;
  top: 1.1em;
  bottom: -1px;
  left: -15px;
  display: block;
  content: "";
  border-left: 1px dotted #666;
}
.tree li:before {
  position: absolute;
  top: 0;
  left: -15px;
  display: block;
  width: 15px;
  height: 1em;
  content: "";
  border-bottom: 1px dotted #666;
  border-left: 1px dotted #666;
}
.tree > li:first-child:before {
  border-left: none;
}
.tree > li:last-child:after, .tree > li ol li:last-child:after {
  display: none;
}
.tree li label {
  padding-left: 20px;
  cursor: pointer;
  display: block;
  white-space: nowrap;
}
.tree li input {
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: 6px;
  opacity: 0;
  cursor: pointer;
}
.tree li a {
  color: #222;
}
.tree li input + ol {
  height: 2em;
  margin: -24px 0 0 0px;
  background: url("../images/ic-expand.jpg") no-repeat;
  background-size: 15px 15px;
}
.tree li input + ol > li {
  display: none;
  margin-left: -14px !important;
  padding-left: 1px
}
.tree li input:checked + ol {
  height: auto;
  margin: -24px 0 0 0;
  padding: 24px 0 0 62px;
  background: url(../images/ic-close.jpg) no-repeat;
  background-size: 15px 15px;
}
.tree li input:checked + ol > li {
  display: block;
  margin: 0 0 0.125em;
}
.tree li input:checked + ol > li:first-child {
  margin: 0 0 0.125em;
}
.tree li .tree-img {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.tree li .tree-img img {
  width: 100%;
}
/*checkbox*/

.checkbox-label {
	cursor: pointer;
	color: #14171a;
	font-size: 14px;
}
.checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 20px;
	height: 20px;
}

.checkbox {
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.checkbox input[type="checkbox"] + .checkbox-label:before {
	content: '';
	display: inline-block;
	position: relative;
	top: 4px;
	vertical-align: top;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: rotate(-45deg) scale(0, 0);
	-moz-transform: rotate(-45deg) scale(0, 0);
	-ms-transform: rotate(-45deg) scale(0, 0);
	-o-transform: rotate(-45deg) scale(0, 0);
	transform: rotate(-45deg) scale(0, 0);
	z-index: 1;
	width: 0.58rem;
	height: 0.29rem;
	border: 2px solid #fff;
	border-top-style: none;
	border-right-style: none;
	left: -10px;
}
.checkbox input[type="checkbox"] + .checkbox-label:after {
	content: '';
	border: 2px solid #aaa;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: absolute;
	margin-left: -13px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
	left: 0;
}

.id-chk {
	margin-left: 15px;
  margin-top:20px;
}
.id-chk .checkbox-label {
	font-size: 15px;
	padding-left: 5px;
  color:#666;
}
.id-chk input[type="checkbox"]:checked + .checkbox-label:after {
	border-color: var(--base);
	background-color: var(--base);
}
.id-chk input[type="checkbox"] + .checkbox-label:after {
	border-radius: 50%;
	width: 20px;
	height: 20px;
	border-color: #aaa;
	margin-left: -15px;
	margin-top: -2px;
}
.id-chk input[type="checkbox"] + .checkbox-label:before {
	top: 5px;
	-webkit-transform: rotate(-45deg) scale(1, 1);
	-moz-transform: rotate(-45deg) scale(1, 1);
	-ms-transform: rotate(-45deg) scale(1, 1);
	-o-transform: rotate(-45deg) scale(1, 1);
	transform: rotate(-45deg) scale(1, 1);
	border: 2px solid #aaa;
	border-top-style: none;
	border-right-style: none;
	left: -14px;
}
.id-chk input[type="checkbox"]:checked + .checkbox-label:before {
	border-color: #fff;
	left: -14px;
}


/*number-input*/
.number-area {
  display: inline-block;
  margin-top:6px;
  margin-bottom: -5px;
}
.input-number {
    vertical-align: top;
    text-align: center;
    outline: none;
    color: #000 !important;
    font-size: 20px !important;
    font-weight: 700;
    width: 100px !important;
}
.input-number, .input-number-decrement, .input-number-increment {
  border: 1px solid #ddd;
  height: 40px !important;
  width: 40px;
  user-select: none;
  color: #999;
  float: left;
}
.input-number-decrement, .input-number-increment {
  display: inline-block;
  cursor: pointer;
}
.input-number-decrement {
  border-right: none;
  background: url(../images/ic-number.png) no-repeat -40px 0;
  color: transparent;
  vertical-align: top;
  height: 40px;
  background-position: 0;
  background-size: cover;
}
.input-number-increment {
  border-left: none;
  background: url(../images/ic-number.png) no-repeat -40px 0;
  color: transparent;
  vertical-align: top;
  height: 40px;
  background-position: -40px;
  background-size: cover;
}
/*order-radio*/
.order-radio{
background: #f9f9f9;
    margin: 0 -15px;
    padding: 5px 15px 10px;
   border-bottom: 1px solid #eee;
}
.order-radio-set{
  display: flex;
    justify-content: space-between;
}

.order-radio-set .radio-ch{
  width:50%;
}

.radio-label-set.order-radio .radio-ch:last-child {
    margin: 0 15px 0 18px;
}


/*progress bar 기존꺼 바에 글자가 안보임*/

progress {
    vertical-align: baseline;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1.5rem;
    overflow: hidden;
    line-height: 0;
    font-size: 1.3rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #b83232;
    transition: width 0.6s ease;
}


.progress-text {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    z-index: 0;
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 30px;
}

    .progress-text h1 {
        font-size: 1.3rem;
    }


@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
}





/*point-area*/
.point-area {
    background: #fff;
    padding: 8px 0 0;
}

.point-content-area {
    background: #f5f5f5;
    padding: 20px 0;
    display: flex;
}


    .point-content-area > div {
        width: 50%;
        text-align: center;
        position: relative;
        padding: 0 8px;
    }


        .point-content-area > div:last-child:before {
            content: '';
            width: 1px;
            height: 100%;
            background-color: #ddd;
            position: absolute;
            left: 0;
            top: 0;
        }

        .point-content-area > div:first-child:after {
            content: '';
            width: 1px;
            height: 100%;
            background-color: #ddd;
            position: absolute;
            right: 0;
            top: 0;
        }


.point-title2 {
    color: #888;
    font-size: 12px;
}

    .point-title2:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 15px;
        height: 15px;
        background-image: url("../images/ic-point.png");
        background-repeat: no-repeat;
        background-size: contain;
        margin: -2px 5px 0 0;
    }




.point-vaule {
    color: #333;
    font-weight: 700;
    font-size: 20px;
    padding-top: 5px;
    word-break: break-all;
    line-height: 1.1em;
}

    .point-vaule:after {
        content: '';
        font-size: 12px;
        margin-left: 5px;
        font-weight: normal;
    }


/*nav-menu*/
.nav_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--base);
}

.nav_menu li {
    float: left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

 .dropdown:hover .dropbtn {
    background-color: red;
}

    li.dropdown {
        display: inline-block;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}





/*loading img*/
#load {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.8;
    background: white;
    z-index: 99;
    text-align: center;
}

    #load > img {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 100;
    }








/*글자 굵은색 */
.Font-Large-Black {
    font-size: x-large;
    font-weight: bold;
    color: black;
}

.Font-Large-Red {
    font-size: x-large;
    font-weight: bold;
    color: red;
}

/*Investment set추가*/
.color_box { background-color: #eff3f6; border: 5px solid; }
.color_box .btn-primary-outline {background-color: #eff3f6;}

.color_box.type01, .color_box.type01 .btn-primary-outline {border-color: #888;}
.color_box.type01 .btn-primary-outline {color: #777;}
.color_box.type01 .btn-primary-outline:hover { background-color: #888; color: #FFF;}
.color_box.type02, .color_box.type02 .btn-primary-outline {border-color: #8041D9;}
.color_box.type02 .btn-primary-outline {color: #8041D9;}
.color_box.type02 .btn-primary-outline:hover { background-color: #8041D9; color: #FFF;}
.color_box.type03, .color_box.type03 .btn-primary-outline {border-color: #123478;}
.color_box.type03 .btn-primary-outline {color: #123478;}
.color_box.type03 .btn-primary-outline:hover { background-color: #123478; color: #FFF;}
.color_box.type04, .color_box.type04 .btn-primary-outline {border-color: #2478FF;}
.color_box.type04 .btn-primary-outline {color: #2478FF;}
.color_box.type04 .btn-primary-outline:hover { background-color: #2478FF; color: #FFF;}
.color_box.type05, .color_box.type05 .btn-primary-outline {border-color: #469840;}
.color_box.type05 .btn-primary-outline {color: #469840;}
.color_box.type05 .btn-primary-outline:hover { background-color: #469840; color: #FFF;}
.color_box.type06, .color_box.type06 .btn-primary-outline {border-color: #FFCD12;}
.color_box.type06 .btn-primary-outline {color: #FFCD12;}
.color_box.type06 .btn-primary-outline:hover { background-color: #FFCD12; color: #FFF;}
.color_box.type07, .color_box.type07 .btn-primary-outline {border-color: #FF7012;}
.color_box.type07 .btn-primary-outline {color: #FF7012;}
.color_box.type07 .btn-primary-outline:hover { background-color: #FF7012; color: #FFF;}
.color_box.type08, .color_box.type08 .btn-primary-outline {border-color: #DB0000;}
.color_box.type08 .btn-primary-outline {color: #DB0000;}
.color_box.type08 .btn-primary-outline:hover { background-color: #DB0000; color: #FFF;}


/* SECTION - BIRTH */
.info#info__birth {
    display: flex;
}

    .info#info__birth select {
        margin-left: 7px;
    }

        .info#info__birth select:first-child {
            margin-left: 0px;
        }

        .info#info__birth select::-webkit-scrollbar {
            width: 10px;
        }

        .info#info__birth select::-webkit-scrollbar-thumb {
            background-color: #b6b6b6;
            border-radius: 3px;
        }

        .info#info__birth select::-webkit-scrollbar-track {
            background-color: #ebe9e9;
            border-radius: 6px;
        }