div#amenities {
	padding:20px;
	display:flex;
	flex-direction: row;
	gap:20px;
	box-sizing: border-box;
	justify-content: center;
}

div.amenity_list {
	flex-grow:1;

	background-color: #fff;
	color:#000;

	display:flex;
	flex-direction: column;
	max-width:600px;
	
}
div.amenity_list > div {
	flex-grow:1;

	

	display:flex;
	flex-direction: row;
	align-items: center;
}

div.amenity_list > div > svg {
	font-size:30px;
	padding:10px 20px 10px 20px;
	flex-grow:0;
}
div.amenity_list > div:has(img) {
	flex-grow:0;
	background-color: #eee;
	gap:10px;
	margin-bottom:10px;
}
div.amenity_list > div > img {
	max-height:85px;
	flex-shrink:1;
}
div.amenity_list > div > img:first-child, div.amenity_list h2 {
	margin-left:65px;
}

@media not all and (min-width: 920px) {
	div#amenities {
		display:block;
	}
}
@media not all and (min-width: 600px) {
	div#amenities {
		padding:0;
	}
	div.amenity_list > div > svg {
		font-size:30px;
		padding:5px 10px 5px 20px;
	}
	div.amenity_list > div > img {
		max-height:50px;
	}
	div.amenity_list > div > img:first-child, div.amenity_list h2 {
		margin-left:55px;
	}
	div.amenity_list > div:has(img) {
		display:none;
	}
}


div#booking {
    background-color: #eee;
}
div#booking h1 {
    color:#333;
    width:1030px;
    margin-left:auto;
    margin-right:auto;
    padding:10px 10px 0px 80px;
    box-sizing: border-box;
}
div#calendar_text {
    margin-left:auto;
    margin-right:auto;
    width:1030px;
    padding:5px 10px 0px 80px;
    box-sizing: border-box;
    color:#333;
    min-height:60px;
}
span.calendar_error {
	padding:0px 10px 3px 10px;
	margin:0px 5px -3px 0px;
    background-color:#dd3300;
    color:#fff;
    display:inline-block;
    text-decoration: none;
}
div#calendar_text a {
    padding:0 10px 3px 10px;
	margin:0 5px -3px 0px;
    background-color:#fff;
    color:#999;
    display:inline-block;
    text-decoration: none;
    
}

div#calendar_container {
    margin-left:auto;
    margin-right:auto;
    width:1030px;
    height:390px;
    position:relative;
    overflow:hidden;
    transform-origin:left center;
}
div#calendar {
    position:absolute;
    left:80px;
    top:0;
    overflow:hidden;
    width:870px;
}

input[type="checkbox"] {
    color:#900;
}
.unavailable {
    color:#900;
    font-weight:bold;
}

/* 1 Month = 410, 2 Months = 820 + 50 */

@media not all and (min-width: 1030px) {
    div#booking h1, div#calendar_text, div#calendar_container {
        width:510px;
    }
    div#calendar {
        left:50px;
        width:410px;
    }
    div#booking h1 {
        padding:10px 0px 0px 50px;
    }
    div#calendar_text {
        width:100%;
        margin-left:0;
        margin-right:0;
        text-align:center;
        padding:5px 5px 10px 5px;
    }
    
    
}

div.bookingform_busy {
    height:600px;
    color:#333;
    text-align:center;
    margin-top:200px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}


div#calendar_left, div#calendar_right {
    position:absolute;
    top:0;
    bottom:0;
    width:50px;
    line-height:390px;
    text-align:center;
    cursor:pointer;
    color:#666;
    user-select: none;

}
div#calendar_left:hover, div#calendar_right:hover {
    background-color:#fff;
    color:#000;
}
div#calendar_left {
    left:0;
}
div#calendar_right {
    right:0;
}
.temp_info {
    opacity:0.3;
}
div.booking_nav {
    display:flex;
    height:40px;
    width:100%;
    
}
div.booking_nav div {
    flex-grow:1;
    height:40px;
    text-align:center;
    line-height:40px;
    background-color: rgba(255,255,255,0.9);
    color:rgba(0,0,0,0.7);
}
div.booking_nav div.disabled {
    color:rgba(0,0,0,0.1);
}
div.booking_nav div.selectable {
    cursor:pointer;
}

div.booking_nav div.active, div.booking_nav div.selectable:hover {
    color:#666;
}


/* Display contact elements in columns... */
div#contact {
    display:flex;
}

/* ...unless screen is smol */
@media not all and (min-width: 1100px) {
    div#contact {
        display:block;
    }
}

/* On wide screen, space out headlines some more */
@media (min-width: 1100px) {
    div#contact h1 {
        margin-top:25px;
        margin-bottom:30px;
    }
}

/* Standard Imprint text */
div.contact_text {
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
    margin-top:25px;
    margin-bottom:25px;    
}


/* Errare humanum est */
div.error {
    
    color:#f33;

    border-left:5px solid #f33;
    padding-left:10px;
    
}

div.error input, div.error textarea {
    border:1px solid #f33;
    background-color: #fdd;
}

/* The BIG SEND BUTTON */
div.big_button {
    margin-top:15px;
    text-align:center;
    padding:15px;
    background-color:rgba(255,255,255,0.2);
    cursor:pointer;
}
div.big_button:hover {
    background-color:rgba(255,255,255,0.4);
}
#calendar_request_container div.big_button {
    background-color:rgba(255,255,255,0.7);
}
#calendar_request_container div.big_button:hover {
    background-color:#fff;
}

/* Busy */
#contactform_busy {
    width:100%;
    text-align:center;
    padding-top:100px;
    padding-bottom:100px;
    line-height:50px;
}
span.du_spinner {
    display:inline-block;
    text-align:center;
    font-size:40px;
    line-height:53px;
    width:50px;
    height:50px;
    animation: spin-animation 1s infinite;
    animation-timing-function: linear;
    vertical-align: -12px;
    opacity:0.5;
    margin-right:5px;

}
@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

div.content_block {
    min-height:calc(100vh - 100px);
    position:relative;
    padding:0.05px;
    background-color:#336699;
}
div.content_right {
    margin-top:0px;
    margin-right:0px;
    margin-bottom:0px;
    width:500px;
    margin-left:auto;

    padding:20px;
    background-color:rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    position:relative;
}


@media not all and (min-width: 800px) {
    div.content_block {
        min-height:0;
    }
    div.content_right {
        width:auto;
        margin:0;
        margin-top:0px;
        padding:20px;
        background-color:#336699;
        backdrop-filter: none;
    }

}



div.content_breaker {
    background-color:#6699bb;
    padding:20px;
}
div#newsletter_form {
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}

div.columns {
    display:flex;
}
div.column {
    width:50%;
}
div.column:not(:last-child) {
    margin-right:5px;
}
div.column:not(:first-child) {
    margin-left:5px;
}

div.content_group {
    display:none;
}

/* ...unless screen is smol */
@media not all and (min-width: 700px) {
    div.columns {
        display:block;
    }
    div.column {
        width: 100%;
    }
    div.column:not(:last-child) {
        margin-right:0;
    }
    div.column:not(:first-child) {
        margin-left:0;
    }
}

form.dialog {
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    margin-top:40px;
    margin-bottom:40px;
    padding:40px;
    flex-grow:1;

    background-color:#eee;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
    display:flex;
    flex-direction:column;
    position:relative;
    color:#333;
}

form.dialog h2 {
    margin-top: 0;
    margin-bottom:0;
    color:#333;
    font-family: "Edwin";
    font-weight:normal;
    font-style:normal;
}

/* Formatting Form Details */
div.cfi, div.cfi_error {
    margin:5px 0 5px 0;
}
div.cfi_error {
    border-left:6px solid #e55;
    padding-left:6px;
    margin-left:-14px;
}

div.cfi label, div.cfi_error label, div.cfr_label {
    color:#333;
    font-size:15px;
}

.req {
	color:#e55;
}

input, textarea {
    background-color:#fff;
    border:1px solid #ccc;
}

div.cfi label input, div.cfi label textarea, div.cfi label select, div.cfi_error label input, div.cfi_error label textarea, div.cfi_error label select {
    display:block;
    width:100%;
    height:35px;
    padding:0;
    font-family: "Plovdiv";
    font-size:17px;
    box-sizing: border-box;
    padding:0 5px 3px 5px;
    color:#333;
    border:1px solid rgba(0,0,0,0.1);
    border-radius:6px;
}
div.cfi label textarea, div.cfi_error label textarea  {
    height:200px;
    resize: none;
}
div.cfi_error label input, div.cfi_error label textarea {
    background-color: #fdd;
}

div.cfr label {
    white-space: nowrap;
    display:inline;
    cursor: pointer;
    margin-right:20px;
}
div.cfr label input {
    display:inline;
    height:auto;
    width:auto;
}


div.cfi label.checkbox, div.cfi_error label.checkbox {
   
    display:inline;
    cursor: pointer;
}
div.cfi label.checkbox input, div.cfi_error label.checkbox input {
    display:inline;
    height:auto;
    width:auto;

}
/*

a.dialog_back {
    position:absolute;
    left:0;
    top:0;
    width:40px;
    height:40px;
    cursor:pointer;
    color:#fff;
    text-align:center;
    line-height:40px;
    font-size:25px;
    opacity:0.7;
}
a.dialog_back:hover {
    opacity:1;
    background-color:rgba(255,255,255,0.1);
}

form.dialog h1 {
    background-color:#3366aa;
    font-size:20px;
    text-align:center;
    padding:5px;
    height:30px;
}
div.dialog_spacer {
    flex-grow:1;
    min-height:30px;
}
div.extra_info {
    margin-top:50px;
    min-width:360px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    padding:2px 0 5px 0;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
    text-align:center;
    background-color:#3366aa;
}
div.extra_info a {
    padding:4px;
}
div.dialog_text {
    
}
div.dialog_buttonrow {
    display:flex;
}

div.dialog_error {
    margin:30px 40px 5px 40px;
    border:3px solid #f00;
    padding:5px 10px 10px 60px;
    background-color:#fff;
    color:#a00;
    border-radius:8px;
    position:relative;
    min-height:50px;
}
div.dialog_error::before {
    content:"⚠️";
    position:absolute;
    left:10px;
    font-size:30px;
}
div.dialog_success {
    margin:20px 40px 5px 40px;
    border:3px solid #090;
    padding:5px 10px 10px 60px;
    background-color:#fff;
    color:#080;
    border-radius:8px;
    position:relative;
    min-height:50px;
}
div.dialog_success::before {
    content:"✔️";
    position:absolute;
    left:10px;
    font-size:30px;
}

div.dialog_busy {
    text-align:center;
    margin:5px 40px 5px 40px;
}
form.dialog label {
    display:block;
    margin-left:40px;
    margin-right:40px;
}
form.dialog input.large {
    display:block;
    width:100%;
    box-sizing: border-box;
    margin-top:10px;
    padding:10px;
    font-size:15px;
}
a.dialog_bigbutton {
    display:block;
    margin:30px 40px 30px 40px;
    padding:10px;
}

a.dialog_bigbutton, a.dialog_iconbutton, a.dialog_iconbutton_pressed {
    border-radius:8px;
    background-color:rgba(255,255,255,0.9);
    box-shadow:0 0 10px rgba(0,0,0,0.5);
    cursor:pointer;
    color:#333;
    text-align:center;
}

a.dialog_iconbutton, a.dialog_iconbutton_pressed {
    flex-grow:0;
    flex-shrink:0;
    width:150px;
    height:150px;
    position:relative;
    
}
a.dialog_iconbutton:hover. a.dialog_bigbutton:hover {
    background-color:#fff;
}

a.dialog_iconbutton_pressed {
    background-color:#ffcc00;
    color:#000;
    box-shadow:inset 0 0 10px rgba(0,0,0,1);      
}

a.dialog_iconbutton .icon, a.dialog_iconbutton_pressed .icon {
    position:absolute;
    color:#333;
    left:0;
    right:0;
    top:0;
    height:120px;
    line-height:120px;
    font-size:60px;
    text-align:center;
}
a.dialog_iconbutton .text, a.dialog_iconbutton_pressed .text {
    position:absolute;
    color:#333;
    left:0;
    right:0;
    top:115px;
    text-align:center;
    transform: translateY(-50%);
    padding:0 20px 0 20px;
}

@keyframes ani_rotation {
    0% {
        transform: rotate(-20deg)
    }
    50% {
        transform: rotate(20deg)
    }
    100% {
        transform: rotate(-20deg)
    }
}
@keyframes ani_yrotation {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1,-1);
    }
    100% {
        transform: scale(1,1);
    }
}
@keyframes ani_updown {
    0% {
        transform: translate(0,-15px);
    }
    50% {
        transform: translate(0,15px);
    }   
    100% {
        transform: translate(0,-15px);
    }                             
}

*/

div.discount_price, div.discount_price_selectable  {
	
	background-color:#e90;
	color:#fff;
	text-align:center;
	padding:10px;
	border-radius:5px;
	box-shadow:0 0 4px rgba(0,0,0,0.3);
}
div.discount_price_selectable  {
	cursor:pointer;
}
div.discount_price_selectable:hover  {
	background-color:#0a0;
	box-shadow:0 0 4px rgba(0,0,0,0.6);
}


div#floorplan {

    background-color:#336699;
    position:relative;
    width:100%;
    height:calc(100vh - 100px);
    min-height:550px;
    overflow:hidden;
    user-select: none;
}


div#floorplan_zoom_container {
    transition:transform 0.3s;
}

/* Main Picture */
div.floorplan_container {
    position:absolute;
    top:0;
    left:0;
}


div.floorplan_level {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-size:100% 100%;    
    background-repeat:no-repeat;
    transition:opacity 0.5s;
}

/* Navigator */
div#floorplan_navigator {
    position:absolute;
    padding:20px;
    top:0;
    right:0;
    z-index:30;
    border-top-left-radius:20px;
}
#floorplan_navigator div.fpnav, #floorplan_navigator div.fpnav_selected{
    cursor:pointer;
    font-family:Edwin;
    
    text-align:center;
    color:rgba(255,255,255,0.6);
}
#floorplan_navigator div.fpnav:hover {
    color:#fff;
}
#floorplan_navigator div.fpnav_selected { 
    color:#fff;
}
#rotcont {
    display:flex;
    height:60px;
    margin-top:20px;
}

/* Rotate */
div#fpleft, div#fpright {
    flex-grow:1;
    font-size:30px;
    height:60px;
    line-height:60px;
    text-align:center;
    cursor:pointer;
	color:rgba(255,255,255,0.6);
}
div#fpleft {
    left:0;
}
div#fpright {
    right:0;
}

div#fpleft:hover, div#fpright:hover {
    color:#fff;
}

/* Legend */

div#floorplan_legend {
    position:absolute;
    padding:15px;
    top:0;
    left:0;
    border-bottom-right-radius:20px;
}
div.fll, div.fll_selected {
    margin-bottom:4px;
    cursor:pointer;
    color:rgba(255,255,255,0.7);
}
div.fll_selected {
    color:#fff;
}


/* Inline Number */
div.fln {
    margin-right:5px;
    display:inline-block;
}

/* Bobbels */
div.fln, div.flp, div.flp_selected {
    background-color:#fff;
    width:20px;
    height:20px;
    line-height:17px;
    border-radius:22px;
    color:#000;
    text-align:center;
    font-weight:bold;
}
div.flp, div.flp_selected {
    position:absolute;
    cursor:pointer;
    box-shadow:0 0 10px rgba(0,0,0,1);
    transition:opacity 0.1s linear;
}
div.fln, div.flp {
    border:3px solid transparent;
}
div.fll_selected div.fln, div.flp_selected {
    background-color:#fa0;
    border:3px solid #fff;
    transform:scale(1.2); 
}

.fli, .fli_selected, .flv, .flv_selected {
    position:absolute;
    background-size:cover;
    width:320px;
    height:180px;
}
.fli, .flv {
    display:none;
}

.fli_selected, .flv_selected {
    z-index:55;
    display:block;
    outline:3px solid #fff;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,1);
}

/*
div.house_level {
    position:absolute;
    overflow:hidden;
    width:100%;
    transition:top 1s;
}

div.house_level_description {
    display:none;
}
.floorplan_bobbel {
    position:absolute;
    left:0px;
    top:0px;
}
*/

@media not all and (min-width: 600px) {
    .floorplan_legend, .floorplan_bobbel {
        font-size:11px;
    }
    div.fln, div.flp {
        border:1px solid transparent;
    }
    div.fll_selected div.fln, div.flp_selected {
        border:1px solid #fff;
    }
}

.fli, .fli_selected {
    position:absolute;
}
.fli {
    display:none;
}
.fli_selected {
    z-index:55;
    display:block;
    outline:3px solid #fff;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,1);
}


body {
    font-family: "Plovdiv";
    color:#fff;
    margin:0;
    padding:0;
    border:0;
    background-color:#797b7e;
    font-size:17px;
}


/* Generic on-off classes for smol/real mode */
@media (min-width: 800px) {
    .smol {
        display:none !important;
    }
}
@media not all and (min-width: 800px) {
    .real {
        display:none !important;
    }
}

/* Ultra High Level Main Contaienr */
div.main_container {
    width:100%;
    min-width:360px;
    overflow:hidden; 
}



a {
    color:#ec0;
    text-decoration:none;
}

ul {
    list-style-type: square;
    padding-inline-start:20px;
    
}
ol {
    
    padding-inline-start:20px;
}



h1 {

    font-family: "Edwin";
    font-weight:normal;
    font-style:normal;
    font-size:40px;
    line-height:44px;

    display:block;
    margin:0;
    border:0;
    padding:0;
}

h2 {
    margin:0;
    padding:0;
    border:0;
    font-size:25px;
    font-weight:normal;
    font-style:normal;
}


h3 {
    margin:0;
    padding:0;
    border:0;
    font-size:18px;
    font-weight:normal;
    font-style:normal;
    opacity:0.7;
}

p.quote {
    font-family: "Edwin";
    font-weight:normal;
    font-style:italic;
    font-size:20px;
    margin-block-end:0;
}
p.quote_from {
    margin-block-start:0;
    text-align:right;
}

ul, ol, p, li, h1, h2, h3 {
    margin-top:12px;
    margin-bottom:12px;
}
.indent {
    margin-left:20px;
    margin-bottom:24px;
}
.indent_left {
    margin-left:20px;
}
.vague {
    opacity:0.5;
    text-decoration: underline wavy;
}

div#chat_launcher {
    width:50px;
    height:50px;
    position:fixed;
    bottom:80px;
    right:30px;
    text-align:center;
    line-height:50px;
    z-index:499;
    font-size:22px;
    border-radius:20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
    overflow:hidden;
    background-color: #6699cc;
    color:#fff;
    cursor:pointer;
    opacity:0;
    transition:opacity 2s;
}
@media not all and (min-width: 800px) {
    div#chat_launcher {
        bottom:20px;
        right:20px;
    }
}

div#chat_room {
    width:300px;
    height:450px;
    position:fixed;
    bottom:80px;
    right:30px;
    display:flex;
    flex-direction: column;
    background-color:#fff;
    z-index:500;
    border-radius:5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
    overflow:hidden;
}
div#chat_title_bar {
    height:40px;
    line-height:40px;
    display:flex;
    background-color: #6699cc;
}
div#chat_title_bar div.title {
    padding-left:8px;
}
div#chat_title_bar div#chat_online {
    flex-grow:1;
    text-align:center;
}
div#chat_title_bar div#closebutton {
    width:40px;
    text-align:center;
    cursor:pointer;
}




div#chat_content {
    flex-grow:1;
    overflow:auto;
}
div#online_explainer, div#offline_explainer {
    margin:8px;
    text-align:center;
    font-size:13px;
    color:rgba(0,0,0,0.5);
}
div#chat_content div.i {
    margin:8px;
    text-align:center;
    color:rgba(0,0,0,0.3);
    font-size:12px;
}
div#chat_content div.m {
    padding:5px;
    background-color: #ccddee;
    color:#000;
    margin:8px 8px 8px 40px;
    border-radius:8px;
}
div#chat_content div.t {
    padding:5px;
    background-color: #e0e0e0;
    color:#000;
    margin:8px 30px 8px 8px;
    border-radius:8px;
}
div#chat_submitbar {
    height:60px;
    display:flex;
    background-color:#eee;
}
#chat_input_text {
    resize: none; 
    width:240px;
    margin:8px 0 8px 8px;
    color:#000;
    background-color:#fff;
    border-radius:7px;
    padding:2px 0 0 4px;
    border:none;
    font-family: "Plovdiv";
    font-size:17px;
}
#chat_input_text:focus {
    outline:1px solid rgba(0,0,0,0.2);
}
#chat_send_text {
    flex-grow:1;
    text-align:center;
    cursor:pointer;
    line-height:60px;
    color:rgba(0,0,0,0.4);
}

/* Item Rollover (not on phones) */
@media (hover: hover) and (pointer: fine) {
    div#chat_title_bar div#closebutton:hover, div#chat_launcher:hover {
        color:#fff;
        background-color:#336699;
    }
    #chat_send_text:hover {
        color:#000;
    }
}
img.inchat {
    height:80px;
}


div.infodumper {
    min-height:calc(50vh - 25px);
    width:100%;
    padding:0.05px;
    display:flex;
    background-color:#6699cc;
}

@media not all and (min-width: 800px) {
    div.infodumper {
        min-height:0;
        display:block;
    }
}


div.info {

    padding:20px;
    width:100%;
    min-height:calc(50vh - 25px);
    box-sizing: border-box;
    position:relative;
}



@media not all and (min-width: 800px) {
    div.info {
        min-height:0;
    }
    
}


div.infodumper:nth-child(even) div.info:nth-child(odd), div.infodumper:nth-child(odd) div.info:nth-child(even) {
    background-color:#336699;
}

div.info div.pic {
    display:block;
    width:auto;
    margin-top:20px;
    margin-bottom:20px;
    height:40px;
    background-color:#336699;

    background-size: cover;
    background-position: 50% 50%;
}
@media not all and (min-width: 800px) {
    div.info {
        height:auto;
    }
}



div.key_visual {
    
    background-size: cover;

    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    height:100%;
}
div.key_visual_main, div.key_visual_placeholder {
    
    background-size: cover;

    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    transition:right 0.5s;
}
div.key_visual_placeholder {

}


@media not all and (min-width: 800px) {
 
    div.key_visual {
        position:relative;
        width:100%;
        height:33vh;
    }
    div.pic_box_enlarged div.key_visual {
        height:50vh;
    }
    div.video_container {
        position:static;
        width:100%;
        height:auto;
    }
    video.key_video {
        position:static;
        width:100%;
        height:auto;
    }
}


div.key_visual_navigator {
    position:absolute;
    left:5px;
    bottom:5px;
    
    display:none;
    z-index:99;
    
}
div.pic_box_enlarged div.key_visual_navigator {
    display:flex;
}

div.key_visual_navigator a {
    display:block;
    width:80px;
    height:60px;
    background-size: cover;
    cursor:pointer;    
    margin:10px;
    position:relative;    
    box-shadow:0 0 10px rgba(0,0,0,1);
    border:2px solid #fff;
    color:#fff;
    text-align:center;
    font-size:30px;
    line-height:62px;
    box-sizing: border-box;
}
div.key_visual_navigator a.selected {
    border:4px solid #fff;
}
div.key_visual_navigator a.arrow {
    border:none;
    box-shadow:none;
    width:40px;
    
}
div.key_visual_navigator a.arrow:hover {
    box-shadow:0 0 10px rgba(0,0,0,1);
}
@media not all and (min-width: 1000px) {
    div.key_visual_navigator a {
        background-color:#fff;
        width:30px;
        height:30px;
        border-radius:30px;
        border:1px solid #fff;
        margin:5px;
    }
    div.key_visual_navigator a.selected {
        border:3px solid #fff;
    }
    div.key_visual_navigator a.arrow {
        background-color:transparent;
        width:30px;
        font-size:20px;
        line-height:35px;
    }
}
@media not all and (min-width: 800px) {
    div.key_visual_navigator a.arrow {
        display:none;
    }
}



div#calendar_request_container, div#pricelist_container {
    display:flex;
}
@media not all and (min-width: 1100px) {
    div#calendar_request_container {
        display:block;
    }
}

div.legend_box {
    width:20px;
    height:20px;
    display:inline-block;
    vertical-align:-4px;
    box-shadow:0 0 5px rgba(0,0,0,0.3);
    
}



/* Main Navigation */
div.nav, div.fixed_nav, div.academy_nav {
    position:fixed;
    left:0;
    top:0;
    right:0;
    min-height:50px;
    z-index:100;
    display:flex;
}
div.bottom_nav {
    position:fixed;
    left:0;
    bottom:0;
    right:0;
    min-height:50px;
    z-index:100;
    display:flex;

}
div.nav, div.fixed_nav, div.bottom_nav {
    background-color:#6699cc;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
}


/* Navigation Item */
div.nav a, div.fixed_nav a, div.academy_nav a, div.bottom_nav a {
    height:50px;
    line-height:50px;

    padding-left:calc(clamp(15px,2VW,30px));
    padding-right:calc(clamp(15px,2VW,30px));
    
    text-decoration:none;
    color:rgba(255,255,255,0.7);
    white-space: nowrap;
    text-align:left;

    cursor:pointer;

    flex-shrink:1;
    flex-grow:0;
    min-width: 0;
    
}

/* In real mode, hide hamburger display and show spacer */
a#nav_hamburger {
    display:none;
}
div#nav_spacer, div.nav_spacer {
    flex-grow:10;
    flex-shrink:10;
    text-align:center;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
    height:50px;
    line-height:50px;    

}

div#info_menu {
    display:block;
    position:fixed;
    top:50px;
    right:0;
    background-color:#6699cc;
    box-shadow:0 0 10px rgba(0,0,0,0.5);
}
div#info_menu a {
    display:block;
    display:var(--info-menu-flip);
}

/* Item Highlight */
div.nav a.selected, div.fixed_nav a.selected, div.bottom_nav a.selected {
    color:#fff;
    background-color:#336699;
}

/* Navigation Placeholder */
div.nav_top_spacer, div.nav_bottom_spacer  {
    height:50px;
}


/* in smol mode, verticalize nav, hide options, hide spacers, show hamburger */
@media not all and (min-width: 800px) {
    div.nav, div.bottom_nav {
        /* flex-direction:column; */
        flex-wrap: wrap;
    }
    div.bottom_nav {
        
        display:flex;
        position:static;
        width:100%;
        box-shadow:none;
        background-color: transparent;
    }
    div.nav_bottom_spacer  {
        height:0;
    }
    div.bottom_nav {
        display:var(--menu-flip);
    }
    /*
    div.nav a, div.bottom_nav a {
        flex-basis:30%;
    }
    */
    div.nav a:not(:first-child), div.bottom_nav a {
        display:block;
        display:var(--menu-flip);
    }
    div.nav .always {
        display:block;
    }
    div#nav_spacer {
        display:block;
        display:var(--menu-flip);
        flex-basis:100%;
    }
    div.nav_spacer {
        display:none;
    }
    a#nav_hamburger {
        display:block;
    }
   
    a#info_menu_trigger {
        display:none;
    }
    div#info_menu {
        top:0;
        display:block;
        position:relative;
        display:flex;
        flex-wrap: wrap;
        box-shadow:none;
    }
    div#info_menu a {
        display:block;
        display:var(--menu-flip);
        flex-basis:140px;
    }
}

/* Item Rollover (not on phones) */
@media (hover: hover) and (pointer: fine) {
    div.nav a:hover,  div.bottom_nav a:hover {
        color:#fff;
        background-color:#336699;
    }
}



div.pic_box_container {
    width:100%;    

    height:calc(100vh - 100px);
    padding:0.05px;

    background-color:#336699;
    display:flex;    
    flex-direction: row;
}

div.pic_box {
    cursor:pointer;
}

    
div.pic_box, div.pic_box_enlarged {

    width:100%;
    height:calc(100vh - 100px);

    background-size: cover;
    background-position:center;

    
    position:relative;
    overflow:hidden;

    transition:flex-shrink 0.5s;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
}

@media not all and (min-width: 800px) {
    div.pic_box_container {
        display:block;
        height:auto;
        min-height:0;
    }    
    div.pic_box, div.pic_box_enlarged {
        min-height:0;
        height:auto;
        min-height:0;
    }
}

@media (hover: hover) and (pointer: fine) and (min-width: 800px) {
    div.pic_box:hover {
        flex-shrink:0.9;
        box-shadow:0 0 20px rgba(0,0,0,0.7);
        z-index:10;
    }
}

div.pic_box_enlarged {
    flex-shrink:0;
}

div.pic_box_text {
    position:absolute;
    box-sizing: border-box;
    padding:20px;
    width:100%;
    height:150px;
    bottom:0;
    background-color:rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    
}
div.pic_box_enlarged div.pic_box_text {
    position:relative;
    padding:20px;   
    padding-bottom:50px;
    max-width:460px;
    transition:opacity 0.3s;
    transition:transform 0.5s;
    height:100%;
    margin-left:auto;
    margin-right:0;
    white-space:normal;
    overflow:auto;
    background-color:rgba(0,0,0,0.5);
    box-sizing: border-box;
    
}

div.pic_box div.pic_box_details {
    display:none;
}
div.pic_box_nav {
    display:none;
}
div.pic_box_details {
    cursor:default;
}
a.pic_box_close {
    display:none;
    cursor:pointer;
}
a.pic_box_toggle_text {
    display:none;
    cursor:pointer;
}
@media (min-width: 800px) {
    div.pic_box_enlarged div.pic_box_text {
        opacity:1;
        
        transform:translateX(calc(460px*(1 - var(--text-opacity))));
    }
    div.pic_box_enlarged div.key_visual_main, div.pic_box_enlarged div.key_visual_placeholder {
        right:calc(460px*var(--text-opacity));
    }
    div.pic_box_enlarged div.pic_box_nav {
        position:absolute;
        right:0;
        bottom:0;
        height:50px;
        width:460px;    
        display:flex;
    }

    div.pic_box_nav a {
        display:block;
        width:100%;
        line-height:40px;
        height:40px;
        font-size:20px;
        color:#fff;
        text-decoration:none;
        text-align:center;
        opacity:0.5;
    }
    div.pic_box_nav a:hover {                                 
        opacity:1;
    }
    div.pic_box_enlarged a.pic_box_close,div.pic_box_enlarged a.pic_box_toggle_text {
        display:block;
        position:absolute;
        width:75px;
        line-height:75px;
        height:75px;
        font-size:25px;
        color:#fff;
        text-decoration:none;
        text-align:center;
        opacity:0.6;     
        top:0;
        left:0;   
    }
    div.pic_box_enlarged a.pic_box_toggle_text {
        left:auto;
        right:0;
    }
    div.pic_box_enlarged a.pic_box_close:hover, div.pic_box_enlarged a.pic_box_toggle_text:hover  {
        opacity:1;
    }

    
} 

@media not all and (min-width: 800px) {
    div.pic_box_text {
        margin-top:0px;
        position:static;      
        height:auto; 
        background-color:#336699;
    }
    div.pic_box_enlarged div.pic_box_text {
        max-width:600px;
        margin-left:auto;
        margin-right:auto;
        background-color:#336699;
    }
}


div#prices {
    display:flex;
    flex-direction: column;
}

div.pricelist_container {
    display:flex;
    flex-grow:1;
    margin-left:auto;
    margin-right:auto;
	width:100%;
    justify-content: center;
}

@media not all and (min-width: 1250px) {
    div.pricelist_container {
        display:block;
		margin-bottom:0;
    }
}
.price_display_mode {
	display:inline-block;
	margin:10px;
	cursor:pointer;
	opacity:0.75;
}
@media not all and (min-width: 600px) {
    div.pricelist_container {
        margin-left:0;
        margin-right:0;
    }
}

div.white_table {
    background-color:#fff;
	flex-grow:1;
    margin:20px;
    padding:10px 10px 30px 10px;
    color:#333;
	text-align:center;
}

@media not all and (min-width: 600px) {
    div.white_table {
        margin:10px 0 10px 0;
        font-size:14px;
    }
}

@media not all and (min-width: 480px) {
    div.white_table {
        margin:10px 0 10px 0;
        font-size:12px;
    }
}

div.white_table h3 {
    margin-top: 20px;
	margin-bottom: 25px;
    margin-left:8px;
}
div.white_table h3:first-child {
    margin-top: 30;
    margin-left:8px;
}

table {
    border-spacing: 0;
	margin-left:auto;
	margin-right:auto;

}
td, th {
    margin:0;
    padding:2px 8px 6px 8px;
    border-left:1px solid rgba(0,0,0,0.2);
    vertical-align: top;
}
th {
    font-weight:bold;
    border-bottom:1px solid rgba(0,0,0,0.2);
}
td:first-child, th:first-child {
    border-left:none;
    text-align:center;
}
td.noborder, th.noborder {
    border-left:none;
}
td.bottomborder, th.bottomborder {
    border-left:none;
    border-bottom:1px solid rgba(0,0,0,0.2);
}
tr:last-child td.bottomborder, tr:last-child th.bottomborder {
    border-bottom:none;
}
tr.legend_option td {
    cursor:pointer;   
}
tr.legend_option:hover { 
    background-color:rgba(255,255,255,0.8);
}

td.r, td.rc {
    text-align:right;
    
}
td.rc {
    cursor:pointer;
}
td.l, th.l {
    text-align:left;
}
tr.total td {
    font-weight:bold;
    border-top:1px solid rgba(0,0,0,0.1);
    border-bottom:2px solid rgba(0,0,0,0.1);
}
tr.selectable td, tr.selected td,tr.selectable th, tr.selected th {
    cursor:pointer;
}
tr.selectable:hover td,tr.selectable:hover th {
    background-color: rgba(102, 153, 204, 0.1);
}
tr.selected td, tr.selected th {
    background-color: rgba(102, 153, 204, 0.2);
}
div.booking_button_container {
    margin-top:30px;
    text-align:center;
}
span.booking_button {
    padding:5px 15px 10px 15px;
    cursor:pointer;
    color:#fff;
    background-color:#336699;
    line-height:40px;
	white-space: nowrap;
	border-radius: 4px;
}
span.booking_button:hover {
    outline:inset 6px #fc0;
}


div.video_container {
    
    background-size: cover;

    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    height:100%;

    background-color: #000;
    text-align:center;
    overflow: hidden;
    z-index:-1;
}
div.playbutton {
    position:absolute;
    left:0;
    top:0;
    color:#fff;
    font-size:120px;
    
    
    line-height:100%;
    cursor:pointer;
    opacity:0.5;
    top:0;
    left:0;
    right:500px;
    bottom:0;
    text-shadow:0 0 20px #fff;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-content:center;
    align-items:center;
}
div.playbutton:hover {
    opacity:0.8;
}
video.key_video {
    position:absolute;
    outline:none;
    cursor:pointer;
}
video.video_smol {
	background-color: #000;
    width:100%;
    height:auto;
	max-height:calc(100vh - 50px);
	margin-bottom:10px;
}

