/* ==== HERO SECTION (#hero) === */
#hero {position: relative; z-index: 9 !important;}

/* ==== SHARED MAIN NAVIGATION — ISAT OVERRIDES ==== */

/* ISAT: no bottom border on nav */
.navigation-main {
    border-bottom: none;
}

/* ISAT: fixed 12px radius regardless of brand's --border-radius */
.navigation-main__link {
    border-radius: 12px;
}

/* ISAT: keep horizontal row at 900px — hamburger handles mobile at 640px */
@media screen and (max-width: 900px) {
    .navigation-main__inner {
        flex-direction: row;
        align-items: center;
    }
}

/* Logo at the top of the page */
.logo-header {
  padding: 1em 0 !important; 
/*  background: linear-gradient(180deg, #54565A 6.77%, #000 68.75%, #000 98.95%, #000 98.96%)!important;*/
}
.logo-header img {
  display: block;
  margin: 0 auto; 
  height: 56px;
}
/* hero content */
.hero-content p, .hero-content p b {
  font-size: 1.50em;
}
.hero-content b, .hero-content em {
  font-size: inherit;
}
.hero-content {
  display: flex;
  max-width: 1200px;
  margin:24px auto 0;;
  align-items: center;
  justify-content: center;
}
.hero-group:nth-child(2) {
  width: 448px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.hero_img {max-width: 420px;}
@media screen and (min-width: 1024px) {
  .hero-content {gap: 148px;}
}
@media screen and (max-width: 1024px) {
  .hero-content {gap: 0; justify-content: space-around;}
}
@media screen and (max-width: 830px) {
  #hero {
    position: relative;
    z-index: 9 !important;
  }
  .hero-content {
    flex-direction: column;
    padding: 0 16px !important;
    height: fit-content;
    gap: 4px;
    text-align: center;
  }
  .hero_img {max-width: 80%;}
  .hero-group:nth-child(2) {width: 100%;}
  .hero-group {max-width: 100%; text-align: center;}
    .hero-content img{max-width: 80%; margin:0px auto; display: block;}
    .desktop-btn { width: 100%;}
}

/* drop down css */
select#select_city {
    /* Removes default down-arrow for Firefox */
    -moz-appearance: none;
      /* Removes default down-arrow for Chrome */
    -webkit-appearance: none;
    appearance: none;
    background: #212121;
    border: none;
    color: white;
    padding: 8px 14px;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    font-family: Open Sans, sans-serif;
  }
  /* Removes default down-arrow For IE10 */
  select::-ms-expand {
    display: none;
  }

  a#cta-selected-city[disabled] {
    background: #5C5C5C;
    color: #000;
  }

/* ==== HTP SECTION (#how-to-play) === */
.how-to-play .table-group {
    max-width: 1024px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 16px;
    display: grid;
    margin: 0 auto;
}

.table-cell {
  background: var(--card-background);
  padding: 8px 16px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.htp-step-number {
  color: var(--primary);
  font-family: var(--font-title);
  font-size: var(--htp-step-number-size, 2rem);
  font-weight: var(--bold);
  line-height: 1;
  margin-bottom: 8px;
}

.htp-icon-image {
  display: block;
  margin: 0 auto;
  width: 120px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .how-to-play .table-group {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
  .table-cell {
    padding: 8px 8px 16px;
  }
}   

@media screen and (max-width: 640px) {
  .how-to-play .table-group {
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }

  .table-cell {
    padding: 12px 12px 16px;
  }
}

/* --- SVG Icons CSS --- */
.htp-icons {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: 120px;
    height: auto;
}
.htp-icons path {
    fill: var(--primary); /* Change the colour of the icon */
}
.icon-drink {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;  
}
.can-logo {
    width: 24px; /*Change the width of the logo that's inside the can*/
    position: absolute;
}

/* === TIPS SECTION (#tips) === */
.tips-box, .tips_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0px;
}
.tips-item, .tips_item {
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tips-icon, .icon_tips {
  display: block;
  margin-right: -32px;
  width: 124px;
  min-width: 124px;
  max-width: 124px;
}
.tips-icon path, .icon_tips path {
  stroke: var(--primary);
  fill: var(--background);
}
.basictips-container h2 {
  margin: 0 auto;
  text-align: center;
}
.tips-item p, .tips_item p {
  margin: 0;
}
.tips-item .btn-group, .tips_item .btn-group {
  padding: 0; 
  margin: 0;
  justify-content: right;
}
@media screen and (max-width: 768px) {
.tips-box, .tips_box {
  grid-template-columns: repeat(1, 1fr);
}
.tips-item, .tips_item {padding: 0;}
.tips-item .btn-group, .tips_item .btn-group {align-items: end;}
.tips-item .tertiary-btn, .tips_item .tertiary-btn {width: fit-content !important;}
}

/* === FAQ SECTION (#faq) === */
.faq {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.faq > div {margin-bottom: 16px;}
.faq h3 {
    font-size: 30px;
    color: var(--primary);
}
.faq-ask {
    cursor: pointer;
    transition: 0.4s;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--background);
    text-transform: inherit;
}
  .faq-ask h3 {
    text-transform: inherit;
    letter-spacing: 0;
  }
.faq-ask:hover {
    background: rgba(51,51,51,0.1);
}
.fa-plus::before {
  content: "\f067";
}
.fa {
    font-family: 'FontAwesome' !important;
    font-size: 14px;
    padding-left: 16px;
    font-style: normal;
}
.faq-ask.active .fa-plus {
    display: none;
}
.faq-ask:not(.active) .fa-minus {
    display: none;
}
.faq-desc {
    margin: 8px auto;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    display: none;
    overflow: hidden;
    font-weight: 300;
}
.faq-ask.active + .faq-desc {
    display: block;
}
.faq-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.faq-columns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media screen and (max-width: 768px) {
    .faq-questions {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:400px) {
  .faq h3 {font-size: 1.25rem;}
}

/* === SOCIAL MEDIA SECTION (#socials) === */
/* --- Social Icons CSS --- */
.sm-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 170px;
  margin-top: 16px;
}
@media screen and (max-width: 756px) {
  .sm-container {gap: 8px;}
}
.sm-container svg path {
  fill: var(--primary); /* Change the icon color itself */
} 
.social-btn {
  background: var(--background); /* Change the icon background color */
  padding: 8px; /* Adjust the padding of the circle - so the higher the padding, the bigger the circle will be. Icon remains the same size */
  border-radius: 64px;
  display: flex;
  align-items: center;
}
.social-btn svg {
  width: 64px; /* Adjust the icon itself */
  height: auto;
}
/* --- End of Social Icons CSS --- */
@media screen and (max-width: 460px) {
  .social-btn svg {
    width: 56px;
  }
}

/* ============================== */
/* ========== PRIZING  ========== */
/* ============================== */

/* Content visibility: default shows simple, Monster shows full */
.prize-content--full { display: none; }
html[data-brand-active="monster"] .prize-content--simple { display: none; }
html[data-brand-active="monster"] .prize-content--full { display: block; }

/* Shared */
.prizing img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prize-details-container, .roles-title { margin: 24px auto; }
.prize-row h3 { color: var(--primary); text-align: center; margin: 24px auto; }
.prize-info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    align-items: center;
    grid-gap: 8px;
    padding: 8px 0;
}

/* Monster only */
html[data-brand-active="monster"] .prize-hero-container {
    background-size: cover;
    background-position: 100% 66%;
    padding: 48px;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 4px solid var(--border);
    gap: 48px;
}
html[data-brand-active="monster"] .prize-hero-container div,
html[data-brand-active="monster"] .prize-row > div { flex: 1 1 50%; text-align: center; }
html[data-brand-active="monster"] .prize-hero-container div:nth-child(2) {
    background: rgba(0, 0, 0, 0.8);
    max-width: 350px;
    width: 100%;
    border: 1px solid var(--border);
    padding: 24px 16px;
}
html[data-brand-active="monster"] .prize-row {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
html[data-brand-active="monster"] .prize-row h4 { color: var(--secondary); }
html[data-brand-active="monster"] .prize-row .p-lg { color: var(--secondary); font-style: italic; font-weight: bold; }
html[data-brand-active="monster"] .prize-info p { margin: 0 auto; }

@media screen and (max-width: 640px) {
    html[data-brand-active="monster"] .prize-hero-container,
    html[data-brand-active="monster"] .prize-row {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        min-height: 100%;
    }
    html[data-brand-active="monster"] .prize-details-container div:nth-child(2) {
        flex-direction: column-reverse;
        padding: 16px 8px;
    }
}
/* ============================== */
/* ========== END OF PRIZING  ========== */
/* ============================== */

/* ============================== */
/* ========== COOLERS  ========== */
/* ============================== */
.cooler-content {padding:24px !important; border-radius: 12px;}
.cooler-content h4 {
    color: var(--primary);
}
.cooler-content ul {
    list-style: disc;
}
.cooler-content li {
    padding: 8px 0;
}
@media screen and (max-width: 840px) {
    .cooler-content {padding: 24px 16px 24px 0 !important;}
}
/* ============================== */
/* ========== END OF COOLERS  ========== */
/* ============================== */

/* ===================================== */
/* ========== PROGRAM DETAILS ========== */
/* ===================================== */
.program-row {
    border-bottom: 1px solid var(--primary);
    padding: 16px 0;
}
.program-row:last-child {
    border: none;
}
.program-split {
    display: grid;
    grid-template-columns: 2fr 3fr;
}
.program-split h3 {
    text-align: left;
    width: 100%;
    margin: 0;
}
.program-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* === Types Section  === */
.type-title {text-align: center; margin: 24px auto 0;}

.program-multiplier--coke {display: none;}
html[data-brand-active="coke"] .program-multiplier--monster {display: none;}
html[data-brand-active="coke"] .program-multiplier--coke {display: block;}

.submission-section .faq-ask {
  background: var(--primary);
  align-items: center;
  padding: 12px 24px;
  /*border-radius: 12px;*/
}
.type-title.faq-ask h3 {
  margin: 0;
  color: var(--primary-foreground);
}
.submission-section .fa {
  margin: auto 0 !important;
  color: var(--primary-foreground) !important;
}

nav.type-nav {display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px;}
nav.type-nav a {font-size: 20px;}

.type-cat {
    border: 1px solid var(--border); 
    padding: 8px; 
    /*border-radius: 32px; */
    margin: 24px auto;
}
.type-row {display: flex; margin: 24px auto; gap: 48px;min-width: 0; /* Forces Chrome to allow the container to shrink */}
.type-row img {max-width: 150px; width: 100%; margin-right: 16px; height: auto;display: block; /* Removes bottom whitespace gap */}
.type-title {margin-bottom: 24px;}
.type-info {min-width:215px; width:15%}
.type-info h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--foreground);
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.3rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
html[data-brand-active="monster"] .type-info h3 {
  font-size: clamp(1.1rem, 1rem + 0.55vw, 1.45rem);
}
.type-info h5 {text-transform: initial;color: var(--primary);}
.type-info h5 span {font-family: var(--font-body); font-weight: normal; }
.type-required p {margin: 0;}
.type-required ul {
    list-style: disc;
    padding: 0 0 0 30px;
}
@media screen and (max-width: 840px) {
    .type-row {flex-direction: column; gap: 8px;}
    .type-row img {margin: 0 auto; max-width: 250px;}
    .type-info {max-width: 225px; width: 100%;}
    .type-cat {display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between;}
    .type-cat.faq-desc {display: none;}
    .type-row {flex: 1 1 auto; max-width: 45%;}
/*    .type-row h4, .type-row h5 {text-align: center;}*/
}
@media screen and (max-width: 740px) {
    nav.type-nav {grid-template-columns: repeat(1, 1fr); gap: 8px; margin-top: 16px;}
    .program-split {grid-template-columns: repeat(1, 1fr);}
    .type-info {max-width: 100%;}
}
@media screen and (max-width: 600px) {
    .type-cat {margin: 16px auto;}
    .type-row {max-width: 100%; padding: 0 16px;}
}

/* equations */
.equations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
  justify-items: center;
  align-items: start;

    border: 1px solid var(--border); 
    padding: 8px; 
    /*border-radius: 32px; */
    margin: 24px auto;
}
.equations > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.equations img {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
}

.last_equation {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 600px) {
  .equations {
    grid-template-columns: repeat(1,1fr);
    justify-items: center;
  }
  .equations > div {justify-content: center;}
    .equations .last_equation {width: 100%;}
}

/* examples */ 
.examples {
    background: var(--card-background);
    border: none;
    text-align: center;
}
.examples h4 {display:block; margin: 0 auto;}
.ex_imgs {display: flex; gap: 24px; padding: 16px; justify-content: center;}
.examples h5 {color: var(--foreground);}
.ex_imgs img{max-width: 100%; width: 100%;}
.ex_imgs_category{border: 1px solid var(--border);
    padding: 8px;
    border-radius: 16px;}
.bonus_badge {
    width: 80% !important;
}
.eq_symbol {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 64px;
        line-height: 1;
        font-weight: var(--bold);
        color: var(--primary);
    }

@media screen and (max-width: 600px) {
    .ex_imgs {flex-direction: column; padding: 8px;}
}

/*Inline styles moved*/

.hidden-iframe {
    display: none;
    visibility: hidden;
}

/*Disable REGISTER NOW link in Main Nav*/
/*#nav_main li:last-child a[data-href="#register-now"] {
    background: #c6c6c6 !important;
    color: #797979 !important;
    opacity: .8;
}*/

/* style="display:none;visibility:hidden"*/

.ga_script{ display:none; visibility:hidden;}

.text-nowrap {
    white-space: nowrap !important;
}


.centered { text-align: center; }