@charset "utf-8";

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*****************************
 * badge
 *****************************/
.badge {
  display: block;
  min-width: 10px;
  padding: 3px 4px;
  font-size: 11px;
  /* font-weight: 700; */
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
  font-family: '돋움', Dotum, sans-serif;
}
.badge.alert {
  background-color: #ff9800;
  font-size: 11px;
  padding: 2px 4px;
  position: absolute;
  top: 2px;
  right: 7px;
}

/*****************************
 * icons
 *****************************/
i.arrow {
  border: solid #6d6e70;
  border-width: 0 2.4px 2.4px 0;
  display: inline-block;
  padding: 2.5px;
}
i.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
}
i.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
i.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}
i.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.paging-icon {
  display: block;
  line-height: 16px;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  background-image: url(../images/paging-icons.png);
  background-repeat: no-repeat;
}
.paging-icon.first {
  background-position-x: 0;
}
.paging-icon.prev {
  background-position-x: -16px;
}
.paging-icon.next {
  background-position-x: -32px;
}
.paging-icon.last {
  background-position-x: -48px;
}
.paging-icon.disabled {
  background-position-y: -16px;
}
.close-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  vertical-align: middle;
  background-image: url(../images/close-icons.png);
  background-repeat: no-repeat;
}
.close-icon.dark {
  background-position-x: -16px;
}

/*****************************
 * button base
 *****************************/
.btn .badge {
  position: absolute;
  top: -10px;
  right: -10px;
}
.btn {
  display: inline-block;
  position: relative;
  padding: 4px 14px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  color: #fff;
  background-color: #d4dddd;
  border-radius: 30px;
}
.btn:hover,
.btn:focus,
.btn.focus,
.btn:active,
.btn.active {
  text-decoration: none;
  background-image: none;
  outline-style: none;
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
}
.btn.disabled:hover,
.btn[disabled]:hover,
fieldset[disabled] .btn:hover,
.btn.disabled:focus,
.btn[disabled]:focus,
fieldset[disabled] .btn:focus,
.btn.disabled.focus,
.btn[disabled].focus,
fieldset[disabled] .btn.focus {

}
/* focus rect */
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline-style: none;
}

/*****************************
 * primary button
 *****************************/
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active {
  background-color: #5068eb;
  border-color: transparent;
}

.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #5068eb;
  border-color: transparent;
}
/* focus rect */
.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.btn-primary.focus,
.btn-primary:active.focus,
.btn-primary.active.focus {
  outline-style: none;
}

/*****************************
 * secondary button
 *****************************/
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #7e7e7e;
  border-color: transparent;
}

.btn-secondary:hover {
  background-color: #555;
}

.btn-secondary.disabled:hover,
.btn-secondary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-secondary.disabled:focus,
.btn-secondary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-secondary.disabled.focus,
.btn-secondary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #7e7e7e;
  border-color: transparent;
}
/* focus rect */
.btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.btn-secondary.focus,
.btn-secondary:active.focus,
.btn-secondary.active.focus {
  outline-style: none;
}

.btn-secondary.flat {
  border-radius: 0;
}

/*****************************
 * transparent button
 *****************************/
.btn-transparent {
  color: #5068eb;
  background-color: transparent;
}
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent.focus,
.btn-transparent:active,
.btn-transparent.active {
  background-color: transparent;
  text-decoration: underline;
}
.btn-transparent.disabled:hover,
.btn-transparent[disabled]:hover,
fieldset[disabled] .btn-transparent:hover,
.btn-transparent.disabled:focus,
.btn-transparent[disabled]:focus,
fieldset[disabled] .btn-transparent:focus,
.btn-transparent.disabled.focus,
.btn-transparent[disabled].focus,
fieldset[disabled] .btn-transparent.focus {
  background-color: transparent;
  border-color: transparent;
}
/* focus rect */
.btn-transparent:focus,
.btn-transparent:active:focus,
.btn-transparent.active:focus,
.btn-transparent.focus,
.btn-transparent:active.focus,
.btn-transparent.active.focus {
  outline-style: none;
}

/*****************************
 * outline button
 *****************************/
/*.btn-outline,*/
/*.btn-outline:focus,*/
/*.btn-outline.focus {*/
/*  color: #5068eb;*/
/*  background-color: transparent;*/
/*  border-color: #5068eb;*/
/*}*/
/*.btn-outline:hover:not(.active):not(:active) {*/
/*  color: #5068eb;*/
/*  border-color: #5068eb;*/
/*  background-color: transparent;*/
/*}*/
/*.btn-outline:active,*/
/*.btn-outline.active {*/
/*  color: #fff;*/
/*  border-color: #5068eb;*/
/*  background-color: #5068eb;*/
/*}*/

/*.btn-outline.disabled:hover,*/
/*.btn-outline[disabled]:hover,*/
/*fieldset[disabled] .btn-outline:hover,*/
/*.btn-outline.disabled:focus,*/
/*.btn-outline[disabled]:focus,*/
/*fieldset[disabled] .btn-outline:focus,*/
/*.btn-outline.disabled.focus,*/
/*.btn-outline[disabled].focus,*/
/*fieldset[disabled] .btn-outline.focus {*/
/*  background-color: transparent;*/
/*  border-color: #5068eb;*/
/*}*/
/*!* focus rect *!*/
/*.btn-outline:focus,*/
/*.btn-outline:active:focus,*/
/*.btn-outline.active:focus,*/
/*.btn-outline.focus,*/
/*.btn-outline:active.focus,*/
/*.btn-outline.active.focus {*/
/*  box-shadow: none;*/
/*  outline-style: none;*/
/*}*/

/*****************************
 * outline flat button
 *****************************/
.btn-outline-flat,
.btn-outline-flat:focus,
.btn-outline-flat.focus {
  color: #666;
  background-color: transparent;
  border-color: #c5c5c5;
  padding: 4px 4px 5px 4px;
  margin-bottom: 1px;
  border-radius: 0;
}
.btn-outline-flat:hover:not(.active) {
  color: #666;
  border-color: #999;
  background-color: transparent;
}
.btn-outline-flat:active,
.btn-outline-flat.active {
  color: #666;
  border-color: #666;
  background-color: transparent;
}

.btn-outline-flat.disabled:hover,
.btn-outline-flat[disabled]:hover,
fieldset[disabled] .btn-outline-flat:hover,
.btn-outline-flat.disabled:focus,
.btn-outline-flat[disabled]:focus,
fieldset[disabled] .btn-outline-flat:focus,
.btn-outline-flat.disabled.focus,
.btn-outline-flat[disabled].focus,
fieldset[disabled] .btn-outline-flat.focus {
  background-color: transparent;
  border-color: #c5c5c5;
}
/* focus rect */
.btn-outline-flat:focus,
.btn-outline-flat:active:focus,
.btn-outline-flat.active:focus,
.btn-outline-flat.focus,
.btn-outline-flat:active.focus,
.btn-outline-flat.active.focus {
  box-shadow: none;
  outline-style: none;
}

/*****************************
 * footer panel button
 *****************************/
.btn-footer,
.btn-footer:focus,
.btn-footer.focus {
  padding: 2px 5px;
  font-size: 11px;
  line-height: 16px;
  color: #dcdcdc;
  background-color: transparent;
  border-color: #b5b5b5;
  border-radius: 0;
  float: right;
}
.btn-footer:hover {
  color: #000;
  border-color: #bfbfbf;
  background-color: #bfbfbf;
}
.btn-footer:active,
.btn-footer.active {
  color: #000;
  border-color: #bfbfbf;
  background-color: #bfbfbf;
}
.btn-footer.disabled:hover,
.btn-footer[disabled]:hover,
fieldset[disabled] .btn-footer:hover,
.btn-footer.disabled:focus,
.btn-footer[disabled]:focus,
fieldset[disabled] .btn-footer:focus,
.btn-footer.disabled.focus,
.btn-footer[disabled].focus,
fieldset[disabled] .btn-footer.focus {
  background-color: transparent;
  border-color: #bfbfbf;
}
/* focus rect */
.btn-footer:focus,
.btn-footer:active:focus,
.btn-footer.active:focus,
.btn-footer.focus,
.btn-footer:active.focus,
.btn-footer.active.focus {
  outline-style: none;
}

/*****************************
 * footer panel select button
 *****************************/
.btn-footer-combo,
.btn-footer-combo:focus,
.btn-footer-combo.focus {
  padding: 2px 26px 1px 18px;
  font-size: 11px;
  line-height: 26px;
  color: #bfbfbf;
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-footer-combo::after {
  content: "";
  border: solid #bfbfbf;
  border-width: 0 2.4px 2.4px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 10px;
  transition: transform .2s;
}

.btn-footer-combo:hover,
.btn-footer-combo:active,
.btn-footer-combo.active {
  background-color: #1b1b1b;
}
.btn-group.open .btn-footer-combo::after {
  content: "";
  border: solid #bfbfbf;
  border-width: 0 2.4px 2.4px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  position: absolute;
  right: 10px;
  top: 10px;
  transition: transform .2s;
}

.btn-footer-combo.disabled:hover,
.btn-footer-combo[disabled]:hover,
fieldset[disabled] .btn-footer-combo:hover,
.btn-footer-combo.disabled:focus,
.btn-footer-combo[disabled]:focus,
fieldset[disabled] .btn-footer-combo:focus,
.btn-footer-combo.disabled.focus,
.btn-footer-combo[disabled].focus,
fieldset[disabled] .btn-footer-combo.focus {
  background-color: transparent;
  border-color: #bfbfbf;
}
/* focus rect */
.btn-footer-combo:focus,
.btn-footer-combo:active:focus,
.btn-footer-combo.active:focus,
.btn-footer-combo.focus,
.btn-footer-combo:active.focus,
.btn-footer-combo.active.focus {
  outline-style: none;
}

/*****************************
 * basemap select button
 *****************************/
.btn-basemap-combo,
.btn-basemap-combo:focus,
.btn-basemap-combo.focus {
  padding: 2px 26px 1px 18px;
  font-size: 12px;
  line-height: 20px;
  color: #495057;
  background-color: transparent;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 180px;
  border-color: #bfbfbf;
}
.btn-basemap-combo::after {
  content: "";
  border: solid #5068eb;
  border-width: 0 2.4px 2.4px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 7px;
  transition: transform .2s;
}

.btn-basemap-combo:hover,
.btn-basemap-combo:active,
.btn-basemap-combo.active {
  background-color: transparent;
}

.btn-basemap-combo.disabled:hover,
.btn-basemap-combo[disabled]:hover,
fieldset[disabled] .btn-basemap-combo:hover,
.btn-basemap-combo.disabled:focus,
.btn-basemap-combo[disabled]:focus,
fieldset[disabled] .btn-basemap-combo:focus,
.btn-basemap-combo.disabled.focus,
.btn-basemap-combo[disabled].focus,
fieldset[disabled] .btn-basemap-combo.focus {
  background-color: transparent;
  border-color: #bfbfbf;
}
/* focus rect */
.btn-basemap-combo:focus,
.btn-basemap-combo.focus,
.btn-basemap-combo:active:focus,
.btn-basemap-combo.active:focus,
.btn-basemap-combo:active.focus,
.btn-basemap-combo.active.focus {
  outline-style: none;
}

/*****************************
 * basic select button
 *****************************/
.btn-combo {
  padding: 2px 26px 1px 18px;
  font-size: 12px;
  line-height: 27px;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 180px;
}
.btn-combo:focus,
.btn-combo.focus,
.btn-combo:hover,
.btn-combo:active,
.btn-combo.active {
  border-color: #5068eb;
  background-color: #fff;
}
.btn-combo::after {
  content: "";
  border: solid #5068eb;
  border-width: 0 2.4px 2.4px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 10px;
  transition: transform .2s;
}
.btn-combo.disabled:hover,
.btn-combo[disabled]:hover,
fieldset[disabled] .btn-combo:hover,
.btn-combo.disabled:focus,
.btn-combo[disabled]:focus,
fieldset[disabled] .btn-combo:focus,
.btn-combo.disabled.focus,
.btn-combo[disabled].focus,
fieldset[disabled] .btn-combo.focus {
  background-color: transparent;
  border-color: #bfbfbf;
}
/* focus rect */
.btn-combo:focus,
.btn-combo:active:focus,
.btn-combo.active:focus,
.btn-combo.focus,
.btn-combo:active.focus,
.btn-combo.active.focus {
  outline-style: none;
}

.btn-combo.flat {
  border-radius: 0;
}

/*****************************
 * inline select button
 *****************************/
.btn-inlinecombo {
  padding: 2px 26px 1px 6px;
  font-size: 12px;
  line-height: 20px;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100px;
}
.btn-inlinecombo:focus,
.btn-inlinecombo.focus,
.btn-inlinecombo:hover,
.btn-inlinecombo:active,
.btn-inlinecombo.active {
  border-color: #5068eb;
  background-color: #fff;
}
.btn-inlinecombo::after {
  content: "";
  border: solid #5068eb;
  border-width: 0 2.4px 2.4px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  position: absolute;
  right: 8px;
  top: 6px;
  transition: transform .2s;
}
.btn-inlinecombo.disabled:hover,
.btn-inlinecombo[disabled]:hover,
fieldset[disabled] .btn-combo:hover,
.btn-inlinecombo.disabled:focus,
.btn-inlinecombo[disabled]:focus,
fieldset[disabled] .btn-inlinecombo:focus,
.btn-inlinecombo.disabled.focus,
.btn-inlinecombo[disabled].focus,
fieldset[disabled] .btn-inlinecombo.focus {
  background-color: transparent;
  border-color: #bfbfbf;
}
/* focus rect */
.btn-inlinecombo:focus,
.btn-inlinecombo:active:focus,
.btn-inlinecombo.active:focus,
.btn-inlinecombo.focus,
.btn-inlinecombo:active.focus,
.btn-inlinecombo.active.focus {
  outline-style: none;
}

/*****************************
 * tnb function button
 *****************************/
.btn-func,
.btn-func:focus,
.btn-func.focus {
  padding: 2px 5px;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  background-color: #f4f4f4;
  border: 1px solid #bfbfbf;
  border-radius: 0;
  min-width: 87px;
}
.btn-func:hover {
  background-color: #dad9d9;
}
.btn-func:active,
.btn-func.active {
  background-color: #888;
  border-color: #666;
  color: #fff;
}
.btn-func.disabled:hover,
.btn-func[disabled]:hover,
fieldset[disabled] .btn-func:hover,
.btn-func.disabled:focus,
.btn-func[disabled]:focus,
fieldset[disabled] .btn-func:focus,
.btn-func.disabled.focus,
.btn-func[disabled].focus,
fieldset[disabled] .btn-func.focus {
  background-color: transparent;
}
/* focus rect */
.btn-func:focus,
.btn-func:active:focus,
.btn-func.active:focus,
.btn-func.focus,
.btn-func:active.focus,
.btn-func.active.focus {
  outline-style: none;
}

/*****************************
 * tnb tool button
 *****************************/
.btn-tool,
.btn-tool:focus,
.btn-tool.focus {
  padding: 2px 5px;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  background-color: #dbdde1;
  border-radius: 0;
  border-width: 0;
  width: 100px;
}
.btn-tool:hover {
  background-color: #d2d5da;
}
.btn-tool:active,
.btn-tool.active {
  background-color: #6b7381;
  color: #fff;
}
.btn-tool.disabled:hover,
.btn-tool[disabled]:hover,
fieldset[disabled] .btn-tool:hover,
.btn-tool.disabled:focus,
.btn-tool[disabled]:focus,
fieldset[disabled] .btn-tool:focus,
.btn-tool.disabled.focus,
.btn-tool[disabled].focus,
fieldset[disabled] .btn-tool.focus {
  background-color: transparent;
}
/* focus rect */
.btn-tool:focus,
.btn-tool:active:focus,
.btn-tool.active:focus,
.btn-tool.focus,
.btn-tool:active.focus,
.btn-tool.active.focus {
  outline-style: none;
}

/*****************************
 * map floating button
 *****************************/
.btn-float-toggle,
.btn-float-toggle:focus,
.btn-float-toggle.focus {
  padding: 6px;
  background-color: #fff;
  border-radius: 50%;
  border-width: 0;
}
.btn-float-toggle {
  box-shadow: 0 0 3px 0 rgba(0,0,0,0.6);
}
.btn-float-toggle:hover:not(.active):not(:active) {
  background-color: #f5f5f5;
}
.btn-float-toggle.active:hover {
  background-color: #5068eb;
}
.btn-float-toggle:active,
.btn-float-toggle.active,
.btn-float-toggle.active:hover {
  background-color: #5068eb;
}
.btn-float-toggle.disabled:hover,
.btn-float-toggle[disabled]:hover,
fieldset[disabled] .btn-footer:hover,
.btn-float-toggle.disabled:focus,
.btn-float-toggle[disabled]:focus,
fieldset[disabled] .btn-float-toggle:focus,
.btn-float-toggle.disabled.focus,
.btn-float-toggle[disabled].focus,
fieldset[disabled] .btn-float-toggle.focus {
  background-color: transparent;
}
/* focus rect */
.btn-float-toggle:focus,
.btn-float-toggle:active:focus,
.btn-float-toggle.active:focus,
.btn-float-toggle.focus,
.btn-float-toggle:active.focus,
.btn-float-toggle.active.focus {
  outline-style: none;
}

/*****************************
 * on/off toggle button
 *****************************/
.btn-toggle {
  margin: 0 4rem;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  width: 3rem;
  border-radius: 1.5rem;
  color: #6b7381;
  background: #6b7381;
}
.btn-toggle:focus,
.btn-toggle.focus {
  outline-style: none;
}
.btn-toggle.active,
.btn-toggle:active,
.btn-toggle.active:focus,
.btn-toggle:active:focus,
.btn-toggle.active:hover,
.btn-toggle:active:hover {
  background-color: #5068eb;
  outline-style: none;
}
.btn-toggle:focus,
.btn-toggle:hover {
  background-color: #6d6e70;
}
.btn-toggle::before,
.btn-toggle::after {
  line-height: 1.5rem;
  width: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
}
.btn-toggle::before {
  content: "Off";
  left: -4rem;
}
.btn-toggle::after {
  content: "On";
  right: -4rem;
  opacity: .5;
}
.btn-toggle > .handle {
  display: block;
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left .25s;
}
.btn-toggle.active {
  transition: background-color 0.25s;
}
.btn-toggle.active > .handle {
  left: 1.6875rem;
  transition: left .25s;
}
.btn-toggle.active::before {
  opacity: .5;
}
.btn-toggle.active::after {
  opacity: 1;
}
.btn-toggle.btn-sm::before,
.btn-toggle.btn-sm::after {
  line-height: -0.5rem;
  color: #fff;
  letter-spacing: .75px;
  left: 0.4125rem;
  width: 2.325rem;
}
.btn-toggle.btn-sm::before {
  text-align: right;
}
.btn-toggle.btn-sm::after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-sm.active::before {
  opacity: 0;
}
.btn-toggle.btn-sm.active::after {
  opacity: 1;
}
.btn-toggle.btn-xs::before,
.btn-toggle.btn-xs::after {
  display: none;
}
.btn-toggle.btn-sm {
  margin: 0 0.5rem;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  width: 3rem;
  border-radius: 1.5rem;
}
.btn-toggle.btn-sm:focus,
.btn-toggle.btn-sm.focus,
.btn-toggle.btn-sm:focus.active,
.btn-toggle.btn-sm.focus.active {
  outline: none;
}
.btn-toggle.btn-sm::before,
.btn-toggle.btn-sm::after {
  line-height: 1.5rem;
  width: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
}
.btn-toggle.btn-sm::before {
  content: "Off";
  left: -0.5rem;
}
.btn-toggle.btn-sm::after {
  content: "On";
  right: -0.5rem;
  opacity: .5;
}
.btn-toggle.btn-sm > .handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left .25s;
}
.btn-toggle.btn-sm.active {
  transition: background-color 0.25s;
}
.btn-toggle.btn-sm.active > .handle {
  left: 1.6875rem;
  transition: left .25s;
}
.btn-toggle.btn-sm.active::before {
  opacity: .5;
}
.btn-toggle.btn-sm.active::after {
  opacity: 1;
}
.btn-toggle.btn-sm.btn-sm::before,
.btn-toggle.btn-sm.btn-sm::after {
  /*line-height: -0.5rem;*/
  color: #fff;
  letter-spacing: .75px;
  left: 0.4125rem;
  width: 2.325rem;
}
.btn-toggle.btn-sm.btn-sm::before {
  text-align: right;
}
.btn-toggle.btn-sm.btn-sm::after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-sm.btn-sm.active::before {
  opacity: 0;
}
.btn-toggle.btn-sm.btn-sm.active::after {
  opacity: 1;
}
.btn-toggle.btn-sm.btn-xs::before,
.btn-toggle.btn-sm.btn-xs::after {
  display: none;
}
.btn-toggle.btn-xs {
  margin: 0;
  padding: 0;
  position: relative;
  border: none;
  height: 12px;
  width: 28px;
  border-radius: 6px;
  overflow: visible;
}
.btn-toggle.btn-xs:focus,
.btn-toggle.btn-xs.focus,
.btn-toggle.btn-xs:focus.active,
.btn-toggle.btn-xs.focus.active {
  outline: none;
}
.btn-toggle.btn-xs::before,
.btn-toggle.btn-xs::after {
  line-height: 1rem;
  width: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity .25s;
}
.btn-toggle.btn-xs::before {
  content: "Off";
  left: 0;
}
.btn-toggle.btn-xs::after {
  content: "On";
  right: 0;
  opacity: .5;
}
.btn-toggle.btn-xs > .handle {
  position: absolute;
  top: -2px;
  left: 0px;
  width: 16px;
  height: 16px;
  border: solid 1px #acacac;
  border-radius: 50%;
  background: #fff;
  transition: left .25s;
}
.btn-toggle.btn-xs.active {
  transition: background-color .25s;
}
.btn-toggle.btn-xs.active > .handle {
  left: 12px;
  transition: left .25s;
}
.btn-toggle.btn-xs.active::before {
  opacity: .5;
}
.btn-toggle.btn-xs.active::after {
  opacity: 1;
}
.btn-toggle.btn-xs.btn-sm::before,
.btn-toggle.btn-xs.btn-sm::after {
  line-height: -1rem;
  color: #fff;
  letter-spacing: .75px;
  left: 0.275rem;
  width: 1.55rem;
}
.btn-toggle.btn-xs.btn-sm::before {
  text-align: right;
}
.btn-toggle.btn-xs.btn-sm::after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-xs.btn-sm.active::before {
  opacity: 0;
}
.btn-toggle.btn-xs.btn-sm.active::after {
  opacity: 1;
}
.btn-toggle.btn-xs.btn-xs::before,
.btn-toggle.btn-xs.btn-xs::after {
  display: none;
}
/* focus rect */
.btn-toggle:focus,
.btn-toggle.focus {
  outline-style: none;
}
.btn-toggle:active:focus,
.btn-toggle.active:focus,
.btn-toggle:active.focus,
.btn-toggle.active.focus {
  outline-style: none;
}

/*****************************
 * extra button
 *****************************/
.btn-extra,
.btn-extra:hover,
.btn-extra:focus,
.btn-extra.focus,
.btn-extra:active,
.btn-extra.active {
  background-color: #393fee;
  border-color: transparent;
  color: #fff;
  padding: 6px 7px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 4px;
}

.btn-extra:hover {
  text-decoration: underline;
}

.btn-extra.disabled:hover,
.btn-extra[disabled]:hover,
fieldset[disabled] .btn-extra:hover,
.btn-extra.disabled:focus,
.btn-extra[disabled]:focus,
fieldset[disabled] .btn-extra:focus,
.btn-extra.disabled.focus,
.btn-extra[disabled].focus,
fieldset[disabled] .btn-extra.focus {
  background-color: #393fee;
  border-color: transparent;
}

/*****************************
 * misc button
 *****************************/
.btn-misc,
.btn-misc:hover,
.btn-misc:focus,
.btn-misc.focus,
.btn-misc:active,
.btn-misc.active {
  background-color: #ffda48;
  border-color: transparent;
  color: #333;
  padding: 6px 7px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 4px;
}

.btn-misc:hover {
  text-decoration: underline;
}

.btn-misc.disabled:hover,
.btn-misc[disabled]:hover,
fieldset[disabled] .btn-misc:hover,
.btn-misc.disabled:focus,
.btn-misc[disabled]:focus,
fieldset[disabled] .btn-misc:focus,
.btn-misc.disabled.focus,
.btn-misc[disabled].focus,
fieldset[disabled] .btn-misc.focus {
  background-color: #ffda48;
  border-color: transparent;
}

/*****************************
 * inline button
 *****************************/
.btn-inline,
.btn-inline:hover,
.btn-inline:focus,
.btn-inline.focus,
.btn-inline:active,
.btn-inline.active {
  background-color: #7e7e7e;
  border-color: transparent;
  color: #fff;
  padding: 3px 7px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 2px;
}

.btn-inline:hover {
  background-color: #555;
}

.btn-inline.disabled:hover,
.btn-inline[disabled]:hover,
fieldset[disabled] .btn-misc:hover,
.btn-inline.disabled:focus,
.btn-inline[disabled]:focus,
fieldset[disabled] .btn-misc:focus,
.btn-inline.disabled.focus,
.btn-inline[disabled].focus,
fieldset[disabled] .btn-misc.focus {
  background-color: #7e7e7e;
  border-color: transparent;
}


/*****************************
 * check button
 *****************************/
.btn-check,
.btn-check:hover,
.btn-check:focus,
.btn-check.focus,
.btn-check:active,
.btn-check.active {
  padding: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid #555;
  color: #fff;
  border-radius: 0;
}

.btn-check.checked {
  background-color: #5068eb;
  border: 2px solid #5068eb;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

.btn-check.mixed {
  background-color: #5068eb;
  border: 2px solid #5068eb;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2.5' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

.btn-check.disabled:hover,
.btn-check[disabled]:hover,
fieldset[disabled] .btn-check:hover,
.btn-check.disabled:focus,
.btn-check[disabled]:focus,
fieldset[disabled] .btn-check:focus,
.btn-check.disabled.focus,
.btn-check[disabled].focus,
fieldset[disabled] .btn-check.focus {
  background-color: #acacac;
  border: 2px solid #acacac;
}

/*****************************
 * primary check button
 *****************************/
.btn-primary-check,
.btn-primary-check:hover,
.btn-primary-check:focus,
.btn-primary-check.focus,
.btn-primary-check:active,
.btn-primary-check.active {
  padding: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid #6b7381;
  color: #fff;
  border-radius: 4px;
}

.btn-primary-check.checked {
  background-color: #5068eb;
  border-color: #5068eb;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

.btn-primary-check.mixed {
  background-color: #5068eb;
  border-color: #5068eb;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

.btn-primary-check.disabled:hover,
.btn-primary-check[disabled]:hover,
fieldset[disabled] .btn-primary-check:hover,
.btn-primary-check.disabled:focus,
.btn-primary-check[disabled]:focus,
fieldset[disabled] .btn-primary-check:focus,
.btn-primary-check.disabled.focus,
.btn-primary-check[disabled].focus,
fieldset[disabled] .btn-primary-check.focus {
  background-color: transparent;
  border: 2px solid #5068eb;
}

/*****************************
 * check button
 *****************************/
.btn-icon,
.btn-icon:hover,
.btn-icon:focus,
.btn-icon.focus,
.btn-icon:active,
.btn-icon.active {
  padding: 0;
  line-height: 0;
  background-color: transparent;
  border-color: transparent;
}

.btn-check.disabled:hover,
.btn-check[disabled]:hover,
fieldset[disabled] .btn-check:hover,
.btn-check.disabled:focus,
.btn-check[disabled]:focus,
fieldset[disabled] .btn-check:focus,
.btn-check.disabled.focus,
.btn-check[disabled].focus,
fieldset[disabled] .btn-check.focus {
  background-color: transparent;
  /* border-color: transparent; */
  outline-style: none;
}

/***********************************
 * input decorator: checkbox, radio
 ***********************************/
.input-deco {
  position: relative;
  display: inline-block;
  min-height: 1.5rem;
  padding-left: 1.4rem;
  line-height: 1.5rem;
}

.input-deco input[type=checkbox],
.input-deco input[type=radio] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.input-deco input[type=checkbox] + label,
.input-deco input[type=radio] + label {
  margin-bottom: 0;
  display: inline-block;
  user-select: none;
  cursor: pointer;
}

.input-deco input[type=checkbox] + label::before,
.input-deco input[type=radio] + label::before {
  background-color: #444;
  border-radius: 0;
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-deco input[type=checkbox][disabled="disabled"] + label,
.input-deco input[type=radio][disabled="disabled"] + label,
.input-deco input[type=checkbox][disabled="disabled"] + label::before,
.input-deco input[type=radio][disabled="disabled"] + label::before {
  cursor: not-allowed;
  opacity: 0.8;
}
/* focus rect */
.input-deco input[type=checkbox]:not(:checked):focus + label::before,
.input-deco input[type=radio]:not(:checked):focus + label::before {
  box-shadow: none;
  outline-style: none;
}
.input-deco input[type=checkbox]:checked:focus + label::before,
.input-deco input[type=radio]:checked:focus + label::before {
  box-shadow: none;
  outline-style: none;
}

.input-deco input[type=radio] + label::before {
  border-radius: 50%;
}
.input-deco.outline input[type=checkbox] + label::before,
.input-deco.outline input[type=radio] + label::before {
  border: 2px solid #555;
  background-color: #fff;
}
.input-deco.outline.invert input[type=checkbox] + label::before,
.input-deco.outline.invert input[type=radio] + label::before {
  border: 2px solid #fff;
  background-color: transparent;
}
.input-deco.outline input[type=radio]:checked + label::before {
  border: 2px solid #5068eb;
}
.input-deco.outline.invert input[type=radio]:checked + label::before {
  border: 2px solid #fff;
}
.input-deco input[type=checkbox]:checked + label::before {
  border: 2px solid #5068eb;
  background-color: #5068eb;
}
.input-deco input[type=checkbox] + label::after,
.input-deco input[type=radio] + label::after {
  position: absolute;
  top: .25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 10px;
}
.input-deco input[type=checkbox]:checked + label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.input-deco.outline input[type=radio]:checked + label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%235068eb'/%3E%3C/svg%3E");
}
.input-deco.outline.invert input[type=radio]:checked + label::after,
.input-deco input[type=radio]:checked + label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.input-deco.invert label {
  color: #fff;
}

/*****************************
 * file button decorator
 *****************************/
.input-deco-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 2rem;
  margin-bottom: 0;
}

.input-deco-file input[type=file] {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
}

.input-deco-file input[type=file] + label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  padding-left: 12px;
  padding: .35rem 3.2rem .35rem .8rem;
  line-height: 1.2rem;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  display: inline-block;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.input-deco-file input[type=file] + label::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: block;
  height: 100%;
  padding: .35rem .8rem;
  line-height: 1.2rem;
  color: #495057;
  content: "선택";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 4px 4px 0;
}

.input-deco-file input[type=file]:focus + label {
  border: 1px solid #5068eb;
  box-shadow: 0 0 0 2pt rgba(236,49,92,0.4);
  outline-style: none;
}

/*****************************
 * input control
 *****************************/
.input-control {
  display: inline-block;
  width: 200px;
  padding: 7px 12px;
  font-size: 12px;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #cdd3d9;
  border-radius: 4px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  font-family: '돋움', Dotum, sans-serif;
}
.input-control.focus,
.input-control:focus {
  outline-style: none;
  border-color: #5068eb;
}
.input-control.search {
  padding-right : 32px;
  background : #fff url(../images/input-search.png) no-repeat right 8px center;
  ime-mode : active;
}
.input-control.date {
  padding-right: 32px;
  background: #fff url(../images/input-datepicker.png) no-repeat right 8px center;
}
.input-control.simple.focus,
.input-control.simple:focus {
  outline-style: none;
  border-color: #cdd3d9;
}
.input-control.flat {
  border-radius: 0;
}
.input-control.flat.focus,
.input-control.flat:focus {
  outline-style: none;
  border-color: #cdd3d9;
}
.input-control.readonly {
  cursor: default;
}
.input-control.full-width {
  width: 100%;
}
input.input-control[readonly] {
  cursor: not-allowed;
  opacity: .65;
  background-color: #f1f1f1;
  border-color: #bfbfbf;
}
textarea.input-control[readonly] {
  cursor: not-allowed;
  opacity: .65;
  background-color: #f1f1f1;
  border-color: #bfbfbf;
}


/*****************************
 * definition of button's size
 *****************************/
.btn-lg,
.btn-group-lg > .btn {
  padding: 8px 20px;
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 8px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xxs,
.btn-group-xxs > .btn {
  padding: 1px 6px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}

/*****************************
 * dropdown caret
 *****************************/
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.btn > .caret,
.dropup > .btn > .caret {
  border-top-color: #000 !important; /* color */
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

/*****************************
 * dropdown/dropup menu
 *****************************/
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 13px;
  text-align: left;
  list-style: none;
  overflow-y: auto;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.vlimit {
  max-height: 300px;
  overflow-y: auto;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

/*****************************
 * droppopup menu
 *****************************/
.droppopup {
  position: relative;
}
.droppoup-toggle:focus {
  outline: 0;
}
.droppopup-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 13px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.open > .droppopup-menu {
  display: block;
}
.droppopup-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.dropup .droppopup-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

/*****************************
 * group of buttons
 *****************************/
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.clearfix::before,
.clearfix::after,
.btn-group-vertical > .btn-group::before,
.btn-group-vertical > .btn-group::after {
  display: table;
  content: " ";
}
.clearfix:after,
.btn-group-vertical > .btn-group::after {
  clear: both;
}

/*****************************
 * navigation bar
 *****************************/
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav::before, .nav::after {
  display: table;
  content: " ";
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/*****************************
 * navigation bar - panel
 *****************************/
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .tab-pane.active {
  display: block;
}

/*****************************
 * fade in/out effect
 *****************************/
.fade.in {
  opacity: 1;
}
.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

/*****************************
 * slider control
 *****************************/
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 3px;
  width: 100%;
  margin-top: -1px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -8px;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-disabled .slider-handle {
  background-color: #a8a8a8
}
.slider.slider-disabled .slider-track,
.slider.slider-disabled .slider-selection {
  background-color: #e5e5e5;
  border: 1px solid #e5e5e5;
  cursor: not-allowed; 
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-color: #c5c5c5;
}
.slider-selection {
  position: absolute;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: 2px;
  width: 16px;
  height: 16px;
  background-color: #5068eb;
  border: 4px solid #fff;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,0.4);
}
.slider-handle:hover {
  cursor: pointer;
}
.slider-handle.round {
  border-radius: 50%;
}

.slider.color .slider-selection {
  position: absolute;
  background-color: #5068eb;
  box-sizing: border-box;
  border-radius: 4px;
}

.slider.color .slider-handle {
  box-shadow: 0 1px 3px 1px rgba(0,0,0,0.4);
}

/*****************************
 * tooltip
 *****************************/
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: '돋움', Dotum, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: nowrap;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  /*max-width: 200px;*/
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #313131;
  border-radius: 4px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #313131;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #313131;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #313131;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #313131;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #313131;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #313131;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #313131;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #313131;
}

/*****************************
 * popover
 *****************************/
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: '돋움', Dotum, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}

.list-box {
  display: block;
  height: 100px;
  border: 1px solid #ced4da;
  background-color: #fff;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 5px;
}

.list-box > ul > li {
  line-height: 20px;
}

.inline-check-li {
  clear: both;
  font-weight: normal;
  display: block;
  padding-left: 7px;
}
.inline-check-li:hover {
  cursor: pointer;
}

.inline-check-li::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  border: 2px solid #555;
  background-color: #fff;
  border-radius: 0;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 5px;
  vertical-align: middle;
}

.inline-check-li.checked::before {
  background-color: #5068eb;
  border: 2px solid #5068eb;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.inline-check-btn {
  clear: both;
  font-weight: normal;
  display: inline-block;
}

.inline-check-btn::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  left: 0rem;
  top: .20rem;
  border: 2px solid #555;
  background-color: #fff;
  border-radius: 0;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center center;
}

.inline-check-btn.checked::before {
  background-color: #5068eb;
  border: 2px solid #5068eb;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.progress {
  height: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -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%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #5068eb;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  -webkit-transition: width .2s ease;
  -o-transition: width .2s ease;
  transition: width .2s ease;
}