/* COLORS */

:root {
    --calFree: #82ff83;
    --calEmpty: #e5e5e5;
    --calOccupied: #ffa3a3;
    --calMarked: #ff7878;
    --calPending: #a8a8a8;
    --primaryColor: #212529;
    --primaryText: #212529;
    --secondaryBG: #ffffff;
    --secondaryText: #fff;
    --primaryLink: #1687a1;
    --secondaryLink: #11687c;
    --darkBG: #212529;
    --lightGrey: #d3d3d3;
    --error: #9b0000;
    --success: #0c9f57;
    --primaryFont: 'Suez One';
    --secondaryFont: 'Raleway';
}

/* GENERAL */

pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: serif;
    font-family: var(--secondaryFont);
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
    margin-top: 0px !important;
    padding-top: 0px !important;
    width: 100%;
    min-height: 100%;
    color: var(--primaryText);
}

h1 {
    font-family: sans-serif;
    font-family: var(--primaryFont);
    font-size: 2.2em;
    margin-bottom: 0.3em;
}

h2 {
    font-size: 1.5em;
    font-family: sans-serif;
    font-family: var(--primaryFont);
}


h3 {
    font-family: serif;
    font-family: var(--secondaryFont);
    font-size: 1.5em;
}

h4 {
    font-family: serif;
    font-family: var(--secondaryFont);
    font-size: 1.2em;
    margin-bottom: 0;
    font-weight: bold;
}

h5 {
    font-size: 1.5em;
}

p {
    text-align: justify;
    font-size: clamp(1.0rem, 1.6vw, 1.2rem);
    line-height: clamp(1.2rem, 1.7vw, 1.6rem);
}

.logo {
    font-family: sans-serif;
    font-family: var(--primaryFont);
    font-size: clamp(16px, 7vw, 50px);
    line-height: 2rem;
    color: var(--secondaryText);
    text-align: center;
}

.bigLogo {
    font-size: clamp(1rem, 8vw, 4.5rem);
}

ul {
    margin-bottom: 0;
    font-size: clamp(1.0rem, 1.6vw, 1.2rem);
    line-height: clamp(1.2rem, 1.7vw, 1.6rem);
}

img { max-width:100%; }

.hLine {
    border-bottom: 1px solid #c8c9ca;
    margin-bottom: 27px;
    padding: 5px 0px;
    position: relative;
}

.hLine2::before {
    position: absolute;
    content: '\2022';
    left: -30px;
    font-size: 3.5rem;
    top: -17px;
    color: #212529;
}

.asterisk {
    position: relative;
    font-size: 7px;
    top: -10px;
}

.pointerMe {
    cursor: pointer;
}

/* TOAST */

.toastRed {
    background: var(--error);
}

.toastGreen {
    background: var(--success);
}

.toast-close {
    position: absolute;
    top: 6px;
    right: 6px;
}

.toastify {
    margin-left: 15px;
    max-width: calc( 100% - 30px);
}

.toastLimit {
    width: 300px;
}


.oneLiner{
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.shortenMe{
    text-overflow: ellipsis;
    overflow: hidden;
}

.bigCheck {
    width: 25px;
    height: 25px;
    top: -5px;
    position: relative;
    margin-right: 6px;
}

.bigSwitch {
    width: 45px !important;
    height: 25px;
    top: -5px;
    position: relative;
    margin-right: 15px;
}

.fitImage {
    object-fit: cover;
    min-height: 100%;
    width: 100%;
}

/* HELPER */

.opac50 { opacity: 0.5; }
.error { color: var(--error); }
.success { color: var(--success); }
.noWrap { white-space: nowrap; }
.onlyMobile {}
.hideMe { display: none; }
.dimmed { color: var(--primaryColor); }

/* CONTAINER */

.container {
    max-width: 900px;
}

.gradBG {
    background: var(--primaryColor);
    background: linear-gradient(180deg, var(--primaryColor) 0%, var(--primaryColor) 100px, var(--secondaryBG) 100px);
}

.mainContainer {
    min-height: 100%;
    background-color: var(--secondaryBG);
}

.contentContainer {
    min-height: calc(100vh - 400px);
    background-color: var(--primaryColor);
    background-color: var(--secondaryBG);
}

.previewList {
    font-size: clamp(0.8rem, 4vw, 1.0rem);
    line-height: clamp(1rem, 4vw, 1.2rem);
    color: var(--primaryText);
}

.footer {
    background-color: var(--primaryColor);
    height: 250px;
    color: var(--secondaryText);
    font-size: 1rem;
}

h2.footer {
    color:var(--secondaryText);
}

/* MENU NAV */
.menuNav {
    white-space: nowrap;
}

a.anchor {
    display: block;
    position: relative;
    top: -70px;
    visibility: hidden;
}

a.logo {
    text-decoration: none;
    color: var(--secondaryText);
}

a.menuItem:link, a.menuItem:visited {
    padding: 4px 10px;
    text-decoration: none;
    color: var(--lightGrey);
    border-radius: 5px;
    margin: 0px 6px;
    font-size: 1.3rem;
}

a.menuItem:hover, a.menuItem:active {
    color: var(--secondaryText);
}

a.footer:link, a.footer:visited {
    text-decoration: none;
    color: var(--secondaryBG);
    font-size: 1rem;
}

a.footer:hover, a.footer:active {
    color: var(--secondaryText);
}

a.preview {
    text-decoration: none;
    color: var(--primaryColor);
}

a.preview:hover {
    border: 2px solid #728294;
}

a.noVisibleLink:link, a.noVisibleLink:visited {
    text-decoration: none;
    color: inherit;
}

a.noVisibleLink:hover, a.noVisibleLink:active {
    color: inherit;
}

.fakeLink {
    color: var(--primaryLink);
    text-decoration: underline;
    cursor: pointer;
}

.fakeLink:hover {
    color: var(--secondaryLink);
}

.anchor {
    position: relative;
    top: -50px;
}

.menuContainer {
    /*overflow: hidden;*/
    position: relative;
    background-color: var(--primaryColor);
}

.menuFlag {
    padding: 0px 10px;
    margin: 0px 6px;
    cursor: pointer;
    position: relative;
    top: -2px;
}

.slideContainer {
    white-space: nowrap;
    position:relative;
}

.whiteOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondaryBG);
    background: linear-gradient(90deg, rgba(33, 37, 41, 1) 5%, rgba(33, 37, 41,0) 20%, rgba(33, 37, 41,0) 80%, rgba(33, 37, 41,1) 95%);
    pointer-events: none;
    color:white;
}

.stickyMenu {
    position: fixed;
    top:0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
}

.menuUnder {
    height: 2px;
    background-color: var(--secondaryBG);
    width: 200px;
    position: absolute;
    top: 28px;
    opacity:0;
}

.flagContainer {
    position: absolute;
    height: 0px;
    overflow: hidden;
    background-color: #e8e8e8;
    border-radius: 5px;
    width: 65px;
    z-index: 1000;
    right: 6px;
    top: 33px;
}

.flagButton {
    padding: 8px;
    display: block;
    padding-bottom: 0;
}

/* LOGIN AND REGISTER FORM */

.loginForm {
    max-width: 400px;
    background-color: var(--secondaryBG);
}

/* SITE CONTENT */

.previewName {
    font-family: sans-serif;
    font-family: var(--primaryFont);
    font-size: 1.3rem;
    background-color: transparent;
    color: var(--primaryText);
}

.previewPrice {

}

.priceValue {
    font-size: 3rem;
    font-family: var(--primaryFont);
    display: block;
    margin-bottom: 14px;
    margin-top: 1px;
    color: var(--primaryText);
}

.previewFrom {
    font-family: var(--secondaryFont);
    color: var(--primaryText);
    font-size:0.8rem;
}

.perNight {
    font-family: var(--primaryFont);
    font-size: 1.4rem;
    color: var(--primaryText);
}

.input-group-text i {
    font-size: 1.3rem;
    line-height: 1rem;
}

.smPricing {
    background-color: lightgrey;
    padding: 0px 4px;
    margin-bottom: 4px;
    border-radius: 5px;
    width: 100px;
    display: inline-block;
}

.smDate {
    width: 130px;
    display: inline-block;
    font-weight: bold;
}

.pList {
    margin-bottom: 0;
    list-style-type: none;
    line-height: 1.8rem;
}

.pricingContainer {
    max-width: 215px;
    background-color: var(--lightGrey);
    margin: 10px;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.priceTag {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: clamp(2.1rem, 4.4vw, 3.5rem);;
    font-family: var(--primaryFont);
    margin-top: 5px;
    margin-bottom: 10px;
}

.portraitContainer {
    max-width: 300px;
    padding: 36px;
    border-radius: 30px;
    background-color: var(--lightGrey);
    margin-left: auto !important;
    margin-right: auto !important;
}

.portraitScale {
    width: clamp(60%, 9vw, 100%);
}

.nameContainer {
    font-size: clamp(1.4rem, 2vw, 2rem);
    text-align: center;
    font-family: var(--primaryFont);
    margin-top: 20px;
    line-height: 2rem;
    margin-bottom: 20px;
}

.lanList {
    font-size: 0.9rem;
    font-family: 'Raleway';
}

.quoteContainer {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
}

.col-form-label {
    width: 100px;
}

.totalPrice {
    font-size: 1.5rem;
    font-weight: bold;
}

.preCal {
    background-color: #d5d5d5;
}

.hh-label {
    font-size: 0.8rem;
    color: var(--bs-gray);
    left: 5px;
    position: relative;
}

.guestLabel {
    position: relative;
    top: 30px;
    font-weight: 700;
}

/* BOOTSTRAP */

.card {
    border-radius: 0.5em;
    border: 2px solid var(--lightGrey);
    overflow: hidden;
}

.form-label {
    margin-bottom: 0;
}

/* ANIMATIONS */

.flip-vertical-left {
    -webkit-animation: flip-vertical-left 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: flip-vertical-left 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@-webkit-keyframes flip-vertical-left {
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    0% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}
@keyframes flip-vertical-left {
    100% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    0% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

/* MEDIA QUERY */

@media screen and (max-width: 768px) {
    .ratio-21x9 {
        --bs-aspect-ratio: 75%;
    }
    .pList {
        display: flex;
        list-style-type: none;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        line-height: 1.0rem;
    }
    .pListItem {
        list-style-type: none;
        padding: 5px;
    }
    .pListItem:first-child {
        list-style-type: none;
    }
    .pricingContainer {
        max-width: 155px;
        padding: 10px;
    }
    .persons img {
        width: 15px;
    }
    .perNight {
        line-height: 1.3rem;
    }
}

@media screen and (max-width: 992px) {
    .sl-overlay {
        opacity: 1;
    }
}

@media screen and (max-width: 350px) {
    .pList {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}





