/************************** FONT FACE **************************/

@font-face {
    font-family: 'future';
    src: url('../assets/fonts/futura-medium.ttf'); 
}

/* @font-face {
    font-family: 'future-light';
    src: url('../assets/fonts/futura-light.ttf'); 
} */

@font-face {
    font-family: 'future-bold';
    src: url('../assets/fonts/futura-bold.ttf'); 
}

* {
    font-family: 'future'
}

/************************** HTML BODY **************************/

html, body {
    margin: 0px;
    padding: 0px;
}

body {
    background-image: url("../assets/images/background-mobile.jpg?v=6");
    /* background-size: 100%; */
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0px 50px;
    /* background-color: black; */
}

@media only screen and (min-width: 650px) {
    body {
        background-image: url("../assets/images/background-desktop.jpg?v=3");
    }
}

/************************** BOOSTRAP **************************/

.bg-primary {
    background-color: #00ACB8 !important;
}

.btn-primary {
    background-color: #00ACB8 !important;
}

.text-primary {
    color: #00ACB8 !important;
}

input[type="radio"]:checked {
    border: #00ACB8;
    background-color: #00ACB8 !important;
}

input[type="checkbox"]:checked {
    background-color: #00ACB8 !important;
}

/************************** HEADER **************************/

header {
    height: 50px;
    background-color: white;
}

header>.wrapper {
    height: 100%;
}

header>.wrapper>.content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    padding: 0px 20px;
    width: 100%;
}

header>.wrapper>.content>#left {
    display: grid;
    grid-auto-flow: column;
    column-gap: 20px;
}

header>.wrapper>.content>#left>#menu-icon>i {
    font-size: 23px;
    cursor: pointer;
}

header>.wrapper>.content>#left>#home>i {
    font-size: 20px;
    cursor: pointer;
}

header>.wrapper>.content>#center {
    display: grid;
    justify-content: center;
}

header>.wrapper>.content>#center>#logo>img {
    width: 75px;
}

header>.wrapper>.content>#right>#header-abo-no {
    font-weight: bold;
    text-transform: uppercase;
}

/************************** SIDENAV **************************/

#menu-overlay {
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transition: 0.5s;
    z-index: 199;
}

#menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 199;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    max-width: 400px;
}

#menu-content {
    padding: 30px 0px;
    display: none;
    height: 100%;
}

#menu-grid {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    color: white;
}

#menu-list>ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: grid;
}

#menu-list>ul>li>a {
    font-size: 19px;
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px 40px;
    cursor: pointer;
}

#menu-list>ul>li>a>.icon-label {
    display: grid;
    grid-template-columns: 50px 1fr;
}

#menu-list .icon-up-down {
    padding-left: 10px;
    opacity: 0.8;
    font-size: 15px;
}

#menu-list>ul>li>a>i {
    padding-right: 20px;
}

#menu-list li {
    position: relative;
}

#menu-list #menu-dropdown {
    position: absolute;
    left: 0px;
    right: 0px;
    background-color: #00919b;
    max-height: 0px;
    transition: max-height 0.4s ease-in;
    overflow: hidden;
}

#menu-list #menu-dropdown ul {
    padding: 20px 0px 20px 0px;
    list-style: none;
    margin: 0px;
    display: grid;
}

#menu-list #menu-dropdown ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0px 15px 90px;
    cursor: pointer;
}

#menu-list #menu-paris-dropdown,
#menu-list #menu-queenstown-dropdown {
    max-height: 0px;
    transition: max-height 0.4s ease-in;
    overflow: hidden;
}

#menu-list #menu-paris-dropdown ul,
#menu-list #menu-queenstown-dropdown ul {
    padding: 0px;
}

#menu-list #menu-paris-dropdown ul li a,
#menu-list #menu-queenstown-dropdown ul li a {
    display: block;
    padding: 5px 0px 15px 120px;
    cursor: pointer;
    text-decoration: none;
}

#menu-list #menu-paris-desktop-dropdown,
#menu-list #menu-paris-zoom-dropdown,
#menu-list #menu-paris-phone-dropdown,
#menu-list #menu-queenstown-desktop-dropdown,
#menu-list #menu-queenstown-zoom-dropdown,
#menu-list #menu-queenstown-phone-dropdown {
    max-height: 0px;
    transition: max-height 0.4s ease-in;
    overflow: hidden;
}

#menu-list #menu-paris-desktop-dropdown ul,
#menu-list #menu-paris-zoom-dropdown ul,
#menu-list #menu-paris-phone-dropdown ul,
#menu-list #menu-queenstown-desktop-dropdown ul,
#menu-list #menu-queenstown-zoom-dropdown ul,
#menu-list #menu-queenstown-phone-dropdown ul {
    padding: 0px;
}

#menu-list #menu-paris-desktop-dropdown ul li a,
#menu-list #menu-paris-zoom-dropdown ul li a,
#menu-list #menu-paris-phone-dropdown ul li a,
#menu-list #menu-queenstown-desktop-dropdown ul li a,
#menu-list #menu-queenstown-zoom-dropdown ul li a,
#menu-list #menu-queenstown-phone-dropdown ul li a {
    display: block;
    padding: 5px 0px 15px 150px;
    cursor: pointer;
    text-decoration: none;
}

#logout {
    padding: 10px 40px;
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
    font-size: 18px;
}

#logout>#icon-label {
    display: grid;
    grid-auto-flow: column;
    column-gap: 15px;
    align-items: center;
    cursor: pointer;
}

/************************** HEADING **************************/

h1 {
    font-size: 20px;
}

h2 {
    font-size: 18px;
}

/************************** HREF **************************/

.href {
    color: #3231F2
}

/************************** WRAPPER **************************/

.wrapper {
    width: 100%;
    margin: 0px auto;
}

@media only screen and (min-width: 600px) {
    .wrapper {
        width: 600px;
    }
}

/************************** BOX **************************/

#box-center {
    display: block;
}

@media only screen and (min-width: 650px) {
    #box-center {
        display: grid;
        justify-content: center;
    }
}

#box-center #title {
    margin-top: 20px;
    text-align: center;
}

#box-center #title h1 {
    color: white;
    font-family: 'future-bold';
    font-size: 30px;
}

#box {
    overflow: hidden;
    padding: 20px;
    width: calc(100% - 40px);
    background-color: white;
    margin: 29vw 0px 20px 0px;
    border-radius: 10px;
}

@media only screen and (min-width: 650px) {
    #box {
        margin: 14vw 0px 20px 0px;
        width: 600px !important;
    }
}

#box>.block {
    margin: 0px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/************************** BUTTON **************************/

button {
    text-transform: uppercase;
    font-weight: 700 !important;
    border: 0px !important;
}

button>#icon-label {
    display: grid;
    grid-auto-flow: column;
    column-gap: 10px;
}

button>#icon-label>#icon {
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
}

.button-disabled {
    opacity: 0.65;
    cursor: default !important;
}

/************************** FORM **************************/

fieldset {
    border: 1px solid lightgrey;
    padding:  20px 20px 20px 20px;
}

legend {
    font-size: 17px;
    font-weight: 600;
}

.form-label {
    display: flex;
    align-items: center;
}

.form-label>i {
    font-size: 10px;
    margin-right: 10px;
}

.form-check-label, .form-check-input {
    cursor: pointer !important;
}

.form-text {
    opacity: 0.7;
}

.form-control::placeholder {
    color: #bababa;
}

.form-mobile-country-code {
    display: grid;
    grid-template-columns: auto 1fr;
}

.form-mobile-country-code select {
    border-right: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.form-mobile-country-code input {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.form-control.no-validate-icon {
    background-image: none !important;
    padding-right: inherit !important;
}

/************************** NO RESULT FOUND **************************/

.no-results-found {
    color: #bebebe;
    font-size: 18px;
    padding: 60px;
    text-align: center;
    display: none;
}

/************************** PAGE SPINNER **************************/

.page-spinner {
    display: none;
}

.page-spinner-center {
    display: grid;
    justify-content: center;
}

.page-spinner-center-padding {
    padding: 100px 0px;
}

/************************** MODAL **************************/

.modal-content {
    max-width: 300px;
    margin: 30px auto;
}

.modal-content-400 {
    max-width: 400px;
}

.modal-header {
    border-bottom: 0 none;
    font-size: 18px;
    font-weight: 500;
}

.modal-body {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

.modal-footer {
    border-top: 0 none;
}

.modal-footer { 
    display: grid;
    justify-content: center;
}

.modal-footer>button {
    padding: 5px 20px;
}

/************************** MODAL PLEASE CONFIRM YOUR BOOKING **************************/

#modal-please-confirm-your-booking h2 {
    text-align: left;
}

#modal-please-confirm-your-booking #guest-details {
    text-align: left;
}

#modal-please-confirm-your-booking .guest1-block .label {
    font-weight: bold;
    font-size: 16px;
}

#modal-please-confirm-your-booking .label-value {
    display: grid;
    column-gap: 10px;
}

#modal-please-confirm-your-booking .value {
    text-transform: uppercase;
}

#modal-please-confirm-your-booking #guest-details-guest2 {
    margin-top: 40px;
    display: none;
}

#modal-please-confirm-your-booking .note {
    line-height: 20px;
    margin-top: 5px;
}