@charset "UTF-8";
/*=================================================
            바디
=================================================*/
html.submenu-open {
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  min-width: 320px;
  font-family: "Nanum Square", sans-serif;
}

body.popup-body {
  min-width: 100%;
}

/*================================
            폰트 컬러
================================*/
.font-point {
  color: #00b0b5 !important;
}

.font-orange {
  color: #ff7862 !important;
}

.font-green {
  color: #2da490 !important;
}

.font-gray {
  color: #7a797d !important;
}

.font-black {
  color: #000 !important;
}

.font-white {
  color: #fff !important;
}

/*================================
            배경 컬러
================================*/
.bg-point {
  background-color: #00b0b5 !important;
}

.bg-blue {
  background-color: #00b0b5 !important;
}

.bg-orange {
  background-color: #ff7862 !important;
}

.bg-green {
  background-color: #2da490 !important;
}

.bg-gray {
  background-color: #555 !important;
}

.bg-gray-light {
  background-color: #b5b5b5 !important;
}

.nav-wrap {
  position: relative;
  width: 100%;
  padding-top: 90px;
  color: #4d4d4d;
}

.nav-wrap .nav-list-wrap {
  padding-left: 50px;
}

.nav-wrap .nav-list-wrap .nav-list.depth-1 {
  margin-bottom: 20px;
}

.nav-wrap .nav-list-wrap .nav-list.depth-1 .img {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-wrap .nav-list-wrap .nav-list.depth-1 > .menu-text {
  position: relative;
  margin-left: 10px;
  margin-bottom: 11px;
  padding-bottom: 11px;
  border-bottom: 2px solid #e0e0e0;
  font-size: 17px;
  font-weight: 900;
  color: #222;
}

.nav-wrap .nav-list-wrap .nav-list.depth-1 .sub-menu-list-wrap {
  z-index: 200;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2 > .sub-menu-list-wrap {
  display: none;
  padding: 5px 0 5px 50px;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2 > .menu-text {
  position: relative;
  font-weight: 700;
  padding-left: 30px;
  padding-right: 40px;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2 > .menu-text .triangle {
  position: absolute;
  top: 45%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transform: translateY(-50%) rotate(135deg);
  z-index: 1;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2.open {
  background-color: #e0e9ff;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2.open .menu-text {
  color: #009498;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2.open .menu-text .triangle {
  top: 60%;
  border-color: #009498;
  transform: translateY(-50%) rotate(-45deg);
}

.nav-wrap .nav-list-wrap .nav-list.depth-2.open > .sub-menu-list-wrap {
  display: block;
  background-color: #f2f6ff;
}

.nav-wrap .nav-list-wrap .nav-list.depth-2.open > .sub-menu-list-wrap .menu-text {
  color: #4d4d4d;
}

.nav-wrap .nav-list-wrap .nav-list.depth-3 .sub-menu-list-wrap {
  padding-left: 20px;
}

.nav-wrap .menu-text {
  display: block;
  padding: 11px 10px 11px 0;
  font-size: 15px;
  color: #4c4c4c;
}

@keyframes move {
  30%, 100% {
    opacity: 0;
    transform: translate(120px, 0);
  }
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
}

/* header */
/*=================================================
        사이드 네비게이션
=================================================*/
#lnb {
  position: absolute;
  top: 0;
  float: left;
  width: 200px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1200px) {
  #lnb {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

.lnb-close #lnb {
  transform: translateX(-9999%);
  -webkit-transform: translateX(-9999%);
}

@media screen and (max-width: 1200px) {
  .lnb-close #lnb {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

.lnb-open #lnb {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

#lnb .lnb-tab-wrap {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #00b0b5;
}

#lnb .lnb-tab-wrap .lnb-tab {
  float: left;
  width: 50%;
  height: 53px;
  line-height: 53px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

#lnb .lnb-tab-wrap .lnb-tab.full {
  float: none;
  width: 100%;
}

#lnb .lnb-tab-wrap .lnb-tab.active {
  border-bottom: 3px solid #ff7862;
  color: #fff;
}

#lnb .btn-lnb-trigger {
  position: absolute;
  top: 150px;
  right: -35px;
  width: 35px;
  height: 76px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-image: url(../../imgs/common/btn_lnb_trigger.png);
  outline: none;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 1200px) {
  #lnb .btn-lnb-trigger {
    display: none;
  }
}

#lnb .practice-info {
  padding: 18px 15px;
  background-color: #f6faff;
}

#lnb .practice-info .class-info {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #00b0b5;
}

#lnb .practice-info .class-info .list {
  float: left;
}

#lnb .practice-info .class-info .list:after {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  width: 4.5px;
  height: 7px;
  margin: 0 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-image: url(../../imgs/common/icon_lnb_arrow_blue.png);
}

#lnb .practice-info .class-info .list:last-child:after {
  content: none;
}

#lnb .practice-info .place-info,
#lnb .practice-info .date-info {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #111;
}

#lnb .practice-info .date-info {
  margin-bottom: 0;
  font-weight: 400;
}

#lnb .lbn-nav-wrap .list {
  display: table;
  min-height: 53px;
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #000;
}

#lnb .lbn-nav-wrap .list.depth-1 {
  background-color: #f0f1f3;
}

#lnb .lbn-nav-wrap .list.depth-2 {
  position: relative;
  background-color: #fff;
}

#lnb .lbn-nav-wrap .list.depth-2:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 4.5px;
  height: 7px;
  margin-top: -3.5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-image: url(../../imgs/common/icon_lnb_arrow_black.png);
}

#lnb .lbn-nav-wrap .list.depth-2.active {
  color: #ff7862;
}

#lnb .lbn-nav-wrap .list.depth-2.active:after {
  background-image: url(../../imgs/common/icon_lnb_arrow_orange.png);
}

#lnb .lbn-nav-wrap .list > * {
  display: table-cell;
  vertical-align: middle;
}

.top-wrap {
  margin-bottom: 10px;
}

.top-wrap .btn-search {
  float: left;
  margin-right: 15px;
}

.bread-crumb {
  display: inline-block;
  width: calc(100% - 527px);
  padding: 8px 0;
}

.bread-crumb li {
  position: relative;
  float: left;
  margin-right: 8px;
  padding-left: 12px;
  line-height: 1.5;
  font-family:  "맑은 고딕", "Malgun Gothic", "애플 SD 산돌고딕 Neo", "Apple SD Gothic Neo", sans-serif ;
  font-size: 12px;
  color: #858585;
}

.bread-crumb li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-image: url(../../imgs/common/icon_location_arrow.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bread-crumb li:first-child {
  padding-left: 0;
}

.bread-crumb li:first-child:before {
  display: none;
}

/*=================================================
          공통 레이아웃 (고정형 공통)
=================================================*/
.page-content-wrap {
  position: relative;
  /* padding-top: 89px; */
  padding-top: 54px;
  padding-bottom: 40px;
  min-height: calc(100vh - 200px);
  z-index:1;
}
.page-content-wrap.type-bt-btn {padding-bottom:65px;}
@media screen and (min-width: 1024px) {
  .page-content-wrap {
    min-height: calc(100vh - 205px);
  }
}

/*=================================================
        서브페이지 공통 레이아웃
=================================================*/
.sub-article-wrap {
  min-height: 800px;
  padding: 30px 40px 50px;
  border-radius: 4px;
  background-color: #fff;
  min-height: 500px;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 1200px) {
  .sub-article-wrap {
    padding: 30px 50px 50px;
  }
}

.has-lnb .sub-article-wrap {
  min-height: 750px;
  margin-left: 220px;
}

@media screen and (max-width: 1200px) {
  .has-lnb .sub-article-wrap {
    margin-left: 0;
  }
}

.lnb-close .has-lnb .sub-article-wrap {
  margin-left: 0;
}

.lnb-open .has-lnb .sub-article-wrap {
  margin-left: 220px;
}

/*=================================================
  [button] deaulft style 정의
=================================================*/
.btn-sm, .btn-md, .btn-lg, .btn-300, .btn-file, .btn-del {
  display: inline-block;
  margin-right: 4px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 38px;
  background-size: inherit;
  vertical-align: middle;
  cursor: pointer;
}

.btn-sm:hover, .btn-md:hover, .btn-lg:hover, .btn-300:hover, .btn-file:hover, .btn-del:hover {
  color: #fff;
}

.btn-sm:focus, .btn-md:focus, .btn-lg:focus, .btn-300:focus, .btn-file:focus, .btn-del:focus {
  color: #fff;
}

.btn-sm:last-child, .btn-md:last-child, .btn-lg:last-child, .btn-300:last-child, .btn-file:last-child, .btn-del:last-child {
  margin-right: 0;
}

/*=================================================
  [button] size 정의
=================================================*/
.btn-sm {
  width: 100px;
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  font-weight: 700;
}

.btn-md {
  width: 150px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
}

.btn-lg {
  width: 160px;
  height: 50px;
  line-height: 50px;
}

.btn-300 {
  width: 300px;
  height: 50px;
  line-height: 50px;
  font-weight: 400;
}

.btn-full {
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-right: 0;
  border-radius: 3px;
  cursor: pointer;
}

.bottom-fixed-button {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 55px;
  font-size: 0;
  text-align: center;
  z-index: 1;
}

html.keypad-open .bottom-fixed-button {
  position: relative;
}

.btn-fixed-sm, .btn-fixed-md, .btn-fixed-lg, .btn-fixed-full {
  display: inline-block;
  height: 100%;
  font-size: 15px;
  color: #fff;
  vertical-align: middle;
  cursor: pointer;
}

.btn-fixed-sm {
  width: 25%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-fixed-md {
  width: 50%;
}

.btn-fixed-lg {
  width: 75%;
}

.btn-fixed-full {
  width: 100%;
}

/*=================================================
  [button] icon 정의
=================================================*/
.icon-list:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 13px;
  height: 12px;
  background-image: url(../../imgs/6/3/icon_btn_list.png);
}

.icon-check:before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 16px;
  height: 11px;
  background: url(../../imgs/common/icon_button_check.png) no-repeat center/16px 11px;
}

.icon-down:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 10px;
  height: 11px;
  background-image: url(../../imgs/6/3/icon_btn_down.png);
}

.icon-document:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 2px;
  width: 10px;
  height: 14px;
  background-image: url(../../imgs/6/3/icon_document.png);
  background-size: cover;
}

.icon-history:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 2px;
  width: 12px;
  height: 14px;
  background-image: url(../../imgs/3/4/icon_history.png);
  background-size: cover;
}

.icon-down-arrow-gray:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 2px;
  width: 9px;
  height: 6px;
  background-image: url(../../imgs/2/6/icon_select_gray.png);
  background-size: cover;
}

/*=================================================
  [button] 파일 첨부 버튼
=================================================*/
.btn-file {
  width: 160px;
  height: 43px;
  line-height: 43px;
  margin-right: 0;
  border: 1px solid #00b0b5;
  color: #00b0b5;
  font-size: 14px;
}

.btn-file:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-image: url(../../imgs/6/3/icon_btn_file.png);
}

.btn-file:hover {
  color: #00b0b5;
}

.btn-file:focus {
  color: #00b0b5;
}

.btn-del {
  width: 160px;
  height: 43px;
  line-height: 43px;
  margin-right: 0;
  border: 1px solid #00b0b5;
  color: #00b0b5;
  font-size: 14px;
}

.btn-del:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: inherit;
  background-image: url(../../imgs/6/3/icon_btn_del.png);
  vertical-align: middle;
}

.btn-del:hover {
  color: #00b0b5;
}

.btn-del:focus {
  color: #00b0b5;
}

.btn-outline {
  border: 1px solid #00b0b5;
  background-color: #fff;
  color: #00b0b5;
}

.btn-outline:hover {
  color: #00b0b5;
}

.btn-outline:focus {
  color: #00b0b5;
}

.btn-outline.icon-down:before {
  background-image: url(../../imgs/6/3/icon_btn_down_blue.png);
}

.btn-outline-gray {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #a3a3a3;
  box-shadow: none;
}

.btn-outline-gray:focus {
  color: #a3a3a3;
}

.btn-outline-gray:hover {
  color: #a3a3a3;
}

/*==============================================
          검색 돋보기 버튼 / 창 확대 버튼
===============================================*/
.btn-search, .btn-zoom, .btn-plus, .btn-choice, .pagination button {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.btn-search {
  border: 1px solid #dee2e6;
  background-image: url(../../imgs/6/3/icon_search.png);
}

.btn-zoom {
  background-image: url(../../imgs/6/3/icon_expansion.png);
  background-color: #dfebf9;
}

.btn-zoom.bg-green {
  background-image: url(../../imgs/6/3/icon_expansion_white.png);
}

.btn-plus {
  background-image: url(../../imgs/6/3/icon_plus.png);
  background-color: #00b0b5;
}

/*==============================================
          popup 선택버튼
===============================================*/
.btn-choice {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  line-height: 32px;
  background-color: #999;
}

.btn-choice:hover {
  color: #fff;
}

/*==============================================
          pagination 이전,다음 버튼
===============================================*/
.pagination button {
  border: 1px solid #dee2e6;
}

.pagination .prev {
  background-image: url(../../imgs/common/icon_arrow_prev.png);
}

.pagination .start {
  background-image: url(../../imgs/common/icon_arrow_start.png);
}

.pagination .next {
  background-image: url(../../imgs/common/icon_arrow_next.png);
}

.pagination .end {
  background-image: url(../../imgs/common/icon_arrow_end.png);
}

/*=================================================
    btn-go-top
=================================================*/
.btn-go-top {
  display: none;
  position: fixed;
  overflow: hidden;
  right: 20px;
  bottom: 75px;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 1s;
  -webkit-transition: background-color 1s;
  z-index: 500;
}

.btn-go-top.has-footer {
  bottom: 65px;
}

.btn-go-top.show {
  display: block;
}

.btn-go-top:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../../imgs/common/icon_btn_top.png) no-repeat center/15px 8px;
}

.btn-go-top.bottom-fixed {
  position: absolute;
  top: -30px;
}

html.keypad-open .btn-go-top {
  bottom: 20px;
}

@media screen and (min-width: 992px) {
  .btn-go-top:hover {
    border: 0;
    background-color: #02388b;
    color: #fff;
  }
}

select {
  outline: none;
  border: none;
  border-bottom: 1px solid #dee2e6;
  width: 100%;
  height: 40px;
  padding: 0;
  padding-left: 10px;
  padding-right: 24px;
  background-image: url(../../imgs/common/icon_select_arrow.png);
  background-repeat: no-repeat;
  background-position: center right 14px;
  background-size: 9px 4px;
  background-color: #fff;
  font-size: 15px;
  -webkit-appearance: none;
}

select:-ms-expand {
  display: none;
}

.page-content-wrap.temp select, select:disabled {
  pointer-events: none;
  background-image: url(../../imgs/common/icon_select_arrow_gray.png);
}

select:disabled {
  color: #000;
}

.bread-search-wrap .select2 {
  width: 130px;
  margin: 0 3px;
}

.search-wrap .select2 {
  width: 150px;
  font-weight: 700;
  margin-right: 10px;
}

.search-wrap .select2 .select2-selection--single .select2-selection__rendered {
  line-height: 33px;
}

html.search-open .search-wrap .select2 .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1.5em;
}

html.search-open .select2-container {
  z-index: 1510;
}

.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 7px;
}

.select2-container--default .select2-selection--single {
  border: none;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  color: #000;
  border-bottom: 1px solid #dee2e6;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #7a797d;
}

html.search-open .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #222;
}

.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #dee2e6;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid #dee2e6;
}

.select2-container--open .select2-dropdown--below {
  border-top: 1px solid #dee2e6;
}

.select2-results__option {
  font-size: 15px;
}

.select2-results__option.is-require {
  background-color: #dfebf9;
  color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-top-color: #00b0b5;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-bottom-color: #00b0b5;
}

.select2-container .select2-selection--single {
  height: 40px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 10px;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #fff;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__arrow b {
  border-top-color: #d2d2d2;
}

.select2-container--default .select2-selection--single {
  border: none;
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

*::-ms-backdrop, .inner .select2-container .select2-selection--single {
  height: 28px;
}

.board-st2 .board-write-title-wrap .select2-selection--single {
  height: 40px;
}

.board-st2 .board-write-title-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 37px;
  font-size: 16px;
  padding-left: 0;
  color: #000;
}

.board-st2 .board-write-title-wrap .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #7a797d;
}

.board-st2 .board-write-title-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}

input {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #dee2e6;
  outline: none;
  font-size: 15px;
  vertical-align: top;
  -webkit-appearance: none;
}

input[type="text"], input[type="number"] {
  padding-left: 10px;
  padding-right: 30px;
}

input[type="text"]::-ms-clear, input[type="number"]::-ms-clear {
  display: none;
}

input[type="text"].diagnosis, input[type="number"].diagnosis {
  font-family: "Nanum Square", sans-serif;
}

input[type="search"] {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

input.m-confirm-num {
  width: 33px;
  border-bottom: 1px solid #dee2e6;
  font-family: "Dotum", sans-serif;
  font-size: 15px;
  color: #000;
  text-align: center;
}

.box-content input {
  line-height: 12px;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked ~ .custom-checked {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 4px solid #b1cbec;
  border-radius: 50%;
  background-color: #fff;
}
/*
.page-content-wrap.temp input {
  pointer-events: none;
}
*/
.board-wrap input {
  width: 250px;
  height: 33px;
  margin-right: 10px;
  border-bottom: 1px solid #dee2e6;
  border-width: 1px;
  font-size: 12px;
}

.board-wrap input::placeholder {
  color: #7a797d;
  font-weight: 600;
}

.board-wrap input::-webkit-input-placeholder {
  color: #7a797d;
  font-weight: 600;
}

.board-wrap input:-ms-input-placeholder {
  color: #7a797d;
  font-weight: 600;
}

.info-content.date input {
  background-image: url(../../imgs/common/icon_calendar.svg);
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center right 10px;
  cursor: pointer;
}

.page-content-wrap.temp .info-content.date input, .info-content.date input:read-only {
  background-image: url(../../imgs/common/icon_calendar_gray.png);
}

.info-content.time input {
  display: inline-block;
  width: calc((100% - 120px)/4);
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  vertical-align: middle;
}

input.diagnosis {
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-image: url(../../imgs/6/3/icon_search.png);
}

.checkbox .etc {
  display: inline-block;
  margin-left: 7px;
  padding-left: 7px;
  width: 250px;
  height: 32px;
  line-height: 32px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.checkbox.st-2 input[type="radio"] {
  display: none;
}

.checkbox.st-2 input[type="radio"]:checked ~ .custom-checked {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 4px solid #00b0b5;
  border-radius: 50%;
  background-color: #fff;
}

.reset-btn {
  position: absolute;
  top: 10px;
  right: 3px;
  display: none;
  width: 21px;
  height: 21px;
  cursor: pointer;
}

.reset-btn.active {
  display: inline-block;
}

.info-content .reset-btn {
  width: 19px;
  opacity: 0.3;
}

.info-content.date .reset-btn,
.info-content.time .reset-btn {
  right: 50px;
}

.reset-btn.plus {
  display: inline-block;
  top: -3px;
  right: 0px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #00b0b5;
  opacity: 1;
}

.reset-btn i.plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 40px;
  height: 100%;
  background: url(../../imgs/common/icon_plus.png) no-repeat center/14px;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.search-btn .search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 40px;
  height: 100%;
  background: url(../../imgs/common/icon_search_green.png) no-repeat center/20px;
}

.checkbox {
  display: inline-block;
  position: relative;
  min-width: 16px;
  min-height: 16px;
  margin: 0px 18px 0 7px;
  vertical-align: middle;
  cursor: pointer;
}

.checkbox.mw-155 {
  min-width: 155px;
}

.checkbox.mw-100 {
  min-width: 100px;
}

.checkbox:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #dee2e6;
  vertical-align: middle;
}

.checkbox .text {
  padding-left: 23px;
  line-height: 16px;
}

.checkbox-img {
  display: inline-block;
  position: relative;
  min-width: 16px;
  min-height: 16px;
  margin: 0px 18px 0 7px;
  vertical-align: middle;
}

.checkbox-img input[type='checkbox'],
.checkbox-img input[type='radio'] {
  display: none;
}

.checkbox-img input[type='checkbox']:checked ~ .custom-checked,
.checkbox-img input[type='radio']:checked ~ .custom-checked {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 12.5px;
  height: 8.5px;
  background-color: transparent;
  background-image: url(../../imgs/common/icon_custom_checkbox.png);
  background-repeat: no-repeat;
  background-position: 50%;
}

.checkbox-img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #555;
  vertical-align: middle;
}

.checkbox-img .text {
  padding-left: 23px;
  line-height: 13px;
  font-weight: 900;
}

.checkbox-square.checkbox-img input:checked ~ .custom-checked {
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: none;
  background-color: #00b0b5;
  background-image: url(../../imgs/common/icon_custom_checkbox_white.png);
}

.checkbox-square.checkbox-img:before {
  border-radius: 2px;
  border: 1px solid #dee2e6;
  background-color: #fff;
  vertical-align: middle;
}

.checkbox-square.checkbox-img .text {
  padding-left: 25px;
  line-height: 1.76;
  font-size: 13px;
  font-weight: 700;
}

.checkbox-square-st2.checkbox-img input:checked ~ .custom-checked {
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 0;
  border: 1px solid #555;
  background-color: #fff;
  background-image: url(../../imgs/common/icon_custom_checkbox.png);
}

.checkbox-square-st2.checkbox-img:before {
  border-radius: 0;
  vertical-align: middle;
}

.checkbox-square-st2.checkbox-img .text {
  padding-left: 25px;
  line-height: 1.76;
  font-size: 13px;
  font-weight: 700;
}

.checkbox-square-st2.color-blue.checkbox-img:before {
  border-color: #dee2e6;
}

.checkbox-square-st2.color-blue.checkbox-img input:checked ~ .custom-checked {
  border-color: #dee2e6;
  background-image: url(../../imgs/common/icon_custom_checkbox_blue.png);
}

.bottom-checkbox-wrap {
  position: relative;
  height: 100%;
}

.bottom-checkbox-wrap .bottom-checkbox {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  cursor: pointer;
}

.bottom-checkbox-wrap .bottom-checkbox .checkbox-input {
  display: none;
}

.bottom-checkbox-wrap .bottom-checkbox .checkbox-input[type=checkbox]:checked ~ .custom-checked {
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../../imgs/common/icon_listbox_checked.png) no-repeat center/15px 11px;
}

.bottom-checkbox-wrap .bottom-checkbox:before {
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}

.bottom-checkbox-wrap .bottom-checkbox .text {
  margin-left: 28px;
}

.title-head {
  margin-top: 35px;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 900;
}

/*=================================================
            아이콘
=================================================*/
.icon-menu, .icon-personal, .icon-home, .icon-calendar, .icon-home-black, .icon-search, .icon-write, .icon-head-close, .icon-head-close-wh, .icon-scope, .icon-person, .icon-pharmacy, .icon-board, .icon-note {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 30px;
}

.icon-menu {
  flex: 1;
  background-size: 20px 20px;
  background-image: url(../../imgs/common/icon_menu.png);
}

.icon-personal {
  flex: 1;
  background-size: 21px 20px;
  background-image: url(../../imgs/common/icon_personal.png);
}
 
.icon-calendar {
  flex: 1;
  background-size: 25px 25px;
  background-image: url(../../imgs/common/icon_calendar_wh.png);
}
.icon-home {
  flex: 1;
  background-size: 22px 20px;
  background-image: url(../../imgs/common/icon_home.png);
  transform: translateY(-2px);
}

.icon-home-black {
  flex: 1;
  background-size: 25px 22px;
  background-image: url(../../imgs/common/icon_home_b.png);
}

.icon-search {
  flex: 1;
  background-size: 19px 20px;
  background-image: url(../../imgs/common/icon_search.png);
}

.icon-write {
  flex: 1;
  background-size: 21px 21px;
  background-image: url(../../imgs/common/icon_write.png);
}

.icon-head-close {
  flex: 1;
  background-size: 18px 19px;
  background-image: url(../../imgs/common/icon_header_close.png);
}
.icon-head-close-wh {
  flex: 1;
  background-size: 18px 19px;
  background-image: url(../../imgs/common/icon_header_close_wh.png);
}
.icon-scope {
  background-size: 29px 29px;
  background-image: url(../../imgs/2/icon_scope.png);
}

.icon-person {
  background-size: 22px 20px;
  background-image: url(../../imgs/common/icon_person.png);
}

.icon-pharmacy {
  background-size: 24px 23px;
  background-image: url(../../imgs/common/icon_pharmacy.png);
}

.icon-board {
  background-size: 24px 27px;
  background-image: url(../../imgs/common/icon_board.png);
}

.icon-note {
  background-size: 24px 23px;
  background-image: url(../../imgs/common/icon_note.png);
}

.icon-openfile:after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 13px;
  height: 13px;
  background: url(../../imgs/common/icon_fileopen.svg) no-repeat center/13px;
  transform: translateY(1px);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 320px;
  /* height: 89px; */
  height: 54px;
  line-height: 54px;
  color: #fff;
  background-color: #00b0b5;
  z-index: 1500;
}

header .header-inner {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  width: 100%;
  height: 54px;
  padding: 0 10px;
  background-color: #00b0b5;
  z-index: 10;
  line-height:54px;
}

header .header-inner .title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
}
header .header-inner .title.al-c {text-align:center;}

header .header-inner .title .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .header-white {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
}

header .arrow-back {
  display: block;
  width: 32px;
  flex: 1 1 0%;
  background: url(../../imgs/common/icon_arrow_back.png) no-repeat center/12px 20px;
}

header .button-wrap {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}

header .button-wrap:first-child {
  padding-right: 10px;
}

header .button-wrap .text-button {
  margin-right: 10px;
  text-align: right;
  padding: 0;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.header.has-submenu .title .text:after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4.5px 0 4.5px;
  border-color: #fff transparent transparent transparent;
  vertical-align: middle;
}

html.submenu-open .header.has-submenu .title .text:after {
  border-width: 0 4.5px 4px 4.5px;
  border-color: transparent transparent #ffffff transparent;
}

.header .header-submenu {
  position: absolute;
  /* top: 89px; */
  top: 54px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  display: none;
}

html.submenu-open .header .header-submenu {
  display: block;
}

.header .header-submenu .menu-list {
  position: relative;
  z-index: 3;
}

.header .header-submenu .menu {
  display: block;
  height: 50px;
  padding-left: 35px;
  border-bottom: 1px solid #eee;
  line-height: 50px;
  font-size: 15px;
  color: #000;
}

.search-wrap {
  background-color: green;
  position: fixed;
  width: 100%;
  padding: 15px 0;
  top: 0;
  z-index: 1501;
  font-size: 0;
  background-color: #00b0b5;
  display: none;
}

html.search-open .search-wrap {
  display: block;
}

.search-wrap .search-select {
  display: inline-block;
  margin-right: 5px;
  width: 147px;
  height: 40px;
  font-size: 15px;
  vertical-align: middle;
}

.search-wrap .search-text {
  position: relative;
  display: inline-block;
  width: calc(100% - 152px);
  height: 40px;
  vertical-align: middle;
}

.search-wrap .search-text input {
  padding-left: 10px;
  padding-right: 30px;
}

.search-wrap .search-text input::placeholder {
  color: #b2b2b2;
}

.search-wrap .search-text .reset-btn {
  right: 5px;
  opacity: 0.4;
}

.search-wrap .select2-container--default .select2-selection--single {
  border-radius: 0;
}

.search-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  border-bottom: 0;
}

.search-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.search-wrap .search-close-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  background: url(../../imgs/common/icon_search_close.png) no-repeat 8px/18px 20px;
  vertical-align: middle;
  cursor: pointer;
}

.header-dim-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 1;
  opacity: 0;
  transition: opacity .5s;
  display: none;
}

html.submenu-open .header-dim-bg {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

html.search-open .header-dim-bg {
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.dotdotdot {
  visibility: hidden;
}

.dotdotdot.dot-complete {
  visibility: visible;
}

.preparation-wrap {
  padding-top: 105px;
  text-align: center;
}

.preparation-wrap .img {
  max-width: 180px;
}

.preparation-wrap .text {
  margin: 40px 0 30px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

/*=================================================
        푸터
=================================================*/
#footer {
  position: relative;
  width: 100%;
  padding: 20px 10px 0;
  background-color: #e7e8ec;
  text-align: center;
  font-size: 12px;
  z-index:1;
}

#footer .top-wrap {
  color: #808080;
}

#footer .company-info-wrap {
  padding: 10px 10px 30px;
  border-bottom: 1px solid #d2d2d2;
  line-height: 1.33;
  color: #999;
}

#footer .copyright {
  display: block;
  margin-top: 10px;
}

#footer .company-name {
  padding: 20px 10px;
  font-size: 13px;
  font-weight: 900;
  color: #808080;
}

#footer .list {
  display: inline-block;
  vertical-align: middle;
}

#footer .list:after {
  content: '';
  display: inline-block;
  margin: 0 3px 0 8px;
  width: 1px;
  height: 12px;
  background: #999;
  vertical-align: middle;
}

#footer .list:last-child:after {
  content: none;
}

#footer .footer-top .list .text {
  display: inline-block;
  padding: 10px 0 10px;
}

/*=================================================
    프로젝트 공통 알림 팝업 커스텀
=================================================*/
.alert-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1500;
  padding: 0 15px;
  background-color: rgba(0, 0, 0, 0.25);
  text-align: center;
}

.alert-modal .modal-dialog {
  width: 100%;
  max-width: 432px;
  margin: 250px auto;
  background-color: #fff;
  border-radius: 4px;
}

.alert-modal .modal-dialog .modal-header {
  position: relative;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  border-bottom: 1px solid #ced4da;
  font-size: 16px;
  color: #000;
}

.alert-modal .modal-dialog .modal-header .btn-modal-close {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 14.5px;
  height: 14.5px;
  border: 0;
  background-color: transparent;
  background-image: url(../../imgs/common/btn_alert_close.png);
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  transform: translateY(-50%);
}

.alert-modal .modal-dialog .modal-body {
  padding: 55px 30px 45px;
}

.alert-modal .modal-dialog .modal-body .modal-text {
  margin-bottom: 45px;
  font-size: 20px;
  color: #000;
}

.popup-wrap .profile-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 10px auto;
  border-radius: 50%;
  background-color: #dee2e6;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

.popup-wrap .profile-info {
  text-align: center;
  margin-bottom: 25px;
  color: #000;
}

.popup-wrap .profile-info > * {
  display: inline-block;
}

.popup-wrap .profile-info .name {
  font-size: 14px;
  font-weight: 700;
}

.popup-wrap .profile-info .year {
  font-size: 12px;
  font-weight: 400;
}

.popup-wrap .profile-info .year:before {
  content: "";
  display: inline-block;
  height: 8px;
  width: 1px;
  margin: 0 10px;
  background-color: #c1c2c5;
}

.popup-wrap .sign-wrap {
  min-height: 150px;
}

.popup-wrap.feedback {
  width: 100%;
  min-width: 698px;
  min-height: 100vh;
  padding: 20px;
  background-color: #fff;
}

.popup-wrap.feedback .box-wrap.card {
  margin-top: 20px;
}

.popup-wrap.feedback .talk-wrap .talk-box {
  height: 102px;
  padding: 20px 25px;
}

.popup-wrap.feedback .write-wrap .write-box {
  padding: 25px 30px 30px;
}

.popup-wrap.feedback .write-wrap .write-box input[type=text] {
  width: calc(100% - 115px);
  margin-top: 5px;
}

.popup-wrap.feedback .pop-box-content {
  width: 100%;
  margin-bottom: 0;
  padding: 20px;
  border: 1px solid #dee2e6;
  border-top: #00b0b5 2px solid;
  border-bottom-width: 2px;
  border-radius: 4px;
  box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  color: #000;
  background-color: #fff;
}

.popup-wrap.feedback .pop-title {
  padding-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
  color: #00b0b5;
}

.popup-wrap.feedback .pop-text-box {
  height: 200px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  line-height: 1.75;
  font-size: 12px;
  resize: none;
  outline: none;
  overflow: hidden;
}

.popup-wrap.feedback.green .pop-box-content {
  border-top-color: #2da490;
}

.popup-wrap.feedback.green .pop-title {
  color: #2da490;
}

.popup-wrap.diagnosis {
  width: 100%;
  min-width: 700px;
  padding: 30px 29px;
}

.popup-wrap.diagnosis .content-wrap {
  border-top: 2px solid #00b0b5;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 20px;
}

.popup-wrap.diagnosis .search-group {
  padding: 20px;
}

.popup-wrap.diagnosis .search-group .title {
  margin-bottom: 8px;
  font-size: 12px;
}

.popup-wrap.diagnosis .search-group .search-input {
  width: calc(100% - 44px);
  padding-left: 10px;
  margin-right: 5px;
}

.popup-wrap.diagnosis .board-wrap .border-list {
  border-bottom: 0;
}

.popup-wrap.diagnosis .board-wrap .border-list thead th {
  font-weight: 700;
}

.popup-wrap.diagnosis .board-wrap .border-list thead, .popup-wrap.diagnosis .board-wrap .border-list th, .popup-wrap.diagnosis .board-wrap .border-list td {
  border: none;
}

.popup-wrap.diagnosis .board-wrap .border-list th {
  padding: 17px 0;
}

.popup-wrap.diagnosis .board-wrap .border-list td {
  padding: 8px 0;
}

.popup-wrap.diagnosis .board-wrap .border-list tbody tr:last-child {
  border-bottom: 0;
}

.popup-wrap.diagnosis .pagination {
  margin-top: 20px;
}

.popup-wrap.diagnosis .popup-keyword {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 12px;
}

.popup-wrap.diagnosis .popup-keyword .title {
  margin-bottom: 10px;
}

.popup-wrap.diagnosis .popup-keyword .keyword {
  margin-bottom: 10px;
}

.popup-wrap.diagnosis .popup-keyword .keyword.close {
  background-image: url(../../imgs/icon_keyword_close.png);
}

.popup-wrap .popup-lnb {
  position: relative;
  width: 190px;
  float: left;
  min-height: calc(100vh - 75px);
  border-top: 1px solid #eee;
  background-color: #fff;
  -webkit-box-shadow: 3px 0px 8px -5px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 3px 0px 8px -5px rgba(0, 0, 0, 0.18);
  box-shadow: 3px 0px 8px -5px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.popup-wrap .popup-lnb + .box-content {
  float: right;
  width: calc(100% - 190px);
  padding: 0 20px 25px;
  background-color: #f7f7f7;
  border-top: 1px solid #eee;
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list {
  display: table;
  min-height: 50px;
  width: 100%;
  padding: 3px 15px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list.depth-1 {
  background-color: #f0f1f3;
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list.depth-2 {
  position: relative;
  background-color: #fff;
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list.depth-2:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 4.5px;
  height: 7px;
  margin-top: -3.5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  background-image: url(../../imgs/common/icon_lnb_arrow_black.png);
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list.depth-2.active {
  color: #ff7862;
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list.depth-2.active:after {
  background-image: url(../../imgs/common/icon_lnb_arrow_orange.png);
}

.popup-wrap .popup-lnb .lbn-nav-wrap .list > * {
  display: table-cell;
  vertical-align: middle;
}

.popup-wrap-inner {
  padding: 15px;
}


/* 시간 제한 session 체크 */
header .header-time {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  background-color: #00b0b5;
  z-index: 10;
  line-height:35px;
  border-bottom:1px solid #fff
}

header .header-time .my_info {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
}

.time_chk{
	white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.time_chk button span{
	color:#fff;
}
.time_chk button img{
	vertical-align: middle;
}





