@charset "UTF-8";
.ui-datepicker {
  text-align: center;
}
.ui-datepicker .ui-datepicker-header {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-top: -4px;
  background: url("/images/common/ico_datepicker_arrow_on.png") no-repeat center/8px auto;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev.ui-state-disabled,
.ui-datepicker .ui-datepicker-next.ui-state-disabled {
  background-image: url("/images/common/ico_datepicker_arrow_off.png");
  cursor: default;
}
.ui-datepicker .ui-datepicker-prev {
  float: left;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ui-datepicker .ui-datepicker-prev.ui-state-disabled {
  -webkit-transform: rotate(0);
     -moz-transform: rotate(0);
          transform: rotate(0);
}
.ui-datepicker .ui-datepicker-next {
  float: right;
}
.ui-datepicker .ui-datepicker-next.ui-state-disabled {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ui-datepicker .ui-datepicker-calendar {
  width: -moz-calc(100% - 20px);
  width: calc(100% - 20px);
  margin: 0 auto;
}
.ui-datepicker .ui-datepicker-calendar th {
  padding: 10px 0;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-calendar th:first-child,
.ui-datepicker .ui-datepicker-calendar td:first-child {
  color: #db2b34;
}
.ui-datepicker .ui-datepicker-calendar th:last-child,
.ui-datepicker .ui-datepicker-calendar td:last-child {
  color: #2761ad;
}
.ui-datepicker .ui-state-default {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-top: 1px;
  -moz-border-radius: 20px;
       border-radius: 20px;
  font-size: 15px;
  color: #b6b6b6;
  line-height: 36px;
  text-align: center;
}
.ui-datepicker a.ui-state-default {
  color: inherit;
}
.ui-datepicker .ui-state-active {
  background: #0057c9;
  color: #fff !important;
}

.mi_btn {
  height: 50px;
  line-height: 48px;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  -moz-border-radius: 3px;
       border-radius: 3px;
  font-size: 17px;
  color: #777;
  text-align: center;
}
.mi_btn:disabled {
  background-color: #f9f9f9;
  border-color: #ddd;
  color: #aaa;
}
.mi_btn.color {
  background-color: #2761ad;
  border-color: #2761ad;
  color: #fff;
}
.mi_btn.color.type2 {
  background-color: #236bb2;
}
.mi_btn.color.disabled, .mi_btn.color:disabled {
  background-color: #d8dee8;
  border-color: #d8dee8;
  color: #fff;
}
.mi_btn.color.disabled.on, .mi_btn.color:disabled.on {
  position: relative;
  color: #d8dee8 !important;
}
.mi_btn.color.disabled.on::after, .mi_btn.color:disabled.on::after {
  content: "";
  position: absolute;
  top: -moz-calc(50% - 15px);
  top: calc(50% - 15px);
  left: -moz-calc(50% - 15px);
  left: calc(50% - 15px);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  -moz-border-radius: 50%;
       border-radius: 50%;
  border-top-color: #2761ad;
  -webkit-animation: spin 1s ease-in-out infinite;
     -moz-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
}
.mi_btn.white {
  border-color: #2761ad;
  color: #2761ad;
}
.mi_btn.white.type2 {
  border-color: #abc3e2;
}
.mi_btn.white:disabled {
  color: #aaa !important;
  background-color: #fafafa;
  border-color: #ddd;
}
.mi_btn.c_red {
  background-color: #e27f72;
  border-color: #e27f72;
  color: #fff;
}
.mi_btn.w_red {
  border-color: #e27f72;
  color: #e27f72;
}
.mi_btn.sm {
  height: 23px;
  line-height: 21px;
  width: auto;
  font-size: 13px;
  padding: 0 10px;
}

.btn_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn_wrap .mi_btn {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.btn_wrap .mi_btn + .mi_btn {
  margin-left: 10px;
}
.btn_wrap.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btn_wrap.row .mi_btn {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.btn_wrap.row .mi_btn + .mi_btn {
  margin-left: 0;
  margin-top: 10px;
}

/* icon button */
.btn_download:after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 100%;
  background: url("/images/ico_btn_download.png") no-repeat left center/23px auto;
  vertical-align: top;
  margin-left: 8px;
}

.btn_add:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 100%;
  background: url("/images/ico_btn_add.png") no-repeat left center/13px auto;
  vertical-align: top;
  margin-right: 8px;
}

.btn_complete:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 100%;
  background: url("/images/ico_btn_complete.png") no-repeat left center/14px auto;
  vertical-align: top;
  margin-right: 8px;
}

.btn_emark {
  width: 30px;
  height: 30px;
}
.btn_emark:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 100%;
  background: url("/images/ico_btn_emark.png") no-repeat left center/16px auto;
  vertical-align: top;
}

.btn_search {
  width: 30px;
  height: 30px;
}
.btn_search:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 100%;
  background: url("/images/ico_btn_search.png") no-repeat left center/26px auto;
  vertical-align: top;
}

.mi_check {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.mi_check.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mi_check:not(.disabled) {
  cursor: pointer;
}
.mi_check + .mi_check {
  margin-left: 8px;
}
.mi_check input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
}
.mi_check input:disabled ~ .text {
  color: #ddd;
}
.mi_check input:checked ~ .ico_circle {
  background-color: #2761ad;
  background-image: url("/images/common/ico_circle_on.png");
  border-color: #2761ad;
}
.mi_check input:checked ~ .ico_check {
  background-image: url("/images/common/ico_check_on.png");
}
.mi_check input:checked ~ .ico_square:before {
  background-image: url("/images/common/ico_check_on.png");
  border-color: #2761ad;
}
.mi_check input:checked ~ .text {
  color: #1c1c1c;
}
.mi_check .ico_square, .mi_check .ico_check, .mi_check .ico_circle {
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: top;
}
.mi_check .ico_square + .text, .mi_check .ico_check + .text, .mi_check .ico_circle + .text {
  margin-left: 6px;
}
.mi_check .ico_circle {
  background: #fff url("/images/common/ico_circle.png") no-repeat center/12px auto;
  border: 1px solid #ddd;
  -moz-border-radius: 50%;
       border-radius: 50%;
}
.mi_check .ico_check {
  background: url("/images/common/ico_check.png") no-repeat center/12px auto;
}
.mi_check .ico_square {
  position: relative;
}
.mi_check .ico_square:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff url("/images/common/ico_check.png") no-repeat center/12px auto;
  border: 1px solid #ddd;
  -moz-border-radius: 2px;
       border-radius: 2px;
}
.mi_check .text {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #777;
  line-height: 26px;
  word-break: break-all;
}
.mi_check .text + [class^=ico] {
  margin-left: 6px;
}

.check_group.row, .check_group.tab, .check_group.bar, .check_group.button, .check_group.confirm, .check_group.mi_button, .check_group.list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.check_group.row .mi_check, .check_group.tab .mi_check, .check_group.bar .mi_check, .check_group.button .mi_check, .check_group.confirm .mi_check, .check_group.mi_button .mi_check, .check_group.list .mi_check {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}
.check_group.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.check_group.row .mi_check + .mi_check {
  margin-top: 10px;
}
.check_group.tab .mi_check {
  height: 70px;
  margin: 10px 0 0 -1px;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-bottom-color: #2761ad;
  background: #fafafa;
  font-size: 14px;
}
.check_group.tab .mi_check:first-child {
  margin-left: 0;
  -moz-border-radius-topleft: 4px;
       border-top-left-radius: 4px;
}
.check_group.tab .mi_check:last-child {
  -moz-border-radius-topright: 4px;
       border-top-right-radius: 4px;
}
.check_group.tab .mi_check.checked {
  height: 80px;
  margin-top: 0;
  background: #fff;
  border-color: #2761ad;
  border-bottom: 0;
  -moz-border-radius: 4px 4px 0 0;
       border-radius: 4px 4px 0 0;
  z-index: 1;
}
.check_group.tab .mi_check.checked .ico_circle {
  display: inline-block;
  position: absolute;
  top: 9px;
  right: 12px;
}
.check_group.tab .ico_circle {
  display: none;
}
.check_group.bar .mi_check, .check_group.button .mi_check, .check_group.confirm .mi_check {
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  -moz-border-radius: 3px;
       border-radius: 3px;
}
.check_group.bar .mi_check.checked, .check_group.button .mi_check.checked, .check_group.confirm .mi_check.checked {
  border-color: #2761ad;
  color: #2761ad;
  z-index: 1;
}
.check_group.bar .mi_check {
  margin-left: -1px;
  -moz-border-radius: 0;
       border-radius: 0;
  text-align: center;
}
.check_group.bar .mi_check:first-child {
  margin-left: 0;
  -moz-border-radius: 3px 0 0 3px;
       border-radius: 3px 0 0 3px;
}
.check_group.bar .mi_check:last-child {
  -moz-border-radius: 0 3px 3px 0;
       border-radius: 0 3px 3px 0;
}
.check_group.bar .mi_check.disabled {
  background: #f9f9f9;
}
.check_group.bar .mi_check.disabled.checked {
  border-color: #abc3e2;
}
.check_group.bar .mi_check.checked {
  background-color: #f4f7fb;
}
.check_group.button:not(.row) .mi_check + .mi_check, .check_group.confirm:not(.row) .mi_check + .mi_check, .check_group.mi_button:not(.row) .mi_check + .mi_check {
  margin-left: 10px;
}
.check_group.button .mi_check.disabled {
  background: #fafafa;
}
.check_group.button .mi_check.disabled .text {
  color: #b6b6b6;
}
.check_group.button .mi_check.disabled .ico_circle {
  background-color: #fafafa;
}
.check_group.button .text {
  color: #999;
}
.check_group.confirm {
  text-align: center;
}
.check_group.confirm .mi_check {
  padding: 6px;
  border-color: #abc3e2;
}
.check_group.confirm .mi_check.checked {
  background-color: #f4f7fb;
}
.check_group.confirm .mi_check.checked .ico_check {
  display: inline-block;
  margin-left: -9px;
  background-image: url("/images/common/ico_check_confirm_on.png");
}
.check_group.confirm .mi_check.checked .text {
  color: #2761ad;
}
.check_group.confirm .bad {
  border-color: #ddd;
}
.check_group.confirm .bad .text {
  color: #555;
}
.check_group.confirm .good {
  border-color: #cdcfd9;
}
.check_group.confirm .ico_check {
  display: none;
}
.check_group.confirm .text {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: 0;
  font-size: 14px;
  color: #2761ad;
}
.check_group.list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.check_group.list .mi_check {
  padding: 9px 8px 9px 10px;
}
.check_group.list .mi_check:hover {
  background-color: #f4f7fb;
}
.check_group.list .mi_check:hover .ico_check {
  background-image: url("/images/common/ico_check_list_on.png");
}
.check_group.list .mi_check input:checked ~ .ico_check {
  background-image: url("/images/common/ico_check_list_on.png");
}
.check_group.list .mi_check input:checked ~ .text {
  font-weight: bold;
  color: #2761ad;
}
.check_group.list .mi_check + .mi_check {
  margin-top: 5px;
}
.check_group.list .ico_check {
  height: 22px;
  background-image: url("/images/common/ico_check_list.png");
}
.check_group.list .text {
  color: #1c1c1c;
  line-height: 22px;
}
.check_group.capsule {
  display: inline-block;
  height: 30px;
  padding: 1px;
  -moz-border-radius: 15px;
       border-radius: 15px;
  border: solid 1px #ddd;
  background-color: #eee;
}
.check_group.capsule input:checked ~ .text {
  height: 26px;
  line-height: 24px;
  border: 1px solid #555;
  -moz-border-radius: 13px;
       border-radius: 13px;
  font-weight: bold;
  color: #fff;
}
.check_group.capsule input:checked ~ .off {
  background: #777;
}
.check_group.capsule input:checked ~ .active {
  background: #2761ad;
  border-color: #4c7ebf;
}
.check_group.capsule .mi_check {
  margin: 0;
}
.check_group.capsule .text {
  font-size: 13px;
  color: #b6b6b6;
  padding: 0 8px;
}
.check_group.init .text {
  color: #333;
}

.mi_input {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 44px;
  padding: 0 9px;
  background-color: #fff;
  border: 1px solid #ddd;
  -moz-border-radius: 3px;
       border-radius: 3px;
  font-size: 16px;
  color: #1c1c1c;
}
@media (max-width: 600px) {
  .mi_input {
    padding: 0 8px;
  }
}
.mi_input.select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 26px;
  background: #fff url("/images/common/ico_select.png") no-repeat right 0 center/26px auto;
}
.mi_input.select.init {
  color: #b6b6b6;
}
.mi_input.select.init option {
  color: #1c1c1c;
}
.mi_input.select::-ms-expand {
  display: none;
}
.mi_input.select::-ms-value {
  background-color: transparent;
  color: #1c1c1c;
}
.mi_input.select:not(:disabled):not(.disabled) {
  cursor: default;
}
.mi_input.search {
  -moz-border-radius: 0;
       border-radius: 0;
  border-width: 0 0 1px 0;
}
.mi_input.search:focus {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.mi_input.search:focus + .btn_search {
  border-bottom: 1px solid #2761ad;
}
.mi_input.search + .btn_search {
  height: 44px;
  width: 44px;
  border-bottom: 1px solid #ddd;
}
.mi_input.datepicker {
  background: url("/images/common/ico_datepicker.png") no-repeat center right 14px/19px auto;
}
@media (max-width: 359px) {
  .mi_input.datepicker {
    background-position: center right 11px;
  }
}
.mi_input.datepicker:not(:disabled) {
  cursor: pointer;
}
.mi_input.datepicker:focus {
  border-color: #2761ad;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
     -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.mi_input:not([readonly]):focus, .mi_input:not([readonly]):focus-within {
  border-color: #2761ad;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
     -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.mi_input:-moz-focusring {
  color: transparent;
  outline: none;
  text-shadow: 0 0 0 #000;
}
.mi_input::-webkit-input-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.mi_input:-moz-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.mi_input::-moz-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.mi_input:-ms-input-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.mi_input::-ms-input-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.mi_input::placeholder {
  color: #b6b6b6;
  opacity: 1;
}
.mi_input:disabled, .mi_input.disabled {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #f9f9f9;
  opacity: 1;
  -webkit-text-fill-color: #1c1c1c;
}

.input_group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.input_group + .input_group {
  margin-top: 17px;
}
.input_group.full {
  display: block;
}
.input_group.full .input_label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
}
.input_group.col2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.input_group.col2 .input_box {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-preferred-size: calc(50% - 5px);
      flex-basis: -moz-calc(50% - 5px);
      flex-basis: calc(50% - 5px);
}
.input_group.col2 .input_box:nth-child(n+3) {
  margin-top: 17px;
}
.input_group.col2 .input_box:nth-child(2n-1) {
  margin-right: 10px;
}

.input_label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 95px;
  padding-top: 10px;
  font-size: 15px;
}
.input_label.sub {
  padding-top: 0;
}
.input_label.sub em {
  display: block;
  font-size: 13px;
  color: #999;
}
@media (max-width: 374px) {
  .input_label {
    width: 77px;
    font-size: 15px;
  }
}
@media (max-width: 359px) {
  .input_label {
    width: 77px;
    font-size: 14px;
  }
}

.input_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.input_box.not_yet {
  position: relative;
}
.input_box.not_yet:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.input_box .mi_input + .mi_btn {
  margin-left: 10px;
}
.input_box .mi_btn {
  height: 44px;
  line-height: 42px;
  font-size: 14px;
}
.input_box .mi_btn + .mi_input {
  margin-left: 10px;
}
.input_box .check_group {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.input_box .check_group:last-child:not(:first-child) {
  margin-left: 10px;
}
.input_box .mi_check {
  padding: 8px !important;
}
.input_box .ma_b {
  margin-bottom: 10px;
}

.input_connect {
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  text-align: center;
  line-height: 44px;
}

.input_noti {
  font-size: 13px;
  color: #777;
  width: 100%;
  margin-top: 10px;
  word-break: keep-all;
}
.input_noti.bullet {
  padding-left: 8px;
  text-indent: -8px;
}

.c__point {
  color: #2761ad !important;
}

.c__blue {
  color: #0057c9 !important;
}

.c__red {
  color: #de4343 !important;
}

.t__bold {
  font-weight: bold !important;
}

.t__center {
  text-align: center !important;
}

.t__left {
  text-align: left !important;
}

.t__right {
  text-align: right !important;
}

.t__underline {
  text-decoration: underline !important;
}

.t__bg_line {
  position: relative;
  display: inline;
  z-index: 0;
}
.t__bg_line:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #eaf3ff;
  z-index: -1;
}

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

.f__right {
  float: right !important;
}

.f__box {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.f__box.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.f__item {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.align_center {
  overflow: hidden;
}
.align_center dt,
.align_center dd {
  float: left;
  width: 50%;
  margin-top: 4px;
}
.align_center dt {
  padding-right: 8px;
  text-align: right;
}
.align_center dd {
  padding-left: 8px;
}

.el_hidden {
  display: none !important;
}

.w__full {
  width: 100% !important;
}

.w__80 {
  width: 80px !important;
}

.w__120 {
  width: 120px !important;
}

.w__48 {
  width: 48px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_12 {
  margin-top: 12px !important;
}

.pl_48 {
  padding-left: 48px !important;
}

/* 팝업 공통 */
.mi_common_pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  min-width: 320px;
  padding: 0 16px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 99999;
}
.mi_common_pop {
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (max-width: 479px) {
  .mi_common_pop {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 413px) {
  .mi_common_pop {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media all and (max-width: 374px) {
  .mi_common_pop {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (max-width: 359px) {
  .mi_common_pop {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.mi_common_pop .inner {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.mi_common_pop .pop_wrap {
  position: absolute;
  width: 100%;
  max-width: 448px;
  padding-bottom: 65px;
  background: #fff;
}
.mi_common_pop .pop_wrap > .pop_title {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 10;
}
.mi_common_pop .pop_wrap > .pop_title + .pop_body {
  max-height: -moz-calc(100vh - 120px - 65px - 59px);
  max-height: calc(100vh - 120px - 65px - 59px);
}
.mi_common_pop .pop_body {
  font-size: 16px;
  color: #333;
  position: relative;
  max-height: -moz-calc(100vh - 120px - 65px);
  max-height: calc(100vh - 120px - 65px);
  padding: 0 10px;
  overflow-y: auto;
}
.mi_common_pop .pop_bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: #fff;
}
.mi_common_pop .pop_bottom .mi_btn {
  height: 45px;
  line-height: 43px;
  font-size: 16px;
}
.mi_common_pop .pop_bottom .mi_btn + .mi_btn {
  margin-left: 7px;
}
.mi_common_pop .pop_title {
  padding-top: 18px;
  font-size: 18px;
  font-weight: bold;
  color: #1c1c1c;
}
.mi_common_pop .pop_title.with_close {
  padding-right: 50px;
}
.mi_common_pop .btn_close {
  position: absolute;
  top: 6px;
  right: 0;
  width: 50px;
  height: 50px;
}
.mi_common_pop .btn_close::after, .mi_common_pop .btn_close::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  margin-left: -7px;
  background-color: #626262;
}
.mi_common_pop .btn_close::after {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mi_common_pop .btn_close::before {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mi_common_pop .pop_contents {
  padding: 25px 0 20px;
}

.mi_common_pop.basic .pop_title {
  margin: 0 10px;
  padding: 18px 0 13px;
  border-bottom: 1px solid #1c1c1c;
}
.mi_common_pop.basic .pop_body .pop_title {
  margin: 0;
}
.mi_common_pop.basic .pop_contents {
  padding-top: 20px;
}
.mi_common_pop.info .pop_title {
  padding: 25px 10px 10px;
  font-size: 16px;
  font-weight: normal;
}
.mi_common_pop.info .pop_contents {
  font-size: 15px;
  color: #777;
  padding: 0 10px 10px;
  text-align: left;
}
.mi_common_pop.info .pop_contents .pop_title {
  padding-left: 0;
  padding-right: 0;
}
.mi_common_pop.info .pop_bottom {
  padding: 0;
}
.mi_common_pop.info .pop_bottom .mi_btn {
  background-color: #f4f7fb;
  border-color: #f4f7fb;
  color: #2761ad;
  font-size: 15px;
}
.mi_common_pop.form .pop_title {
  padding: 18px 20px 20px;
}
.mi_common_pop.form .pop_body,
.mi_common_pop.form .pop_bottom {
  background: #f9f9f9;
}
.mi_common_pop.form .pop_contents {
  padding-left: 10px;
  padding-right: 10px;
}
.mi_common_pop.form .input_label {
  width: 23%;
  min-width: 80px;
}
.mi_common_pop.datepicker .pop_wrap {
  max-width: 335px;
  padding-bottom: 0;
  -moz-border-radius: 7px;
       border-radius: 7px;
  overflow: hidden;
}
.mi_common_pop.datepicker .pop_body {
  padding-bottom: 0;
}
.mi_common_pop.datepicker .btn_close {
  top: 2px;
}
.mi_common_pop.datepicker .pop_title {
  font-size: 16px;
  color: #0b1a5a;
  margin: 0;
  padding: 15px 20px 20px;
  background: #ecf0fa;
}
.mi_common_pop.datepicker .pop_contents {
  padding: 20px 0;
}
.mi_common_pop.select .pop_wrap {
  padding-bottom: 20px;
  -moz-border-radius: 7px;
       border-radius: 7px;
}
.mi_common_pop.select .pop_title {
  height: 40px;
}
.mi_common_pop.select .pop_body {
  padding: 0;
}
.desktop .mi_common_pop.select .pop_body {
  max-height: 600px;
}

.mi_common_pop.select .pop_contents {
  padding: 0 20px;
}
.mi_common_pop.select .select_title {
  margin-bottom: 6px;
  font-weight: bold;
  color: #1c1c1c;
}
.mi_common_pop.select .check_group,
.mi_common_pop.select .check_sigle {
  padding: 0 10px;
}
.mi_common_pop.select .check_group .text {
  font-size: 15px;
}
.mi_common_pop.select .check_group + .check_group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ddd;
}
.mi_common_pop.select.type2 .pop_contents {
  padding: 0;
}
.mi_common_pop.select.type2 .select_title {
  padding: 0 10px;
}
.mi_common_pop.select.type2 .mi_check {
  padding-left: 20px;
  padding-right: 10px;
}
.mi_common_pop.select.type2 .check_sigle:first-child .mi_check {
  border: none;
}
.mi_common_pop.select.type2 .check_sigle .mi_check {
  padding: 20px 10px;
  width: 100%;
  border-top: 1px solid #dddddd;
}
.mi_common_pop.select.type2 .check_sigle .mi_check:hover {
  background-color: #f4f7fb;
}
.mi_common_pop.select.type2 .check_sigle .mi_check:hover .ico_check {
  background-image: url(/images/common/ico_check_list_on.png);
}
.mi_common_pop.select.type2 .check_sigle .text {
  font-weight: bold;
  color: #1c1c1c;
}
.mi_common_pop.select.type2 .check_sigle input:checked ~ .text {
  color: #2761ad;
}
.mi_common_pop.select.type2 .check_sigle + .check_group {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.c__point {
  color: #2761ad;
}

.underline {
  text-decoration: underline;
}

.pop_bottom .mi_btn {
  width: 100%;
  text-align: center;
}

.wrap {
  min-height: 100vh;
  padding: 70px 0;
  background-color: #eff3f8;
}

.icon_box {
  display: inline-block;
}
.icon_box.warning {
  width: 40px;
  height: 40px;
  background: url(/dev-img/mibank-index-new/ico_alert.png) no-repeat center/contain;
}

.noti_add {
  text-align: center;
  color: #5c8cca;
  font-size: 14px;
}

.mi_common_pop.select.type2 .check_sigle.important {
  padding: 0;
}
.mi_common_pop.select.type2 .check_sigle.important .mi_check {
  border-color: #c6c7ce;
  background-color: #f9f9f9;
  padding: 20px 20px;
}
.mi_common_pop.select.type2 .check_sigle.important .mi_check .text {
  color: #de4343;
  padding-left: 25px;
  position: relative;
}
.mi_common_pop.select.type2 .check_sigle.important .mi_check .text:after {
  content: "";
  width: 15px;
  height: 15px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background: url(/images/common/ico_exclamation.png) no-repeat center/2px, #de4343;
  position: absolute;
  left: 0;
  top: 6px;
}
.mi_common_pop.select.type2 .check_sigle.important .mi_check:hover {
  background-color: #fff9de;
}
.mi_common_pop.select.type2 .check_sigle.important .mi_check:hover .ico_check {
  background-image: url(/images/common/ico_check_list_on_red.png);
}
.mi_common_pop.select.type2 .check_sigle.important .mi_check input:checked ~ .ico_check {
  background-image: url(/images/common/ico_check_list_on_red.png);
}
.mi_common_pop.select.type2 .check_group.list + .check_sigle {
  margin-top: 20px;
}
.mi_common_pop.select.type2 .check_group.list:last-child {
  padding-bottom: 15px;
}

.wrap {
  min-height: 100vh;
}

.mi_scroll_none {
  height: 100vh;
  overflow: hidden;
}

.cs_contact {
  background-color: #fff;
  max-width: 480px;
  min-height: 700px;
  margin: 0 auto;
  -webkit-box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
     -moz-box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
          box-shadow: 0 30px 100px rgba(0, 0, 0, 0.08);
}
.cs_contact .mi_input.select::-webkit-input-placeholder {
  color: #1c1c1c;
}
.cs_contact .mi_input.select:-moz-placeholder {
  color: #1c1c1c;
}
.cs_contact .mi_input.select::-moz-placeholder {
  color: #1c1c1c;
}
.cs_contact .mi_input.select:-ms-input-placeholder {
  color: #1c1c1c;
}
.cs_contact .mi_input.select::-ms-input-placeholder {
  color: #1c1c1c;
}
.cs_contact .mi_input.select::placeholder {
  color: #1c1c1c;
}
.cs_contact .input_label {
  width: 119px;
}
.cs_contact .info_type {
  padding: 30px 20px 40px 20px;
  border-top: 8px solid #efeff4;
}
.cs_contact .info_type .title {
  color: #2761ad;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
.cs_contact .info_type .sub_tit {
  margin-top: 20px;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: bold;
}
.cs_contact .info_type > div {
  padding-left: 10px;
  margin-top: 10px;
}
.cs_contact .info_type .dep2 {
  padding-left: 10px;
  margin-top: 5px;
}
.cs_contact .info_type .info_top {
  padding-left: 0;
  color: #555555;
  margin-top: 20px;
}
.cs_contact .info_type .info_top .noti {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 13px 13px 13px;
  margin: 20px 0 10px 0;
}
.cs_contact .info_type .info_top button {
  width: 100%;
  height: 34px;
  line-height: 32px;
  margin-top: 20px;
  font-size: 13px;
  background-color: #fff;
}
.cs_contact .info_type .info_top button span {
  padding-right: 30px;
  background: url(/images/cs/arr.png) no-repeat right center/26px;
}
.cs_contact .present {
  display: none;
}
.cs_contact .add_cmt {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #2761ad;
}
.cs_contact .case,
.cs_contact .mi_btn.case {
  display: none;
}
.cs_contact .mi_common_pop .pop_bottom .mi_btn {
  margin-top: 0;
}
.cs_contact .header_title {
  font-size: 19px;
  color: #fff;
  position: relative;
  height: 50px;
  line-height: 50px;
  background-color: #233057;
  z-index: 89;
  text-align: left;
  padding: 14px 0 0 20px;
}
.cs_contact form {
  padding: 0 25px 35px 25px;
}
.cs_contact form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  height: 140px;
  padding: 10px;
  overflow-y: auto;
}
.cs_contact form textarea::-webkit-input-placeholder {
  color: #b6b6b6;
}
.cs_contact form textarea:-moz-placeholder {
  color: #b6b6b6;
}
.cs_contact form textarea::-moz-placeholder {
  color: #b6b6b6;
}
.cs_contact form textarea:-ms-input-placeholder {
  color: #b6b6b6;
}
.cs_contact form textarea::-ms-input-placeholder {
  color: #b6b6b6;
}
.cs_contact form textarea::placeholder {
  color: #b6b6b6;
}
.cs_contact form textarea:disabled {
  background-color: #f9f9f9;
}
.cs_contact .conts {
  padding-left: 10px;
}
.cs_contact .mi_check .text {
  min-width: 80px;
}
.cs_contact .part .pt_tit {
  color: #1c1c1c;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-top: 30px;
}
.cs_contact .agree {
  padding-top: 20px;
}
.cs_contact .toggle_cmt {
  display: none;
}
.cs_contact .mi_btn {
  margin-top: 40px;
  height: 50px;
  line-height: 48px;
  width: 100%;
  background-color: #233057;
  border: 1px solid #233057;
  -moz-border-radius: 3px;
       border-radius: 3px;
  font-size: 17px;
  color: #fff;
  text-align: center;
}
.cs_contact .mi_btn:disabled {
  background: #d5d8e2;
  border-color: #d5d8e2;
}
.cs_contact .with_cmt {
  margin-top: 40px;
}
.cs_contact .with_cmt .mi_btn {
  margin-top: 15px;
}
.cs_contact .noti {
  background: #ecf0fa;
  padding: 15px;
  margin: 10px 0 40px 0;
  font-size: 14px;
}
.cs_contact .noti li {
  position: relative;
  padding-left: 15px;
}
.cs_contact .noti li::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #999;
  -moz-border-radius: 50%;
       border-radius: 50%;
  left: 0;
  top: 9px;
}

.under {
  text-decoration: underline;
}

.c__blue {
  color: #2761ad;
}

.md_footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.md_footer .first_bt.btn_md_footer {
  margin-right: 10px;
  border: 1px solid #343c56;
  background-color: #fff;
  color: #343c56;
}
.md_footer .first_bt.btn_md_footer:hover {
  background-color: #fff;
}

.complete {
  text-align: center;
}
.complete .result_cont {
  padding-top: 85px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  font-size: 15px;
  color: #777;
}
.complete .result_cont > strong {
  display: inline-block;
  padding-top: 55px;
  margin-bottom: 5px;
  color: #233057;
  font-weight: 900;
  font-size: 20px;
  position: relative;
}
.complete .result_cont > strong::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  position: absolute;
  top: 0;
  left: -moz-calc(50% - 20px);
  left: calc(50% - 20px);
  background: url("/dev-img/mibank-index-new/ico_result.png") no-repeat center/19px, #233057;
}
.complete .result_cont .noti {
  text-align: left;
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 40px 0 0 0;
  margin-top: 70px;
}
.complete .result_cont .noti li {
  margin-bottom: 12px;
  word-break: break-all;
}
.complete .result_cont .noti li strong {
  word-break: break-all;
}
.complete .result_cont .noti.single {
  text-align: center;
  border-top: none;
  margin-top: 0;
  font-size: 14px;
  color: #555;
}

@media (max-width: 480px) {
  .wrap {
    padding: 0;
  }
  .cs_contact form {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cs_contact {
    min-height: 100vh;
  }
}
/* 아이폰에서 힌트텍스트 감빡거리는거 방지용 */
/* 아이폰 input에 적용된 shadow 제거 */
input[type=text], input[type=tel], input[type=checkbox], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox] {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("/images/cs/ico_select.png") no-repeat right 0 center/26px auto;
}

.mi_common_pop.pd .pop_contents {
  padding-left: 10px;
  padding-right: 10px;
}
.mi_common_pop .box {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.mi_common_pop .box + .box {
  margin-bottom: 20px;
}
.mi_common_pop .box strong {
  position: absolute;
  left: 0;
  top: 0;
}

#popNationCall .pop_wrap {
  padding-bottom: 0;
}
#popNationCall .pop_contents {
  padding-bottom: 30px;
}
#popNationCall .num {
  padding: 15px 0;
  margin: 10px 0 0 0;
  background: #ecf0fa;
  color: #2761ad;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: none;
}
#popNationCall .noti {
  padding: 0 10px;
  margin-top: 30px;
}
#popNationCall .noti li {
  padding-left: 11px;
  color: #777;
  position: relative;
  word-break: break-all;
  font-size: 15px;
}
#popNationCall .noti li + li {
  margin-top: 10px;
}
#popNationCall .noti li:after {
  content: "";
  width: 3px;
  height: 3px;
  background: #b6b6b6;
  -moz-border-radius: 50%;
       border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
}

#emgPop .pop_body {
  padding: 25px 0;
}
#emgPop .icon_box {
  margin-bottom: 12px;
}
#emgPop .title_cmt {
  margin-bottom: 10px;
}

.mi_btn.color {
  background-color: #233057;
  border-color: #233057;
}
.mi_btn.white {
  border-color: #233057;
  color: #233057;
}

#popCategory .important .mi_check {
  padding-bottom: 40px;
  -moz-border-radius: 0 0 7px 7px;
       border-radius: 0 0 7px 7px;
}
#popCategory.pdb_none.select .pop_wrap {
  padding-bottom: 0;
  overflow: hidden;
}
