/* 

Copyright 2024, Codeables, LLC. All rights reserved.

Style categories are organized in alphabetic order.

Main categories:

    1. Accordions
    2. Body
    3. Buttons
    4. Calendar
    5. Carousel
    6. Containers
    7. Footer
    8. Forms
    9. Headings
   10. Levels
   11. Modifiers
   12. Nav
   13. Tables
   14. Tabs
   15. iFrames
*/

/* RESET */

/* IMPORTS */
@import url('../cms/fonts/2.0.2/DIN-Condensed-Bold.ttf');
@import url('../cms/fonts/2.0.2/DINOT-Bold.otf');
@import url('../cms/fonts/2.0.2/HelveticaNeueLTStd-Lt.otf');
@import url('../cms/fonts/2.0.2/HelveticaNeueLTStd-Md.otf');

@font-face {
    font-display: block;
    font-family: 'bootstrap-icons';
    src: url('../cms/fonts/bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff') format('woff'), url('../cms/fonts/bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff2') format('woff2');
}
/* /IMPORTS */


/* INDEX */
:root {
    --white: rgb(255, 255, 255);
    --light-white: rgb(255, 255, 255, 0.5);
    --light-blue: hsl(199, 100%, 37%);
    --light-light-blue: hsl(199, 100%, 37%, 0.5);
    --royal-blue:  hsl(208, 79%, 19%);
    --light-royal-blue:  hsl(208, 79%, 19%, 0.5);
    --teal: hsl(189, 45%, 33%);
    --light-teal: hsl(189, 45%, 33%, 0.5);
    --grey: hsl(0, 0%, 89%);
    --light-mid-grey: hsl(0, 0%, 89%, 0.5);
    --light-grey: hsl(0, 0%, 89%);
    --light-light-grey: hsl(0, 0%, 89%, 0.5);
    --dark-grey: hsl(0, 0%, 24%);
    --light-dark-grey: hsl(0, 0%, 24%, 0.5);
    --forest-green: hsl(174, 93%, 11%);
    --light-forest-green: hsl(174, 93%, 11%, 0.5);
    --black: hsl(0, 0%, 0%);
    --light-black: hsl(0, 0%, 0%, 0.5);
    --orange: hsl(0, 56%, 54%);
    --light-orange: rgb(245, 140, 128);
    --off-white: hsl(44, 100%, 94%);
    --light-off-white: hsl(44, 100%, 94%, 0.5);
    --pink: hsl(312, 69%, 37%);
    --light-pink: hsl(312, 69%, 37%, 0.5);
    --yellow: hsl(44, 93%, 51%);
    --light-yellow: hsl(44, 93%, 51%, 0.5);
    --gold: hsl(43, 37%, 61%);
    --light-gold: hsl(43, 37%, 61%, 0.5);
    --red:  hsl(0, 94%, 39%);
    --light-red:  hsl(0, 94%, 39%, 0.5);
}


/* 1. Use a more-intuitive box-sizing model. */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
*/
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 6. Remove built-in form typography styles */
input, button, textarea, select {
    font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* 8. Create a root stacking context */
#root, #__next {
    isolation: isolate;
}

/* 9. Remove Link Decoration */
a {
    text-decoration: none;
}

/* 10. Set default link color */
a {
    color: var(--orange);
}

a:hover {
    color: var(--light-orange);
    text-decoration: underline;
}

/* 11. Link Colors */
.link-royal-blue {
    color: var(--royal-blue);
}

a:hover .link-royal-blue {
    color: var(--light-royal-blue);
}

.link-teal {
    color: var(--teal);
}

a:hover .link-teal {
    color: var(--light-teal);
}

.link-grey {
    color: var(--grey);
}

a:hover .link-grey {
    color: var(--light-mid-grey);
}

.link-light-grey {
    color: var(--light-grey);
}

a:hover .link-light-grey {
    color: var(--light-light-grey);
}

.link-dark-grey {
    color: var(--dark-grey);
}

a:hover .link-dark-grey {
    color: var(--light-dark-grey);
}

.link-forest-green {
    color: var(--forest-green);
}

a:hover .link-forest-green {
    color: var(--light-forest-green);
}

.link-black {
    color: var(--black);
}

a:hover .link-black {
    color: var(--light-black);
}

.link-orange {
    color: var(--orange);
}

a:hover .link-orange {
    color: var(--light-orange);
}

.link-off-white {
    color: var(--off-white);
}

a:hover .link-off-white {
    color: var(--light-off-white);
}

.link-white {
    color: var(--white);
}

a:hover .link-white {
    color: var(--light-white);
}

.link-pink {
    color: var(--pink);
}

a:hover .link-pink {
    color: var(--light-pink);
}

.link-yellow {
    color: var(--yellow);
}

a:hover .link-yellow {
    color: var(--light-yellow);
}

.link-gold {
    color: var(--gold);
}

a:hover .link-gold {
    color: var(--light-gold);
}

/************************************/
/* ============ STYLES ============ */
/************************************/

/* ACCORDIONS */
.accordion-button {
    font-weight: 600;
    color: var(--white);
    background-color: var(--royal-blue);
    margin-top: .6rem;
    box-shadow: none;
}

.blue-gold .accordion-button {
    font-weight: 600;
    color: var(--white);
    background-color: hsl(208, 59%, 12%)!important;
    margin-top: 1rem;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("../cms/fonts/src/plus.svg");
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../cms/fonts/src/minus.svg");
    filter: invert(1);
}

.accordion-button:hover {
    color: var(--white);
    text-decoration: none;
    background-color: hsl(208, 60%, 32%);
    box-shadow: none;
}

.blue-gold .accordion-button:hover {
    color: var(--white);
    text-decoration: underline;
    background-color: hsl(35, 90%, 57%)!important;
    box-shadow: none;
}

.blue-gold .accordion-button:focus, .blue-gold .accordion-button:focus-visible {
    color: var(--white);
    text-decoration: underline;
    background-color: hsl(35, 90%, 57%)!important;
    box-shadow: none;
}

.accordion-button:focus:not(:focus-visible),
.accordion-button:focus-visible:not(:focus) {
    color: hsl(0, 0%, 100%);
    border: none;
    stroke: none;
    outline: none;
    text-decoration: none;
}

.dropdown-menu .accordion-button .collapsed:hover {
    display:block;
    color: var(--white);
    text-decoration: none;
    background-color: hsl(208, 60%, 32%);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--white);
    text-decoration: none;
    background-color: hsl(208, 60%, 32%);
    box-shadow: none;
}

.accordion-item {
    border: none;
}

/* BODY */
body {
    background-color: var(--white);
    font-family: 'DIN Condensed', sans-serif;
    color: var(--black);
}

.background-white {
    background-color: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
}

/* BUTTONS */
.bg-royal-blue {
    background-color: var(--royal-blue);
    color: var(--white);
}

.bg-teal {
    background-color: var(--teal);
    color: var(--white);
}

.bg-grey {
    background-color: var(--grey);
    color: var(--black);
}

.bg-light-grey {
    background-color: var(--light-grey);
    color: var(--black);
}

.bg-dark-grey {
    background-color: var(--dark-grey);
    color: var(--white);
}

.bg-forest-green {
    background-color: var(--forest-green);
    color: var(--white);
}

.bg-black {
    background-color: var(--black);
    color: var(--white);
}

.bg-orange {
    background-color: var(--orange);
    color: var(--white);
}

.bg-off-white {
    background-color: var(--off-white);
    color: var(--black);
}

.bg-white {
    background-color: var(--white);
    color: var(--black);
}

.bg-pink {
    background-color: var(--pink);
    color: var(--white);
}

.bg-yellow {
    background-color: var(--yellow);
    color: var(--black);
}

.bg-gold {
    background-color: var(--gold);
    color: var(--black);
}

.bg-dashboard-charts {
    background-color: hsl(0, 0%, 13%);
}

.btn {
    font-weight: 600;
}

.btn-orange {
    background-color: var(--orange) !important;
    color: var(--white) !important;
}

.btn-orange-small {
    background-color: var(--orange) !important;
    color: var(--white) !important;
    font-size: .70rem;
    line-height: 1rem;
}

.btn-orange-small:hover {
    background-color: hsl(6, 85%, 73%) !important;
    color: var(--white) !important;
    font-size: .70rem;
    line-height: 1rem;
    text-decoration: underline;
}

.button .button-royal-blue, .button .button-sm .button-royal-blue, .button .button-lg .button-royal-blue {
    background-color: var(--royal-blue) !important;
    color: var(--white) !important;
}

.btn .btn-teal, .btn .btn-sm .btn-teal, .btn .btn-lg .btn-teal {
    background-color: var(--teal) !important;
    color: var(--white) !important;
}

.btn .btn-grey, .btn .btn-sm .btn-grey, .btn .btn-lg .btn-grey {
    background-color: var(--grey) !important;
    color: var(--black) !important;
}

.btn .btn-light-grey, .btn .btn-sm .btn-light-grey, .btn .btn-lg .btn-light-grey {
    background-color: var(--light-grey)  !important;
    color: var(--black)  !important;
}

.btn .btn-dark-grey, .btn .btn-sm .btn-dark-grey, .btn .btn-lg .btn-dark-grey {
    background-color: var(--dark-grey)  !important;
    color: var(--white)  !important;
}

.btn .btn-forest-green, .btn .btn-sm .btn-forest-green, .btn .btn-lg .btn-forest-green {
    background-color: var(--forest-green)  !important;
    color: var(--white)  !important;
}

.btn .btn-black, .btn .btn-sm .btn-black, .btn .btn-lg .btn-black {
    background-color: var(--black)  !important;
    color: var(--white)  !important;
}

.btn .btn-orange, .btn .btn-sm .btn-orange, .btn .btn-lg .btn-orange {
    background-color: var(--orange)  !important;
    color: var(--white)  !important;
}

.btn .btn-off-white, .btn .btn-sm .btn-off-white, .btn .btn-lg .btn-off-white {
    background-color: var(--off-white)  !important;
    color: var(--black)  !important;
}

.btn .btn-white, .btn .btn-sm .btn-white, .btn .btn-lg .btn-white {
    background-color: var(--white)  !important;
    color: var(--black)  !important;
}

.btn .btn-pink, .btn .btn-sm .btn-pink, .btn .btn-lg .btn-pink {
    background-color: var(--pink)  !important;
    color: var(--white)  !important;
}

.btn .btn-yellow, .btn .btn-sm .btn-yellow, .btn .btn-lg .btn-yellow {
    background-color: var(--yellow)  !important;
    color: var(--black)  !important;
}

.btn .btn-gold, .btn .btn-sm .btn-gold, .btn .btn-lg .btn-gold {
    background-color: var(--gold)  !important;
    color: var(--black)  !important;
}

/* CALENDAR */
.calendar-tile {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.5);
}

.calendar-tile:hover {
    height: 100%;
    border: 2px solid var(--orange);
    border-radius: 12px;
    box-shadow: 0px 0px 1px 0px hsla(0, 56%, 54%, 0.5);
}

.events-date-tile-view {
    background-color: var(--royal-blue);
    color: var(--white);
    line-height: 1.2rem;
    padding: .3rem 0;
    border-radius: 0 0 10px 0;
}

.events-restaurant-list {
    padding-right: .9rem;
    padding-left: .9rem;
    border-bottom: 1px solid var(--light-grey);
}

.events-restaurant-list-title {
    border-bottom: 1px solid var(--royal-blue);
    padding: .3rem 0 .4rem;
    margin: 0 1rem;
}

.promotions-date-tile-view {
    background-color: var(--teal);
    color: var(--white);
    line-height: 1.2rem;
    padding: .3rem 0;
    border-radius: 0 0 10px 0;
}

.ongoing-promotions-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 13px;
    box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.5);
}

.ongoing-promotions-accent {
    background-color: var(--teal);
    padding: .03rem 0;
    line-height: .5rem;
    border-radius: 10px 0 10px 0;
}

.calendar-tile-title {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 600;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

.calendar-filter {
    background: linear-gradient(0, #1c182a 0, var(--royal-blue) 100%);
    margin-top: -32px;
    padding-top: .2rem;
    padding-bottom: .5rem;
}

.event-promo-filter {
    margin-top: -.5rem;
}

.calendar-counter {
    background: linear-gradient(0, #1c182a 0, var(--royal-blue) 100%);
    margin-top: -32px;
    padding-top: .2rem;
    padding-bottom: .5rem;
    padding-left: 0;
    border-left: 1px solid #e3e3e37a;
}

.calendar-counter-nb {
    background: linear-gradient(0, #1c182a 0, var(--royal-blue) 100%);
    margin-top: -32px;
    padding-top: .2rem;
    padding-bottom: .5rem;
    padding-left: 0;
    border-left: none;
}

.calendar-dropdown select {
    background-color: hsl(0deg 0% 24.71% / 14%);
    height: 2rem;
    border-radius: 5px;
    width: 32%;
    color: var(--white);
}

.calendar-dropdown option {
    color: var(--royal-blue);
}

.promotions-calendar-dropdown select {
    background-color: hsl(0deg 0% 24.71% / 0%);
    font-size: 1.05rem;
    height: 2rem;
    border-radius: 5px;
    width: 32%;
    color: var(--royal-blue);
}

.promotions-calendar-dropdown option {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: .3rem;
}

/* CAROUSEL */

/* .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
} */

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -50px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 50rem 0 0 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 1rem;
    height: 1rem;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: hsla(0, 0%, 100%, 0);
    background-clip: padding-box;
    border: 2px solid var(--orange);
    opacity: 1;
    transition: opacity .6s ease;
    border-radius: 100%;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 0 !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: visible !important;
    clip: unset !important;
    white-space: nowrap !important;
    border: 0 !important;
    color: #fff0;
}

.carousel-indicators .active {
    background-color: var(--orange);
    border: 2px solid var(--orange);
}

.carousel-control-next, .carousel-control-prev {
    opacity: .6;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: rgba(255,255,255,0);
    border-radius: 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cb4848'%3e%3cpath d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm10.5 10V4a.5.5 0 0 0-.832-.374l-4.5 4a.5.5 0 0 0 0 .748l4.5 4A.5.5 0 0 0 10.5 12'/%3e%3c/svg%3e");
    border-radius: 100%;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cb4848'%3e%3cpath d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm5.5 10a.5.5 0 0 0 .832.374l4.5-4a.5.5 0 0 0 0-.748l-4.5-4A.5.5 0 0 0 5.5 4z'/%3e%3c/svg%3e");
    border-radius: 100%;
}

.cont-cap-half-out-parent {
    /* min-height: 40rem; */
    min-height: 5rem;
}

.cont-cap-half-out {
    position: relative;
    width: 100%;
    overflow: visible;
}

.carousel-caption {
    position: absolute;
    right: 10%;
    bottom: 5%;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    z-index: 800;
}

.cap-blur {
    position: absolute;
    background-color: hsla(184, 48%, 35%, 0);
    width: fit-content;
    padding: 1rem 3rem;
    margin: 3rem auto;
    backdrop-filter: blur(2px);
    border-radius: 2rem;
}

.cap-blue {
    position: absolute;
    background-color: hsla(208, 79%, 19%, 0.6);
    width: fit-content;
    padding: 1rem 3rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-teal {
    position: absolute;
    background-color: hsla(184, 48%, 35%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-grey {
    position: absolute;
    background-color: hsla(180, 1%, 59%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-light-grey {
    position: absolute;
    background-color: hsla(0, 0%, 95%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-dark-grey {
    position: absolute;
    background-color: hsl(248, 5%, 35%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-forest-green {
    position: absolute;
    background-color: hsl(174, 93%, 11%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-forest-green {
    position: absolute;
    background-color: hsl(174, 93%, 11%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-black {
    position: absolute;
    background-color: hsla(0, 0%, 0%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-orange {
    position: absolute;
    background-color: hsla(0, 56%, 54%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-off-white {
    position: absolute;
    background-color: hsla(49, 24%, 87%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-white {
    position: absolute;
    background-color: hsla(0, 0%, 100%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-pink {
    position: absolute;
    background-color: hsla(312, 69%, 37%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-yellow {
    position: absolute;
    background-color: hsla(44, 93%, 51%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-gold {
    position: absolute;
    background-color: hsl(45, 33%, 59%, 0.6);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: 2rem;
}

.cap-solid-white {
    color: var(--black);
    position: absolute;
    background-color: hsla(0, 0%, 100%, 0.95);
    width: fit-content;
    padding: 1rem 5rem;
    margin: 3rem auto;
    backdrop-filter: blur(1px);
    border-radius: .7rem;
    box-shadow: 0 5px 13px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0 5px 13px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 5px 13px rgba(0, 0, 0, 0.3);
}

.cap-half-out {
    transform: translate(0,100%);
}

.filter-black::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 40%, rgb(0 0 0 / 58%) 75%, rgba(0, 0, 0, 0.65) 100%);
}

/* .carousel-caption .bg-white {
    position: absolute;
    right: 0;
    top: 95%;
    left: 0;
    bottom: auto;
    margin: -3rem auto;
    padding-top: 1.5rem;
    padding-right: 1.75rem;
    padding-bottom: 1.5rem;
    padding-left: 1.75rem;
    color: #fff;
    text-align: center;
    background-color: rgb(255 255 255 / 93%);
    border-radius: 1.5rem; */
    /* max-width: 20%; */
    /* justify-content: center; */
    /* margin-top: -3%;
    box-shadow: 1px 5px 15px 5px hsl(0deg 0% 0% / 34.12%);
    z-index: 100;
    width: fit-content;
} */

/* .filter-black {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
} */

/* .carousel-caption {
    z-index: 105;
} */

@media screen and (max-width: 576px) {
    .calendar-counter {
        background: none;
        margin-top: -32px;
        padding-top: .2rem;
        padding-bottom: .5rem;
        padding-left: 0;
        border-left: none;
    }

    .calendar-counter-nb {
        background: none;
        margin-top: -32px;
        padding-top: .2rem;
        padding-bottom: .5rem;
        padding-left: 0;
        border-left: none;
    }

    .carousel-item>img, .carousel-item>a>img  {
        width: auto;
        height: 60vh;
        object-fit: cover;
    }

    .cont-cap-half-out-parent {
        min-height: 0;
    }

    .cap-solid-white {
        color: var(--black);
        position: absolute;
        background-color: hsla(0, 0%, 100%, 0.95);
        width: fit-content;
        padding: .25rem 1rem;
        margin: 2.4rem auto;
        backdrop-filter: blur(1px);
        border-radius: .7rem;
        box-shadow: 0 5px 13px rgba(0,0,0,0.3);
        -webkit-box-shadow: 0 5px 13px rgba(0,0,0,0.3);
        -moz-box-shadow: 0 5px 13px rgba(0, 0, 0, 0.3);
    }
}

/* CONTAINERS */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 960px;
    }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.notched-container {
    width: 100px;
    height: 50px;
    fill: var(--white);
    /* background-color: var(--white); */
    /* padding-top: 20px; */
    margin-bottom: 2rem;
    /* background-image: url(../cms/fonts/src/notch.svg); */
    background-position: center;
    border-radius: 0 0 50px 50px;
}

.live-ent-container-bg {
    background-image: url(../img/ilani-Hompage-Entertainment-Section-1440x800.jpg);
    background-size: inherit;
    background-repeat: no-repeat;
}

.grey-pattern-container-bg {
    background-image: url(../img/dark-BKG-Why_Have_Event-1440x4000.png);
    background-size: 105%;
    background-repeat: no-repeat;
}

.border {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.border .rounded {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.border-top-rounded > img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px 12px 0 0;
}

.border-top-rounded-clear-bottom > img {
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 10px 10px 0 0;
}

.border-top-rounded-orange-bottom > img {
    border-top: none;
    border-right: none;
    border-bottom: 5px solid hsla(0, 56%, 54%);
    border-left: none;
    border-radius: 12px 12px 0 0;
}

.border-orange {
    border: 1px solid hsla(0, 56%, 54%);
}

.border-orange .rounded {
    border: 1px solid hsla(0, 56%, 54%, 0.501);
    border-radius: 12px;
}

.border-top-orange-large {
    border-top: 8px solid hsl(0, 56%, 54%);
}

.border-bottom-orange {
    border-bottom: 5px solid var(--orange);
}

.border-bottom-orange-large {
    border-bottom: 8px solid hsl(0, 56%, 54%);
}

.event-promo-title h1::after {
    background: hsl(208deg 78.95% 18.63% / 32%);
    width: 80%;
    content: ' ';
    display: block;
    height: 1px;
    margin: 8px auto;
    text-align: center;
}

.event-promo-note::before {
    background: hsl(208deg 78.95% 18.63% / 32%);
    width: 80%;
    content: ' ';
    display: block;
    height: 1px;
    margin: 8px auto;
    text-align: center;
}

.event-banner-view {
    font-size: .9rem;
    font-weight: 600;
    line-height: 2.45rem;
    padding: .2rem 0;
}

.event-banner-view-date {
    font-size: .85rem;
    line-height: 1.2rem;
    padding: .25rem 0;
    border-left: 1px solid var(--light-grey);
}

.event-countdown-overlay {
    background-color: hsl(208deg 79% 19% / 50%);
    position: relative;
    margin-top: -9.31%;
}

.top-events-list-view {
    background-color: var(--grey);
    height: 43px;
    font-size: .9rem;
    font-weight: 600;
    line-height: 2.65rem;
    padding: .2rem 0;
    border-radius: 7px;
}

.top-events-list-title {
    font-size: .9rem;
    font-weight: 600;
    line-height: 2.65rem;
    padding: 0;
    margin: auto;
}

.top-events-list-date {
    font-size: .85rem;
    line-height: 1.2rem;
    padding: .25rem 0;
    border-left: 1px solid var(--grey);
}

.event-list-view-date {
    font-size: .85rem;
    line-height: 1.1rem;
    padding: .25rem 0;
    border-left: 1px solid var(--royal-blue);
}

.countdown-text {
    font-size: .9rem;
}

.promotion-overlay {
    background-color: var(--black);
    position: relative;
    margin-top: -14.31%;
}

/* FORMS */
form .form-row div.frontend-button-group .btn-royal-blue, .btn .btn-royal-blue {
    background: hsl(215, 42%, 26%) !important;
    color: hsl(0, 0%, 100%) !important;
}

form .form-row div.frontend-button-group .btn-teal, .btn .btn-teal {
    background: hsl(184, 48%, 35%) !important;
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-grey, .btn .btn-grey {
    background: hsl(180, 1%, 59%) !important;
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-light-grey, .btn .btn-light-grey {
    background: hsl(0, 0%, 84%) !important;
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-grey, .btn .btn-grey {
    background: hsl(180, 1%, 59%);
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-dark-grey, .btn .btn-dark-grey {
    background: hsl(248, 5%, 35%) !important;
    color: hsl(0, 0%, 100%) !important;
}

form .form-row div.frontend-button-group .btn-forest-green, .btn .btn-forest-green {
    background: hsl(174, 93%, 11%) !important;
    color: hsl(0, 0%, 100%) !important;
}

form .form-row div.frontend-button-group .btn-black, .btn .btn-black {
    background: hsl(0, 0%, 0%) !important;
    color: hsl(0, 0%, 100%) !important;
}

form .form-row div.frontend-button-group .btn-orange, .btn .btn-orange {
    background: hsl(0, 56%, 54%) !important;
    color: hsl(0, 0%, 100%) !important;
}

form .form-row div.frontend-button-group .btn-off-white, .btn .btn-off-white {
    background: hsl(49, 24%, 87%) !important;
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-white, .btn .btn-white {
    background: hsl(0, 0%, 100%) !important;
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-pink, .btn .btn-pink {
    background: hsl(312, 69%, 37%) !important;
    color: hsl(0, 0%, 100%) !important;
}

form .form-row div.frontend-button-group .btn-yellow, .btn .btn-yellow {
    background: hsl(44, 93%, 51%) !important;
    color: hsl(0, 0%, 0%) !important;
}

form .form-row div.frontend-button-group .btn-gold, .btn .btn-gold {
    background: var(--gold) !important;
    color: hsl(0, 0%, 0%) !important;
}

/* FOOTER */
.footer {
    width: 100%;
    background-color: var(--royal-blue);
    color: var(--white);
    font-size: .8rem;
    /* padding-top: 20px; */
    padding-bottom: 20px;
}

.footer-accent {
    background-color: hsla(208, 79%, 19%, 0);
    background-image: url("../img/ilani-bottom_swoosh.png");
    background-position: left top;
    top: -67px;
    background-size: 100% 100%;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    height: 5rem;
    margin: 0;
    padding: 0;
    position: relative;
}

.footer a {
    color: var(--orange);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: underline;
}

.footer a img {
    border: 1px solid var(--orange);
}

.footer a:hover {
    color: hsl(6, 85%, 73%);
    font-weight: 600;
    text-decoration: underline;
}

.footer a[type="button"] {
    background-color: var(--orange);
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
}

.footer a[type="button"]:hover {
    background-color: hsl(6, 85%, 73%);
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
}

.footer .footer-link-text a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.footer .footer-link-text a:hover {
    color: hsl(6, 85%, 73%);
    font-weight: 600;
    text-decoration: underline;
}

.footer .routing {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.footer .routing-link {
    color: var(--white);
    text-decoration: none;
}

.footer .routing-link:hover {
    color: hsl(6, 85%, 73%);
    font-weight: 600;
    text-decoration: underline;
}

.footer .routing-icon {
    display: inline-block;
    background-color: hsl(180deg 55.74% 46.08%);
    content: url('../cms/fonts/src/car-front-fill.svg');
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: .65rem;
    border-radius: 10px;
    filter: invert(1);
}

.footer .car {
    display: inline-block;
    background-color: hsl(180deg 55.74% 46.08%);
    content: url('../cms/fonts/src/car-front-fill.svg');
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: .65rem;
    border-radius: 10px;
    filter: invert(1);
}

.footer .bus {
    display: inline-block;
    background-color: hsl(180deg 55.74% 46.08%);
    content: url('../cms/fonts/src/bus-front-fill.svg');
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: .65rem;
    border-radius: 10px;
    filter: invert(1);
}

.footer .train {
    display: inline-block;
    background-color: hsl(180deg 55.74% 46.08%);
    content: url('../cms/fonts/src/fa-train-subway.svg');
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: .65rem;
    border-radius: 10px;
    filter: invert(1);
}

.footer .plane {
    display: inline-block;
    background-color: hsl(180deg 55.74% 46.08%);
    content: url('../cms/fonts/src/plane-front-fill.svg');
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: .65rem;
    border-radius: 10px;
    filter: invert(1);
    rotate: -90deg;
}

.footer .more {
    display: inline-block;
    background-color: hsl(180deg 55.74% 46.08%);
    content: url('../cms/fonts/src/plus-circle.svg');
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: .65rem;
    border-radius: 10px;
    filter: invert(1);
}

.footer .social-icon {
    background-color: hsla(180, 56%, 46%, 0);
    width: 1.2rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
}

/* HEADINGS */
.carousel-caption > h1 > big {
    font-size: 150%;
}

h1, .sh1, .fh1 {
    font-weight: 600;
    font-size: 2rem;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

h2, .sh2, .fh2 {
    font-weight: 600;
    font-size: 1.8rem;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

h3, .sh3, .fh3 {
    font-weight: 600;
    font-size: 1.5rem;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

h4, .sh4, .fh4 {
    font-weight: 600;
    font-size: 1.3rem;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

h5, .sh5, .fh5 {
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

h6, .sh6, .fh6 {
    font-weight: 600;
    font-size: .9rem;
    font-family: 'DIN Condensed', sans-serif;
    font-stretch: condensed;
}

.fh1::before, .fh2::before, .fh3::before,
.fh4::before, .fh5::before, .fh6::before,
.fh1::after, .fh2::after, .fh3::after,
.fh4::after, .fh5::after, .fh6::after {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.429);
    font-family: 'bootstrap-icons';
    content: '\F63B';
    font-size: .05rem;
    line-height: normal;
    width: 55px;
    vertical-align: middle;
}

p {
    margin-top: 0;
    margin-bottom: 0;
    padding: .5rem 0;
    font-size: 1em;
    line-height: 1.7rem;
    font-weight: 400;
    font-family: 'DINOT', sans-serif;
    /* font-stretch: condensed; */
}

big {
    font-size: 124%;
    line-height: 150%;
    font-weight: 400;
}

small {
    font-size: 80%;
    font-weight: 400;
}

sub, sup {
    font-size: 75%;
}

.text-royal-blue {
    color: var(--royal-blue);
}

.text-teal {
    color: var(--teal);
}

.text-grey {
    color: var(--grey);
}

.text-light-grey {
    color: var(--light-grey);
}

.text-dark-grey {
    color: var(--dark-grey);
}

.text-forest-green {
    color: var(--forest-green);
}

.text-black {
    color: var(--black);
}

.text-orange {
    color: var(--orange);
}

.text-off-white {
    color: var(--off-white);
}

.text-white {
    color: var(--white);
}

.text-pink {
    color: var(--pink);
}

.text-yellow {
    color: var(--yellow);
}

.text-gold {
    color: var(--gold);
}

/* .text-royal-blue .fh1, .fh1::before, .text-royal-blue .fh2, .fh2::before, .text-royal-blue .fh3, .fh3::before, .text-royal-blue .fh4, .fh4::before, .text-royal-blue .fh5, .fh5::before, .text-royal-blue .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--royal-blue);
}

.text-teal .fh1, .fh1::before, .text-teal .fh2, .fh2::before, .text-teal .fh3, .fh3::before, .text-teal .fh4, .fh4::before, .text-teal .fh5, .fh5::before, .text-teal .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after,
 .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--teal);
}

.text-grey .fh1, .fh1::before, .text-grey .fh2, .fh2::before, .text-grey .fh3, .fh3::before, .text-grey .fh4, .fh4::before, .text-grey .fh5, .fh5::before, .text-grey .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--grey);
}

.text-light-grey .fh1, .fh1::before, .text-light-grey .fh2, .fh2::before, .text-light-grey .fh3, .fh3::before, .text-light-grey .fh4, .fh4::before, .text-light-grey .fh5, .fh5::before, .text-light-grey .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--light-grey);
}

.text-dark-grey .fh1, .fh1::before, .text-dark-grey .fh2, .fh2::before, .text-dark-grey .fh3, .fh3::before, .text-dark-grey .fh4, .fh4::before, .text-dark-grey .fh5, .fh5::before, .text-dark-grey .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--dark-grey);
}

.text-forest-green .fh1, .fh1::before, .text-forest-green .fh2, .fh2::before, .text-forest-green .fh3, .fh3::before, .text-forest-green .fh4, .fh4::before, .text-forest-green .fh5, .fh5::before, .text-forest-green .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--forest-green);
}

.text-black .fh1, .fh1::before, .text-black .fh2, .fh2::before, .text-black .fh3, .fh3::before, .text-black .fh4, .fh4::before, .text-black .fh5, .fh5::before, .text-black .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--black);
}

.text-orange .fh1, .fh1::before, .text-orange .fh2, .fh2::before, .text-orange .fh3, .fh3::before, .text-orange .fh4, .fh4::before, .text-orange .fh5, .fh5::before, .text-orange .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--orange);
}

.text-off-white .fh1, .fh1::before, .text-off-white .fh2, .fh2::before, .text-off-white .fh3, .fh3::before, .text-off-white .fh4, .fh4::before, .text-off-white .fh5, .fh5::before, .text-off-white .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--off-white);
}

.text-white .fh1, .fh1::before, .text-white .fh2, .fh2::before, .text-white .fh3, .fh3::before, .text-white .fh4, .fh4::before, .text-white .fh5, .fh5::before, .text-white .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--white);
}

.text-pink .fh1, .fh1::before, .text-pink .fh2, .fh2::before, .text-pink .fh3, .fh3::before, .text-pink .fh4, .fh4::before, .text-pink .fh5, .fh5::before, .text-pink .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--pink);
}

.text-yellow .fh1, .fh1::before, .text-yellow .fh2, .fh2::before, .text-yellow .fh3, .fh3::before, .text-yellow .fh4, .fh4::before, .text-yellow .fh5, .fh5::before, .text-yellow .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--yellow);
}

.text-gold .fh1, .fh1::before, .text-gold .fh2, .fh2::before, .text-gold .fh3, .fh3::before, .text-gold .fh4, .fh4::before, .text-gold .fh5, .fh5::before, .text-gold .fh6, .fh6::before, .fh1::after, .fh2::after, .fh3::after, .fh4::after, .fh5::after, .fh6::after {
    background-color: var(--gold);
} */

@media screen and (max-width: 576px) {
    h1, .sh1, .fh1 {
        font-weight: 600;
        font-size: 1.5rem;
        font-family: 'DIN Condensed', sans-serif;
        font-stretch: condensed;
    }
    
    h2, .sh2, .fh2 {
        font-weight: 600;
        font-size: 1.38rem;
        font-family: 'DIN Condensed', sans-serif;
        font-stretch: condensed;
    }
    
    h3, .sh3, .fh3 {
        font-weight: 600;
        font-size: 1.2696rem;
        font-family: 'DIN Condensed', sans-serif;
        font-stretch: condensed;
    }
    
    h4, .sh4, .fh4 {
        font-weight: 600;
        font-size: 1.168032rem;
        font-family: 'DIN Condensed', sans-serif;
        font-stretch: condensed;
    }
    
    h5, .sh5, .fh5 {
        font-weight: 600;
        font-size: 1.07458944rem;
        font-family: 'DIN Condensed', sans-serif;
        font-stretch: condensed;
    }
    
    h6, .sh6, .fh6 {
        font-weight: 600;
        font-size: 0.9886222848rem;
        font-family: 'DIN Condensed', sans-serif;
        font-stretch: condensed;
    }
    
    p {
        margin-top: 0;
        margin-bottom: 0;
        padding: .5rem 0;
        font-size: 1.05em;
        line-height: 1.53rem;
        font-weight: 400;
        font-family: 'DINOT', sans-serif;
        /* font-stretch: condensed; */
    }
}

/* LEVELS */
.list-group-item {
    border-bottom: 1px solid hsla(0, 0%, 37%, 0.298) !important;
    border-collapse: collapse;
}

.list-group-item-royal-blue {
    background-color: var(--royal-blue) !important;
    color: var(--white) !important;
}

.list-group-item-teal {
    background-color: var(--teal) !important;
    color: var(--white) !important;
}

.list-group-item-light-grey {
    background-color: var(--grey) !important;
    color: var(--royal-black) !important;
}

.list-group-item-light-grey {
    background-color: var(--light-grey) !important;
    color: var(--royal-black) !important;
}

.list-group-item-dark-grey {
    background-color: var(--dark-grey) !important;
    color: var(--white) !important;
}

.list-group-item-forest-green {
    background-color: var(--forest-green) !important;
    color: var(--white) !important;
}

.list-group-item-black {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.list-group-item-orange {
    background-color: var(--yellow) !important;
    color: var(--white) !important;
}

.list-group-item-off-white {
    background-color: var(--off-white) !important;
    color: var(--black) !important;
}

.list-group-item-pink {
    background-color: var(--pink) !important;
    color: var(--white) !important;
}

.list-group-item-yellow {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
}

.list-group-item-gold {
    background-color: var(--gold) !important;
    color: var(--black) !important;
}

.list-group-item.disabled, .list-group-item:disabled {
    filter: brightness(1.3);
    pointer-events: auto;
}

.list-group-item-black.disabled {
    background-color: var(--dark-grey) !important;
    pointer-events: auto;
}

.list-group-item-forest-green.disabled {
    filter: brightness(1.75);
    pointer-events: auto;
}

/* MODIFIERS */
.rounded {
    border-radius: 0.75rem !important;
}

/* NAV */
@property --nav-dropdown-width {
    syntax: "<custom-ident>|<percentage>";
    inherits: true;
    initial-value: 100%;
    z-index: 1000;
}

.navbar {
    background-color: var(--royal-blue);
    border-bottom: 1px solid var(--dca-gray-lighter);
    z-index: 1000;
    padding: 0 10px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.nav-tabs .nav-link {
    margin-top: -2px;
    background-color: var(--teal);
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
}

.navbar-dark .navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    stroke: 5px var(--white);
}

.dropdown-toggle:not(.show)::after {
    font-family: 'bootstrap-icons';
    font-size: .9rem;
    content: none;
    margin-left: .255rem;
    vertical-align: -.155rem;
    border: none;
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.dropdown-toggle.show::after {
    font-family: 'bootstrap-icons';
    font-size: .9rem;
    content: "\F282";
    margin-left: .255rem;
    vertical-align: -.155rem;
    border: none;
    transform: rotate(-180deg);
    transition-duration: 0.5s;
}

button:focus:not(:focus-visible), button:focus-visible:not(:focus) {
    color: hsla(0, 0%, 100%, 0);
    border: none;
    stroke: none;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-family: 'DINOT', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media screen and (min-width:1200px) and (max-width:1349px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: .74rem; 
    }
}

@media screen and (min-width:1350px) and (max-width:1440px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: .9rem; 
    }
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link:focus {
    background-color: var(--white);
    color: var(--teal);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: underline;
    border-color: var(--white);
    border-radius: inherit;
}

.nav-tabs .nav-link {
    border: none;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    /* color: var(--white); */
    border-color: hsla(0, 0%, 100%, 0);
    border: none;
    outline: none;
    border-radius: inherit;
}

.dropdown-menu {
    background-color: var(--light-grey);
    color: var(--royal-blue);
    width: var(--nav-dropdown-width);
    min-width: max-content;
    border-radius: 0;
    padding: 0;
}

.dropdown-menu .show {
    background-color: var(--light-grey);
    color: var(--royal-blue);
    width: auto;
    min-width: max-content;
    border-radius: 0;
    padding: 0;
}

.navbar-brand {
    min-width: 40px;
    max-width: 125px;
}

.dropdown-menu[data-bs-popper] {
    margin-top: -.2%;
}

.dropdown-item {
    color: var(--royal-blue);
    font-weight: 600;
}

.level-1 {
    container-name: level-1;
    background-color: var(--light-grey);
    color: var(--royal-blue);
    font-weight: 600;
    color: var(--royal-blue);
    width: auto;
    min-width: 100%;
    border-radius: 0;
    padding: .5rem 1rem;
    margin-top: 0;
    text-decoration: none;
}

.level-1:hover {
    background-color: #e9ecef;
    color: var(--royal-blue);
    width: auto;
    min-width: 100%;
    border-radius: 0;
    padding: .5rem 1rem;
}

.level-1::after {
    display: inline-block;
    font-family: 'bootstrap-icons';
    font-size: .9rem;
    content: url("../bootstrap-icons-1.11.3/chevron-down.svg");
    /* font-size: .9rem;
    content: "\F282"; */
    /* content: "\F27E"; */
    margin-left: .255rem;
    vertical-align: -.155rem;
    border: none;
    transform: rotate(0deg);
    transition-duration: 0.35s;
}

.level-1:not(.collapsed)::after {
    font-family: 'bootstrap-icons';
    font-size: .9rem;
    content: url("../bootstrap-icons-1.11.3/chevron-down.svg");
    /* content: "\F282"; */
    /* content: "\F27E"; */
    margin-left: .255rem;
    vertical-align: -.155rem;
    border: none;
    transform: rotate(-180deg);
    transition-duration: 0.35s;
}

.level-2:hover {
    background-color: var(--orange);
    color: var(--royal-blue);
    width: auto;
    min-width: 100%;
}

.level-2-nav {
    background-color: var(--royal-blue);
    background-image: url("../cms/img/ilani-logo-seal-vector-white-8cent.png");
    background-size: auto;
    background-position: top left;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid hsla(49, 24%, 87%, 0.086);
    --nav-dropdown-width: 100%;
}

.level-2-nav:hover {
    color: var(--royal-blue);
    font-weight: 600;
    text-transform: none;
    /* padding-top: .5rem;
    padding-bottom: .5rem; */
    background-color: hsla(0, 0%, 100%, 0.185);
}

.level-2-nav a {
    color: var(--white);
    font-weight: 600;
    text-transform: none;
    padding-top: .5rem;
    padding-bottom: .5rem;
    text-decoration: underline;
}

.level-2-nav a:hover {
    font-weight: 600;
    text-transform: none;
    padding-top: .5rem;
    padding-bottom: .5rem;
    text-decoration: none;
}

/* TABLES */
.change-list #changelist table tbody td,
.change-list #changelist table tbody th {
    white-space: normal;
}

/* TABS */
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* CHARTS */
.bg-dashboard-charts {
    /* outline: 1rem solid var(--dca-gray-lightest); */
    border: 1rem solid var(--dca-gray-lightest);
    border-radius: 1.7rem !important;
}

i.fa.fa-info-circle.tooltip-icon, .tooltip-icon {
    color: var(--dca-primary);
    width: 2rem;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip::after .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

select.timeframe-dropdown, select.chartType-dropdown {
    background: hsl(0, 0%, 13%);
    color: #848484;
    border-color: hsla(0, 0%, 100%, 0);
    border: none;
    outline: 1px solid hsla(0, 0%, 100%, 0);
}

select.timeframe-dropdown:focus, select.timeframe-dropdown:active, select.chartType-dropdown:focus, select.chartType-dropdown:active {
    border-color: hsla(0, 0%, 100%, 0);
    border: none;
    outline: 1px solid hsla(0, 0%, 100%, 0);
}

/* IFRAMES */
.contact-us {
    width: 100%;
    max-width: 1905px;
    height: 550px;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.contact-us-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 4rem;
}

.contact-us-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    pointer-events: none;
}

.contact-us-button-overlay {
    position: absolute;
    bottom: 10%;
    left: 42%;
    width: 16%;
    height: 45px;
    background: rgba(255,255,255,0);
    pointer-events: auto;
    cursor: pointer;
}

.email-signup {
    width: 100%;
    max-width: 1905px;
    height: 1150px;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.mec-form {
    width: 100%;
    max-width: 1905px;
    height: 1650px;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.preenroll {
    width: 100%;
    max-width: 1905px;
    height: 1350px;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

.preenroll-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 1350px;
    margin-bottom: 4rem;
}

.preenroll-iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
}

.preenroll-button-overlay {
    position: absolute;
    bottom: 11%;
    left: 42%;
    width: 16%;
    height: 45px;
    background: rgba(255, 255, 255, 0);
    pointer-events: auto;
    cursor: pointer;
}

@media screen and (max-width: 389px) {
    .contact-us {
        height: 700px;
    }

    .contact-us-iframe-wrapper {
        position: relative;
        width: 100%;
        height: 700px;
    }
    
    .contact-us-iframe-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
    
    .contact-us-button-overlay {
        position: absolute;
        bottom: 6.5%;
        left: 15%;
        width: 70%;
        height: 45px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }

    .email-signup {
        height: 1400px;
    }

    .mec-form {
        height: 1650px;
    }

    .preenroll {
        height: 2200px;
    }

    .preenroll-iframe-wrapper {
        position: relative;
        width: 100%;
        height: 2200px;
        margin-bottom: 4rem;
    }
    
    .preenroll-iframe-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
    
    .preenroll-button-overlay {
        position: absolute;
        bottom: 7.3%;
        left: 14%;
        width: 72%;
        height: 40px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }
    
}

@media screen and (min-width: 389px) and (max-width: 431px) {
    .contact-us {
        height: 700px;
    }

    .contact-us-iframe-wrapper {
        position: relative;
        width: 100%;
        height: 700px;
    }
    
    .contact-us-iframe-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
    
    .contact-us-button-overlay {
        position: absolute;
        bottom: 6.5%;
        left: 15%;
        width: 70%;
        height: 45px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }

    .email-signup {
        height: 1400px;
    }

    .mec-form {
        height: 1650px;
    }

    .preenroll {
        height: 2200px;
    }

    .preenroll-iframe-wrapper {
        position: relative;
        width: 100%;
        height: 2200px;
        margin-bottom: 4rem;
    }
    
    .preenroll-iframe-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
    
    .preenroll-button-overlay {
        position: absolute;
        bottom: 8.6%;
        left: 14%;
        width: 72%;
        height: 45px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }
    
}

@media screen and (min-width: 431px) and (max-width: 550px) {
    .contact-us {
        height: 500px;
    }

    .contact-us-iframe-wrapper {
        position: relative;
        width: 100%;
        height: 482px;
    }
    
    .contact-us-iframe-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
    
    .contact-us-button-overlay {
        position: absolute;
        bottom: 6.5%;
        left: 35%;
        width: 30%;
        height: 45px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }

    .email-signup {
        height: 1400px;
    }

    .mec-form {
        height: 1650px;
    }

    .preenroll {
        height: 2200px;
    }
    
    .preenroll-button-overlay {
        position: absolute;
        bottom: 8.9%;
        left: 35%;
        width: 30%;
        height: 40px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }
    
}

@media screen and (min-width: 550px) and (max-width: 1025px) {
    .contact-us {
        height: 500px;
    }

    .contact-us-iframe-wrapper {
        position: relative;
        width: 100%;
        height: 482px;
    }
    
    .contact-us-iframe-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
    }
    
    .contact-us-button-overlay {
        position: absolute;
        bottom: 6.5%;
        left: 40%;
        width: 20%;
        height: 45px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }

    .email-signup {
        height: 1400px;
    }

    .mec-form {
        height: 1650px;
    }

    .preenroll {
        height: 2200px;
    }

    .preenroll-button-overlay {
        position: absolute;
        bottom: 11%;
        left: 39%;
        width: 22%;
        height: 45px;
        background: rgba(255, 255, 255, 0);
        pointer-events: auto;
        cursor: pointer;
    }
    
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto !important;
}

