﻿@import url("fonts/stylesheet.css");
:root {
  --padding: 16px;
  --line-height: 24px;
  --text-font-size: 15px;
  --height-form-control: 44px;
  --pacing-lr-modal: 32px;
  --border-radius-card: 16px;
  --border-radius-input: 8px;
  --primary-color: #0D8A97;
  --highlight-color: #EEB809;
  --text-color: #161616;
  --text-note-color: #535252;
  --table-border-color: #E7E7E7;
  --input-border-color: #E7E7E7;
  --bg-menu-gradient: linear-gradient(#F3C01B,#E3AD00);
  --bg-menu-gradient-hover: #F3C01B;
  --table-background-thead: #F0F0F0;
  --card-heading-background: #FFFDEB;
  --bg-form-control: #F5F5F5;
  --bg-table: #F9F9F9;
  --bg-menu-hover: #319CA7;
  --box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

@media (max-width: 768px) {
  :root {
    --padding: 12px;
    --line-height: 20px;
    --text-font-size: 14px;
    --pacing-lr-modal: 16px;
    --border-radius-card: 12px;
  }
}
::placeholder {
  color: #BABABA;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #BABABA;
}

html {
  font-size: 16px;
}

body.subpage-bg {
  font-family: var(--font-family);
  font-size: 1rem;
  background-color: white;
  color: var(--text-color);
}

img {
  max-width: 100%;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

section#login {
  background: #efffff url(../images/bg-login.jpg?id20241025) no-repeat center;
  min-height: 100vh;
  background-size: 100%;
  background-attachment: fixed;
  display: flex;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  section#login {
    background-size: auto;
    background-position: bottom right -385px;
  }
}
section#login .container {
  max-width: 640px;
}
section#login .form-login {
  width: 400px;
  margin: 0 auto;
  margin-bottom: 40px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0px 8px rgba(51, 51, 51, 0.35);
}
@media (max-width: 768px) {
  section#login .form-login {
    width: inherit;
    margin: 0 28px;
  }
}
section#login .form-login:before {
  content: "";
  position: absolute;
  right: calc((100% - 640px - 480px) / 2);
  width: 240px;
  height: 240px;
  top: calc((100% - 240px) / 2);
  background: url(images/plane.png) no-repeat center center;
  background-size: 240px;
}
section#login .form-login .plane {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
section#login .form-login .content {
  border-top: 0;
  border-radius: 0 0 20px 20px;
  padding: 24px;
  margin: 0;
  font-size: 1rem;
}
section#login .form-login .content .note {
  text-align: center;
  color: #000;
  padding: 0;
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--primary-color);
}
section#login .form-login .form-item {
  position: relative;
  margin-bottom: 16px;
}
section#login .form-login .form-item label {
  font-size: 1rem;
  font-weight: 500;
  color: #535252;
  display: block;
  text-align: left;
}
section#login .form-login .form-item:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 6px;
  left: 34px;
}
section#login .form-login #CaptchaInputText {
  width: 100%;
  border: 0;
  border-radius: var(--border-radius-input);
  margin-bottom: 20px;
}
section#login .form-login #Captcha {
  padding: 0 0 20px;
  position: relative;
  margin-bottom: 5px;
}
section#login .form-login #Captcha br {
  display: none;
}
section#login .form-login #Captcha #CaptchaImage {
  margin: 0;
  float: right;
  height: 34px;
  width: 100px;
}
section#login .form-login #Captcha #CaptchaInputText {
  height: 30px;
  padding-left: 10px;
  width: 115px;
  margin-bottom: 0;
}
section#login .form-login #Captcha #CaptchaInputText:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: none;
}
section#login .form-login #Captcha a {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  text-align: center;
  color: var(--primary-color);
}
section#login .form-login #Captcha a:focus {
  outline: none;
}
section#login .form-login .btn-primary {
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  section#login .form-login .btn-primary {
    border-radius: 8px;
  }
}
section#login .form-login .btn-primary:hover {
  background: var(--bg-menu-gradient);
}
section#login .form-login .btn-primary:focus {
  outline: none;
}
section#login .form-login a#btn-call-modal-forgotpassword {
  color: var(--primary-color);
  display: block;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
section#login .form-login a#btn-call-modal-forgotpassword:hover {
  text-decoration: underline;
}
section#login .shadow {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
section#login .link-login {
  font-weight: bold;
  text-decoration: underline;
  color: var(--highlight-color);
  margin-top: 10px;
  font-size: 0.75rem;
}
section#login .link-login:hover {
  color: var(--primary-color);
}
section#login .form-login-user p {
  font-weight: bold;
}
section#login .form-login-user .form-item {
  max-width: 220px;
  margin: 15px auto 20px;
}
section#login .form-login-user .form-item .form-control {
  background: rgba(255, 255, 255, 0.5);
}
section#login .form-login-user .alert-danger {
  max-width: 220px;
  margin: 0px auto 15px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.btn-primary,
.form-control {
  font-size: 1rem;
}

.btn-primary {
  background: var(--highlight-color);
}
.btn-primary:hover {
  background: var(--primary-color);
}

.btn-default {
  background-color: #efefef;
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  border-radius: 0;
  border: 0;
}

p:empty {
  display: none;
}

.popup .popup-content .img img {
  max-height: 600px;
}
.popup .popup-content .img .x {
  position: absolute;
  height: 32px;
  right: -12px;
  top: -12px;
  width: 32px;
}

.modal .modal-dialog {
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .modal .modal-dialog {
    border-radius: 16px;
    padding: 0 20px;
  }
  .modal .modal-dialog .modal-content {
    border-radius: 16px;
  }
}
.modal .modal-dialog .modal-content {
  border-radius: 20px;
}
.modal .modal-dialog .modal-header {
  padding: 32px 32px 24px;
  border-bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .modal .modal-dialog .modal-header {
    padding: 20px 16px;
  }
}
.modal .modal-dialog .modal-header:after {
  content: " ";
  display: table;
  clear: both;
}
.modal .modal-dialog .modal-header h4,
.modal .modal-dialog .modal-header .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 32px;
}
@media (max-width: 768px) {
  .modal .modal-dialog .modal-header h4,
  .modal .modal-dialog .modal-header .modal-title {
    font-size: 1.25rem;
  }
}
.modal .modal-dialog .modal-header .close {
  width: 33px;
  height: 33px;
  border-radius: 17px;
  padding: 3px;
  margin: 0;
  opacity: 0.65;
  margin-left: auto;
  background: url(../images/svg/icon-close-black.svg) no-repeat center center;
  font-size: 0;
}
.modal .modal-dialog .modal-header .close:hover {
  opacity: 1;
}
.modal .modal-dialog .modal-header .close:focus {
  outline: none;
}
.modal .modal-dialog .modal-header .close span {
  display: none;
}
.modal .modal-dialog .modal-body {
  padding: 0 32px 24px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .modal .modal-dialog .modal-body {
    padding: 16px;
  }
}
.modal .modal-dialog .modal-footer {
  border-top: 0;
  padding-top: 0;
  background: none;
  margin-top: 0;
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .modal .modal-dialog .modal-footer {
    padding: 0 16px 20px;
    display: flex;
    justify-content: space-between;
  }
}
.modal .modal-dialog .modal-footer .btn + .btn {
  margin-left: 16px;
}
.modal .modal-dialog .modal-footer .btn {
  min-width: 185px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .modal .modal-dialog .modal-footer .btn {
    min-width: 140px;
  }
}
.modal .modal-dialog .modal-footer .btn-primary {
  background: var(--primary-color);
}
.modal .modal-dialog .modal-footer .btn-primary:hover {
  background: var(--highlight-color);
}

.form-control {
  font-weight: 500;
  border: 2px solid var(--input-border-color);
  padding: 8px 16px;
  height: inherit;
  line-height: 24px;
  border-radius: var(--border-radius-input);
  font-size: 1rem;
  height: 44px;
  box-shadow: none;
  color: var(--text-color);
}
.form-control[type=date], .form-control[type=time], .form-control[type=datetime-local], .form-control[type=month] {
  line-height: 28px;
}
@media (max-width: 768px) {
  .form-control {
    padding: 8px 16px;
    border-radius: 8px;
  }
}
.form-control.hasDatepicker {
  background: var(--bg-form-control) url(../images/svg/icon-cld.svg) no-repeat right 12px center !important;
}
.form-control.hasDatepicker#add-infant-birthday, .form-control.hasDatepicker#add-flight-search-departure-date, .form-control.hasDatepicker#departure-date {
  background: var(--bg-form-control) url(../images/svg/icon-cld.svg) no-repeat right 12px center !important;
}
.form-control.form-control-select {
  background: var(--bg-form-control) url(../images/svg/icon-arrow-down.svg) no-repeat right 12px center !important;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background: #f3f8fd !important;
}

.btn {
  padding: 8px 16px;
  border-radius: var(--border-radius-input);
  font-size: 1rem;
  height: initial !important;
  line-height: 28px !important;
  font-weight: bold;
  border: 0;
}
@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    border-radius: 8px;
  }
}
.btn:hover {
  background: var(--bg-menu-gradient);
}
.btn.btn-default {
  background: #EBFDFF;
  color: var(--primary-color);
  border-color: #EBFDFF;
}
.btn.btn-default:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
