@charset "UTF-8";
/*-------------------------------------------------
title : login-style guied style sheet
Author :Gahye Park
Create date :2024. 04. 15
-------------------------------------------------*/
/*-------------------------------------------------
title : login-variables style sheet
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
/*-------------------------------------------------
title : login-mixin style sheet 
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
/*-------------------------------------------------
title : login-variables style sheet
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
@import "/fonts/pretendard/fonts.css";
@import "/fonts/line-awesome/line-awesome.min.css";
@import "/fonts/xeicon/xeicon.min.css";

/*************************************
    # dashboard 공통 변수 
************************************/
/* font family */
/* font color */
input[class*=InpSel],
textarea[class*=InpSel],
[class*=InpSel] select {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* responsive */
/* 탭 : 공통 */
div[class^=tab-st] {
  position: relative;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

div[class^=tab-st] ul[class^=tab-st] {
  margin-bottom: 0;
}

ul[class^=tab-st] {
  position: relative;
  margin-bottom: 2.5rem;
  text-align: center;
  overflow: hidden;
}

ul[class^=tab-st] + *[class^=tit] {
  margin-bottom: 0;
}

ul[class^=tab-st] a[target=_blank] > span:after {
  display: inline-block;
  padding-left: 0.35rem;
  font-size: 0.89rem;
  font-family: Pretendard, sans-serif;
  font-weight: 700;
  content: "\f35d";
}

ul[class^=tab-st] a, ul[class^=tab-st]:before {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

div[class^=tab-st].w50 {
  width: 50%;
}

/* 탭 */
.tab-st {
  width: 100%;
  /* 탭 : 1차 탭 */
}

.tab-st1 > li, .tab-st2 > li, .tab-st3 > li {
  float: left;
}

.tab-st1 > li a, .tab-st2 > li a, .tab-st3 > li a {
  width: 100%;
}

.tab-st1 {
  background: #fff;
}

.tab-st1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E1E1E1;
}

.tab-st1 li a {
  position: relative;
  display: table;
  width: auto;
  height: 2.3rem;
  padding: 0 1.5rem;
  color: #A2A2A2;
  font-size: 0.8rem;
  font-weight: 400;
  table-layout: fixed;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.tab-st1 li a:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #7BC6AB 0%, #64A0D3 100%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  z-index: 1;
  content: "";
}

.tab-st1 li a > span {
  position: relative;
  display: table-cell;
  width: 100%;
  max-height: 1.8rem;
  line-height: 1.1;
  vertical-align: middle;
  overflow: hidden;
}

.tab-st1 li.on a {
  color: #333;
  font-weight: 700;
}

.tab-st1 li.on a:before {
  width: 100%;
}

.tab-st1 li.on a[target=_blank]:before {
  color: #333;
}

/* 탭 : 개수 지정 */
[class*=Tab_w] > li a {
  width: 100% !important;
}

.Tab_w50 > li {
  width: 50%;
}

/* tab + box */
[class^=tab-box] {
  position: relative;
  display: flex;
  height: 100%;
}

.tab-box2 {
  display: block;
  text-align: center;
}

.tab-box2 .tb-btn {
  position: relative;
  display: inline-block;
  width: 9rem;
  height: 1.8rem;
  margin: 0 0.15rem;
  background: #464a54;
  border-radius: 1rem;
  text-align: center;
}

.tab-box2 .tb-btn > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  color: #b9b9b9;
}

.tab-box2 .tb-btn.active {
  background: linear-gradient(90deg, #74c9af 0%, #268bdf 100%);
  -webkit-text-fill-color: inherit;
}

.tab-box2 .tb-btn.active > span {
  color: #fff;
}

/** input **/
/** input,select **/
input[class*=InpSel],
textarea[class*=InpSel],
[class*=InpSel] select {
  position: relative;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #DCDCDC;
  background: #fff;
  color: #333;
  z-index: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  /* font-size:.75rem; */
  /* font-size 수정 */
  font-size: 0.8rem;
}

input[class*=InpSel]::placeholder,
textarea[class*=InpSel]::placeholder,
[class*=InpSel] select::placeholder {
  color: #A2A2A2;
}

input[class*=InpSel][readonly=readonly],
textarea[class*=InpSel][readonly=readonly],
[class*=InpSel] select[readonly=readonly] {
  background: #DCDCDC;
}

[class*=InpSel]:disabled,
[class*=InpSel] select:disabled {
  border: 1px solid #DCDCDC;
  background: #F3F3F3;
}

textarea[class*=InpSel] {
  width: 100%;
  height: 7.2rem;
  padding: 0.5rem;
}

.InpSel-wrong:focus {
  outline: 0;
}

.InpSel-wrong:focus::placeholder {
  color: #A2A2A2;
}

[class*=InpSel]:not(.InpSel-wrong):not([disabled]):focus,
textarea[class*=InpSel]:not([disabled]):focus,
[class*=InpSel] select:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #7BC6AB 0%, #64A0D3 10%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  outline: 0;
  box-shadow: 0 0 0.5rem rgba(123, 198, 171, 0.3), 0 0 0.5rem rgba(100, 160, 211, 0.3);
}

input[class*=InpSel].InpSel-wrong:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #B12727 0%, #B12727 10%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  outline: 0;
  box-shadow: 0 0 0.5rem rgba(177, 39, 39, 0.3);
}

[class*=InpSel] textarea {
  resize: none;
}

/* select required - HJ */
[class*=InpSel] select.InpSel-wrong:focus {
  border: double 1px transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(90deg, #B12727 0%, #B12727 10%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  outline: 0;
  box-shadow: 0 0 0.5rem rgba(177, 39, 39, 0.3);
}

/* button */
[class^=btn-style] {
  position: relative;
  display: inline-block;
  min-width: 2rem;
  height: 2rem;
  padding: 0 1rem;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

[class^=btn-style] span {
  position: relative;
  z-index: 2;
}

/* box-con */
.box-con {
  width: 25rem;
  margin: 0 auto;
  padding-top: 0.5rem;
}

.box-con .box-tit {
  color: #262626;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.box-con .find-box {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0.9rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.box-con .find-box > span {
  color: #666;
  letter-spacing: -0.5px;
}

.box-con .find-box > div > div {
  display: flex;
  align-items: center;
}

.box-con .find-box > div > div > span {
  width: 7rem;
  color: #262626;
  font-weight: 500;
}

.box-con .find-box label {
  width: 7rem;
}

.box-con .find-box > div > div > span:nth-child(2) {
  color: #666;
  font-weight: 400;
  width: auto;
}

.box-con .find-box > div > div > span:nth-child(2) > strong {
  font-weight: 500;
  color: #262626;
  margin-right: 0.2rem;
}

.box-con .find-box > div > div > input {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 0.25rem;
  background: #fff;
  padding: 0.5rem 0.9rem;
}

.box-con .find-box > div > div:nth-child(1) {
  margin-bottom: 0.5rem;
}

.box-con > .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.box-con .btn-style1 {
  background: linear-gradient(90deg, #7BC6AC 0%, #65A1D3 100%);
  line-height: 2rem;
  width: 10rem;
}

.box-con .btn-style1:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 0.25rem;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  box-sizing: border-box;
}

.box-con .btn-style2 {
  background: #fff;
  line-height: 2rem;
  width: 10rem;
  color: #777;
  border: 1px solid #dcdcdc;
}



/* respoinsive */
@media (min-width: 769px) {
  /* 행추가 */
  div[class*=tbl-st] .tab-st {
    /* 탭 : 1차 탭 */
    /* 탭 :2차 탭 */
  }

  div[class*=tbl-st] .tab-st1 li:not(.on) a:hover {
    color: #333;
    font-weight: 700;
  }

  div[class*=tbl-st] .tab-st2 li.on a:hover, div[class*=tbl-st] .tab-st2 li.on a:focus, div[class*=tbl-st] .tab-st2 li.on a:hover:after, div[class*=tbl-st] .tab-st2 li.on a:focus:after {
    color: #22499d;
    font-weight: 600;
  }

  /** input **/
  /* input,select */
  input[class*=InpSel], textarea[class*=InpSel], [class*=InpSel] select {
    /*color: #fff;*/
    border-color: #dcdcdc !important;
  }

  input[class*=InpSel]:not(.InpSel-wrong):hover, textarea[class*=InpSel]:hover, [class*=InpSel] select:hover {
    border-color: #8c92a3;
    background: transparent;
    background-image: none !important;
    background-origin: inherit !important;
  }

  .btn-style1:hover {
    color: #7BC6AB;
  }

  .btn-style1:hover:before {
    opacity: 1;
  }

  .btn-style2:hover {
    color: #000;
    background: #dcdcdc;
  }
}