@charset "utf-8";
/**
 * @author RGJ
 * @version 0.1
 * @since 2019.4.18
 * @description 공통스타일
 */
/*======================================
  basic
======================================*/
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  letter-spacing: -.012em;
  word-break: keep-all;
  color: #333;
  background-color: #fff;
  font-family: Nanum Gothic, 돋움, Dotum, sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.signature-pad {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background-color: white;
}


body,
input,
textarea,
select,
button {
  text-align: left;
  direction: ltr;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "kern";
  font-synthesis: none;
}

input[type=button],
select {
  cursor: pointer;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
  text-decoration: inherit;
}

.hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
}

a {
  color: #333;
}

a:hover {
  opacity: .65;
}

/*======================================
  intro
======================================*/
.intro {
  height: 100vh;
  background: #000;
}

.intro h1 {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 30%;
  margin: 0 -15%;
}

.intro h1 img {
  width: 100%;
}

.blob {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 300px;
  height: 100px;
  transform: translate(-50%, -50%);
  filter: blur(10px) contrast(20);
}

.blob-l,
.blob-r {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}

.blob-l {
  left: 20%;
  animation: osc-l 2.5s ease infinite;
}

.blob-r {
  left: 80%;
  animation: osc-r 2.5s ease infinite;
  background: #0ff;
}

@keyframes osc-l {
  0% {
    left: 20%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 20%;
  }
}

@keyframes osc-r {
  0% {
    left: 80%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 80%;
  }
}

.form-wrap.join {
  width: 400px;
  margin: 0 auto;
}

.login-item {
  margin: 50px 20px 10px;
}

.login-item li {
  margin-bottom: 20px;
}

.login-item li label {
  display: inline-block;
  margin-bottom: 10px;;
}

.login-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 30px 20px 10px;
  padding: 7px 0;
  text-align: center;
  color: #fff;
  border: 1px solid #353535;
  border-radius: 3px;
  background-color: #353535;
}

.login-desc {
  padding: 0 20px;
  color: #f0494f;
  font-size: 15px;
}

/*======================================
  header
======================================*/
.header {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 48px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .04), 0 1px 0 rgba(0, 0, 0, .04);
  box-shadow: 0 2px 2px rgba(0, 0, 0, .04), 0 1px 0 rgba(0, 0, 0, .04);
  line-height: 48px;
}

.header h1 {
  text-align: center;
}

.header h1 a {
  display: inline-block;
  height: 100%;
  font-weight: 700;
}

.header h1 a:link,
.header h1 a:hover,
.header h1 a:active,
.header h1 a:visited {
  opacity: 1;
  color: #333;
}

/*햄버거 메뉴*/
.menu-panel {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background-color: #000;
}

.menu-cover {
  position: fixed;
  z-index: 9998;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .6);
}

.menu-panel .menu-btn {
  position: relative;
  z-index: 3;
  top: 0;
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  background: rgba(45, 45, 45, .5);
  -webkit-tap-highlight-color: transparent;
}

.menu-panel .menu-btn span {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 9px;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.menu-panel .menu-btn span:before,
.menu-panel .menu-btn span:after {
  position: absolute;
  z-index: 1;
  left: 7px;
  display: block;
  width: 17px;
  height: 1px;
  content: "";
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background-color: #fff;
}

.menu-panel .menu-btn span:before {
  top: 11px;
}

.menu-panel .menu-btn span:after {
  bottom: 11px;
}

/*햄버거 메뉴 활성화 시*/
.menu-panel.active {
  left: 0;
  overflow: scroll;
  width: 200px;
}

.menu-panel.active .menu-btn {
  left: 100%;
  margin-left: -48px;
  background-color: #000;
}

.menu-panel .menu-btn.active span {
  background-color: transparent;
}

.menu-panel .menu-btn.active span:before,
.menu-panel .menu-btn.active span:after {
  top: 15px;
  width: 19px;
}

.menu-panel .menu-btn.active span:before {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menu-panel .menu-btn.active span:after {
  -webkit-transition-delay: .09s;
  -moz-transition-delay: .09s;
  -ms-transition-delay: .09s;
  -o-transition-delay: .09s;
  transition-delay: .09s;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

/*메뉴 패널*/
.menu-panel .menu-title,
.menu-panel > ul > .menu-label span {
  display: none;
}

.menu-panel > ul > .menu-label > a .menu-item {
  display: inline-block;
  width: 48px;
  text-align: center;
  color: #a5abbc;
  border-bottom: 1px solid #282828;
}

.menu-panel > ul > .menu-label > a.active span,
.menu-panel > ul > .menu-label > a.active .menu-item {
  color: #fff;
}

.menu-panel > ul > .menu-label:first-child > a .menu-item {
  border-top: 1px solid #282828;
}

.menu-panel.active .menu-title {
  display: block;
  width: 100%;
  padding: 20px;
  padding-bottom: 0;
  color: #fff;
  line-height: 25px;
}

.menu-panel.active .menu-title p {
  font-size: 19px;
}

.menu-panel.active .menu-title strong {
  display: block;
  padding: 5px 0 20px;
  color: #bbb;
  font-size: 15px;
}

.menu-panel.active > ul {
  width: 100%;
  height: auto;
  padding: 0 20px;
  text-align: left;
}

.menu-panel.active > ul > .menu-label {
  width: 100%;
}

.menu-panel.active > ul > .menu-label > a {
  display: inline-block;
  height: 100%;
  color: #a5abbc;
}

.menu-panel.active > ul > .menu-label > a .menu-item {
  border: none;
}

.menu-panel.active .menu-title strong,
.menu-panel.active > ul > .menu-label {
  border-bottom: 1px solid #282828;
}

.menu-panel.active > ul > .menu-label span {
  display: inline-block;
}

/*======================================
  contents
======================================*/
.wrap {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 70px;
  padding-top: 48px;
}

.head {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px 0;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.125;
}

.section {
  position: relative;
  margin-top: 40px;
  line-height: 1.647;
}

.subhead {
  padding: 7px 20px;
  color: #fff;
  background: rgba(45, 45, 45, .98);
}

.effect {
  padding: 50px 30px;
  text-align: center;
  border: 1px dotted #bfbfbf;
  font-size: 28px;
}

.filter {
  text-align: right;
}

.filter a {
  display: inline-block;
  width: 30px;
  height: 25px;
}

.filter a img {
  width: auto;
  height: 100%;
}

.sign-wrap {
  border: 1px solid rgba(0, 0, 0, .1);
}

.sign-wrap .sign-inner {
  width: 100%;
  min-height: 200px;
}

.day-wrap .day-grid {
  display: -webkit-box;
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.day-wrap .day-grid li {
  flex: auto;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}

.day-wrap .day-grid li strong {
  display: block;
  padding: .412em 0;
  text-align: center;
}

.day-wrap .day-grid li a {
  display: block;
  text-align: center;
}

.depth-wrap {
  position: relative;
  width: 60%;
  margin: 20px auto;
}

.depth-wrap .line {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  margin-left: -50%;
  background: rgba(45, 45, 45, .7);
}

.depth-wrap .depth-grid {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  align-items: center;
}

.depth-wrap .depth-grid li {
  display: -webkit-box;
  display: flex;
  flex: auto;
  justify-content: center;
  font-size: .93rem;
  font-weight: 600;
}

.depth-wrap .depth-grid li:first-child {
  justify-content: flex-start;
  width: 4px;
}

.depth-wrap .depth-grid li:last-child {
  justify-content: flex-end;
  width: 4px;
}

.depth-wrap .depth-grid li span {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  border: 1px solid #2e2d2d;
  border-radius: 100%;
  background: #fff;
  line-height: 45px;
}

.depth-wrap .depth-grid li.active span {
  color: #fff;
  background: rgba(45, 45, 45, .98);
}

.list-wrap {
  margin: 10px 0;
}

.list-wrap .list-item {
  display: -webkit-box;
  display: flex;
  padding: 15px 30px;
  border-bottom: 1px dotted #bfbfbf;
}

.list-wrap .list-item:nth-of-type(1) {
  border-top: 2px solid #5f5f5f;
}

.list-wrap .list-item:nth-of-type(2n-1) {
  background-color: #fafafa;
}

.list-wrap .list-item-inner:nth-of-type(1) {
  flex: 2 1 auto;
}

.list-wrap .list-item-inner:nth-of-type(2) {
  display: -webkit-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-wrap .list-item-inner .act {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}

.list-wrap .list-item-inner .subject dd {
  font-size: 16px;
}

.form-wrap {
  margin: 10px 0;
}

.form-wrap .form-item {
  padding: 15px 20px;
  border-bottom: 1px dotted #bfbfbf;
}

.form-wrap .form-item:nth-of-type(1) {
  border-top: 2px solid #5f5f5f;
}

.form-wrap .form-selector {
  display: -webkit-box;
  display: flex;
  align-items: center;
}

.form-wrap .form-selector dt {
  width: 150px;
  font-weight: 600;
}

.form-wrap .form-selector dd {
  width: calc(100% - 150px);;
}

.form-wrap .form-selector dd.act {
  width: 64px;
  margin-left: 5px;
  text-align: right;
}

.unit-wrap {
  display: -webkit-box;
  display: flex;
  padding-top: 30px;
}

.unit-wrap a {
  display: -webkit-box;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 6.471em;
  margin: 0 20px;
  font-size: 1.059em;
  font-weight: 600;
}

.fold-wrap {
  border-top: 1px solid #5f5f5f;
  background: rgba(45, 45, 45, .08);
}

.fold-wrap > dl {
  border-bottom: 1px solid #bfbfbf;
}

.fold-wrap > dl > dt > a {
  position: relative;
  display: block;
  padding: 10px 20px;
}

.fold-wrap > dl > dt > a:after {
  position: absolute;
  top: 20px;
  right: 10px;
  display: inline-block;
  overflow: hidden;
  width: 17px;
  height: 10px;
  content: " ";
  background-image: url(../image/ico-arr-down.png);
  background-repeat: no-repeat;
}

.fold-wrap > dl.active > dt > a:after {
  background-image: url(../image/ico-arr-up.png);
  background-repeat: no-repeat;
}

.fold-wrap > dl.active > dd {
  overflow-y: auto;
  max-height: 600px;
  border-top: 1px dotted #bfbfbf;
  background-color: #f8f8f8;
}

.fold-wrap .collapse {
  display: none;
  overflow: hidden;
  padding: 20px 30px;
}

.grid-wrap table {
  width: 100%;
}

.grid-wrap table thead tr {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #bfbfbf;
  background-color: #f9fafb;
}

.grid-wrap table tbody tr {
  border-bottom: 1px dotted #bfbfbf;
}

.grid-wrap table thead th {
  font-weight: 600;
}

.grid-wrap table thead th,
.grid-wrap table tbody td {
  padding: 15px 5px;
  text-align: center;
}

.search-wrap {
  display: -webkit-box;
  display: flex;
  width: 70%;
  margin: 0 auto;
}

.search-wrap input {
  width: 90%;
  height: 33px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}

.search-wrap button {
  height: 33px;
  margin-left: 5px;
  padding: 0 20px;
}

/*탭메뉴*/
.tab-wrap {
  overflow: hidden;
  margin-bottom: 30px;
  word-break: keep-all;
  border-collapse: collapse;
  border-bottom: 1px solid #d2d2d2;
  font-size: 18px;
  line-height: 1.3;
}

.tab-wrap:after {
  display: block;
  clear: both;
  content: "";
}

.tab-wrap li {
  display: table-cell;
  float: none;
  margin: 0;
  vertical-align: middle;
  color: #767676;
  border: 1px solid #d2d2d2;
  border-bottom-width: 0;
  background-color: #fff;
}

.tab-wrap li a {
  display: table;
  width: 100%;
  text-decoration: none;
}

.tab-wrap li a span {
  display: table-cell;
  width: 1%;
  height: 68px;
  padding: 1px 30px 0;
  text-align: center;
  vertical-align: middle;
}

.tab-wrap li.active {
  color: #000;
  border-top-color: #000;
  border-bottom-color: transparent;
}

.tab-wrap li.active a span {
  padding-top: 0;
  border-top: 1px solid #000;
  font-weight: 500;
}

.tab-wrap {
  width: 100%;
  min-width: 100%;
  border-bottom: 0;
}

.tab-wrap li {
  display: table-cell;
  width: 1%;
  border-bottom-width: 1px;
}

/*button*/
.btn {
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background: rgba(45, 45, 45, .98);
}

.btn_r {
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background: gray;
}

.btn-outline {
  display: inline-block;
  padding: 2px 14px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid rgba(45, 45, 45, .9);
  border-radius: 3px;
  background-color: transparent;
}

.btn-wrap {
  margin-top: 20px;
}

.btn-more {
  display: block;
  width: 95%;
  height: 33px;
  margin: 0 auto;
  text-align: center;
  color: #1a1a1a;
  border: 1px solid rgba(45, 45, 45, .1);
  background: rgba(45, 45, 45, .1);
  font-size: 12px;
}

.btn-more .nowpage {
  color: #ef5602;
}

/*form element*/
.input-chk {
  position: relative;
  margin-top: 5px;
  margin-left: 5px;
}

.input-chk input[type=radio],
.input-chk input[type=checkbox] {
  position: absolute;
  top: 16px;
  left: 17px;
  cursor: pointer;
  opacity: 0;
  border: 0;
  background: 0;
  -webkit-appearance: none;
}

.input-chk label {
  position: relative;
  display: table;
  padding-left: 35px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.input-chk label.small {
  padding-left: 30px;
}

.input-chk label.small .item {
  display: inline-block;
  padding: 0 7px;
  border: 1px dotted #5e5e5e;
  background-color: #fff;
}

.input-chk label:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -11px;
  content: "";
  background: url(../image/unchecked.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.input-chk input[type=radio]:checked + label:before,
.input-chk input[type=checkbox]:checked + label:before {
  width: 24px;
  height: 24px;
  background: url(../image/checked.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.input-chk-all {
  margin-bottom: 10px;
}

.input-chk-all label {
  padding-left: 40px;
  font-size: 18px;
}

.input-chk-all label:before {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: url(../image/checked.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.input-chk-all input[type=checkbox]:checked + label:before {
  width: 30px;
  height: 30px;
  background: url(../image/checked-2x.png) no-repeat 0 0;
  background-size: 100% 100%;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
  vertical-align: middle;
}

.switch input {
  display: none;
}

.switch-indicator {
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  border: 1px solid #ccc;
  background-color: #ccc;
  line-height: 30px;
}

.switch-indicator:before {
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  content: "";
  -webkit-transition: .4s;
  transition: .4s;
  background-color: white;
}

.switch input:checked + .switch-indicator {
  border: 1px solid #b4eaff;
  background-color: #b5e4f6;
}

.switch input:checked + .switch-indicator:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

.switch input:focus + .switch-indicator {
  box-shadow: 0 0 1px #00adef;
}

.switch .switch-indicator {
  border-radius: 50px;
}

.switch .switch-indicator:before {
  border-radius: 50%;
  box-shadow: 1px 2px 2px rgba(45, 45, 45, .2);
}

.file-wrap {
  display: -webkit-box;
  display: flex;
  width: 100%;
  vertical-align: middle;
}

.file-wrap label {
  flex: initial;
  margin-left: 5px;
  cursor: pointer;
  -webkit-flex: initial;
}

.file-wrap input[type="file"] {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.file-wrap .upload-name {
  flex: initial;
  width: calc(100% - 72px);
  -webkit-flex: initial;
}

.form-wrap input {
  width: 100%;
  height: 33px;
  padding: 0 10px;
  border: 1px solid rgba(45, 45, 45, .1);
  border-radius: .25em;
}

.form-wrap select {
  position: relative;
  width: 100%;
  height: 33px;
  padding: 0 10px;
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid rgba(45, 45, 45, .1);
  border-radius: 2px;
  background-color: #fff;
  background-image: url(../image/ico-select.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 23px 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-wrap select::-ms-expand {
  display: none;
}

/* 페이징 */
.pagination {
  margin-top: 30px;
  text-align: center;
  font-size: 0;
}

.pagination > * {
  vertical-align: top;
}

.pagination a {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  margin-left: 10px;
  padding: 0 5px;
  transition: .3s;
  text-align: center;
  text-decoration: none;
  color: #000;
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 14px;
  line-height: 38px;
}

.pagination .active {
  color: #fff;
  border-color: transparent;
  background-color: #000;
}

.pagination .direction {
  overflow: hidden;
  width: 40px;
  min-width: 40px;
  padding: 0;
  white-space: nowrap;
  text-indent: 100%;
  border: 1px solid #e0e0e0;
  background: #fff url(../image/ico-paging-first.png) no-repeat center center;
  line-height: 38px;
}

.pagination > * + .direction {
  margin-left: 20px;
}

.pagination .direction + * {
  margin-left: 20px;
}

.pagination .direction + .direction {
  margin-left: 10px;
}

.pagination .first {
  margin-left: 0;
  background-image: url(../image/ico-paging-first.png);
}

.pagination .prev {
  background-image: url(../image/ico-paging-prev.png);
}

.pagination .next {
  background-image: url(../image/ico-paging-next.png);
}

.pagination .last {
  background-image: url(../image/ico-paging-last.png);
}

.pagination.x-large {
  display: block;
}

.pagination.x-small {
  display: none;
}

/*modal*/
.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
}

.modal > .content {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  width: 90%;
  max-height: 70%;
  margin: 0 auto;
  transform: translate(-50%, -52%);
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.modal > .content {
  max-width: 550px;
}

.modal > .content .link {
  display: block;
  cursor: pointer;
}

.modal > .content > .tit {
  padding: 20px 30px 15px;
  border: none;
  border-bottom: 1px solid #a1a1a1;
  background-color: #e6e7e9;
}

.modal > .content > .tit > h4 {
  text-align: center;
  color: #505050;
  font-size: 22px;
}

.modal > .content > .tit > .close {
  position: absolute;
  top: 13px;
  right: 20px;
  width: 20px;
  font-size: 30px;
}

.modal > .content > .section {
  margin: 20px;
}

.modal > .content > .section figure {
  width: 100%;
  text-align: center;
}

.modal > .content > .section figure img {
  width: 100%;
}

.modal > .content > .section figure figcaption {
  padding: 0 30px;
  text-align: left;
  color: #be2423;
  font-weight: 600;
}

/*progress*/
.progress {
  overflow: hidden;
  width: 100%;
  height: 21px;
  border-radius: 2px;
  background-color: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  -webkit-transition: width .6s ease;
  transition: width .6s ease;
  text-align: center;
  color: #fff;
  border: none;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  font-size: 12px;
  line-height: 21px;
}

/*======================================
  UI 컴포넌트
======================================*/
.flex {
  display: -webkit-box;
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.block {
  display: block;
}

.inline {
  display: inline-block;
}

.text-vital {
  color: #ef5602;
}

.text-vital a {
  color: #ef5602;
}

.text-info {
  color: #0070c9;
}

.text-info a {
  color: #0070c9;
}

.bg-info {
  background-color: #f8ffff;
}

.bg-hit {
  background-color: #fffaf3;
}

.bg-primary {
  background-color: rgba(0, 112, 204, .05) !important;
}

.fs20 {
  font-size: 1.176em;
}

.fs25 {
  font-size: 1.471em;
}

.fs30 {
  font-size: 1.765em;
}

.m10-top {
  margin-top: 10px;
}

.m20-top {
  margin-top: 20px;
}

.m30-top {
  margin-top: 30px;
}

.m40-top {
  margin-top: 40px;
}

.m50-top {
  margin-top: 50px;
}

.m05-left {
  margin-left: 5px;
}

.m10-left {
  margin-left: 10px;
}

.m20-left {
  margin-left: 20px;
}

.m30-left {
  margin-left: 30px;
}

.m40-left {
  margin-left: 40px;
}

.p10-top {
  padding-top: 10px;
}

.p20-top {
  padding-top: 20px;
}

.p30-top {
  padding-top: 30px;
}

.p40-top {
  padding-top: 40px;
}

.p50-top {
  padding-top: 50px;
}

/*구분선*/
.divider {
  border: none;
  border-top: 1px solid #5e5e5e;
}

.divider.top {
  margin-top: 30px;
  border-top: 1px solid #5e5e5e;
}

/*======================================
  @media query
======================================*/
@media only screen and (max-width: 735px) {
  .intro h1 {
    width: 40%;
    margin: 0 -20%;
  }

  .blob {
    width: 170px;
  }

  .blob-l {
    animation: osc-l 1.7s ease infinite;
  }

  .blob-r {
    animation: osc-r 1.7s ease infinite;
  }

  .header {
    background: rgba(45, 45, 45, .98);
  }

  .header h1 a:link,
  .header h1 a:hover,
  .header h1 a:active,
  .header h1 a:visited {
    color: #fff;
  }

  .menu-panel {
    left: -100%;
    width: 80%;
  }

  .menu-panel.active {
    width: 80%;
  }

  .menu-panel .menu-btn {
    left: 125%;
  }

  .menu-panel.active {
    left: 0;
  }

  .menu-panel.active .menu-btn {
    left: 100%;
  }

  .wrap {
    margin: 0;
    padding-bottom: 10px;
  }

  .depth-wrap {
    width: 75%;
  }

  .depth-wrap .depth-grid li:first-child {
    width: 40px;
  }

  .depth-wrap .depth-grid li:last-child {
    width: 40px;
  }

  .form-wrap .form-selector,
  .grid-wrap table {
    font-size: .882em;
  }

  .form-wrap .form-selector dt {
    width: 100px;
  }

  .form-wrap .form-selector dd {
    width: calc(100% - 100px);
  }

  .form-wrap .form-selector dd.act {
    font-size: 13px;
  }

  .unit-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .unit-wrap a {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .file-wrap label {
    font-size: 13px;
  }

  .fold-wrap .collapse {
    padding: 20px 15px;
  }

  .fold-wrap .form-item {
    padding: 10px 0;
  }

  .search-wrap {
    width: 95%;
  }

  .pagination.x-large {
    display: none;
  }

  .pagination.x-small {
    display: block;
    margin-top: 10px;
  }

  .unit-wrap,
  .fold-wrap,
  .sign-wrap,
  .effect,
  .filter {
    margin: 10px;
  }

  .input-chk {
    margin-left: 15px;
  }

  .btn-wrap {
    margin: 40px 10px 10px;
  }

  .btn-wrap [class^=btn] {
    width: 100%;
    padding: 10px;
  }

}

@media only screen and (max-width: 544px) {
  .form-wrap.join {
    width: 100%;
  }
}

@media only screen and (max-width: 320px) and (max-width: 735px) {
}

@media only screen and (max-width: 320px) and (max-width: 735px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 320px) and (max-width: 735px) and (min-resolution: 1.5dppx), only screen and (max-width: 320px) and (max-width: 735px) and (min-resolution: 144dpi) {
}

@media only screen and (min-width: 1442px) {
}

@media only screen and (max-width: 1068px) {
}

.range-slider__value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #2c3e50;
  padding: 5px 10px;
  margin-left: 8px;
}

.range-slider__value:after {
  position: absolute;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #2c3e50;
  border-bottom: 7px solid transparent;
  content: "";
}