@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;700;900&display=swap");

/* =========================
   Theme Variables
========================= */
:root {
  /* Brand */
  --color-primary: #c93971;
  --color-secondary: #c93971;
  --color-secondary-2: #c93971;
  --color-secondary-3: #d81f72;
  --color-secondary-3-hover: #c31965;

  /* Neutrals */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-ink: #191919;
  --color-charcoal: #231f20;
  --color-charcoal-2: #302c2d;
  --color-gray-1: #4d4c4c;
  --color-gray-2: #a4a4a4;
  --color-gray-3: #adaaaa;
  --color-border: #dddddd;

  /* Status */
  --color-danger: #e51010;
  --color-success: #62cb31;
  --color-label-success: #24633a;

  /* Accents */
  --color-jackpot-bg: #feea51;
  --color-payout-bg: #1c3d3d;
  --color-share: #551692;
  --color-link: #2fa2bc;
  --color-link-hover: #231f20;

  /* Countdown */
  --color-countdown-border: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  --gradient-primary-hover: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  --gradient-panel: linear-gradient(0deg, #e35a46, #fcbd21);
  --color-jackpot-bg: #feea51;
  --color-jackpot-bg-2: #f9a23c;
}

/* =========================
   Base
========================= */
body {
  font-family: "Arial", sans-serif;
  margin-top: 25px;
  font-size: 16px;
  background: var(--color-white);
  transition: all 0.1s;
}

.header-fixed {
  margin-top: 25px;
}

.lottery-logo {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}

/* =========================
   Typography / Headings
========================= */
.title {
  font-weight: 900;
  font-size: 3.5em;
  line-height: 0.9em;
  margin-top: -20px;
  color: var(--color-primary);
}

.title small {
  font-size: 0.5em;
  line-height: 0;
  padding-left: 3px;
  color: var(--color-secondary);
  font-weight: 700;
}

.subtitle {
  padding-bottom: 0;
  Font-family: "Bebas Neue", sans-serif;
}

.description {
  font-size: 2rem;
  max-width: 47.125rem;
  display: block;
  margin: 0px auto;
  line-height: 1.2em;
}

H1, h2 {
  Font-family: "Bebas Neue", sans-serif;
}

h3 {
  Color: var(--color-primary);
Font-family: "Bebas Neue", sans-serif;
font-size: 3rem;

}

h4 {
  font-size: 2.5rem;
  color: var(--color-primary);
  padding: 0 0 1rem;
Font-family: "Bebas Neue", sans-serif;
}

.m-b-lg h2 {
  color: var(--color-payout-bg);
  font-size: 1.875rem;
  padding: 0 0 1rem;
  font-weight: 700;
}

.column-right .m-b-lg h3 {
  color: var(--color-primary);
}

.column-right .m-b-lg h5 {
  color: var(--color-secondary-3);
  font-weight: 700;
}

/* =========================
   Countdown
========================= */
.countdown-wrapper {
  height: auto;
  text-align: right;
  font-size: 1.2em;
  width: 100%;
  padding-bottom: 10px;
}

.countdown-wrapper .countdown {
  color: var(--color-danger);
}

.countdown-to-digits {
  display: block;
  margin-top: 10px;
}

.countdown-to-digits > div {
  width: 45px;
}

.countdown-to-digits > div + div {
  margin-left: 4px;
}

.countdown-to-digits .digit {
  background: transparent;
  color: var(--color-white);
  font-weight: 700;
  font-size: 27px;
  border: 1px solid var(--color-countdown-border);
}

.countdown-to-digits .digit-label {
  color: var(--color-white);
  font-size: 9px;
}

/* =========================
   Panels
========================= */
.hpanel {
  border: none;
  margin-bottom: 25px;
  border-radius: 5px;
}

.hpanel > .panel-heading {
  color: var(--color-black);
  background: var(--color-white);
  padding-left: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.hpanel.hblue .panel-body {
  border: none;
  border-top: 5px solid var(--color-primary);
}

/* Final intended look (later overrides kept) */
.hpanel.hbgblue {
  background: var(--gradient-panel);
  padding: 15px;
}

.hpanel.hbgblue > .panel-heading {
  background: transparent;
  color: var(--color-white);
  padding-bottom: 0;
}

.hpanel.hbgblue .panel-body {
  background: transparent;
  padding: 5px;
}

/* =========================
   Totals / Jackpot
========================= */
.grand_total {
  font-weight: 900;
  font-size: 3.2em;
  color: var(--color-white);
}

.jackpot-info {
  margin-bottom: 5px;
}

.jackpot-container {
  display: block;
  text-align: center;
}

.jackpot-payout-container {
  text-align: center;
}

.jackpot-payout {
  color: var(--color-success);
  margin: -10px 0;
}

.jackpot {
  display: inline-block;
  padding: 10px 20px !important;
  color: #fff;
  margin: 15px 0;
  font-size: 4rem !important;
}


/* =========================
   Buttons
========================= */
.btn-primary {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  padding: 20px;
  border: 0;
  background: var(--color-black);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-charcoal-2);
  color: var(--color-white);
  border: 0;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 20px;
  font-weight: 700;
}

.btn,
a.btn {
  background: #912ebf !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 20px !important;
  padding: 10px 20px !important;
}

a.btn:hover {
 background: #892cb1 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 20px !important;
  padding: 10px 20px !important;
}

.btn-default {
  color: var(--color-black) !important;
}

.quick-order .btn,
.order-ticket .btn {
  background: var(--color-secondary-3) !important;
  color: var(--color-white) !important;
  border: 0 !important;
  border-radius: 20px;
  padding: 10px 20px;
}

.quick-order .btn:hover,
.order-ticket .btn:hover {
  background: var(--color-secondary-3-hover) !important;
  color: var(--color-white) !important;
}

/* Winners page tweak */
.page-winners .btn.btn-primary {
  padding: 7px 20px;
}

/* =========================
   Labels / Badges
========================= */
.label-success {
  background: var(--color-primary);
  color: var(--color-white);
}

/* =========================
   Layout / Utility
========================= */
.logic-or,
.logic-and {
  background: #006e52; /* kept as-is (not used elsewhere) */
}

.terms-of-use-acceptance-form-group .checkbox a {
  color: inherit;
  text-decoration: underline;
}

.banner-txt * {
  text-align: center;
}

.header .order-ticket {
  justify-content: center;
  margin-top: 0px;
}

.header .order-ticket-mobile {
  top: unset !important;
}

.order-ticket-mobile {
  background: var(--color-black);
  color: var(--color-white);
  border: 0;
}

.order-ticket-mobile:hover {
  background: var(--color-charcoal-2);
  color: var(--color-white) !important;
  border: 0;
}

.share {
  margin-top: 0;
}

.share-icon {
  background: var(--color-share) !important;
  border-color: var(--color-share) !important;
}

ul.contact-list span.share-icon {
  color: var(--color-white) !important;
}

ul.contact-list li a:hover {
  color: var(--color-black);
}

.priceList .status,
.card-header.sub-caption span.caption {
  color: var(--color-black);
}

.page-status .pull-right.m-l-sm {
  display: none;
}

.pull-right {
  font-size: 13px !important;
  padding: 5px 10px !important;
}

.hr,
hr,
Hr {
  margin: 20px 0;
}

/* =========================
   Ticket Packs / Summary
========================= */
#ticket-packs .col-md-6:nth-of-type(3) .form-horizontal .form-group:nth-child(4),
#ticket-packs .col-md-6:nth-of-type(3) .form-horizontal .form-group:nth-child(5),
#ticket-packs .col-md-6:nth-of-type(3) .form-horizontal .form-group:nth-child(6) {
  display: none;
}

#ticket-packs .col-md-6 .panel-body p:first-of-type {
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
}

#order-summary span[id^="sum_text_"] {
  display: none;
}

#ticket-packs .jackpot-wrapper {
}

/* =========================
   Bundle Banner
========================= */
.bundle-banner {
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 170px;
  max-width: 500px;
  margin: 0 auto 15px;
  color: var(--color-white);
  padding: 10px 15px;
  border-radius: 5px;
  line-height: 1em;
}

.bundle-banner strong {
  font-size: 1.5em;
  margin-bottom: 3px;
  display: block;
  line-height: 1em;
}

/* =========================
   Prize Images (Lightbox / Slider)
========================= */
.prize-image-wrapper {
  transition: all 0.3s;
}

.prize-listing-list .prize-image-wrapper {
  position: relative;
  min-height: 235px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: var(--color-white);
  width: 100%;
  max-width: 100%;
  max-height: 12.5rem;
  margin-right: 1.875rem;
}

.prize-listing-grid .prize-image-wrapper {
  min-height: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-bottom: none;
}

.prize-image-slider-html {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
}

.prize-image-lightbox {
  display: none;
  opacity: 0;
  transition: all 0.6s;
  position: absolute;
  z-index: 10001;
}

.prize-image-lightbox-html,
.prize-image-lightbox-full {
  position: fixed;
  z-index: 10001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 75%;
  max-height: 75%;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  transition: all 0.3s;
}

.prize-image-lightbox-loader {
  position: fixed;
  z-index: 10001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  max-width: 100px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1));
}

.prize-image-lightbox.prize-image-lightbox-loaded .prize-image-lightbox-loader {
  display: none;
}

.prize-image-lightbox:not(.prize-image-lightbox-loaded) .prize-image-lightbox-full {
  filter: blur(5px);
}

.prize-image-lightbox-overlap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  opacity: 0.95;
  z-index: 10000;
  transition: all 0.3s;
}

.prize-image-lightbox-close,
.prize-image-lightbox-next,
.prize-image-lightbox-prev {
  display: block;
  position: fixed;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.8);
  font-size: 4em;
  color: var(--color-white);
  cursor: pointer;
}

.prize-image-lightbox-close:hover,
.prize-image-lightbox-next:hover,
.prize-image-lightbox-prev:hover {
  color: #ededed;
}

.prize-image-lightbox-close {
  top: 50px;
  right: 0;
  padding: 10px 30px 10px 10px;
  border-radius: 20px 0 0 20px;
}

.prize-image-lightbox-next {
  top: calc(50% - 75px / 2);
  right: 0;
  padding: 13px 30px 10px 30px;
  border-radius: 20px 0 0 20px;
}

.prize-image-lightbox-prev {
  top: calc(50% - 75px / 2);
  left: 0;
  padding: 13px 30px 10px 30px;
  border-radius: 0 20px 20px 0;
}

.prize-image-wrapper .prize-image-slider-navigation {
  z-index: 100;
}

.prize-image-P1 {
  width: 215% !important;
}

/* =========================
   FAQ
========================= */
.faqs h2,
.faqs h5 {
  color: var(--light-neutral-color); /* external var from existing theme */
}

.faqs .banner {
  background: var(--primary-color); /* external var from existing theme */
}

.faq-banner-small {
  display: none;
}

.faq-banner-large {
  display: block;
  width: 100%;
}

.faqs .banner-txt {
  padding: 3.875rem 0 8.75rem;
}

/* Fix invalid casing in original */
.faq-banner-small img {
  display: none !important;
}

/* =========================
   Footer / Links
========================= */
.footer-info-wrap a {
  color: var(--color-gray-1);
  transition: 0.4s ease;
}

.footer-info-wrap a:hover {
  color: var(--color-success);
}

.col-sm-8 a {
  color: var(--color-link);
}

.col-sm-8 a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

.menu-list ul li a:hover {
  color: var(--color-secondary-3);
}

/* Rules links */
.rules-of-play-wrapper a {
  color: var(--color-gray-2);
}

.rules-of-play-wrapper a:hover {
  text-decoration: underline;
  color: var(--color-gray-2);
}

.rules-of-play-wrapper ul {
  padding-left: 32px;
  margin-bottom: 24px;
}

.rules-of-play-wrapper ul li {
  list-style: disc;
}

/* =========================
   Cards
========================= */
.card-col {
  border-left: 0.125rem solid var(--color-gray-3);
}

.card-container {
  min-height: 16.25rem;
  border: 0.125rem solid rgb(0 0 0 / 20%);
}

.m-b-lg ul li {
  display: block;
  margin: 0 5px;
}

/* =========================
   Header / Logo
========================= */
.logo a span.logo_txt {
  display: none;
}

.logo span:not(.logo_txt) {
  max-width: none;
}

#menu-toggle {
  right: 20px;
  padding-top: 12px;
}

.logo_txt {
  display: none !important;
}

/* =========================
   Page-specific Tweaks
========================= */
.page-order .column-left {
  margin-bottom: 80px;
}

.banner-overlay {
  opacity: 0;
}

.banner-content h1 {
  font-size: 5rem;
  line-height: 4.5rem;
}

.winner-txt {
  margin-bottom: 24px;
}

.payout {
  padding: 5px 30px !important;
  background: var(--color-payout-bg);
}

.bg-green {
  background: var(--color-black);
  border-color: var(--color-black);
}

/* =========================
   Responsive
========================= */

/* Small devices */
@media (max-width: 991px) {
  .bundle-banner {
    min-height: 215px;
  }
}

@media (max-width: 767px) {
  .bundle-banner {
    min-height: auto;
  }

  .bundled-tickets .col-sm-4 + .col-sm-4 {
    border-top: 5px solid #006e52; /* kept as-is (not used elsewhere) */
    padding-top: 20px;
    margin-top: 10px;
  }
}

@media (min-width: 200px) {
  .countdown-to-digits {
    margin-top: 8px;
    display: inline-block;
  }

  .countdown-to-digits .digit {
    font-size: 16px;
  }

  .countdown-to-digits .digit-label {
    font-size: 10px;
  }

  .banner-txt .text-center {
    margin-top: 24px;
  }

  .logo img {
    max-width: none;
    width: 155px;
  }
}

@media (min-width: 768px) {
  .countdown-to-digits .digit {
    font-size: 21px;
  }

  .banner-txt .text-center {
    margin-top: 15px;
  }

  .logo img {
    width: 75px !important;
  }
}

/* More specific logo sizing used by table header */
@media (min-width: 768px) {
  .header-wrapper-table .logo img {
    width: 100px !important;
  }
}

/* Tablet header layout */
@media only screen and (max-width: 63.938rem) {
  .header-wrapper-tablet {
    display: flex;
    align-items: center;
  }
}

@media only screen and (max-width: 59.375rem) {
  .header-container {
    padding: 0.55rem 1.55rem;
  }
}

@media only screen and (max-width: 38rem) {
  .header {
    padding: 3.45rem 0 0 !important;
  }

  .card-col {
    padding: 3.0625rem 0;
    border-left: none;
    border-top: 0 !important;
  }

  .banner-content h1 {
    font-size: 2.8rem;
    line-height: 3rem;
  }

  .page-small .show-in-mobile:first-of-type {
    display: block !important;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .logo img {
    width: 400px !important;
  }
}

/* FAQ banner sizing */
@media only screen and (min-width: 38.063rem) and (max-width: 106.875rem) {
  .faq-banner-large img {
    width: auto;
  }
}

@media (min-width: 1061px) {
  .faq-banner,
  .faq-banner img {
    max-width: 100% !important;
  }
}

/* Column tweak */
@media (min-width: 768px) {
  .col-sm-2 {
    width: 11.666667%;
  }
}

/* Page-small tweak */
.page-small .show-in-mobile:first-of-type {
  display: none !important;
}

/* Jackpot text sizing (original intent preserved) */
@media (min-width: 0px) {
  .jackpot-container .subtitle {
    font-size: 3rem !important;
    padding-bottom: 0;
    line-height: 1em;
  }

  .jackpot-value-pull {
    font-size: 4rem !important;
    line-height: 4rem;
  }
}

/* Prize listing responsive */
@media only screen and (max-width: 84.375rem) {
  .prize-listing-list .prize-image-wrapper {
    margin: 0 0 1.875rem;
    border-radius: 0.625rem;
  }

  .sponsors {
    max-width: 513px;
  }
}

@media only screen and (max-width: 38rem) {
  .prize-listing-list .prize-image-wrapper {
    margin: 0 0 0.375rem;
  }
}

/* Misc */
.col-sm-10 h5 {
  font-size: 14px;
}

.col-sm-10 p {
  font-size: 14px;
  line-height: 18px;
}

.faqs .banner-txt h5 {
  Font-family: sans-serif;
}

/* =========================
   Notes
   - External theme vars used: --primary-color, --light-neutral-color
========================= */

.raffle-50 .banner-content {
  Padding-bottom: 8rem;
}

.banner-slider.common .skitter .container_skitter {
  Border: 8px solid var(--color-jackpot) !important;
}
.banner-slider.common {
  Align-items: center;
}

.btn, a.btn {
  background: var(--color-primary) !important;
  color: white;
}
.banner-content {
    justify-content: space-around;
}
.banner-jackpot {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 5em;
}

@media only screen and (max-width: 84.375rem) {
    .banner-txt {
        padding: 4rem 0rem 0 0;
    }
}

@media only screen and (max-width: 59.375rem) {
    .banner-txt {
        max-width: none;
    }
}

.banner-txt {
    justify-content: center;
    padding-top: 0;
}

@media only screen and (max-width: 38rem) {
    .raffle-50 .description {
        line-height: 1.1em;
    }
}
@media only screen and (max-width: 59.375rem) {
    .raffle-50 .banner-content {
        padding-bottom: 9rem;
        flex-direction: column;
    }
}

.info_slide_dots span.image_number {
    border: 0.15rem solid #5516927d;
    background-color: #fff !important;
}

.label_skitter p {
    margin-left: 20px;
    line-height: 1.2em;
}

.footer-menu-wrap {
    margin-top: -9rem;
}

.issued-electronically-only-form-group, 
.issued-electronically-only-info-form-group {
    display: none;
}


.banner-slider.common {
    display: none;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.5rem;
}

p.text-center {
Display:none;
}

.payout {
    	padding: 5px 30px !important;
    	background: none;
}

p.winner-txt {
	Display:none;
}

.jackpot-wrapper {
    	text-align: center;
    	background-color: transparent;
    	color: #000;
    	Padding: 40px 10px;
	border-radius:20px;
}

.banner {
   	min-height: 48.9375rem;
    	margin: 0 0 0.375rem;
}



.jackpot-container .subtitle {
    font-size: 2.7rem !important;
    color: #fff;
    font-weight: bold;
}

.jackpot {
	margin:0;
	color: #942ec1;
}

.subtitle {
	padding-bottom: 10px;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 4rem;
    Color: #fff;
Font-family: "Arial", sans-serif;
}

@media only screen and (max-width: 38rem) {
    .banner-content .card-slider {
        padding-top: 3rem;
        margin-bottom: 0;
    }
}

#nexus-raffle-logo-wrapper {
    	margin: 36px auto 50px auto;

}


.faqs .banner-border {
    	height: 9rem;
}

.banner-border {
   	 transform: none;
}

.column-left .two-column-container {
	Display:none;
}

.share {
	Display:none;
}

.column-right h3 {
    color: #231f20 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 35px !important;
    Font-family: "Arial", sans-serif;
}

.column-right .m-b-lg h4 {
    color: #231f20 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 35px;
    Font-family: "Arial", sans-serif;
}

.payout {
font-size: 150px !important;
    margin: 20px 0;
    color: #fff;
}

.header .order-ticket .btn {
    font-weight: 900 !important;
    font-size: 25px;
    font-family: "Arial Black", sans-serif;
}
.quick-order .btn, .order-ticket .btn {
    font-weight: 900 !important;
    font-size: 18px;
    font-family: "Arial Black", sans-serif;
}

.btn, a.btn {
    font-weight: 900 !important;
    font-size: 18px;
    font-family: "Arial Black", sans-serif;
}

.date-subtitle {
	Color:#231f20;
	Font-size:27px;
	Font-weight:900;
}

.important-date {
	Color:#834e9f;
	Font-size:27px;
	Font-weight:900;
	Margin-bottom:10px;
}

.prices {
	Font-size:27px;
	margin-bottom:10px;
	color:#231f20;
}

ul.contact-list li a {
	Font-size:27px;
}

.column-right .m-b-lg + .m-b-lg {
    	border-top: 0.125rem solid #000;
    	margin-top: 35px;
    	padding-top: 35px;
}

.contact-socials li {
	display:inline-block !important;
	margin:10px;
	font-size:30px;
}

.contact-socials li img {
	Width:50px;
}

.gaming-bar-sask {
	Display:none !important;
}

.rules-of-play-wrapper {
	Font-size:22px;
}

.rules-of-play-wrapper a {
	Font-size:22px;
	Color:#834e9f;
	Font-weight:bold;
	Text-decoration:underline;
}

.footer-info {
	background:#834e9f;
	Text-align:center;
	Color:#fff;
	Padding:50px;
}

.footer-menu-wrap {
    	margin-top: 0;
}

.column-left {
    	padding: 0 0 2.375rem;
}

.prize-content {
	Font-size:22px;
	Line-height:30px;
	Color:#000;
}

hr {
    	background: #000;
    	opacity: 1;
}

.jackpot-container {
	Display:none;
}

.header .order-ticket .btn { 
	border:2px solid #fff !important;
}

.heading-top {
    	margin: 0 auto;
    	color: #d32a75;
    	font-size: 35px;
    	margin-bottom: 20px;
    	font-weight: 900;
}

@media only screen and (max-width: 38rem) { 
.banner-jackpot {
    	margin-top: -100px;
}
.footer-menu-wrap {
    	margin-top: 10px;
}

.payout {
   	font-size: 70px !important;
}

.banner.raffle-50 .banner-content {
        padding-bottom: 6.4375rem;
        padding-top: 29.4375rem !important;
    }



}
