
/*  ============================================
    ROOTERY / HTMLEMENTARY
    ============================================*/

:root {
/* GREYSCALE */
    --white: #FFFFFF;
    --opal: #fafafb;
    --silver: #edf0f2;
    --titanium: #dce2e6;
    --aluminium: #b9c5cd;
    --plutonium: #7d8990;
    --gunmetal: #545b60;
    --charcoal: #2a2e30;
    --chalkboard: #1a1e20; 

/* SPECTRUM */
    --PNK: #FF3FFF;
    --RED: #FA0163;
    --PRP: #7A7BFF;
    --DPR: #2D229E;
    --ULT: #223FDb;
    --BLU: #60C7FF;
    --TEL: #03E5CF;
    --PST: #20ED92;
    --LEF: #54BE5A;
    --YEL: #FFFF83;
}

/* GRADIENTS  RedPurpleBlueTealGreenYellow*/
.grad_YR { background: linear-gradient(135deg, #F2FFD4 58%, #FFD4D6); }
.grad_RP { background: linear-gradient(135deg, #FFD4D6 58%, #E8D4FF); }
.grad_PB { background: linear-gradient(135deg, #E8D4FF 58%, #D4F2FF); }
.grad_BT { background: linear-gradient(135deg, #D4F2FF 58%, #A6FFF2); }
.grad_TG { background: linear-gradient(135deg, #D4FFF8 58%, #DEFFCB); }
.grad_GY { background: linear-gradient(135deg, #DEFFCB 58%, #F2FFD4); }
.grad_OS { background: linear-gradient(135deg, var(--opal) 58%, var(--silver)); }

@font-face {
    font-family: 'KRASHZ';
    src: url('/type/KRASHZ100.ttf') format('truetype');
    font-weight: 200 900;
    font-stretch: 75% 125%;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%; /* Changed from 100vw to 100% for consistent horizontal sizing */
    overflow-x: hidden; /* Hide horizontal scrollbar at the root level */
        /* box-sizing: border-box; is handled by the universal selector */
}

body {    
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh; /* Allows body to be at least viewport height, but grow as needed */
    height: auto; /* IMPORTANT: Remove fixed height */
    background: var(--titanium);
    letter-spacing: -0.0125em;
    font-family: 'KRASHZ', sans-serif  !important;   
    font-stretch: expanded;
    font-size: 16px;
    color: var(--charcoal); 
        -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
        -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    background-image: radial-gradient(at 120% 70%, var(--PNK) 0, transparent 18%), radial-gradient(at -10% 84%, var(--BLU) 0, transparent 16%), radial-gradient(at 0 140%, var(--PRP) 0, transparent 50%), radial-gradient(at 140% 100%, var(--TEL) 0, transparent 35%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

* {
    box-sizing: border-box;
}

header {
    width:100%;
    background: #fff;
}

main {
    flex-grow: 1; /* This is the key! It makes <main> take up all available vertical space */
    display: flex; /* Keep this if you want to center content within main, which your .container does */
    flex-direction: column; /* Keep this if you want to stack direct children of main */
    align-items: center; /* Keep this to center content within main */
    padding: 80px 0 3rem 0; /* padding: 0em 1em 3em 1em; */
    margin: 0;
    width: 100%; /* Changed from 100vw to 100%  */
}

footer {
    width:100%;
    /* padding: 1em 0 0 0;   /*  background: var(--charcoal); */
}

hr  { border:1px dashed var(--plutonium); margin:1em 0; width:100%; }

/*  ============================================
    STRUCTURY
    ============================================*/

.base_canv {   
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
        -ms-flex: 0 1 auto;
        -webkit-box-flex: 0;
    flex: 0 1 auto;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    flex-direction: row;
        -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0em 1em;   /*max-width: 100vw;  margin: 0em;*/
    width:100%; 
    margin: 0em auto;
    transition            : all 0.3s linear;
        -moz-transition   : all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -o-transition     : all 0.3s linear; }

    @media screen and (max-width: 512px) {  .base_canv { padding: 0em 0.4em; }}

.flush_canv {  width:100%; max-width: 100vw;  margin: 0px;  padding:0px; }

.wh_box {
    margin: 0.5em 0 0 0;
    background: #ffffff;
    border-radius: 1.75em;
    border: 1px solid var(--plutonium);
    padding: 1em;
    width: 100%;
    max-width: 960px;
    box-sizing: border-box;
}   .wh_box:hover, .wh_box:focus
 {
    box-shadow: 2px 4px 8px 0 rgba(42, 46, 48, 0.4), 2px 6px 20px 0 rgba(42, 46, 48, 0.4);
    transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
}

.clr_box {
    margin: 0.5em 0 0 0;
    padding: 1em;
    width:100%;
    max-width: 960px;
    box-sizing: border-box;
}

/* SCAFFOLD for buttons/pills */
.bttr {
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    padding: 1em;
    flex-wrap: wrap;
    align-items: baseline;
}

/* SCAFFOLD for tags/pills */
.tggr {
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: start;
    z-index: 4;
    padding: 0.5em 0 0 0;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25em;
}

/* FOOTER  */
.foot {
  margin: 0 1em;
    display: flex;
    margin-top: auto;
    margin-bottom: 0;
    background: var(--charcoal);
    padding: 1.5em;
    box-sizing: border-box;
    color: var(--titanium);
    min-height: 24vh;
    border-radius: 0;
    border-top-left-radius: 1.5em;
    border-top-right-radius: 1.5em;
}
.foot_txt {
    font-size:0.75em;
    padding: 0;
    line-height: 0.75em;
    width: fit-content;
    float: left;
    padding-bottom: 1.5em;
    padding-right: 4em;
    color: var(--aluminium);
}
.foot a {
    color:var(--opal);
    font-size:0.86em;
    line-height: 1.5em;
    display: inline; /* against Stripe block styling */
    font-weight: 420;
    letter-spacing: normal;
    text-decoration: none;
}

.foot a:hover, .foot a:focus {
    color: var(--YEL);
}

/* social icons */
.sockfoot { 
  width: 1.5em;
  height: 1.5em;
  opacity: 0.33;
  cursor: pointer;
}

/*  == ( STRUCTURY-ELEMENTS ) ===================*/
/*  TOP NAV STRUCTURE */


/* FOC TEST STRUCTURE*/
/* NEW TEST FOCUS - LISTBASE. */

.foc_list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.foc_list_row {
    /* X requested-stay-item  */
    display: flex;
    flex-wrap: wrap;
    background-color: var(--opal);
    padding: 0.5rem 0.5rem;
    border-radius: 1rem;
    gap: 0.25em;
}

.foc_card {
    display: flex;
    align-items: center;
    gap: 0.5rem 8px;
}
.foc_card_img {
    flex-shrink: 0;
}
.foc_card img {
    height: 2.75em;
    width: 2.75em;
    border-radius: 4em;
}
.foc_card_text {
    display: flex;
    flex-direction: column;
    text-transform:capitalize;
}
.foc_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-grow: 1;
    gap: 0.5rem;
}
.foc_status {
    /* Base style for the badge */
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: 100%;
    max-width: 100%;
    transition: background-color 0.3s;
    border: 1px solid var(--silver);
    cursor: pointer;
    text-align: right;
}
/* Specific colors for each status */
.foc_status.accepted { background-color: #D4F2FF; }
.foc_status.pending { background-color: #E8D4FF; }
.foc_status.booked { background-color: #E4FFD4; }
.foc_status.declined { background-color: #FFD4D6; }
.foc_status.cancelled { background-color: #FFD4D6; }

.foc_status.accepted:hover,
.foc_status.pending:hover,
.foc_status.booked:hover,
.foc_status.declined:hover,
.foc_status.cancelled:hover {  background-color: #fff; }

.sec_label {     
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 660;
    white-space: nowrap;
    color: var(--plutonium);
    font-stretch: expanded; 
}

.fb_sec_label {
  text-transform: uppercase;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--plutonium);
  padding: 0 0 0.25em 0;
}
 .insert_label {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--plutonium);   
 }

/* ROOF */
.mnav {
  box-sizing: border-box;
  margin: 0px;
  position: fixed;
  background: #ffffff;
  z-index: 29;
  top: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  gap:0.5em;
  justify-content: space-between;
  height: 80px;
  max-height: 80px;
  width: 100vw;
  max-width: 100vw;
  padding: 20px 24px;
  box-shadow: 2px 4px 8px 0 rgba(42, 46, 48, 0.4), 2px 6px 20px 0 rgba(42, 46, 48, 0.4);
  box-shadow: 0 2px 6px rgb(42 46 48 / 24%);
  border-bottom: 2px solid var(--charcoal);
}

.top_nav {
    /* HEADER  */ 
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    position: fixed;
    background: #ffffff;
    z-index: 29;
    height: 80px;
    max-height: 80px;
    width: 100%;
    max-width: 100%;
    padding: 1em 2em 1em 1em;
    box-shadow: 2px 4px 8px 0 rgba(42, 46, 48, 0.4), 2px 6px 20px 0 rgba(42, 46, 48, 0.4);
    box-shadow: 0 2px 6px rgb(42 46 48 / 24%);
    border-bottom: 2px solid var(--charcoal);
}

.top_nav { /*mod from krash.css */ 
    background: transparent; 
    background-image: linear-gradient(to bottom, var(--titanium) 86%, transparent); 
    border-bottom:0px; 
    box-shadow:none; 
    display:flex; 
    justify-content: space-evenly; 
    padding: 1em; 
    gap:0.5em;
}
@media (min-width: 632px) {
    .top_nav { gap:1em; }
}

.bdiv {
        display:flex;
        flex: 1 20%;
        justify-content: center;
    }
.nbase {
	display:none;
    opacity: 0.9;
	position: fixed;
    inset: 0px;
    z-index: 28;
    width: 100vw;
    height: 111vh;
    max-width:100vw;
    background: #2a2e30;
    padding: 80px 0px 0px; 
    box-sizing: border-box;
    font-size: 19px;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    margin:0px;
}
.topbnav { overflow: hidden; position: relative; padding: 0px 48px 48px}                      
.topbnav a {
  /*  text-transform: uppercase; */
    color:#f9f9f9;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 0.88em;
  white-space: nowrap;
    float: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #1e1e1e;
}  
.topbnav a:after{
    content: '>';
    float: right;
    margin-left:5px;
    color: #9ba7a0;
    }
.topbnav a:before{ float: left;  content:""; }
.topbnav a:hover:after { color: #DF0; font-weight: 800;} 
.topbnav a:hover, a:focus, a:active { color: #ffffff; } 
@media screen and (max-width: 420px) {  .topbnav { padding: 0px 16px 48px; }} 



    /* Hamburger menu animation */
    #nav-icon3 {
        width: 40px;
        height: 40px;
        position: relative;
        margin: 0px;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #nav-icon3 span {
        display: block;
        position: absolute;
        height: 6px;
        width: 100%;
        background: var(--charcoal);
        border-radius: 18px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    #nav-icon3 { width:42px; height:42px; }
    #nav-icon3 span:nth-child(1) { top: 0px; }
    #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) { top: 18px; }
    #nav-icon3 span:nth-child(4) { top: 36px; }
    #nav-icon3.open span:nth-child(1) { top: 18px; width: 0%; left: 50%; }
    #nav-icon3.open span:nth-child(2) {
        background: var(--YEL);
        transform: rotate(45deg);
        top: 19px;
    }
    #nav-icon3.open span:nth-child(3) {
        background: var(--YEL);
        transform: rotate(-45deg);
        top: 19px;
    }
    #nav-icon3.open span:nth-child(4) { top: 18px; width: 0%; left: 50%; }

.gback {
    z-index: 22;
    padding: 2px 4px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    margin-left: 24px;
    display: flex;
    background: -webkit-linear-gradient(to bottom right, var(--PST), var(--YEL));
    background: -o-linear-gradient(135deg, var(--PST), var(--YEL));
    background: linear-gradient(135deg, var(--PST) 40%, var(--YEL));
}

/* SEARCHBAR  */

    .pac-container {
    width: -webkit-fill-available !important;
    position: fixed !important;
    left: 1em !important;
    top: 4em !important;
    right: 1em !important;
    padding: 1em !important;
    border-radius: 1em !important;
    border: 1px solid var(--charcoal) !important;
    font-family: 'aktiv-grotesk-extended', sans-serif !important;
    letter-spacing: -0.0385em -0.616px !important;
    }
    .pac-icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-top: 5px;
    display: inline-block;
    vertical-align: top;
    background-image: url(/img/bui/search_toLeft_alu.svg);
    -webkit-background-size: 34px 34px;
    background-size: 20px;
    fill: var(--aluminium);
}
.pac-icon-marker {
    background-position: 0px 0px;
}
    .pac-icon-marker { background-image: url(/img/bui/search_toLeft_alu.svg); }
    .pac-icon .pac-icon-marker { background-image: url(/img/bui/search_toLeft_alu.svg); }
    .hdpi .pac-icon { background-image: url(/img/bui/search_toLeft_alu.svg); }


.searcher {
        display:none;
        flex:1 100%;
        z-index: 49;
        background: #ffffff;
        /* margin: 1em; */
        padding: 0.66em 1.5em 0.75em 3.5em;
        position: absolute;
        top: 19px;
        left: 1em;
        right: 1em;
        border: 1px solid #2a2e30;
        color: var(--plutonium);
        max-width: 100%;
        height: 42px;
        border-radius: 2em;
        overflow:hidden;
        white-space:nowrap;
}

.search-ac-item::before {
  content: url(/img/bui/search_toLeft_alu.svg); 
  margin-right: 4px; 
  width: 24px;
  height:24px;
  vertical-align: middle;
}


.masonry-container {
    column-count: 1;       /* Number of columns   column-width: 320px;   Number of columns or, || */
    column-gap: 24px;      /* Gap between columns */
}
@media screen and  (min-width: 632px) { 
    .masonry-container {  column-count: 2; } }
@media screen and  (min-width: 980px) { 
    .masonry-container {  column-count: 3; } }
/*@media screen and  (min-width: 1280px) { 
    .masonry-container {  column-count: 4; } 
} */

.masonry-item {
  display: inline-block; /* Prevents item splitting across columns */
  width: 100%;
  margin-bottom: 24px;   /* Spacing between vertical blocks */
}

/*  == ( STRUCTURY-MODS ) ============*/

/*  ============================================
    TYPOGRAPHY
    ============================================*/
.TXT {
    font-size: 1rem; 
    font-stretch: expanded;
    margin: 0;
    line-height: 1rem;
    letter-spacing: -0.02em;
}
.t_TXT {
    width:100%;
    font-size: 5.0rem;
    font-stretch: expanded; 
    margin-top:0.375em; 
    letter-spacing: -0.075em; 
    line-height: 0.8125em; 
    font-weight: bold; 
      -webkit-box-sizing: border-box; 
    box-sizing: border-box;    
}
.sc_TXT {
    width:100%;
    font-size: 3.75rem; 
    font-stretch:semi-expanded;
    font-weight:700;
    letter-spacing: -0.06em;
    line-height: 0.75em;
    padding:0.5em 0 0 0;
}
.st_TXT {
    font-size: 1.5rem; 
    font-stretch:expanded;
    margin-top:0.25em; 
    letter-spacing: -0.05em; 
    line-height: 0.9em; 
    font-weight: 666; 
    box-sizing: border-box;
}
.sst_TXT {
    font-size: 1.25rem; 
    font-stretch:expanded;
    letter-spacing: -1px;  
    line-height: 1.2; /* plutonium? */
}

.d_TXT { /* 0.8125 = 13px for Gen-Z */
    font-size: 0.8125rem; 
    line-height: normal;
    font-stretch:expanded;
}

.dd_TXT { /* 0.8125 = 13px for Gen-Z */
    font-size: 0.625rem; 
    line-height: normal;
    font-stretch:expanded;
}



.in_curr_symb { 
    font-weight: 900;
    font-size: 0.8125em;
    vertical-align: top;
}

.space_currency {
    vertical-align: top;
    font-weight: 900;
    font-stretch: semi-expanded;
    color: var(--plutonium);
    font-size: 1.5em;
}

/*  == ( TXT focus chrome contain/mods) ============*/
    ._BLD { font-weight:700; }

    ._plutonium { color: var(--plutonium); }
    ._gunmetal { color: var(--gunmetal); }
    ._white { color: var(--white); }
    ._ULT { color: var(--ULT); }
    ._PRP { color: var(--PRP); }

@media (max-width: 563px) { 
    .sst_TXT { font-size: 1.125em; overflow-wrap: break-word; }
    .st_TXT { font-size: 1.25em; overflow-wrap: break-word; }
    .sc_TXT { font-size: 2.55em; overflow-wrap: break-word; }
    .t_txt { font-size: 3.75em; margin-top:0.5em; overflow-wrap: break-word; font-weight:800;}
}

    .txt_lite { text-shadow: 4px 4px 4px rgba(255, 255, 255, 0.9); }
    
.loading-text {
        text-align: center;
        padding: 2em;
        color: var(--plutonium);
        font-size: 0.9em;
    }

/* Animations */
.blur_trans {  animation: blurtrans 0.25s ease-out forwards; }
.blur_load {   animation: blurload 0.25s ease-out forwards; }
.blink { pointer-events: all; -webkit-animation: blink 3.14159s infinite both;  animation: blink 3.14159s infinite both; }

@-webkit-keyframes blink {  0%,  50%,  100% {  opacity: 1; }  25%,  75% {  opacity: 0;  }}
@keyframes blink {  0%,  50%,  100% {  opacity: 1; }  25%,  75% {  opacity: 0;  }}

@-webkit-keyframes blurtrans { 0% { filter: blur(0em); } 60% { filter: blur(0.25em); } 100% { filter: blur(0em); } }
@keyframes blurtrans { 0% { filter: blur(0em); } 60% { filter: blur(0.25em); } 100% { filter: blur(0em); } }

@-webkit-keyframes blurload { 0% { filter: blur(0.5em); } 100% { filter: blur(0em); }}
@keyframes blurload { 0% { filter: blur(0.5em); } 100% { filter: blur(0em); }}

/*  ============================================
    COMPONENTRY
    ============================================*/

/* Place tags (pills) */
.pilp {
    display: flex;
    padding: 0.25em 0.75em;
    letter-spacing: -0.01em;
    background: var(--PRP);
    border-radius: 20px;
    color: white;
    font-size: 0.8125rem;
    margin: 0;
    line-height: 2.2em;
    height: 1.5rem;
    flex-wrap: wrap;
    align-items: baseline;
    align-content: center;
    width: fit-content;
    font-stretch: semi-expanded;
}

/* component third party mess */
.splide_img_count_pill {
  position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 2em;
    font-size: 0.8125em;
    z-index: 10;
}

.rate_pill {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer;
    padding: 0.35em 1.0em;
    width: fit-content;
    background: var(--silver);
    border-radius: 2em;
    height: 1.5em;
}
.drange_avail {

    color: var(--PST);
    background: var(--charcoal);
    border-radius: 1em;
    padding: 0.25em 0.75em 0.5em;
    margin: 0.25em 0px;
}

.drange_unavail {
    color: var(--RED);
    background: var(--charcoal);
    border-radius: 1em;
    padding: 0.25em 0.75em 0.5em;
    margin: 0.25em 0px;
}

/* Tooltips */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
visibility: hidden;
    width: 120px;
    background-color: var(--gunmetal);
    color: #fff;
    text-align: center;
    padding: 0.25em 0.75em;
    border-radius: 1.5rem;
    font-size: 13px;
    position: absolute;
    z-index: 5;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--gunmetal) transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Skeleton placeholders */
    .skeleton-box {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
        border-radius: 0.5em;
    }
    
    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }


/* ::::::::::::: MODALS ::::::::::::::   */

/* PANES */
.pane {
  display:none;
  flex-wrap: wrap;
  position:fixed;
  border: 2px solid var(--charcoal); 
  border-bottom: none;
  border-top-left-radius: 1.5em;
  border-top-right-radius: 1.5em;
  height: 100%;
  height: -moz-available;          
  height: -webkit-fill-available;  
  height: fill-available;
  width: -webkit-fill-available;
  width: 100%;
  width: -moz-available;          
  width: -webkit-fill-available;  
  width: fill-available;
  margin-left: 6px;
  margin-right: 6px;
  /*  background: url(/img/ui/sunset.webp) no-repeat;
    background-position: center;
    background-size: cover; */
    background-color: var(--white);
  left: 0px;
  bottom: 0px;
  box-shadow: 2px 4px 8px 0 rgba(25,36,44,0.4),2px 6px 20px 0 rgba(25,36,44,0.4);
  
  transition        : all 0.3s ease-out;
  -moz-transition   : all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition     : all 0.3s ease-out;
}   
#pane {
  z-index: 22;    
}
#qane {
  z-index: 23;    
}
.pane_top {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 1.5em;
  border-top-right-radius: 1.5em;
  background: #fff;
  padding: 18px;
  height: 32px;
}  
.pane_cont {
  
    box-sizing: border-box;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    height: -moz-available;
    height: -webkit-fill-available;
    height: fill-available;
    padding-bottom: 56px;
}

.pane_fade {
  position: absolute;
  min-height: 24px;
  background: linear-gradient(#ffffff, #ffffff00);
  width: 100%;
  z-index: 39;
  top: 32px;
  left: 0px;
}

.closePane {
  margin: 0px;
  font-size: 1em;
  font-weight: bold;
  display: flex;
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 1.5em;
  width: 1.4em;
  height: 1.4em;
  color: var(--charcoal); 
  z-index: 55;
  cursor: pointer;
  border: 2px solid var(--charcoal); 
  opacity: 0.8;
  justify-content: center;
  align-items: center;
}
.closePane:hover, .closePane:focus{
  border: 2px dashed var(--charcoal); 
  opacity:1.0;
  }  

/* ::::::::::::::::::::::: POP  */

#thePop {
    display:flex;
    margin: 80px 0 0;
    align-items:center;
      position: fixed;
      width: 100vw;
      height: calc(100vh - 80px);
      background: #2a2e30A2;
      Z-index: 44;
      left: 0px;
      top: 0px;
       -webkit-transition: opacity 400ms ease-in;
      -moz-transition: opacity 400ms ease-in;
      transition: opacity 400ms ease-in;  
      }
#popTart {
      width: 90vw;
      max-width: 640px;
      height: fit-content;
      max-height: 80vh;
      min-height: 25vh;
      background: #fff;
      margin: auto;
      border: 2px solid var(--charcoal); 
      box-shadow: 2px 4px 8px 0 rgb(42 46 48 / 24%), 2px 6px 20px 0 rgb(42 46 48 / 24%);
      transition        : all 0.3s ease-in;
      -moz-transition   : all 0.3s ease-in;
      -webkit-transition: all 0.3s ease-in;
      -o-transition     : all 0.3s ease-in;
      border-radius: 1.5em;
}

.closePop {
  margin: 0px;
  font-size: 0.77em;
  font-weight: bold;
  display: flex;
  position: relative;
  float: right;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 1.5em;
  width: 1.4em;
  height: 1.4em;
  color: var(--charcoal); 
  z-index: 55;
  cursor: pointer;
  border: 2px solid var(--charcoal); 
  opacity: 0.8;
  justify-content: center;
  align-items: center;
}
.closePop:hover, .closePop:focus{
  border: 2px dashed var(--charcoal); 
  opacity:1.0;
  }  

  .dark {color:var(--opal);}

.closePop .dark {
 color: var(--opal);  
}
.closePop.dark:hover, .closePop.dark:focus{
  border: 2px dashed var(--opal); 
  opacity:1.0;
  } 

.pop_fade {
  position: relative;
  min-height: 24px;
  background: linear-gradient(#ffffff, #ffffff00);
  width: 100%;
  z-index: 39;
  top: 0px;
  left: 0px;
}
.pop_core {
  position: relative;
    z-index: 38;
    max-height: 65vh;
    width: 100%;
    overflow: inherit;
    overflow-y: scroll;
    margin: -24px 0 1em 0;
}

.pop_confirmation {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding:1em;
    gap: 0.5em;
}

/* ============================================
   FORMRY
   ============================================ */
input {
      color: var(--plutonium); 
      margin-top: 0.1em;
      margin-bottom: 1.1em;
      padding: 0.5em 1em;
      appearance: none;
      box-shadow: none;
      box-sizing: border-box;
      border: 0.5px solid var(--aluminium);
      width: 100%;
      outline: 0px;
      font-size: 16px;
      font-family: "KRASHZ", sans-serif;
      font-stretch: expanded;
      letter-spacing: -0.02em;
      border-radius: 0.5em;
  }

input[type="checkbox"] {
    border-radius: 1em;
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 0.25em;
    padding: 0.25em;
    border: initial;
    width: fit-content;
}

select {
      color: var(--plutonium); 
      margin-top: 0.1em;
      margin-bottom: 1.1em;
      padding: 0.5em 1em;
      appearance: none;
      box-shadow: none;
      box-sizing: border-box;
      border: 0.5px solid var(--silver); 
      width: 100%;
      outline: 0px;
      font-size: 16px;
      font-family: "KRASHZ", sans-serif;
      letter-spacing: -0.05em;
      border-radius: 0.5em;
  }

textarea {
    line-height: 1.0;
    -webkit-writing-mode: horizontal-tb !important;
    writing-mode: horizontal-tb !important;
    text-rendering: auto;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: textfield;
    background-color: #FFFFFF;
    -webkit-rtl-ordering: logical;
    margin: 0em;
    margin-top: 0.1em;
    margin-bottom: 1em;
    width: -webkit-fill-available;
    font-size: 1rem;
    -webkit-appearance: none;
    padding: 15px 24px 17px;
    border: 0.5px solid var(--silver);
    border-radius: 1rem;
    cursor: text;
    color: var(--gunmetal);
    outline: 0px;
    font-family: 'KRASHZ', sans-serif  !important; 
    font-stretch: expanded;

  }
  /* iphone zoom consideration */
  @media screen and (min-width: 563px) {
    input, select, textarea {   font-size:0.86em; }
  }

.form_alert {
    border: #ff4566 2px solid;
  }

.option-input-small {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 6.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 27px;
    width: 27px;
    transition: all 0.15s ease-out 0s;
    border-color: var(--gunmetal);
    border: solid 2px;
    color:  var(--gunmetal);
    cursor: pointer;
    display: inline-block;
    margin-right: 0.1em;
    outline: none;
    position: relative;
    z-index: 12;
    border-radius: 50%;
    padding: 12px 12px 12px;
    background:#ffffff;
  }
  .option-input-small:hover {
      color:#ffffff;
      background: -webkit-linear-gradient(to bottom right, #7b61ff,#7b61ff);
      background: -o-linear-gradient(135deg, #7b61ff,#7b61ff);
      background: linear-gradient(135deg, #7b61ff 40%, #7b61ff );
    border-radius: 50%;
  }
  .option-input-small:checked {
      color:#ffffff;
      background: -webkit-linear-gradient(to bottom right, #7b61ff,#7b61ff);
      background: -o-linear-gradient(135deg, #7b61ff,#7b61ff);
      background: linear-gradient(135deg, #7b61ff 40%, #7b61ff );
    border-radius: 50%;
  }
          .option-input-small:checked::before {
            border-radius: 50%;
            height: 20px;
            width: 20px;
            left: 2px;
            top: 3px;
  
            position: absolute;
            content: '✔';
            display: inline-block;
            font-size: 13px;
            text-align: center;
            line-height: 20px;
          }
          .option-input-small:checked::after {
            border-radius: 50%;
            -webkit-animation: click-wave 0.65s;
            -moz-animation: click-wave 0.65s;
            animation: click-wave 0.65s;
      background: -webkit-linear-gradient(to bottom right, #78ffbd,#dfff00);
      background: -o-linear-gradient(135deg, #78ffbd,#dfff00);
      background: linear-gradient(135deg, #78ffbd 40%, #dfff00 );
            content: '';
            display: block;
            position: relative;
            z-index: 100;
          }
          .option-input-small.radio {
            border-radius: 50%;
          }
          .option-input-small.radio::after {
            border-radius: 50%;
          }
    .option-input-small-label {
      display: inline-block;
      vertical-align: top;
      height: 40px;
      font-size: 0.88em;
      line-height: 1.1em;
      margin-top: 3px;
    }
  @-webkit-keyframes 
  click-wave { 0% {
   width: 20px;
   height: 20px;
   opacity: 0.35;
   position: relative;
  }
   100% {
   width: 200px;
   height: 200px;
   margin-left: -100px;
   margin-top: -100px;
   opacity: 0.0;
  }
  }
  
  @-moz-keyframes 
  click-wave { 0% {
   width: 20px;
   height: 20px;
   opacity: 0.35;
   position: relative;
  }
   100% {
   width: 200px;
   height: 200px;
   margin-left: -100px;
   margin-top: -100px;
   opacity: 0.0;
  }
  }
  
  @-o-keyframes 
  click-wave { 0% {
   width: 20px;
   height: 20px;
   opacity: 0.35;
   position: relative;
  }
   100% {
   width: 200px;
   height: 200px;
   margin-left: -100px;
   margin-top: -100px;
   opacity: 0.0;
  }
  }
  
  @keyframes 
  click-wave { 0% {
   width: 20px;
   height: 20px;
   opacity: 0.35;
   position: relative;
  }
   100% {
   width: 200px;
   height: 200px;
   margin-left: -100px;
   margin-top: -100px;
   opacity: 0.0;
  }
  }

/* ============================================
   BUTTONRY
   ============================================ */

.butt {
    position: relative;
    width: fit-content;
    height: 2em;
    display: flex;
    border-radius: 2em;
    justify-content: center;
    align-items: center;
    padding: 0.0625em 1.25em;
    font-family: "KRASHZ", sans-serif;
    font-stretch: expanded;
    font-size: 1.0em;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: -0.02em;
    user-select: none;
    margin: 0.125em;
    cursor: pointer;   
    border: 2px solid var(--charcoal); color: var(--charcoal); 
    }
    .butt::before {
            content: '';
            position: absolute;
            z-index: -1;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            filter: blur(0.5em);
            border-radius: 2em;
            transform: translateY(1px) scale(0.9);
            background: linear-gradient(135deg, #d4fc00, #ff4566, #a259e0, #1db3ff, #70ff70);        
        }
    .butt:hover::before, .butt:focus::before {
            background: linear-gradient(-135deg,  #d4fc00, #ff4566, #a259e0, #1db3ff, #70ff70);
            opacity: 1.0;
            transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            -webkit-transition: all 0.3s linear;
            -o-transition: all 0.3s linear;
        }

    .wht { background: #ffffffe8; border: 2px solid var(--charcoal); color: var(--charcoal); } /* #FFFFFF */
       .wht:hover, .wht:focus {  background: var(--charcoal); color: #ffffff; }
    .sil { background: var(--titanium); } /* #DCE2E6 */
        .sil:hover, .sil:focus { background: var(--charcoal); color: #ffffff; } 
    .tit { background: var(--aluminium); } /* #B9C5CD */
        .tit:hover, .tit:focus { background: var(--charcoal); color: #ffffff; }
    .gun { background: var(--gunmetal); } /* #545B60 */
        .gun:hover, .gun:focus { background: var(--titanium);}
    .chr { background: var(--charcoal); color: #ffffff; } /* #2A2E30 */
        .chr:hover, .chr:focus { background: #ffffff; color: var(--charcoal); }

/* ============================================
   THIRD-PARTY LIBRARY OVERRIDES
   ============================================ */

/* Splide.js image carousel */


/* Google Maps */
.place-map-container {
  height: 400px;
  background: var(--titanium);
}
.place-map-container .gm-style {
  /* Google Maps overrides */
  font-family: 'KRASHZ', sans-serif  !important;   
}

/* Splide overrides for Place */
.place-hero .splide {
  font-family: 'KRASHZ', sans-serif  !important;   
}

.place-hero {
  background: var(--charcoal);
  height: 280px;
}

.place-image-scroller {
  height: 280px;
  overflow-y: hidden;
}

.place-hero figure {
  margin: 0;
  background-position: center;
  background-size: cover;
  width: 280px;
  height: 280px;
  transition: all .6s;
}

.place-hero figure:hover {
  transform: scale(1.1);
}

/* Splide overrides for SEARCH place cards */
.place-card .splide__pagination {
    bottom: 5px;
}

.place-card .splide__pagination__page {
    background: rgba(255, 255, 255, 0.5);
}

.place-card .splide__pagination__page.is-active {
    background: rgba(255, 255, 255, 1);
}

/* VIS.JS */

    /* Vis.js Timeline Custom Styles */
    #visualization {
        position: relative;
        min-height: 120px;
    }

    /* Group (space) styling */
    .groupbox {

    padding: 0.5em;
    cursor: pointer;
    transition: background 0.2s;
    max-width: 128px;

    }

    .groupbox:hover {
       /* background: rgba(0,0,0,0.05); */
       background: #ffffff;
    }

    .vis_sml_txt {
        font-size: 0.7em;
        color: var(--plutonium);
    }

    .vis_space_but {
        font-size: 0.75em !important;
        padding: 0.25em 0.75em !important;
        margin-top: 0.25em;
    }

    .vis-labelset .vis-label .vis-inner {
    display: inline-block;
     padding: 0px !important; 
    }

    /* Timeline item (event) styling */
    .vis-item {
        border-width: 2px;
        border-radius: 0.5em;
    }

    /* Booked dates - Green */
    .booked_date_range {
        background: linear-gradient(135deg, #D4FFF8 58%, #DEFFCB);
        border-color: var(--charcoal) !important;
    }

    /* Requested dates - Blue/Purple */ 
    .requested_date_range {
        border-color: var(--charcoal) !important;
        cursor: pointer;
    }

    .vis-time-axis .vis-grid.vis-odd { background: #f9f9f9; }
    .vis-time-axis.vis-foreground {
        background: linear-gradient(#ffffff, 75%, #ffffff00);
    }
    /* Blocked dates - Greys 
    .blocked_date_range {
        background: linear-gradient(135deg, var(--opal) 58%, var(--silver));
        border-color: var(--charcoal) !important;
    }
    */

    /* BLOCKED DATES DEFAULT: grad_OS */ 
    /* Color gradients for request statuses */
    .grad_PB { background: linear-gradient(135deg, #E8D4FF 58%, #D4F2FF); }
    .grad_TG { background: linear-gradient(135deg, #D4FFF8 58%, #DEFFCB); }
    .grad_RP { background: linear-gradient(135deg, #FFD4D6 58%, #E8D4FF); }
    .grad_GY { background: linear-gradient(135deg, #DEFFCB 58%, #F2FFD4); }
    .grad_YR { background: linear-gradient(135deg, #F2FFD4 58%, #FFD4D6); }
    .grad_OS { background: linear-gradient(135deg, var(--opal) 58%, var(--silver)); }
 
    
    /* TIMELINE (HOST ) ::::::::::::::::::::::::::::::: */
.requested_date_range {
    height: 3em; 
    border: 1px solid var(--titanium);
    cursor: pointer;
    border-radius: 2em !important;
    padding:0.125em;
}
.requested_date_range img {
    border-radius: 2em;
    margin: 0 0.25em 0 0;
}

.booked_date_range {
    height: 5em; 
    border: 1px solid var(--titanium);
    cursor: pointer;
    border-bottom-right-radius: 2em !important;
    border-top-left-radius: 1em !important;
    padding:0.125em;
    color: var(--charcoal) !important;
}

.booked_date_range img {
    border-radius: 2em;
    margin: 0 0.25em 0 0;
}

.blocked_date_range  {
    box-sizing: border-box;
    border-radius:0 !important;
    border-bottom-right-radius: 2em !important;
    border-top-left-radius: 1em !important;
    background-color: var(--aluminium);
    border: 0px solid var(--aluminium);
    color: var(--charcoal) !important;
    padding: 0.125em;
    /* top: 1px !important; */
    height: 100%;
    top: 0px !important;
    
}
.vis-item.vis-range .vis-item-content {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding: 0.36em;
}

.vis-item.vis-selected {
    border-color: var(--plutonium);
    background-color: var(--silver) !important;
}

.vis_sml_txt {
    margin: 0em; 
    padding: 0 0 0.5em 0;
    font-weight: normal;
    color: var(--plutonium);
    font-size: 0.66em;
    line-height: normal;
    text-transform: capitalize;
}

.info_but_alert {
    background: var(--plutonium);
    color: #fff;
    font-size: 0.66em;
    width: auto;
    cursor:pointer;
    padding: 0.25em 0.75em;
    border-radius: 1.5em;
    margin: 0.5em 0em 0em 0.25em;
}
.info_but_alert:hover, .info_but_alert:focus { background: var(--silver); color: var(--charcoal);}

/*  ============================================
    Global Responsive Utility Classes (Written Last so they always win)
    ============================================*/
.MW-100 { max-width: 100%; }  /* Clear legacy width handling -- remove last */
.MW-380 { max-width: 100%; } @media screen and (min-width: 620px) {  .MW-380 { max-width: 380px; } }
.MW-480 { max-width: 100%; } @media screen and (min-width: 620px) {  .MW-480 { max-width: 480px; } }
.MW-1280 { max-width: 100%; } @media screen and (min-width: 620px) {  .MW-1280 { max-width: 1280px; } }

