input {
  border: none;
  outline: none;
}

.app {
  display: flex;
  height: 100vh;
  align-items: center;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-content-width);
}

#cntnt {
  width: var(--max-content-width);
}

.main_menu {
  z-index: 20;
  display: flex;
  padding: 0.5em 0px;
  background-color: #fff;
  justify-content: space-between;
  min-height: 32px;
  width: 100%;
}

.wrapper {
  height: 100%;
  transition: height 0.5s ease;

  width: 100%;
  display: flex;
  align-items: center;
}

.wrapper.animate {
  height: auto;
}

.background {
  height: 400px;
  gap: 10px;
  background-position-y: -50px;
  transition: height 0.5s ease, gap 0.5s ease, background-position-y 0.5s ease;

  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-position-x: center;
  background-image: url('../img/skyline.jpg');
}

.background.animate {
  height: 100px;
  gap: 0px;
  background-position-y: -350px;
}

.central_bg {
  width: 100%;
  height: 300px;
  display: flex;
  position: absolute;
  align-items: center;
  top: calc(50% - 180px);
  justify-content: center;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url("../img/skyline.jpg");
  background-position-x: center;
  transition: top 0.5s, height 0.5s;
}

.central_bg.animate {
  top: 30px;
  height: 150px;
  background-position-y: -187px;
}

.logo {
  cursor: "pointer";
  width: 130px;
  transition: width 0.5s, margin-top 0.5s;
}

.logo.animate {
  width: 90px;
  margin-top: 100px;
}

.central_content {
  z-index: 3;
  width: 100%;
  display: flex;
  min-width: 500px;
  max-width: var(--max-content-width);
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.reserve_but_wrapper {
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0;
}

.hide_desktop {
  display: none;
}

@media screen and (max-width: 480px) {
  .main_menu {
    box-sizing: border-box;
    padding: 0.5em 10px;
  }

  .background {
    height: 90vh;
    background-size: cover;
  }

  .background.animate {
    height: 282px;
    background-position-y: -70px;
  }

  .hide_mobile {
    display: none;
  }

  .hide_desktop {
    display: unset;
  }

  #cntnt {
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .tbl_wrapper {
    overflow-x: scroll;
  }
}

._out {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  cursor: default;
  z-index: 999;
}

._popabs {
  z-index: 999999;
  position: absolute;
  background-color: #FFF;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  padding: 5px;
  z-index: 1000;
}

.popup_abs {
  z-index: 999999;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

#login_but {
  display: inline-block;
  cursor: pointer;
}

#logout_but {
  display: inline-block;
  cursor: pointer;
}

.login_input {
  width: 296px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.login_button {
  width: 296px;
  padding: 10px;
  text-align: center;
  background-color: var(--button-color);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.login_button_disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.6;
}

.login_label {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.inputdiv {
  margin-bottom: 15px;
}

.login_button:hover {
  background-color: var(--button-color-hover);
}

.login_links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#googlelogin {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 0px;
  color: #666;
  cursor: pointer;
  font-size: 12px;
  margin-top:10px;
}

#googlelogin:hover {
  color: var(--button-color-hover);
  background-color: #EEE;
}

.register_link,
.forgot_password_link {
  text-decoration: none;
  color: gray;
}

.cal_box {
  padding: 10px;
}

.cal_day_names {
  width: 30px;
  height: 25px;
  text-align: center;
  vertical-align: middle;
  color: #29f;
  cursor: default;
}

.cal_day {
  width: 30px;
  height: 25px;
  text-align: center;
  vertical-align: middle;
  color: #000;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.cal_seld,
.cal_day:hover:not(.cal_dis) {
  background-color: #29f;
}

.cal_dis {
  color: #999;
  opacity: 0.5;
}

.cal_gray {
  color: #848484;
}

.cal_arr {
  display: inline-block;
  margin: 0 7px;
  cursor: pointer;
}

.cal_arr:hover {
  color: #2af;
}

.cal_month {
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  min-width: 60px;
}

.cal_year {
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
}

.cal_adts {
  background-color: #7c7c7c;
  color: #FFF;
  opacity: 1 !important;
}

.menu_up {
  font-size: 13px;
}

.menu_divider {
  margin: 0 10px 0 10px;
}


.tabs_row {
  display: block
}

.tab_text {
  opacity: 0.6;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  margin: 12px 15px 10px 0;
}

.tab_text:hover {
  color: #29f;
}

.tab_text_active {
  opacity: 1;
  pointer-events: none;
  font-weight: bold;
}

.tabs_content {
  margin-top: 20px;
  display: block
}

.tab_content_item {
  display: block
}

.rotate {
  animation: rotation 2s infinite linear;
}

.direction_fare_rules {
  min-height: 160px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.sub {
  font-size: calc(1em - 3px);
}

.sup {
  font-size: calc(1em + 2px);
}

.h_dots {
  flex: 5;
  border-bottom: 2px dotted #CCC;
}

.v_dots {
  /* flex: 5; */
  border-left: 2px dotted #CCC;
}

.reserve_success_msg {
  padding: 15px 15px;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: #48a3cf;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  animation: blinker 1s linear;
  animation-iteration-count: 3;
}

.reserve_success_msg_icon {
  height: 30px;
  font-size: 30px;
}

.reservation_success_btns {
  margin: 10px 0px;
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
  font-size: 16px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

#ud_user_form {
  margin-top: 10px;
  width: 50%;
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

.overlay_wrapper {
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,.25);
}

.overlay_cnt {
  display: flex;
  flex-direction: column;
}

.sort_flights_icon {
  margin-left: 8px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.3;
}

.ai-box-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.ai-box-btn:hover {
  opacity: 1;
}

.ai-box {
  width: 100%;
  height: 70%;
  box-sizing: border-box;
  resize: vertical;
  padding: 10px;
}

.ai-btn-no {
  float: right;
  margin-top: 10px;
}

.ai-btn-ok {
  float: right;
  margin-top: 10px;
  margin-right: 10px;
}

.ai-btn-ok.active, .ai-box.active {
  color: #c3c3c3 !important;
  pointer-events: none;
}

.ai-response {
  padding: 8px;
  border-radius: 6px;
  margin: 10px 0px;
  border: 1px solid #ddd;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.blink {
  animation: blink 1s infinite;
}
.ai-working-txt {
  float: right;
  margin: 6px 4px 0px 0px;
  animation: blink 1s infinite;
}
.ai-box-tabs {
  display: flex;
  column-gap: 10px;
  margin-bottom: 10px;
}
.ai-box-tab {
  cursor: pointer;
  font-size: 16px;
}
.ai-box-tab.active {
  font-weight: bold;
}
.ai-box-tab-content:not(.active) {
  display: none;
}
.ai-box-tab-content {
  height: 556px;
}
.ai-box-tab-content .content {
  background-color: #FFF;
}
.ai-box-tab-content .actions {
  float: right;
  display: flex;
  column-gap: 10px;
  position: absolute;
  right: 30px;
  background-color: #FFF;
  font-size: 15px;
  color: #595a5a;
}
.ai-box-tab-content .actions .fa-solid:active {
  opacity: 0.6;
  transform: scale(1.2);
  transform-origin: center;
}
.ai-box-tab-content .actions .fa-solid:hover {
  opacity: 0.8;
}
