@import 'bootstrap.min.css';
@import 'font-awesome.min.css';
@import 'animate.css';
html,
body {
  height: 100%;
  font-size: 14px;
}
body {
  color: #545454;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "微軟正黑體";
}
a:focus,
button:focus,
input:focus,
select:focus {
  outline-color: transparent;
}
a,
a:hover,
a:active {
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
.container {
  position: relative;
  max-width: inherit;
}
.container:after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 575px) {
  .container {
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.text-dark {
  color: #545454;
}
.text-orange {
  color: #ED5500;
}
.text-green {
  color: #4A7D6B;
}
.text-error,
.error {
  color: #FFCCCC;
}
.text-underline {
  text-decoration: underline;
}
.border-bottom {
  border-bottom: 1px solid #dbdbdb;
}
.border-less {
  border: none !important;
}
.bg-white {
  background-color: white !important;
}
.clearafter:after {
  content: '';
  display: table;
  clear: both;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.hide,
.hidden {
  display: none !important;
}
.fa-calendar:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  padding-right: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('images/icon_calendar.svg');
}
::-webkit-input-placeholder {
  color: #a4a4a4 !important;
}
::-moz-placeholder {
  color: #a4a4a4 !important;
}
::-ms-placeholder {
  color: #a4a4a4 !important;
}
::placeholder {
  color: #a4a4a4 !important;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  background-color: white;
  color: #545454;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
  outline: 0;
}
select::-ms-expand {
  display: none;
}
select {
  border: none;
  background-size: 10px 10px;
  padding-right: 20px !important;
  background-repeat: no-repeat;
  background-position: 98% center;
  background-image: url('images/icon_arrow_down.png');
  line-height: 1.2;
}
.form-control {
  font-size: 14px;
  border-radius: 0;
  box-shadow: 0 0 0 2px rgba(56,102,86,0);
}
.form-control:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px rgba(56,102,86,1);
}
.form-control.error {
  box-shadow: 0 0 0 2px rgba(56,102,86,0);
  border: 2px solid #ED5500;
}
.i-checkbox {
  position: relative;
  padding-left: 22px;
  line-height: 15px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.i-checkbox .checkmark:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 2px;
  background-color: white;
  border: 1px solid #dbdbdb;
  margin-top: 1px;
}
.i-checkbox .checkmark:after {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 10px;
  border-style: solid;
  border-color: #ED5500;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 1px;
  opacity: 0;
}
.i-checkbox input {
  position: absolute;
  opacity: 0;
}
.i-checkbox input:checked ~ .checkmark:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.i-checkbox input:disabled ~ .checkmark:after {
  border-color: #888888;
}
.i-radio {
  position: relative;
  padding-left: 22px;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.i-radio .checkmark:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background-color: #dbdbdb;
  border: 1px solid #dbdbdb;
  margin-top: 2px;
}
.i-radio .checkmark:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: #ED5500;
  margin-top: 2px;
  opacity: 0;
}
.i-radio input {
  position: absolute;
  opacity: 0;
}
.i-radio input:checked ~ .checkmark:before {
  background-color: white;
  border: 1px solid #dbdbdb;
  transition: all 0.3s ease-in-out;
}
.i-radio input:checked ~ .checkmark:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.i-radio input:disabled ~ .checkmark:after {
  background-color: #888888;
}
.modal-open {
  padding-right: 0 !important;
}
.modal.comfirm {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  height: 60%;
  width: 100%;
  max-width: 700px;
  padding-right: 0 !important;
}
@media (min-width: 575px) {
  .modal.comfirm {
    max-width: 480px;
  }
}
@media (max-width: 575px) {
  .modal.comfirm {
    max-width: 80%;
  }
}
.modal.comfirm .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.modal.comfirm .modal-content {
  border-radius: 0;
}
.modal.comfirm .modal-body {
  position: relative;
  line-height: 1.5;
  list-style: 1.5;
  font-size: 18px;
  padding: 50px 30px;
}
.modal.comfirm .modal-footer {
  border-top: 0;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 481px) {
  .modal.comfirm .modal-footer .iBtn {
    max-width: 49%;
  }
}
@media (max-width: 480px) {
  .modal.comfirm .modal-footer {
    display: block;
    text-align: center;
  }
  .modal.comfirm .modal-footer .iBtn {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.fancybox-slide {
  padding: 0;
}
.fancybox-content {
  padding: 0;
}
@media (min-width: 992px) {
  .fancybox-content {
    width: 90%;
    max-width: 920px;
    max-height: 80%;
  }
}
#gotocontent:focus {
  color: white;
  position: absolute;
}
[accesskey]:focus {
  color: #a4a4a4;
}
.wrap_header {
  background-color: #4A7D6B;
  padding-top: 35px;
  height: 130px;
}
@media (min-width: 768px) {
  .wrap_header {
    height: 160px;
  }
}
@media (min-width: 992px) {
  .wrap_header {
    padding-top: 40px;
    height: 200px;
  }
}
.wrap_header .logo {
  background-image: url('images/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 6px;
  width: 280px;
  height: 25px;
}
.wrap_header .logo a {
  display: block;
  color: transparent;
  height: 100%;
  /* Hide the text. */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.wrap_header .logo a:focus {
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .wrap_header .logo {
    margin-bottom: 10px;
    width: 460px;
    height: 40px;
  }
}
@media (min-width: 992px) {
  .wrap_header .logo {
    width: 560px;
    height: 50px;
  }
}
.wrap_header .title {
  color: white;
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .wrap_header .title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .wrap_header .title {
    font-size: 48px;
  }
}
@media (min-width: 481px) {
  .wrap_navigate .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.menu {
  text-align: center;
  padding-top: 30px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 481px) {
  .menu {
    padding-top: 50px;
    max-width: 80%;
  }
}
@media (max-width: 413px) {
  .menu [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
}
.menu a {
  display: inline-block;
  vertical-align: top;
  color: #545454;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  height: 210px;
  transition: background-image 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .menu a {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 100px;
  }
}
@media (max-width: 374px) {
  .menu a {
    font-size: 13px;
  }
}
.menu a > i {
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 130px;
  height: 130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 11px;
  transition: background-image 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .menu a > i {
    width: 172px;
    height: 172px;
    margin-bottom: 25px;
  }
}
@media (max-width: 374px) {
  .menu a > i {
    width: 115px;
    height: 115px;
  }
}
.menu a > i:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.menu a:hover > i:after,
.menu a:active > i:after,
.menu a:focus > i:after {
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
@media (min-width: 992px) {
  .menu a.item1 {
    float: left;
  }
}
.menu a.item1 > i {
  background-image: url('images/FLIGHT_STATUS.svg');
}
.menu a.item1 > i:after {
  background-image: url('images/FLIGHT_STATUS_hover.svg');
}
.menu a.item2 > i {
  background-image: url('images/FLIGHT_DEPARTURE_ARRIVAL_CERTIFICATE.svg');
}
.menu a.item2 > i:after {
  background-image: url('images/FLIGHT_DEPARTURE_ARRIVAL_CERTIFICATE_hover.svg');
}
@media (min-width: 992px) {
  .menu a.item3 {
    float: right;
  }
}
.menu a.item3 > i {
  background-image: url('images/MOBILE_FLIGHT_UPDATE.svg');
}
.menu a.item3 > i:after {
  background-image: url('images/MOBILE_FLIGHT_UPDATE_hover.svg');
}
@media (min-width: 992px) {
  .menu a.item4 {
    float: left;
  }
}
.menu a.item4 > i {
  background-image: url('images/REFUND_APPLICATION_R.svg');
}
.menu a.item4 > i:after {
  background-image: url('images/REFUND_APPLICATION_R_hover.svg');
}
.menu a.item5 > i {
  background-image: url('images/FLIGHT_DELAY_CANCEL.svg');
}
.menu a.item5 > i:after {
  background-image: url('images/FLIGHT_DELAY_CANCEL_hover.svg');
}
@media (min-width: 992px) {
  .menu a.item6 {
    float: right;
  }
}
.menu a.item6 > i {
  background-image: url('images/CONTACT_US.svg');
}
.menu a.item6 > i:after {
  background-image: url('images/CONTACT_US_hover.svg');
}
.menu.zh_tw a {
  height: 200px;
}
@media (min-width: 992px) {
  .menu.zh_tw a {
    height: 180px;
    margin-bottom: 100px;
  }
}
.description {
  padding-bottom: 70px;
}
@media (min-width: 992px) {
  .description {
    padding-bottom: 100px;
  }
}
.description .title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-color: #ED5500;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.38px;
  height: 70px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .description .title {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .description .title {
    padding-left: 65px;
    padding-right: 65px;
    margin-bottom: 30px;
  }
}
@media (max-width: 374px) {
  .description .title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
  }
}
.description .text {
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .description .text {
    padding: 0 3px;
  }
}
@media (min-width: 992px) {
  .description .text {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 374px) {
  .description .text {
    padding: 0 12px;
  }
}
.description .text ol {
  margin-left: 0;
  padding-left: 1.2rem;
}
.description .text ol > li {
  margin-bottom: 18px;
  padding-left: .5rem;
}
.description .text .question {
  color: #4A7D6B;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .description .text .question {
    margin-bottom: 0;
  }
}
.description .text .answer ul {
  margin-left: 0;
  padding-left: 1.2rem;
}
.description .text .answer ul li {
  list-style-type: lower-alpha;
  margin-bottom: 0;
  padding-left: .5rem;
}
.description .text .answer ul li a {
  color: #0066cc;
}
.description .text .answer ul li a:hover,
.description .text .answer ul li a:active,
.description .text .answer ul li a:focus {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .description .text .answer a.break {
    display: block;
    word-break: break-all;
  }
}
