/* colours */
:root {
    --primary: #0d2c99;
    /* IVAO Primary color */
    --light-primary: #3C55AC;
    /* IVAO Secondary Blue color */
    --very-light-primary: #d7dcff;

    --secondary: #6c757d;
    --light-secondary: #a3a3a7;
    --very-light-secondary: #d7d7dc;
    /* IVAO Secondary Grey */

    --success: #2EC662;
    /* IVAO Success Color */
    --light-success: #6ED091;
    --very-light-success: #E5F4EA;
    /* IVAO Light Success Color */
    --dark-success: #259E4E;
    /* IVAO Dark Success Color */

    --danger: #e93434;
    /* IVAO Danger Color */
    --light-danger: #ea6c6c;
    --very-light-danger: #F7E5E5;
    /* IVAO Light Danger Color */
    --dark-danger: #BA2A2A;
    /* IVAO Dark Danger Color */

    --warning: #F9CC2C;
    /* IVAO Warning Color */
    --light-warning: #FBDE78;
    --very-light-warning: #F9F4E4;
    /* IVAO Light Warning Color */
    --dark-warning: #C7A323;
    /* IVAO Dark Warning Color */

    --info: #7ea2d6;
    /* IVAO Info Color */
    --light-info: #a3c2ee;
    --very-light-info: #EDF0F5;
    /* IVAO Light Info Color */
    --dark-info: #6582AB;
    /* IVAO DarkInfo Color */

    --light: var(--input-background);
    /* Previously #F7F7FC (not part of IVAO Branding) */
    --dark: #343437;

    /* IVAO Fonts */
    --header-font: Nunito Sans, sans-serif;
    --body-font: Poppins, sans-serif;

    /* IVAO Web Semantic Colors */
    --off-white: #FCFCFC;
    --background: #f7f7fc;
    --input-background: #eff0f6;
    --placeholder: #A0A3BD;
    --line: #D6D8E7;

    /* Specials */
    --white: #ffffff;
    --black: #1d1d1d;

    --fullscreen-display: block;
}

:not(:root):fullscreen::backdrop {
    background: white !important;
}

:fullscreen {
    --fullscreen-display: none;
}

/* typo */
.wrapper {
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--primary);
    color: white !important;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-radius: 0px;
    flex-grow: 0;
    flex-shrink: 0;
    display: var(--fullscreen-display, block);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 53px;
    background-color: var(--primary);
    flex-grow: 0;
    flex-shrink: 0;

    display: var(--fullscreen-display, block);
}

.nav li {
    float: left;
}

.nav li a, .dropdown-button {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    cursor: pointer;
}

.nav li a:hover, .dropdown:hover .dropdown-button {
    background-color: var(--light-primary);
}

.nav .active, .dropdown.active .dropdown-button {
    background-color: var(--light-primary);
}

.nav li.dropdown {
    display: inline-block;
}

main {
    z-index: -1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #14142b !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block !important;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #eeeeee !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
}

.table td, .table th {
    padding: .5rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05);
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table th {
    text-align: inherit;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #505050;
}

.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
}

.table-outside-border tbody tr {
    border-left: 1px solid #505050;
    border-right: 1px solid #505050;
}

.table-outside-border tbody tr:last-child {
    border-left: 1px solid #505050;
    border-right: 1px solid #505050;
    border-bottom: 1px solid #505050;
}

.sid.table {
    border-color: rgb(85, 85, 85) !important;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    flex-grow: 1;
    max-width: 100%;
}

.alert {
    padding: 0 1rem 1rem;
    background-color: #eceff1;
    border-radius: .5rem;
    margin: 1rem 0;
    position: relative;
}

.alert p {
    padding: 1rem 0 0;
    margin: 0;
}

.alert-info {
    background-color: #e3f2fd;
    border-color: #64b5f6;
    color: #0d47a1;
}

.alert-success {
    background-color: #e8f5e9;
    border-color: #81c784;
    color: #1b5e20;
}

.alert-danger {
    background-color: #ffebee;
    border-color: #e57373;
    color: #b71c1c;
}

.alert-warning {
    background-color: #fff3e0;
    border-color: #ffb74d;
    color: #b33f00;
}



.logo-link {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.4rem;
    line-height: inherit;
    white-space: nowrap;
    color: white !important;
}

.logo-link img {
    height: 43px;
    margin-right: 1.5rem;
    vertical-align: middle;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    color: var(--black) !important;
    margin: 0;
    height: 100%;
}

.container {
    max-width: 1600px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    flex-grow: 1;
}

footer {
    background: #f5f5f5;
    margin-top: 1em;
    padding-top: 1.5em;
    padding-bottom: 1em;
    flex-grow: 0;
    flex-shrink: 0;
    display: var(--fullscreen-display, block);
}

.atis {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.atis-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px 15px;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
    background-color: #707070;
}

.atis-header span:first-child {
    font-size: 20px;
    color: white;
}

.atis-header span:last-child {
    font-size: 20px;
    text-align: center;
    background-color: #333333;
    color: white;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

.atis-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem 1.5rem;
    background-color: #505050;
}

.atis-row {
    display: flex;
    margin-top: .5rem;
}

.atis .field {
    display: inline-block;
    background-color: #494949;
    text-align: center;
    vertical-align: middle;
    padding: 3px 7px;
    color: white;
    height: 25px;
}

.atis .checkbox {
    border: solid 1px white;
    width: 30px;
    font-weight: bold;
}

.atis .textfield {
    text-align: left;
    width: 170px;
}

.atis .button {
    width: 170px;
}

.atis .dark {
    background-color: #292929;
    color: #857b6b;
}

.atis .placeholder {
    height: 180px;
    width: 100%;
    margin-bottom: .5rem;
    background-color: #494949;
}

.atis-footer {
    background-color: #707070;
    color: white;
    height: 55px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.text-center {
    text-align: center;
}

a {
    color: var(--primary);
    text-decoration: none !important;
    transition: 0.5s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--black);
}

h1 {
    font-size: 2.2rem !important;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem !important;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem !important;
    color: var(--primary);
    font-weight: 700;
}

h4 {
    font-size: 1.4rem !important;
    color: var(--primary);
    font-weight: 600;
}

h5 {
    font-size: 1.2rem !important;
    color: var(--primary);
    font-weight: 600;
}

h6 {
    font-size: 1rem !important;
    color: var(--primary);
    font-weight: 600;
}

#booking-system-container {
    display: none;
}

.block {
    color: white;
    background-color: #0D2C99;
    font-size: 25px;
    border-radius: 15px;
    padding: 15px 1.5rem;
}

.block .title {
    display: flex;
    justify-content: space-between;
}

.block .numbers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 140px;
}

.block .numbers span:first-child, .block .numbers span:last-child {
    font-size: 80px;
}