@font-face {
    font-family: Comic;
    src: url(../font/COMIC.TTF);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
.pure-g [class*=pure-u] {
    font-family: Comic, sans-serif;
}

select {
    -webkit-appearance: none;
}

/*
 * -- BASE STYLES --
 * Most of these are inherited from Base, but I want to change a few.
 */
body {
    line-height: 1.7em;
    color: #7f8c8d;
    font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: #34495e;
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

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

/*
 * -- LAYOUT STYLES --
 * These are some useful classes which I will need
 */
.l-box {
    padding: 1em;
}

.l-box-lrg {
    padding: 2em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.text--red {
    color: red;
}

/*
 * -- PURE FORM STYLES --
 * Style the form inputs and labels
 */
.pure-control-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.pure-control-group .ts-wrapper {
    flex: 1;
    width: 100%;
}

.pure-control-group .ts-control {
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 3px #ddd;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 4px;
    padding-right: 35px !important;
    cursor: pointer;
}

.pure-control-group--center {
    justify-content: center;
}

.pure-controls {
    display: flex;
    align-items: center;
    margin: 1.5em !important;
    justify-content: center;
}

.pure-form label {
    margin: 1em 0 0;
    font-weight: bold;
    font-size: 100%;
    width: 70px !important;
}

.pure-form select,
.pure-form textarea,
.pure-form input {
    border: 2px solid #ddd;
    box-shadow: none;
    flex: 1;
    width: 100%;
}

.pure-form textarea {
    height: 100px;
}

.pure-form select {
    color: #34495e;
    padding: 0 0.6em;
}

.save-button {
    display: flex;
    flex-direction: column;
}

.save-button #loadingSpinner {
    margin-top: 10px;
}

@media (max-width: 350px) {
    .pure-control-group--recaptcha {
        position: absolute;
        left: 0;
        right: 0;
    }

    .save-button {
        margin-top: 100px !important;
    }
}

/*
 * -- PURE BUTTON STYLES --
 * I want my pure-button elements to look a little different
 */
.pure-button {
    background-color: #1f8dd6;
    color: white;
    padding: 0.5em 2em;
    border-radius: 5px;
}

a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    border-radius: 5px;
    font-size: 120%;
}


/*
 * -- MENU STYLES --
 * I want to customize how my .pure-menu looks at the top of the page
 */

.home-menu {
    padding: 0.5em;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.10);
}

.home-menu {
    background: #2d3e50;
}

.pure-menu.pure-menu-fixed {
    /* Fixed menus normally have a border at the bottom. */
    border-bottom: none;
    /* I need a higher z-index here because of the scroll-over effect. */
    z-index: 4;
}

.home-menu .pure-menu-heading {
    color: white;
    font-weight: 400;
    font-size: 120%;
    margin: 0;
}

.home-menu .pure-menu-selected a {
    color: white;
}

.home-menu a {
    color: #6FBEF3;
}

.home-menu li a:hover,
.home-menu li a:focus {
    background: none;
    border: none;
    color: #AECFE5;
}


/*
 * -- SPLASH STYLES --
 * This is the blue top section that appears on the page.
 */

.splash-container {
    background-image: url('../images/cover_v2.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    /*height: 88%;*/
    height: 100%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.splash {
    /* absolute center .splash within .splash-container */
    width: 80%;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 100px;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 25px 25px rgb(0 0 0 / 50%);
}

/* This is the main heading that appears on the blue section */
.splash-head {
    font-size: 20px;
    color: #efefef;
    padding: 0 1em;
    font-weight: 100;
    border-radius: 5px;
    line-height: 1em;
}

/* This is the subheading that appears on the blue section */
.splash-subhead {
    color: #efefef;
    letter-spacing: 0.05em;
}

@media (max-width: 540px) {
    .splash-locations {
        font-size: 12px;
    }
}

/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */
.content-wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    /*top: 87%;*/
    top: 100%;
    width: 100%;
    min-height: 12%;
    z-index: 2;
    background: white;

}

/* We want to give the content area some more padding */
.content {
    max-width: 2000px;
    margin: 0 auto;
    padding: 1em 1em 3em;
}

/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2em 0 1em;
}

/* This is a modifier class used when the content-head is inside a ribbon */
.content-head-ribbon {
    color: white;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
    color: #1f8dd6;
}

.content-subhead i {
    margin-right: 7px;
}

/* This is the class used for the dark-background areas. */
.ribbon {
    background: #3a5571;
    color: #aaa;
}

.ribbon-content {
    max-width: 2000px;
    margin: 0 auto;
}

/* This is the class used for the footer */
.footer {
    background: #111;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 48em) {

    /* We increase the body font size */
    body {
        font-size: 16px;
    }

    /* We can align the menu header to the left, but float the
    menu items to the right. */
    .home-menu {
        text-align: left;
    }

    .home-menu ul {
        float: right;
    }

    /* We increase the height of the splash-container */
    /*    .splash-container {
            height: 500px;
        }*/
    /* We decrease the width of the .splash, since we have more width
    to work with */
    .splash {
        width: 50%;
        height: 50%;
    }

    .splash-head {
        font-size: 250%;
    }


    /* We remove the border-separator assigned to .l-box-lrg */
    .l-box-lrg {
        border: none;
    }

}

/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large devices, we want to over-ride some
 * of the mobile and tablet styles.
 */
@media (min-width: 78em) {
    /* We increase the header font size even more */
    .splash-head {
        font-size: 300%;
    }
}

#successMessage {
    display: none;
    margin: 10px 0;
    padding: 10px;
    border-radius: 3px 3px 3px 3px;
    color: #270;
    background-color: #DFF2BF;
    justify-content: center;
}

.special-offer {
    color: #efefef;
}

.cursor--pointer {
    cursor: pointer;
}

.flex__centered {
    display: flex;
    justify-content: center;
}

.pricelist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricelist__price {
    color: #1f8dd6;
}

.mw-800 {
    max-width: 800px;
}

.socializer {
    margin-bottom: 20px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper img {
    max-height: 600px;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    object-fit: contain;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    text-align: center;
}

.dates {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.dates__group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#days {
    width: 40px;
}

@media (max-width: 380px) {
    .dates {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

@media (max-width: 480px) {
    #days {
        margin-right: 10px;
    }
}

.extras {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
}

.extras__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.extras__litres {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.extras__litres input {
    width: 60px;
}

.extras-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.extras input {
    margin-right: 10px;
    min-width: 12px;
}

.pure-form .multiselect-dropdown-list label,
.extras label {
    width: auto !important;
}

@media (max-width: 420px) {
    .extras {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    .l-box-lrg {
        padding: 1em !important;
    }
}

.datepicker__readonly {
    background-color: #fff !important;
    color: #000 !important;
}

/* Menu tag for new items */
.menu-tag-new {
    background-color: #ff4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: bold;
    vertical-align: baseline;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: -1px;
}