/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {

  /*========== NAV ==========*/
  --nav-height: 84px;
  /*========== Colors ==========*/

  --first-color: hsl(var(--hue-color), 64%, 22%);
  --accent-color: #11408B;
  --accent-color-hover: #0d66ab;
  --body-color: #F8F8F8;
  --white-color: #FFF;
  --off-white: #F8F8F8;
  --color-midnight-900: #06242d;
  --text-color: #06242d;
  --color-aqua-800: #126382;
  --color-aqua-900: #0b3e50;

  /*========== Font and typography ==========*/
  --body-font: 'DM Sans', sans-serif;
  --title-font: 'DM Sans', sans-serif;
  --heading-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --xs-font-size: .75rem;


  /*========== Margin Bottom ==========*/
  --m-0-25: .25rem;
  --m-0-5: .5rem;
  --m-0-75: .75rem;
  --m-1: 1rem;
  --m-1-25: 1.25rem;
  --m-1-5: 1.5rem;
  --m-2: 2rem;
  --m-2-5: 2.5rem;
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 28px;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --xs-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  width: 100%;
  height: 100dvh;
  height: 100vh;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: 500;
  font-family: var(--title-font);
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.m-0 { margin:0; }

#main__wrapper {
  overflow-x: hidden;
}
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
/* .flex {
    display: flex;
} */
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*=============== REUSABLE CSS CLASSES ===============*/

.section__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
}
.dtmg__button {
    border: 1.5px solid #126382;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
    color: var(--white-color);
    background-color: var(--color-aqua-800);
    box-sizing: border-box;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 32px;
    transition: all 0.3s ease-in-out;
}
.dtmg__button:hover {
    background-color: var(--color-aqua-900);
    border-color: var(--color-aqua-900);
}

hr.light-divider {
    border-color: #F2EFE6;
}
/*=============== LAYOUT ===============*/
.container {
    max-width: calc(1440px - 2 * 64px);
    margin: 0 auto;
}
/*=============== HEADER ===============*/
header {
    background: var(--white-color);
    box-shadow: 4px 4px 10px 0 rgb(0 0 0 / 15%);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .header__inner {
    padding: 16px 64px;
}
header .header__logo img {
    width: 200px;
    max-width: 200px;
    height: auto;
    display: block;
}
header .header__cta a {
    border: 1.5px solid #126382;
    display: inline-block;
    border-radius: 30px;
    text-decoration: none;
    color: var(--color-white-100);
    background-color: var(--color-aqua-800);
    box-sizing: border-box;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    cursor: pointer;
    padding: 12px 32px;
    transition: all 0.3s ease-in-out;
}
header .header__cta a span {
    color: var(--white-color);
}
/*=============== MAIN ===============*/
#main__wrapper {
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    min-height: 100vh;
}
#main__wrapper main {
    flex:1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}
#main__wrapper main.no-margin {
    margin: 0 auto;
}

.inner__wrapper { width:100%;max-width:880px;margin:0 auto;}

.generic--content {
    background-color: var(--white-color);
    /* border:2px solid #F2EFE9; */
    border-radius: .5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	padding:20px;
}

/*=============== ERROR ===============*/
main .error__container {
    height: calc(100vh - var(--nav-height));
}
/*=============== BOOKING CARD ===============*/
.alert.alert-danger {
	background-color: #F04438;
	color: var(--white-color);
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: var(--m-1);
}

#booking_ref .booking-reference-error input#field_kl86t{
    border-color:#F04438;
}
#booking_ref h2.no-booking-reference-error {
    color:#F04438;
}
.booking__card {
    width: 90%;
    max-width: 480px;
    background-color: var(--white-color);
    /* border:2px solid #F2EFE9; */
    border-radius: .5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    margin: 0 auto;
    margin-bottom: var(--mb-2);
    transition: .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#booking_review.booking__card {
    max-width: 880px;
}
.booking__card--header {
    padding: 1rem 2rem;
}
.booking__card--header img {
    width: 100%;
    max-width: 160px;
    display: block;
    margin: 0 auto;
}
.booking__card--content {
    border-top:1px solid #F2EFE9;
    padding: 2rem;
}
.booking__card--content h1,
.booking__card--content h2 {
    text-align: center;
}
.booking__card--content h1 {
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
}
.booking__card--content h2 {
    font-size: var(--h2-font-size);
}
.booking__card--content .field__wraper {
    display: flex;
    gap: 1rem;
}
.booking__card .form__group {
    display: flex;
    flex-direction: column;
    margin-top: var(--m-1);
}
.booking__card .form__group label{
    margin-bottom: var(--m-0-5);
}
.booking__card .with_frm_style .frm_required {
    display: none;
}
.booking__card .form__group input,
.booking__card .with_frm_style input[type=text],
.booking__card .with_frm_style input[type=email] {
    width: 100%;
    height: 45px;
    border: 1px solid #D7D7D7;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.booking__card .with_frm_style select
{
    width: 100%;
    height: 45px;
    border: 1px solid #D7D7D7;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
}
.booking__card .with_frm_style select option[value='passenger'] { display:none; }
.booking__card .form__group input:focus,
.booking__card .with_frm_style input[type=text]:focus,
.booking__card .with_frm_style input[type=email]:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}
.booking__card .form__group input::placeholder,
.booking__card .with_frm_style input[type=text]::placeholder,
.booking__card .with_frm_style input[type=email]::placeholder {
    color: var(--text-color);
}
.booking__card .form__group button[type="submit"],
.booking__card .frm_style_formidable-style.with_frm_style .frm_submit button[type="submit"] {
    background-color: var(--color-aqua-800);
    color: var(--white-color);
    font-weight: 600;
    cursor: pointer;
    height: 45px;
    border: 1px solid var(--color-aqua-800);
    border-radius: 32px;
    margin: 0;
    padding: 10px;
    transition: all .3s ease-out;
    width: 100%;
}
.booking__card .form__group button[type="submit"]:hover,
.booking__card .frm_style_formidable-style.with_frm_style .frm_submit button[type="submit"]:hover {
    background-color: var(--color-aqua-900);
    border-color: var(--color-aqua-900);
}
.booking__card .form__group button[type="submit"]:active,
.booking__card .frm_style_formidable-style.with_frm_style .frm_submit button[type="submit"]:active {
    background-color: var(--color-aqua-900);
    border-color: var(--color-aqua-900);
}
.booking__card .form__group button[type="submit"]:focus,
.booking__card .frm_style_formidable-style.with_frm_style .frm_submit button[type="submit"]:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}
.booking__card .form__group button[type="submit"]:disabled,
.booking__card .frm_style_formidable-style.with_frm_style .frm_submit button[type="submit"]:disabled {
    background-color: var(--color-aqua-900);
    cursor: not-allowed;
}
.booking__card #frm_field_6_container {
    margin-bottom: 0;
}
.booking__card__title {
    font-size: var(--h2-font-size);
    color: var(--white-color);
    text-align: center;
    margin-bottom: var(--mb-1);
}

.booking__card--content .info__table {
    margin-top: var(--m-1-5);
    border: 1px solid #F2EFE9;
    border-radius: 4px;
}
.booking__card--content .info__table--row,
.booking__card--content .info__total--row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    margin-bottom: var(--mb-1);
}
.booking__card--content .info__table--row:not(:last-child) {
    border-bottom: 1px solid #F2EFE9;
}
.booking__card--content .info__table--row--header {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    background-color: #ebebeb;
}
.booking__card--content .info__table--row div {
    flex-grow:1;
    flex-shrink: 0;
    flex-basis: 0;
	align-content: center;
}
.booking__card--content .info__total--row:first-child {
    border-bottom: 1px solid #F2EFE9;
}
.booking__card--content .info__total--row{
    font-size: var(--h3-font-size);
    font-weight: 600;
}

/* Terms & Conditions */
#field_quyiq_label { display:none; }
.with_frm_style .frm_form_field.frm_html_container { max-width: 100%;
  font-size: var(--font-size);
  color: var(--label-color);
  font-weight: var(--weight);
  text-align: var(--align);
  padding: var(--label-padding);
  margin: 0;}

.with_frm_style .frm_form_field.frm_html_container a {
	color:var(--color-aqua-800);
	text-decoration:underline;
}

/*=============== FOOTER ===============*/
footer {
    background-color: var(--color-midnight-900);
    color: var(--white-color);
    padding: 64px 24px;
    text-align: center;
    font-size: var(--small-font-size);
}

footer .footer__inner > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

footer .footer__social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
}
footer .footer__social ul li a {
    color: var(--white-color);
    font-size: 26px;
    transition: all 0.3s ease-out;
}
footer .footer__social ul li a i {
    color: var(--white-color);
    transition: all 0.3s ease-out;
}
footer .footer__social ul li a:hover i {
    color: var(--off-white);
    transform: scale3d(1.2, 1.2, 1.2);
}

footer .footer__logo img {
    max-width:200px;
    height: auto;
}

footer hr.separator {
    background-color: #6a7c81;
    height: 1px;
    padding: 40px auto;
}


@media screen and (min-width: 768px) {
    footer {
        padding: 64px;
    }
    footer .footer__inner > div {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    footer .footer__social ul {
        gap: 40px;
    }
    footer .footer__social ul li a {
        font-size: 32px;
    }
    footer .footer__social ul {
        flex-direction: row;
        gap: 40px;
    }
}