
/*  ============================================
    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;
}

@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 */
}

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: semi-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;
}

 a {
    text-decoration: none;
    color: var(--PRP);;
}   a:hover, a:focus { color: var(--plutonium);    }

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 2rem 0; /* padding: 0em 1em 3em 1em; ?? question this ?? */
    margin: 0;
    width: 100%; /* Changed from 100vw to 100%  now seems to be causing errors */
    gap:0.5rem; /* EXPERIMENTAL */
}

footer {
    width:100%;
}

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.5rem 0 0 0;
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid var(--plutonium);
    padding: 1rem;
    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.5rem 0 0 0;
    padding: 1rem;
    width:100%;
    max-width: 960px;
    box-sizing: border-box;
}
    @media screen and (min-width: 1800px) {  .wh_box , .clr_box { max-width: 75dvw; }}
    @media screen and (max-width: 512px) {  .clr_box { padding: 1rem 0.4rem; }}


.bttr, .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;
    font-size:1rem;
} /* SCAFFOLD for tags/pills/buttons  */
.bttr { 
    justify-content: space-between;
    padding: 1em;
    gap: 0.5em; /*  ? */
}

/* 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 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);
}

@media screen and (max-width: 512px) {
    .foot {
        margin: 0em 0.4em;
    }
}

/* social icons */
.sockfoot { 
  width: 1.5em;
  height: 1.5em;
  opacity: 0.33;
  cursor: pointer;
}

/*  == ( STRUCTURY-ELEMENTS ) ===================*/

.containr { 
  width: 100%; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.5em; 
  padding:0;
}

.containr-l { 
    display: flex;
    flex-wrap: wrap;
    align-content:flex-start;
    flex: 1 1 320px; 
    gap:0.5em;
    padding:0em;
}
.containr-r { 
    display: flex;
    flex-wrap: wrap;
    align-content:flex-start;
    flex: 1 1 260px;
    gap: 0.5em;
    padding:0.5em;   
  /* RESPONSIVE max-width @ utility class handles it. */
}
.place-info-card {
    width:100%; 
    border-radius: 1.5em; 
    background-color: var(--opal); 
    padding: 1.25em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}   .place-info-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.3);}

/*  TOP NAV STRUCTURE */

/* FOC_ETC.. moved to user */
/* FOC _MESS */
/* FOC TEST NEEDED AT: BASE.css*/
.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;
}

.sec {
    width:100%;
    padding:0.5em;
}



/* ROOF */
.nbase {
	display:none;
    opacity: 0.9;
	position: fixed;
    inset: 0px;
    z-index: 28;
    width: 100vw;
    height: 111vh;
    max-width:100vw;
    background: var(--charcoal);
    padding: 80px 0px 0px; 
    box-sizing: border-box;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    margin:0px;
}

.t_nav {
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    gap:0.5rem;
    padding: 1rem;
    align-items: center;
    margin: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    position: fixed;
    z-index: 29;
    height: 80px;
    max-height: 80px;
    width: 100%;
    max-width: 100%;
    background: transparent; 
    background-image: linear-gradient(to bottom, var(--titanium) 58%, transparent);
    box-shadow:none; 
    border:0;
}

@media (min-width: 632px) {
    .t_nav { gap:1em; }
}

.t_nav_div {
        display:flex;
        flex: 1 42px;
        max-width: 42px;
        justify-content: center;
    }

.nsearcher {
    background-color: transparent;
    border: none;
    border-color: transparent;
    width: 100%;
    color: var(--plutonium);
    padding: 0 0.125em;
    border-radius: 1em;
    margin: 0;
}

.clr_input {
    display: block;
    position: relative;
    z-index: 88;
    width: 36px;
    float: right;
    margin-top: -14px;
    transition: opacity 0.3s;
    opacity: 1;
    color: var(--PRP);
    text-decoration: underline;
}
    /* Hamburger menu animation */
    #nIcon {
        width: 42px;
        height: 40px;
        position: relative;
        margin: 1px 0px;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #nIcon span {
        display: block;
        position: absolute;
        height: 8px;
        width: 100%;
        background: var(--charcoal);
        border-radius: 16px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .3s ease-in-out;
    }
    #nIcon { width:40px; height:40px; }
    #nIcon span:nth-child(1) { top: 0px; }
    #nIcon span:nth-child(2), #nIcon span:nth-child(3) { top: 16px; }
    #nIcon span:nth-child(4) { top: 32px; }
    #nIcon.open span:nth-child(1) { top: 18px; width: 0%; left: 50%; }
    #nIcon.open span:nth-child(2) {
        background: var(--YEL);
        transform: rotate(45deg);
        top: 16px;
    }
    #nIcon.open span:nth-child(3) {
        background: var(--YEL);
        transform: rotate(-45deg);
        top: 16px;
    }
    #nIcon.open span:nth-child(4) { top: 18px; width: 0%; left: 50%; } 

.topbnav { overflow: hidden; position: relative; padding: 0px 48px 48px}                      
.topbnav a {
    color: var(--silver);
    padding: 8px 12px;
    text-decoration: none;
    font-size: 1.125rem;
    white-space: nowrap;
    float: none;
    display: block;
    text-align: left;
}  

.topbnav a:after{
    content: '>';
    float: right;
    margin-left:5px;
    color: var(--plutonium);
    }

.topbnav a:before{ float: left;  content:" "; } /*iconspace for later? */
.topbnav a:hover:after, a:hover:focus, a:hover:active { color: var(--YEL); font-weight: 800;} 
.topbnav a:hover, a:focus, a:active { color: #ffffff; } 
@media screen and (max-width: 420px) {  .topbnav { padding: 0px 16px 48px; }} 



/* 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: var(--white);
        padding: 0.66em 1.5em 0.75em 3.5em;
        position: absolute;
        top: 19px;
        left: 1em;
        right: 1em;
        border: 1px solid var(--charcoal);
        color: var(--plutonium);
        max-width: 100%;
        height: 42px;
        border-radius: 2em;
        overflow:hidden;
        white-space:nowrap;

        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;
}
.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 ) ============*/

/*  ============================================
    TYPERY
    ============================================*/
.TXT {
    font-size: 1rem; 
    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-weight:700;
    letter-spacing: -0.06em;
    line-height: 0.75em;
    padding:0.5em 0 0 0;
}

.ssc_TXT {
    width:100%;
    font-size: 2.5rem; 
    font-weight:700;
    letter-spacing: -0.06em;
    line-height: 0.75em;
    padding:0.5em 0 0 0;
}

.st_TXT {
    font-size: 1.5rem; 
    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; 
    letter-spacing: -1px;  
    line-height: 1.2; /* plutonium? */
}

.d_TXT { /* 0.8125 = 13px for Gen-Z */
    font-size: 0.8125rem; 
    line-height: normal;
}

.dd_TXT { /* 0.8125 = 13px for Gen-Z */
    font-size: 0.625rem; 
    line-height: normal;
}

.T3 {
    margin: 0;
    font-size: 1.6em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8em;
    color: var(--plutonium);
    text-align: center;
    width: 100%;
    font-stretch: semi-expanded;
}

.in_curr_symb { 
    font-weight: 900;
    font-size: 0.8125em;
    vertical-align: top;
}

.space_currency {
    vertical-align: top;
    font-weight: 900;
    color: var(--plutonium);
    font-size: 1.5em;
}

/*  == ( TXT focus chrome contain/mods) ============*/
    ._BLD { font-weight:700; }
    ._X { font-stretch:expanded; }
    ._sX { font-stretch:semi-expanded; }

    ._charcoal { color: var(--charcoal); }
    ._plutonium { color: var(--plutonium); }
    ._gunmetal { color: var(--gunmetal); }
    ._white { color: var(--white); }
    ._ULT { color: var(--ULT); }
    ._PRP { color: var(--PRP); }
    ._RED { color: var(--RED); }
    ._PST { color: var(--PST); }
    ._TEL { color: var(--TEL); }
    ._LEF { color: var(--LEF); }

@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; }
    .ssc_TXT { font-size: 1.75em; 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;
}

.sysnote {
    background: var(--charcoal); 
    position: fixed;z-index: 99; 
    font-stretch:normal; 
    left: 16px; 
    bottom: 16px; 
    margin-right: 16px; 
    color: var(--titanium); 
    padding: 0.5rem 1rem 0.75rem; 
    border-radius: 1rem; 
    max-width:512px; 
    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;
}

/* ============================================
   FORMRY : sent to formry.css
   ============================================ */


  /* in question */
    .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);   
    }

input:focus, 
textarea:focus, 
select:focus {
    outline: none;
    box-shadow: none; /* Some frameworks use shadows instead of outlines */
}
/* ============================================
   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 */



.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, .MW-380, .MW-480, .MW-740, .MW-1280 { max-width: 100%; } 
@media screen and (min-width: 620px) {
    .MW-380 { max-width: 380px; }
    .MW-480 { max-width: 480px; }
    .MW-740 { max-width: 740px; }
    .MW-1280 { max-width: 1280px; }
 }