/* Minification failed. Returning unminified contents.
(2,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(31,26): run-time error CSS1039: Token not allowed after unary operator: '-mainBackground'
(82,15): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(86,15): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(90,26): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(91,22): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(100,26): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(104,26): run-time error CSS1039: Token not allowed after unary operator: '-coralOrange'
(108,26): run-time error CSS1039: Token not allowed after unary operator: '-peachBeige'
(171,23): run-time error CSS1036: Expected expression, found '['
(173,26): run-time error CSS1036: Expected expression, found '['
(181,23): run-time error CSS1036: Expected expression, found '['
(182,26): run-time error CSS1036: Expected expression, found '['
(213,26): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(287,22): run-time error CSS1039: Token not allowed after unary operator: '-errorColor'
(288,23): run-time error CSS1039: Token not allowed after unary operator: '-errorColor'
(292,15): run-time error CSS1039: Token not allowed after unary operator: '-errorColor'
(304,22): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(308,15): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(365,15): run-time error CSS1039: Token not allowed after unary operator: '-mainColor'
(375,15): run-time error CSS1039: Token not allowed after unary operator: '-mainColor'
(397,26): run-time error CSS1039: Token not allowed after unary operator: '-secondaryColor'
(414,6): run-time error CSS1030: Expected identifier, found '>'
(414,25): run-time error CSS1031: Expected selector, found ')'
(414,25): run-time error CSS1025: Expected comma or open brace, found ')'
(449,15): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(450,26): run-time error CSS1039: Token not allowed after unary operator: '-lightCream'
(452,27): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(458,26): run-time error CSS1039: Token not allowed after unary operator: '-lightCream'
(460,26): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(524,26): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(541,26): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(559,27): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(560,60): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(573,15): run-time error CSS1039: Token not allowed after unary operator: '-errorColor'
(768,15): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(789,36): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(830,26): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(831,36): run-time error CSS1039: Token not allowed after unary operator: '-powderBlue'
(876,15): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(891,6): run-time error CSS1030: Expected identifier, found '.'
(891,25): run-time error CSS1031: Expected selector, found ')'
(891,25): run-time error CSS1025: Expected comma or open brace, found ')'
(904,17): run-time error CSS1039: Token not allowed after unary operator: '-mainHeader'
(934,84): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(934,115): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
(935,17): run-time error CSS1039: Token not allowed after unary operator: '-mainNavBlock'
(942,21): run-time error CSS1039: Token not allowed after unary operator: '-mainHeader'
(1106,17): run-time error CSS1030: Expected identifier, found ':'
(1106,38): run-time error CSS1031: Expected selector, found ')'
(1106,38): run-time error CSS1025: Expected comma or open brace, found ')'
(1127,26): run-time error CSS1039: Token not allowed after unary operator: '-deepTeal'
 */
:root {
  --errorColor: hsl(0 100% 50%);
  --mainBackground: #F7E9C6;
  --coralOrange: #F57550;
  --peachBeige: #F9C5A0;
  --goldenRod: #FFB84E;
  --lightCream: #F7E9C6;
  --lightCreamSemiTransparent: #F7E9C666;
  --powderBlue: #90C6CF;
  --deepTeal: #136A78;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  height: 100dvh;
}

body {
  font-family: Raleway, Tahoma, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: var(--mainBackground, white);
}

input {
  font-family: Raleway, Tahoma, sans-serif;
  font-size: 1rem;
}

header, nav, footer {
  text-align: center;
  flex-grow: 0;
}

main {
  text-align: center;
  flex-grow: 1;
  flex-basis: auto;
  margin-inline: auto;
  padding: 1rem;
  grid-area: content;
}

header.normalHeight {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
}

header, main, footer, nav {
  width: clamp(300px, 100%, 1300px);
  margin-inline: auto;
}

footer {
  margin-block: 0.5em;
  font-size: clamp(11px, 0.8rem, 13px);
  grid-area: footer;
}

footer p {
  padding: 0.1em;
  margin: 0.2em;
}

:is(h1,h2,h3,h4,h5,h6) {
  margin-inline: auto;
  margin-block: 0.25em;
  padding: 0;
}

h1 {
  color: var(--deepTeal, #CCCCCC);
}

h2 {
  color: var(--deepTeal, #CCCCCC);
}

hr {
  background-color: var(--deepTeal, #CCCCCC);
  border-color: var(--deepTeal, #CCCCCC);
}

a {
  color: inherit;
  text-decoration: underline;
}

.bordered-dark {
  border: 3px solid var(--deepTeal, black);
}

.bordered {
  border: 3px solid var(--coralOrange, #333333);
}

.bordered-light {
  border: 3px solid var(--peachBeige, #CCCCCC);
}

.padded {
  padding: 0.5em;
}

#loginForm, #changePassword {
  width: clamp(300px, 50%, 450px);
  margin-inline: auto;
  padding: 1.5em;
}

.row {
  margin-block: 0.5em;
}

.mandatory {
  font-weight: bold;
  font-size: 1.1rem;
}

.instructions {
  font-style: italic;
}

.pwChange {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pwChange label {
  text-align: right;
  padding-right: .25em;
}

.pwChange .field-validation-error {
  grid-column: span 2 /auto;
}

.logoutLink {
}

.leftAlign {
  text-align: left;
}

.centerAlign {
  text-align: center;
}

.centerBox {
  margin-inline: auto;
}

#homeBanner {
  max-width: 100%;
  height: auto;
}

.homeGauge {
  display: grid;
  gap: .25em;
  grid-template-rows: [gauge-start] 50px [current-start] 1fr [current-end minimum-start] 1fr [minimum-end] 50px [gauge-end];
  font-size: 1.5rem;
  grid-template-columns: [gauge-start current-start minimum-start] 1fr [minimum-end current-end gauge-end];
}


.progressGauge {
  font-size: 1.25rem;
  display: grid;
  gap: .25em;
  grid-template-rows: [gauge-start] 65px [sale-start] 1fr [sale-end current-start] 1fr [current-end minimum-start] 1fr [minimum-end] 65px [gauge-end];
  grid-template-columns: [gauge-start sale-start current-start minimum-start] 1fr [minimum-end sale-end current-end gauge-end];
}


.currently, .minimum, .sale, .gauge {
  align-self: center;
  justify-self: center;
}

.currently strong, .minimum strong, .sale strong {
  font-size: 1.25em;
}

.currently {
  grid-area: current;
}

.minimum {
  grid-area: minimum;
}

.sale {
  grid-area: sale;
}

.gauge {
  grid-area: gauge;
}


.alt-title {
  background-color: var(--powderBlue, black);
  color: white;
}

.rulesContainer {
  display: flex;
  gap: 1em;
  justify-items: start;
  align-items: start;
}

.rulesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 2em;
}

.rulesGrid section.fullWidth {
  grid-column: span 2/ auto;
}

.rulesGrid :is(h3,p) {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.questionsBox {
  min-width: 350px;
}

.travelBlurb {
  container-type: inline-size;
}

.travelBlurb p {
  padding-right: 1em;
  margin-right: 1em;
  text-align: left;
  text-wrap: pretty;
}

.travelBlurb p:first-child {
  padding-top: 1.5em;
}

.travelBlurb img {
  max-width: 100%;
}

@container(min-width:980px) {
  .travelBlurb img {
    float: right;
  }
}

@media(max-width:800px) {
  .rulesContainer {
    flex-direction: column;
  }

  .rulesGrid {
    grid-template-columns: 1fr;
  }

  .rulesGrid section.fullWidth {
    grid-column: 1;
  }

  .questionsBox {
    width: 100%;
  }
}

.input-validation-error {
  border-color: var(--errorColor, hsl(0 100% 50%));
  outline-color: var(--errorColor, hsl(0 100% 50%));
}

.field-validation-error {
  color: var(--errorColor, hsl(0 100% 50%));
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: .25em;
  margin-block: .2em;
}

fieldset {
  margin-bottom: 0.5em;
  border-color: var(--powderBlue, black);
}

legend {
  color: var(--powderBlue, black);
  font-weight: bold;
  font-size: 1.1rem;
  background: inherit;
  border: inherit;
  padding: .25em .5em;
}

.form-group label {
  text-align: right;
}

.control-label {
  text-align: right;
  text-wrap: balance;
}

.answerBox {
  list-style-type: none;
}

.alignTop > * {
  vertical-align: top;
}

.contactForm, .poForm {
  text-align: left;
}

.poForm {
  margin: 0 auto;
  width: clamp(350px, 65%, 700px);
}

.poForm > div {
  margin-block-end: .5em;
}

.contactForm.row {
  padding: 0.25rem;
  padding-left: 0.75rem;
  padding-bottom: 1rem;
  color: #333333;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
}

.row.first {
  padding-top: 0.5rem;
}

.row.last {
  padding-bottom: 0.5rem;
}

.note.required {
  color: var(--mainColor, #000000);
  font-weight: bold;
}

.contactForm .label, .poForm .label {
  width: 180px;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  font-size: 1rem;
  color: var(--mainColor, #000000);
  font-weight: bold;
}

.contactForm .label.required:after {
  content: "*";
}

.contactForm .field {
  width: calc( 100% - 250px - 1rem);
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
}

.contactForm .field input,
.contactForm .field textarea {
  width: 100%;
  box-sizing: border-box;
  resize: none;
  margin: 0;
  padding: 0.5em;
  background-color: var(--secondaryColor,#FFFFFF);
}

.contactForm .field.subject input,
.contactForm .field.emailAddr input {
  width: 25rem;
}

.contactForm .field.phoneNumber input {
  width: 8rem;
}

.contactForm .field textarea {
  height: 10em;
  max-width: 100%;
}

:has(> .grecaptcha-badge) {
  visibility: hidden;
  grid-area: empty;
  font-size: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

#frmEnroll {
  width: clamp(400px, 80%, 800px);
  margin-inline: auto;
}

#frmEnroll fieldset {
  width: 100%;
}

#frmEnroll p {
  margin-inline: auto;
  display: inline-block;
  width: 80%;
}

#frmEnroll textarea {
  margin-inline: auto;
  display: inline-block;
  width: 100%;
}

.button, input[type=button], input[type=submit], input[type=reset] {
  display: inline-block;
  margin: .25em;
  padding: .2em .5em;
  color: var(--deepTeal, #CCCCCC);
  background-color: var(--lightCream, #FFFFFF);
  text-decoration: none;
  border: 2px outset var(--deepTeal, #CCCCCC);
}

.feedback {
  margin-inline: auto;
  padding: .5em;
  background-color: var(--lightCream, #FFFFFF);
  width: clamp(300px, 60%, 800px);
  border: 2px solid var(--powderBlue, #000000);
}

.narrower {
  width: clamp(300px, 85%, 750px);
}

.narrowest {
  width: clamp(250px, 80%, 700px);
}

.narrowest > strong {
  padding-inline: .5em;
  display: inline-block;
}

.paddedBox {
  margin-inline: auto;
  padding: 1.5em;
  margin-block: 0.25em;
}

.boldText {
  font-weight: bold;
}

.largerText {
  font-size: 1.1rem;
}

.largestText {
  font-size: 1.3rem;
}

.recovery {
  margin: .5em auto;
  padding: .5em 1em;
}

.recoveryDialog {
  width: 400px;
}

.recoveryRow {
  margin-bottom: .5em;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.15em;
}

.recoveryRow .label {
  text-align: right;
}

.recoveryDialog .feedback {
  width: 100%;
  max-width: initial;
}

.recoveryFeedback {
  margin-top: 0.5rem;
}

.downloadableReports, .vipReportBox {
  border: 1px solid var(--powderBlue, black);
  padding: 0;
  margin: 0 auto;
  margin-block-end: 1.5em;
}

.vipReportBox {
  width: clamp(200px, calc( 25% - 2.25em), 400px);
}

.downloadableReports {
  width: fit-content;
}

.downloadableReports :is(h1,h2,h3,h4,h5), .vipReportBox :is(h1,h2,h3,h4,h5) {
  margin: 0;
  padding: .25em .5em;
  background-color: var(--powderBlue, black);
  color: white;
}

.downloadableReports p, .vipReportBox :is(h1,h2,h3,h4,h5) {
  margin: .5em 1em;
  display: flex;
  gap: 2em;
  justify-content: center;
}

a.buttonLink {
  text-decoration: none;
}

.reportButton {
  border-radius: 500px;
  vertical-align: middle;
  border: 3px outset var(--powderBlue,#CCCCCC);
  background-image: linear-gradient(to bottom, white, var(--powderBlue,#CCCCCC) 9px );
  padding: .25em 1em;
  color: white;
  font-size: .85rem;
  font-weight: bold;
  display: inline-grid;
  justify-content: center;
  align-items: center;
  justify-items: center;
  align-content: center;
}

.validation-summary-errors {
  color: var(--errorColor, red);
}

.top5DSRGraph {
  max-width: 738px;
  min-height: calc(314px + 3.2em);
  background-image: url(/Images/BarGraphs/ISR-Reports/Graph-Top-5-DSRs.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 738px 314px;
  display: grid;
  grid-template-columns: 60px repeat(5, 1fr);
  margin-inline: auto;
  margin-block-end: 2em;
  gap: 37px;
}

.dsrRankBar {
  display: flex;
  flex-direction: column;
  padding-top: 9px; /* this gets the bottom of the bar to align with the 0 line on the graph */
  text-align: center;
  font-size: 0.85rem;
}

.dsrRankBar img {
  width: 74px;
  height: 290px;
  margin-inline: auto;
}

.vipGraphs {
  display: flex;
  align-content: space-between;
  flex-wrap: nowrap;
  gap: 0.25em;
  margin-block-end: 1.5em;
}


.vipGraphs .graph {
  background-repeat: no-repeat;
  background-position: center top;
  vertical-align: bottom;
  width: 312px;
  height: 233px;
}

.vipGraphBox {
  width: 312px;
  height: calc(233px + 3em);
}


.vipDSRAchievement .graph {
  background-image: url('/Images/BarGraphs/VIP-Reports/Graph_DSR-Achievement.png');
  display: grid;
  grid-template-columns: 45px repeat(4, fit-content(45px)) 20px;
  gap: 10px;
}

.spacing {
  font-size: 5px;
}

.vipDSRAchievement .bar {
  display: grid;
  grid-template-rows: 102px 1fr;
  gap: 5px;
  justify-items: center;
  padding-top: 48px; /*offset so top of bar image aligns with "100" line of background image*/
  padding-bottom: 35px; /*offset so bottom is above "DSR Achievements" label at bottom of background-image */
  height: 233px; /* match height*/
  max-height: 233px; /* match height*/
}

.vipDSRAchievement img {
  align-self: end;
  width: auto;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}



.vipDSRSales .graph {
  background-image: url('/Images/BarGraphs/VIP-Reports/Graph_DSR-Sales.png');
  display: grid;
  grid-template-columns: 35px repeat(7, fit-content(33px)) 20px;
  gap: 8px;
}

.vipDSRSales .bar {
  display: grid;
  grid-template-rows: 87px 1fr;
  gap: 5px;
  justify-items: center;
  padding-top: 48px; /*offset so top of bar image aligns with "100" line of background image*/
  padding-bottom: 55px; /*offset so bottom is above "DSR Achievements" label at bottom of background-image */
  height: 233px; /* match height*/
  max-height: 233px; /* match height*/
}

.vipDSRSales img {
  align-self: end;
  width: 23px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}


.vipSalesByCat .graph {
  background-image: url('/Images/BarGraphs/VIP-Reports/Graph_Sales-by-Category.png');
  display: grid;
  grid-template-columns: 40px repeat(5, 1fr) 30px;
  gap: 6px;
}


.vipSalesByCat .bar {
  display: grid;
  grid-template-rows: 87px 1fr;
  gap: 5px;
  justify-items: center;
  padding-top: 48px; /*offset so top of bar image aligns with "100" line of background image*/
  padding-bottom: 55px; /*offset so bottom is above "DSR Achievements" label at bottom of background-image */
  height: 233px; /* match height*/
  max-height: 233px; /* match height*/
  width: 100%;
}

.vipSalesByCat img {
  height: 100%;
  width: 10px;
}

.vipTopTenISR .graph {
  background-image: url('/Images/BarGraphs/VIP-Reports/Graph_Top-10-ISR-$.png');
  display: grid;
  grid-template-columns: 40px repeat(10, 1fr) 30px;
  gap: 8px;
}


.vipTopTenISR .bar {
  display: grid;
  grid-template-rows: 87px 1fr 1fr;
  gap: 2px;
  justify-items: center;
  padding-top: 48px; /*offset so top of bar image aligns with "100" line of background image*/
  padding-bottom: 55px; /*offset so bottom is above "DSR Achievements" label at bottom of background-image */
  height: 233px; /* match height*/
  max-height: 233px; /* match height*/
}

.vipTopTenISR img {
  height: 100%;
  width: 100%;
}

.singleLineLabel {
  font-size: 8px;
  white-space: nowrap;
  text-align: right;
  margin: 0;
  padding: 0;
}

.normalGraphLabel {
  font-size: 9px;
}

.verticalHolder {
  display: inline-block;
  width: 100%;
  height: 7em;
  font-size: 0.5em;
}

.verticalText {
  writing-mode: sideways-lr;
  text-align: right;
}

.angledText {
  writing-mode: sideways-rl;
  text-align: left;
}

.graphComingSoon {
  grid-column: span 5/ auto;
  align-self: center;
  margin-bottom: 49px;
  color: var(--powderBlue, black);
  padding: .2em;
  font-weight: bold;
}

.reportComingSoon img {
  filter: grayscale();
}

.promotions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-content: space-between;
  justify-content: center;
  margin-block-start: 1em;
}

.promotions a {
  padding: .5em;
  margin: 0 auto;
  box-shadow: 3px 3px 6px 6px var(--powderBlue, #CCCCCC);
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
}

.promotions img {
  padding: 0;
  margin: 0 auto;
  display: block;
}

.travelWinner {
  grid-area: gauge;
  background-image: url(/Images/2027/RoundGauges/Base.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 1250px;
  height: 400px;
  margin-inline: auto;
  margin-block: 0.5em;
  color: black;
  padding: 0.25em 1em;
  border-radius: 1em;
  display: flex;
}

.congratsMessage {
  align-self: center;
  justify-self: center;
  margin: auto;
  width: 290px;
}

.travelWinner p {
  margin: 0.25em auto;
  padding: 0.25em;
}

.travelWinner a {
  color: inherit;
  background-color: var(--powderBlue, hsl(0deg 0% 75%));
  box-shadow: 0px 0px 6px 3px var(--powderBlue, hsl(0deg 0% 75%));
  text-decoration: none;
  margin: 0;
  padding: 0 0.5em;
  border-radius: 50%;
  font-size: 0.95rem;
  box-sizing: border-box;
  display: inline-block;
  width: 155px;
  aspect-ratio: 1;
  justify-items: center;
  align-content: center;
  justify-content: center;
}

.centerContent {
  text-align: center;
}

.marginTop {
  margin-block-start: 1em;
}

.italicText {
  font-style: italic;
}

.smallerText {
  font-size: .9rem;
}

li {
  padding-block: .25em;
}



.requiredRequestField {
  vertical-align: bottom;
  display: inline-block;
  white-space: nowrap;
  padding: 0.2rem;
  margin: 0.1em;
  height: 1.1em;
  font-weight: bold;
  color: var(--deepTeal, #CC0000);
}



.requiredRequestField:before {
  content: "\2A";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 0.1em;
  box-sizing: border-box;
  vertical-align: top;
}

:has(.placeAtBottomRight) {
  position: relative;
}

.placeAtBottomRight {
  position: absolute;
  bottom: .5em;
  right: .5em;
}

.combinedHeader {
  display: grid;
  grid-template-areas: 'headerImg';
  anchor-name: --mainHeader;
}

.combinedHeader img {
  grid-area: headerImg;
}

.leftLogo {
  width: auto;
  justify-self: flex-start;
  z-index: 3;
  margin-top: 1em;
  aspect-ratio: 305 / 116;
}

.combinedHeader > .leftLogo {
  margin-left: 2em;
}

.fullBanner {
  aspect-ratio: 1367/209;
  max-width: 100%;
  max-height: 209px;
}

.shadedBox {
  background-color: white;
}

.mainNavBar {
  background-image: linear-gradient(to bottom, transparent, transparent 25px, var(--deepTeal, #CCCCCC) 25px, var(--deepTeal, #CCCCCC) 50px, transparent 50px);
  anchor-name: --mainNavBlock;
  display: flex;
  justify-content: space-around;
}

.navbarMiddle {
  position: absolute;
  position-anchor: --mainHeader;
  bottom: calc(anchor(bottom) - 22px);
  left: anchor(left);
  right: anchor(right);
  width: 720px;
}


.navbarSmall {
  grid-area: navbar;
  /*  width: clamp(300px, 75%, 800px);*/
  margin-block: 1em;
}

.navLink {
  display: inline-grid;
  justify-items: center;
  grid-template-areas: 'spacer' 'text' 'indicator';
  grid-template-rows: 25px 25px 22px;
  margin-inline: .5em;
  color: white;
}

.navLink.active {
  grid-template-areas: 'indicator' 'text' 'spacer'
}

.navLink .navLabel {
  grid-area: text;
  text-decoration: none;
}

.navLink .navSpacer {
  grid-area: spacer;
  height: 100%;
  display: block;
}

.navLink img {
  grid-area: indicator;
}

h2 {
  text-wrap: balance;
}


.travelPage {
  display: grid;
  grid-template-areas: 'leftImage logo' 'leftImage navbar' 'leftImage content' 'leftImage footer' 'leftImage empty';
  grid-template-columns: max-content 1fr;
  column-gap: 0.5em;
  row-gap: .5em;
}

.leftMainImage {
  grid-area: leftImage;
  height: 100%;
  font-size: 0;
  position: sticky;
  top: 0;
}

.leftMainImage img {
  position: sticky;
  top: 0;
  height: 100vh;
  aspect-ratio: 543 / 775;
}

.travelCopy {
  display: flex;
  text-align: left;
}

.travelImages {
  display: grid;
  grid-template-areas: 'topImage' 'overlap' 'bottomImage';
  grid-template-rows: 175px 45px 175px;
}

.firstTravel {
  grid-row-start: topImage;
  grid-row-end: overlap;
  grid-column: topImage;
  max-height: 220px;
}

.secondTravel {
  grid-row-start: overlap;
  grid-row-end: bottomImage;
  grid-column: bottomImage;
  max-height: 220px;
}

.homePage {
  display: grid;
  grid-template-areas: 'leftImage navbar rightSpacer' 'leftImage content rightSpacer' 'leftImage footer rightSpacer' 'leftImage empty rightSpacer';
  grid-template-columns: max-content 1fr minmax(auto, 150px);
  grid-template-rows: 118px auto;
  column-gap: 1em;
  row-gap: .5em;
  /*Position palms and flowers as background images*/
  background-image: url(/Images/2027/Home-BG.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-attachment: fixed;
  background-size: contain;
  background-origin: padding-box;
}

.foregroundImage {
  grid-area: leftImage;
  grid-row: 1;
  z-index: 5;
  text-align: center;
  margin-block: 0;
  margin-inline: auto;
  position: sticky;
  top: 0;
}

.qualification {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, min-content);
  gap: 0 2em;
}

.qualification > li {
  text-wrap: pretty;
}

.columnOne {
  grid-column: 1;
  grid-row: auto;
}

.columnTwo {
  grid-column: 2;
  grid-row: auto;
}

.spanRows {
  grid-row-start: 1;
  grid-row-end: -1;
}

.termsLink {
  text-align: center;
  margin-inline: auto;
  align-self: center;
  text-decoration: none;
  display: block;
  padding: .25em;
}

.termsLink a {
  text-decoration: none;
  display: inline-block;
  padding: .25em;
}

.termsLink a:is(:hover,:focus-visible) {
  background-color: hsl(0deg 0% 95% /.35);
}

.middleAlign {
  vertical-align: middle;
}

.narrowTC {
  text-decoration: none;
  max-width: 12ch;
  display: inline-block;
  margin-left: .5em;
}

#myVideo {
  margin: auto;
  text-align: center;
}

#myVideo > iframe {
  background-color: var(--deepTeal, white);
  padding: 3px;
}

.text-danger {
  display: block;
}

