@charset "UTF-8";
.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: #0b1a5a;
  border-color: #0b1a5a;
  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: #0b1a5a;
  -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: #0b1a5a;
  color: #0b1a5a;
}
.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_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 #0b1a5a;
}
.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: #0b1a5a;
  -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: #0b1a5a;
  -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;
}

/* 팝업 공통 */
.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;
}

.ct_privacy .app_header {
  height: 69px;
}
.ct_privacy .btn_prev {
  font-size: 14px;
  color: #0b1a5a;
  height: 58px;
}
.ct_privacy .btn_prev:before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #0b1a5a;
  border-bottom: 2px solid #0b1a5a;
  -webkit-transform: rotate(135deg);
     -moz-transform: rotate(135deg);
          transform: rotate(135deg);
  content: "";
  position: relative;
  top: -2px;
  margin-right: 4px;
}
.ct_privacy .title {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: bold;
}

.wrap {
  padding-bottom: 75px;
}
.wrap {
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (max-width: 479px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 413px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media all and (max-width: 374px) {
  .wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (max-width: 359px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.wrap p {
  margin: 6px 0 40px;
  font-size: 14px;
  color: #555;
}
.wrap p span {
  color: #0057c9;
}
.wrap .input_label {
  padding-left: 10px;
}
.wrap .email2 {
  margin-bottom: 10px;
}
.wrap .mi_btn {
  margin-top: 40px;
}
.wrap .f__item {
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

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

.el_hidden {
  display: none !important;
}

.bottom_fix {
  position: relative;
  min-height: -moz-calc(100vh - 75px);
  min-height: calc(100vh - 75px);
  padding-bottom: 90px;
}

.fix_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.icon_box {
  font-size: 20px;
  color: #0057c9;
  padding-top: 150px;
  text-align: center;
}
.icon_box:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  -moz-border-radius: 20px;
       border-radius: 20px;
}
.icon_box.success:before {
  background: #eee url("/images/common/ico_complete.png") no-repeat center 15px/19px auto;
}

.app .privacy_wrap {
  padding-top: 0;
  padding-bottom: 75px;
}
