@charset "UTF-8";
h1, h2, h3 {
  display: none;
}

.ui-btn-blue {
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff !important;
  text-shadow: 0 0 0 #fff !important;
  font: 15px/1.6 verdana, 微軟正黑體;
  text-shadow: none !important;
  line-height: normal;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #00a3e0;
  box-shadow: 0 2px 0 #1a78b4;
}
.ui-btn-blue:hover {
  background: #1a78b4;
  box-shadow: 0 2px 0 #0f5a8a;
}

.ui-btn-orange {
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff !important;
  text-shadow: 0 0 0 #fff !important;
  font: 15px/1.6 verdana, 微軟正黑體;
  text-shadow: none !important;
  line-height: normal;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #fc4c02;
  box-shadow: 0 2px 0 #c83d0d;
}
.ui-btn-orange:hover {
  background: #db1a00;
  box-shadow: 0 2px 0 #ab3d2a;
}

.ui-btn-gray {
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff !important;
  text-shadow: 0 0 0 #fff !important;
  font: 15px/1.6 verdana, 微軟正黑體;
  text-shadow: none !important;
  line-height: normal;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #b1b1b1;
  box-shadow: 0 2px 0 #8c8c8c;
}
.ui-btn-gray:hover {
  background: #919090;
  box-shadow: 0 2px 0 #7a7a7a;
}

.ui-btn-lineblue {
  box-sizing: border-box;
  border-radius: 5px;
  font: 15px/1.6 verdana, 微軟正黑體;
  line-height: normal;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 10px;
  background: transparent;
  outline: none;
  cursor: pointer;
  color: #00a3e0 !important;
  text-shadow: 0 0 0 #00a3e0 !important;
  border: 1px solid #00a3e0;
}
.ui-btn-lineblue:hover {
  color: #fff !important;
  text-shadow: 0 0 0 #fff !important;
  background: #00a3e0;
}

.ui-radio-box {
  display: flex;
}
.ui-radio-box input {
  display: none;
}
.ui-radio-box li, .ui-radio-box label {
  display: inline-block;
}
.ui-radio-box label {
  position: relative;
  cursor: pointer;
  padding-left: 23px;
}
.ui-radio-box label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.ui-radio-box label input:checked ~ .checkmark {
  border: 1px solid #00a3e0;
}
.ui-radio-box label input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00a3e0;
}
.ui-radio-box label .checkmark {
  box-sizing: border-box;
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #c5c5c5;
  background: #fff;
  border-radius: 50%;
}
.ui-radio-box label:hover input ~ .checkmark {
  border: 1px solid #00a3e0;
}
.ui-radio-box label.not-choose {
  cursor: default;
}
.ui-radio-box label.not-choose .checkmark, .ui-radio-box label.not-choose:hover .checkmark {
  border: 1px solid #c5c5c5;
}
.ui-radio-box label.not-choose .checkmark:after, .ui-radio-box label.not-choose:hover .checkmark:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 8px;
  height: 20px;
  width: 1px;
  background: #c5c5c5;
  transform: rotate(45deg);
}

.ui-checkbox-box {
  display: inline-block;
}
.ui-checkbox-box input {
  display: none;
}
.ui-checkbox-box li, .ui-checkbox-box label {
  display: inline-block;
}
.ui-checkbox-box label {
  position: relative;
  padding-left: 25px;
  white-space: nowrap;
  cursor: pointer;
}
.ui-checkbox-box label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.ui-checkbox-box label input:checked ~ .checkmark {
  background: #00a3e0;
  border: 1px solid #00a3e0;
}
.ui-checkbox-box label input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: block;
  transform: rotate(45deg);
}
.ui-checkbox-box label .checkmark {
  box-sizing: border-box;
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #c5c5c5;
  background: #fff;
  border-radius: 2px;
}
.ui-checkbox-box label:hover input ~ .checkmark {
  border: 1px solid #00a3e0;
}

.ui-select {
  *zoom: 1;
  font: 14px/1.6 verdana, 微軟正黑體;
}
.ui-select:before, .ui-select:after {
  content: "";
  display: table;
}
.ui-select:after {
  clear: both;
}
.ui-select select {
  clear: none;
}
.ui-select .wide {
  border-radius: 5px;
  clear: none;
  border: 1px solid #d5d5d5;
  line-height: 35px;
  height: 35px;
  padding-left: 10px;
}
.ui-select .nice-select:active, .ui-select .nice-select.open, .ui-select .nice-select:focus {
  border: 1px solid #00a3e0;
}
.ui-select .nice-select .list {
  border-radius: 2px;
  border: 1px solid #d5d5d5;
  box-shadow: 0px 1px 3px #efefef;
  margin-top: 1px;
  width: 100%;
  max-height: 225px;
  overflow-y: auto;
}
.ui-select .nice-select .list > li {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ui-select .nice-select .option.focus {
  background: #fff !important;
  color: #00a3e0;
  text-shadow: 0 0 0 #00a3e0;
}
.ui-select .nice-select .option:hover, .ui-select .nice-select .option .selected.focus {
  background: #00a3e0 !important;
  color: #fff;
  text-shadow: 0 0 0 #fff;
}
.ui-select .nice-select .current {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.popupPosition {
  position: relative;
}

.tooltip__wrap {
  border-radius: 5px;
  background: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  position: absolute;
  height: auto;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.tooltip__wrap .tooltip__content {
  box-sizing: border-box;
  height: 100%;
  padding: 10px;
  text-align: left;
}

.blueBoder {
  border: 1px solid #00a3e0;
}
.blueBoder .tooltip__content:before {
  border-bottom: 10px solid #00a3e0;
}

.font-14 {
  font-size: 14px;
}

.font-20 {
  font-size: 20px;
}

.font-24 {
  font-size: 24px;
}

.d-flex {
  display: flex;
}

.orange100 {
  color: #fc4c02;
  text-shadow: 0 0 0 #fc4c02;
}

.orange-price {
  color: #E85B20;
  text-shadow: 0 0 0 #E85B20;
}

.alertText {
  color: #fc4c02;
  text-shadow: 0 0 0 #fc4c02;
}

.bg-orange20 {
  background: #ffebda;
}

.hr-gray {
  border-top: 1px solid #d5d5d5;
}

.vr-gray {
  border-left: 1px solid #d5d5d5;
}

.pkgIcon {
  fill: currentColor;
  display: flex;
  flex: 0 0 auto;
}

.pkg-direct,
.pkg-transfer {
  border-radius: 25px;
  display: block;
  width: 50px;
  height: 3px;
  background: #d5d5d5;
  position: relative;
}
.pkg-direct:before, .pkg-direct:after,
.pkg-transfer:before,
.pkg-transfer:after {
  box-sizing: border-box;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: 5;
}

.pkg-direct:before, .pkg-direct:after {
  content: "";
  background: #d5d5d5;
  width: 10px;
  height: 10px;
  top: -3px;
}
.pkg-direct:before {
  left: 0;
}
.pkg-direct:after {
  right: 0;
}

.pkg-transfer:before {
  content: "";
  background: #fff;
  border: 3px solid #d5d5d5;
  width: 12px;
  height: 12px;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.pkg-plus,
.pkg-minus {
  display: block;
}
.pkg-plus:before, .pkg-plus:after,
.pkg-minus:before,
.pkg-minus:after {
  content: "";
  background: #fff;
}

.pkg-plus {
  position: relative;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}
.pkg-plus:before, .pkg-plus:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}
.pkg-plus:before {
  transform: rotate(45deg);
}
.pkg-plus:after {
  transform: rotate(-45deg);
}

.pkg-minus:before {
  border-radius: 25px;
  display: block;
  width: 15px;
  height: 3px;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
a, a:hover, a:active, a:visited {
  color: #333;
  text-shadow: 0 0 0 #333;
}

button.ui-btn-orange, button.ui-btn-gray, button.ui-btn-blue, button.ui-btn-lineblue, a.ui-btn-orange, a.ui-btn-gray, a.ui-btn-blue, a.ui-btn-lineblue {
  min-width: 100px;
}

.wrapbox {
  width: 98%;
  margin: 0 auto 20px;
}
@media (min-width: 960px) {
  .wrapbox {
    width: 100%;
  }
}

.device-btn,
.device-text,
.device-tab,
.device-moreTab__content,
.UIselect {
  display: none;
}

.step-lineBox {
  display: flex;
  align-items: flex-end;
  counter-reset: step;
  margin-bottom: 40px;
  gap: 2px;
}
.step-lineBox .row {
  box-sizing: border-box;
  color: #999;
  text-shadow: 0 0 0 #999;
  flex: 1 1 100%;
  text-align: center;
  font-size: 15px;
}
.step-lineBox .row:first-child .step-line {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.step-lineBox .row:last-child .step-line {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}
.step-lineBox .step-line {
  background: #d5d5d5;
  height: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}
.step-lineBox .step-number {
  color: #fff;
  text-shadow: 0 0 0 #fff;
  border-radius: 50%;
  background: #d5d5d5;
  width: 25px;
  height: 25px;
  line-height: 25px;
}
.step-lineBox .step-number:before {
  content: counter(step);
  counter-increment: step;
  font-size: 14px;
}
.step-lineBox .active {
  color: #84329b;
  text-shadow: 0 0 0 #84329b;
}
.step-lineBox .active .step-line,
.step-lineBox .active .step-number {
  background: #84329b;
}

.tooltips-full {
  display: none;
}

.tooltips {
  position: relative;
}
.tooltips .open-tooltip {
  gap: 10px;
  cursor: pointer;
}
.tooltips .textContents {
  white-space: nowrap;
}
.tooltips .tooltip__wrap {
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  width: 200px;
}

.hide {
  display: none !important;
}

.popupBox-bg {
  color: #333;
  text-shadow: 0 0 0 #333;
  font: 15px/1.6 verdana, 微軟正黑體;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.popupBox-bg img, .popupBox-bg object, .popupBox-bg embed, .popupBox-bg video {
  max-width: 100%;
}

.popupBox {
  animation: slideInDown 0.3s ease-out;
  border-radius: 10px;
  background: #fff;
  margin: 10% auto 0;
  width: 80%;
  max-width: 650px;
  height: 80%;
  position: relative;
}
@media (min-width: 960px) {
  .popupBox {
    margin: 140px auto 0;
    height: 650px;
  }
}
.popupBox .content {
  box-sizing: border-box;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  height: calc(100% - 100px);
}
.popupBox .mobile-fixTitle {
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  background: #F6F6F6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 25px;
  height: 100px;
  z-index: 7;
}
.popupBox .mobile-fixTitle p {
  font-size: 24px;
}
.popupBox .popupBox-close {
  padding: 20px;
  margin-right: -20px;
  cursor: pointer;
}
.popupBox .popupBox-close .closeBtn {
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 150ms;
  display: block;
}
.popupBox .popupBox-close .closeBtn:before, .popupBox .popupBox-close .closeBtn:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  height: 4px;
  background: #999;
  border-radius: 4px;
}
.popupBox .popupBox-close .closeBtn:before {
  transform: rotate(45deg);
}
.popupBox .popupBox-close .closeBtn:after {
  transform: rotate(-45deg);
}
.popupBox .popupBox-close:hover .closeBtn, .popupBox .popupBox-close:focus .closeBtn {
  transform: rotateZ(90deg);
}

.formList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.formList .textSub {
  flex: 0 0 auto;
}
.formList .row,
.formList .col-02 {
  display: flex;
  align-items: center;
}
.formList .row {
  gap: 10px;
}
.formList .col-02 {
  gap: 5px;
}

.menu-panel {
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 10px;
  position: absolute;
  top: 65px;
  z-index: 10;
}
.menu-panel .select-list {
  overflow-y: auto;
  font-size: 14px;
  width: 210px;
  max-height: 225px;
  display: grid;
}
.menu-panel .option {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  padding: 8px 10px;
}
.menu-panel .option:hover {
  transition: all 0.2s ease-out;
  background: #00a3e0;
  color: #fff;
  text-shadow: 0 0 0 #fff;
}
.menu-panel .active {
  background: #fff;
  color: #00a3e0;
  text-shadow: 0 0 0 #00a3e0;
}

.mainContainer {
  color: #333;
  text-shadow: 0 0 0 #333;
  margin: 0 auto;
  font: 15px/1.6 verdana, 微軟正黑體;
  min-width: 768px;
  padding-top: 85px;
  padding-bottom: 40px;
}
@media (min-width: 960px) {
  .mainContainer {
    max-width: 960px;
    padding-top: 0;
  }
}
.mainContainer img, .mainContainer object, .mainContainer embed, .mainContainer video {
  max-width: 100%;
}
.mainContainer input {
  border: none;
  font: 14px/1.6 verdana, 微軟正黑體;
  line-height: 1;
  outline: none;
  padding: 0;
  width: auto;
}
.mainContainer input::-moz-placeholder {
  color: #999;
  text-shadow: 0 0 0 #999;
}
.mainContainer input::placeholder {
  color: #999;
  text-shadow: 0 0 0 #999;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .mainContainer input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
}
.mainContainer input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #333;
}

.reSearch {
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}
.reSearch ::-webkit-scrollbar {
  width: 10px;
}
.reSearch ::-webkit-scrollbar-track {
  border-radius: 25px;
  background: #EBEBEB;
}
.reSearch ::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background: #B8B8B8;
}
.reSearch ::-webkit-scrollbar-thumb:hover {
  background: #B8B8B8;
}
.reSearch input {
  cursor: pointer;
}
.reSearch span, .reSearch input {
  color: #333;
  text-shadow: 0 0 0 #333;
  background: transparent;
  line-height: normal;
}
.reSearch .col {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.reSearch .vr-gray {
  position: relative;
  top: 10px;
  bottom: 10px;
  height: calc(100% - 20px);
}
.reSearch .w-l {
  width: 230px;
}
.reSearch .w-s {
  width: 150px;
}
.reSearch .tooltip__wrap {
  width: 250px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}
.reSearch .box-border {
  display: flex;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  position: relative;
  cursor: pointer;
}
.reSearch .box-border:hover {
  background: #F2F2F2;
}
.reSearch .block {
  padding: 20px;
}
.reSearch .hr-gray {
  margin: 20px 0;
}
.reSearch .main-title {
  font-size: 18px;
}
.reSearch .grid__top {
  justify-content: space-between;
  align-items: center;
}
.reSearch .grid__content {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.reSearch .block-01,
.reSearch .block-02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.reSearch .disabled input {
  color: #999 !important;
  text-shadow: 0 0 0 #999 !important;
}

.hoverColor input {
  border: 1px solid #00a3e0 !important;
}

.btnWrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.discList {
  margin-left: 25px;
}
.discList > li {
  list-style: disc;
}

.numList {
  margin-left: 25px;
}
.numList > li {
  list-style: decimal;
}

.alert {
  display: grid;
  gap: 20px;
  font-size: 15px;
}
.alert .bg-orange20 {
  border-radius: 5px;
  color: #fc4c02;
  text-shadow: 0 0 0 #fc4c02;
  padding: 8px 20px;
  display: block;
}
.alert .open-schedules {
  cursor: pointer;
}
.alert .open-schedules:hover {
  color: #fc4c02;
  text-shadow: 0 0 0 #fc4c02;
  background: #fde2cc;
}

.schedules {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.schedules img {
  display: block;
  width: 60px;
}
.schedules .row {
  display: grid;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}
.schedules .airLogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedules .schedules-item {
  display: grid;
  gap: 20px;
  padding: 0 10px;
}
.schedules .discList {
  font-size: 14px;
  color: #666;
  text-shadow: 0 0 0 #666;
}

.MP-flight {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.MP-flight .hr-gray {
  margin: 10px 0;
}
.MP-flight .textLink {
  color: #00a3e0;
  text-shadow: 0 0 0 #00a3e0;
  border-bottom: 1px dashed #00a3e0;
}
.MP-flight .textLink:hover {
  color: #005eb8;
  text-shadow: 0 0 0 #005eb8;
  border-bottom: 1px dashed #005eb8;
}
.MP-flight .main-title {
  font-size: 16px;
  padding: 0 20px;
}
.MP-flight .disabled p, .MP-flight .disabled span, .MP-flight .disabled a, .MP-flight .disabled label {
  color: #999 !important;
  text-shadow: 0 0 0 #999 !important;
}
.MP-flight .disabled .col.col-04 .open-tooltip {
  border-bottom: 1px dashed #999 !important;
}
.MP-flight .disabled .pkg-moon {
  color: #d5d5d5;
  text-shadow: 0 0 0 #d5d5d5;
}
.MP-flight .disabled .open-tooltip:hover .pkg-moon {
  color: #d5d5d5;
  text-shadow: 0 0 0 #d5d5d5;
}

.flightItem {
  display: grid;
  gap: 20px;
}
.flightItem > .col {
  transition: all 0.2s ease-out;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #d5d5d5;
  padding: 20px;
  position: relative;
}
.flightItem > .col:hover {
  border-radius: 3px;
  border: 1px solid #00a3e0;
  background: #00a3e0;
}
.flightItem > .col:hover .textNum {
  color: #fff;
  text-shadow: 0 0 0 #fff;
  background: #00a3e0;
}
.flightItem .textNum {
  color: #fff;
  text-shadow: 0 0 0 #fff;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 1;
  background: #d5d5d5;
  padding: 0 8px;
  border-top-left-radius: 5px;
}
.flightItem .pkg-moon {
  color: #ffc600;
  text-shadow: 0 0 0 #ffc600;
}
.flightItem .flight-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 960px) {
  .flightItem .flight-logo {
    flex-direction: column;
  }
}
.flightItem .flight-logo img {
  width: 60px;
}
.flightItem .flightItem {
  display: grid;
  gap: 20px;
}
.flightItem .flightItem__content {
  box-sizing: border-box;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background: #fff;
  margin: -18px;
  padding: 18px;
}
@media (min-width: 960px) {
  .flightItem .flightItem__content {
    grid-template-columns: 120px auto 140px;
    align-items: flex-start;
  }
}
.flightItem .grid-01 {
  display: grid;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 960px) {
  .flightItem .grid-01 {
    grid-row: 1/3;
  }
}
.flightItem .grid-02 {
  grid-column: span 2;
  grid-row-end: 3;
  border-top: 1px solid #d5d5d5;
  display: grid;
  gap: 20px;
  padding-top: 10px;
}
@media (min-width: 960px) {
  .flightItem .grid-02 {
    grid-column: 2/2;
    grid-row: 1/3;
    border-top: none;
    border-left: 1px solid #d5d5d5;
    padding: 0 0 0 10px;
  }
}
.flightItem .grid-03 {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 960px) {
  .flightItem .grid-03 {
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
  }
}
.flightItem .grid-03 .textPrice {
  display: flex;
  align-items: self-end;
  gap: 5px;
  font-size: 14px;
}
@media (min-width: 960px) {
  .flightItem .grid-03 .textPrice {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.flightItem .grid-03 .btnWrap {
  margin-left: 10px;
}
.flightItem .grid-04 {
  grid-column: span 2;
}
@media (min-width: 960px) {
  .flightItem .grid-04 {
    grid-column: span 3;
  }
}
.flightItem .moreBtn {
  box-sizing: border-box;
  border-radius: 5px;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  float: left;
}
.flightItem .moreBtn .col {
  align-items: center;
  background: #66C8EC;
  border: 1px solid #66C8EC;
  gap: 0;
  display: none;
}
.flightItem .moreBtn .col:hover {
  border: 1px solid #00a3e0;
  background: #00a3e0;
}
.flightItem .moreBtn .textContents {
  background: #fff;
  padding: 3px 8px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.flightItem .moreBtn .pkg-plus,
.flightItem .moreBtn .pkg-minus {
  margin: 0 8px;
}
.flightItem .moreBtn .col.active {
  display: flex;
}
.flightItem .moreBtn .minus.active {
  background: #00a3e0;
  border: 1px solid #00a3e0;
}
.flightItem .open-tooltip:hover .pkg-moon {
  color: #ff9e1b;
  text-shadow: 0 0 0 #ff9e1b;
}
.flightItem .promo-text {
  border-radius: 25px;
  background: #ffe899;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
}

.moreTab {
  display: flex;
  align-items: center;
  gap: 10px;
  float: right;
}
.moreTab .pkgIcon {
  color: #d5d5d5;
  text-shadow: 0 0 0 #d5d5d5;
}
.moreTab .pkg-airplane {
  transform: rotate(45deg);
}
.moreTab .tabNav {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 3px 8px;
}
.moreTab .tabNav:hover .pkgIcon {
  color: #00a3e0;
  text-shadow: 0 0 0 #00a3e0;
}
.moreTab .active .tabNav {
  background: #ccedf9;
  border-radius: 25px;
}
.moreTab .active .pkgIcon {
  color: #00a3e0;
  text-shadow: 0 0 0 #00a3e0;
}

.grid-02 .row {
  animation: fadeIn 0.5s ease-out;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.grid-02 .row:not(.grid__top) {
  align-items: center;
}
.grid-02 .field-02 {
  border-top: 1px dashed #d5d5d5;
  padding-top: 20px;
}
.grid-02 .field-03 {
  *zoom: 1;
  padding-top: 20px;
}
.grid-02 .field-03:before, .grid-02 .field-03:after {
  content: "";
  display: table;
}
.grid-02 .field-03:after {
  clear: both;
}
.grid-02 .col-02 {
  width: 10%;
}
.grid-02 .col-03 .tooltip__wrap {
  right: unset;
  transform: translateX(-50%);
}
.grid-02 .col-01,
.grid-02 .col-03,
.grid-02 .col-04 {
  width: 30%;
  display: flex;
  gap: 5px;
  padding: 10px;
  justify-content: center;
  text-align: center;
}
.grid-02 .col-04 .open-tooltip {
  color: #00a3e0;
  text-shadow: 0 0 0 #00a3e0;
  border-bottom: 1px dashed #00a3e0;
}
.grid-02 .col-04 .open-tooltip:hover {
  color: #005eb8;
  text-shadow: 0 0 0 #005eb8;
  border-bottom: 1px dashed #005eb8;
}
.grid-02 .details .grid__content:hover {
  background: #F2FBFF;
}

.moreTab__content > div {
  animation: fadeIn 0.7s ease-out;
  padding-top: 20px;
}

.nav01-content {
  display: grid;
  gap: 30px;
}
.nav01-content .row {
  display: flex;
  align-items: center;
  text-align: center;
}
.nav01-content .col {
  padding: 10px;
}
.nav01-content .alertText {
  font-size: 13px;
}
.nav01-content .pkgIcon {
  margin: 0 auto;
}
.nav01-content .pkg-arrowRight,
.nav01-content .pkg-airplane {
  color: #999;
  text-shadow: 0 0 0 #999;
}
.nav01-content .pkg-airplane {
  width: 25px;
  height: 25px;
}
.nav01-content .pkg-arrowRight {
  width: 30px;
  height: 30px;
}
.nav01-content .pkg-airCodeshare {
  width: 30px;
  height: 30px;
}
.nav01-content .transfer,
.nav01-content .stopover {
  border-radius: 5px;
  color: #666;
  text-shadow: 0 0 0 #666;
  background: #f6f6f6;
  justify-content: center;
  font-size: 14px;
}
.nav01-content .transfer .col,
.nav01-content .stopover .col {
  display: flex;
  gap: 20px;
}
.nav01-content .grid-title {
  border-radius: 5px;
  text-align: center;
  background: #CCEDF9;
  padding: 5px 0;
  margin-bottom: 10px;
}
.nav01-content .details {
  display: grid;
  gap: 10px;
}
.nav01-content .normal .col-01,
.nav01-content .normal .col-04 {
  width: 5%;
}
.nav01-content .normal .col:not(.col-01):not(.col-04) {
  width: 22.5%;
  text-align: left;
}
.nav01-content .tooltips .tooltip__wrap {
  left: 0;
  transform: translateX(0);
}

.outbound .pkg-airplane {
  transform: rotate(90deg);
}

.inbound .pkg-airplane {
  transform: rotate(-90deg);
}

.nav02-content .priceRules,
.nav02-content .row {
  display: grid;
  border-bottom: 1px solid #fff;
}
.nav02-content .row {
  gap: 10px;
  grid-template-columns: 130px auto;
}
.nav02-content .col {
  box-sizing: border-box;
  padding: 16px 10px;
}
.nav02-content .col-01 {
  background: #efefef;
}

.nav03-content {
  display: grid;
  gap: 20px;
}
.nav03-content .baggageInfo {
  display: grid;
}
.nav03-content .grid__top {
  background: #efefef;
}
.nav03-content .row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
}
.nav03-content .col {
  box-sizing: border-box;
  padding: 10px;
}
.nav03-content .col:not(.col-01) {
  width: 15%;
}
.nav03-content .col-01 {
  width: 40%;
}

.nav02-content,
.nav03-content {
  font-size: 14px;
}