@media print,
screen and (min-width: 768px) {
    .app_txt {
        font-size: 15px;
    }
}

.app_txt {
    color: #fd031c;
    font-weight: bold;
    display: block;
}

.mt-add {
    margin-top: 5px;
}

.mb-add {
    margin-bottom: 5px;
}

/*-------------

seminar modal

-------------*/

#cmn_header {
  position: relative;
  z-index: 1000;
}

.modal {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  position: fixed;
  z-index: 1000000000;
  background: rgba(255, 255, 255, 0.6);
}
.modal .modal_inr {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal .modal_inr .banner_box {
  display: block;
  position: relative;
}
.modal .modal_inr .banner_box .banner {
  width: 80rem;
}
@media only screen and (max-width: 767px) {
  .modal .modal_inr .banner_box .banner {
    width: 90%;
    margin: auto;
  }
}
.modal .modal_inr .banner_box .close_btn {
  width: 8rem;
  position: absolute;
  top: -4rem;
  right: -4rem;
}
.modal .modal_inr .banner_box .close_btn:hover {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modal .modal_inr .banner_box .close_btn {
    width: 5rem;
    top: -2.5rem;
    right: 0.5rem;
  }
}