


.main_content_area-row-1-background-layers {
  background: white !important;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* First row blocks */
.static_1, .static_2, .static_3 {
  flex: 1 1 calc(33.333% - 20px); /* Each takes 1/3 of the row with spacing */
}

/* Second row blocks */
/*
.carousel-2, .carousel-3 {
  flex: 1 1 calc(50% - 20px); 
}
*/

#carousel-2-wrapper,
.carousel-3 {
  flex: 1 1 calc(50% - 20px);
}

/* Content block styling */
.content-block {
/*  background-color: #0735a5; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  border-radius: 8px;
  overflow: hidden; /* Ensures content doesn't overflow container */
}

.content-block.carousel-1 {
    border-radius: 0px !important;  
    margin-top: 50px;
}

.carousel-1 .hpslider {
    border-radius: 0px !important;  
}

/* Content block images */
.content-block img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the container while maintaining aspect ratio */
  display: block; /* Removes bottom space caused by inline images */
  cursor: pointer;
}


/* Quick Menu styling */
.quick-menu {
  background-color: white;
  border: 2px solid #f6f6f6;
  border-radius: 8px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quick-menu h3 {
  font-size: 1.5rem;
  color: #0735a5;
  margin-bottom: 0px;
  margin-top: 0px;
}

.quick-menu ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.quick-menu ul li {
  margin-bottom: 0px;
}

.quick-menu ul li a {
  background-color: #e8004d;
  color: #fff;
  display: block;
  margin: 2px;
  padding: 10px 50px;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .static_1, .static_2, .static_3, .carousel-1, .carousel-2, .carousel-3 {
    flex: 1 1 100%;
  }
  
  .content-section {
      gap: 15px;
      padding: 15px;
  }

  .quick-menu {
    order: -1; /* Move Quick Menu to the top */
  }
}

  
  .hpslider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.hpslider {
  width: 100%;
/*  max-width: 600px; */
 /* height: 400px; */
  margin: 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overflow: hidden;
}

.slides {
  display: flex;
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overflow: hidden;
   
}
/* 
.carousel-2 .slides, .carousel-3 .slides {
min-height: 170px; 
}

*/

.slide:nth-of-type(even) {
  background-color: rgb(250, 246, 212);
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
 /* height: 400px; */
  scroll-snap-align: center;
  margin-right: 0px;
  box-sizing: border-box;
  background: white;
  transform-origin: center center;
  transform: scale(1);
}

.slide__text {
  font-size: 40px;
  font-weight: bold;
  font-family: sans-serif;
}

.slide a {
  background: none;
  border: none;
}

a.slide__prev,
.hpslider::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 5%;
}

a.slide__next,
.hpslider::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 5%;
}

.hpslider::before,
.hpslider::after,
.slide__prev,
.slide__next {
  position: absolute;
  top: 48%;
  width: 15px;
  height: 15px;
  border: 0px;
  border-width: 0 0px 0px 0;
  padding: 3px;
  box-sizing: border-box;
}
/*
.hpslider::before,
.hpslider::after {
  content: "";
  z-index: 1;
  background: none;
  pointer-events: none;
}
  */


  
  div.slide__prev, div.slide__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(204, 204, 204, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 10;
}

div.slide__prev::before, div.slide__next::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #404040;
  transform: rotate(45deg);
}

div.slide__prev::before {
  transform: rotate(225deg); /* Left arrow */
}

div.slide__next::before {
  transform: rotate(45deg); /* Right arrow */
}

div.slide__prev {
  left: 15px;
  padding-left: 10px;
}

div.slide__next {
  right: 15px;
  padding-left: 10px;
}

.hpslider__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px; /* Adjust spacing between buttons */
  width: 100%;
  padding: 10px 0;
}

.hpslider__navlinker {
  width: 15px;
  height: 15px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hpslider__navlinker:hover,
.hpslider__navlinker:active,
.hpslider__navlinker.active { 
    background-color: #e8004d;
}

@media (max-width: 768px) {
  .hpslider__nav {
    gap: 8px;
    padding: 10px;
  }

  .hpslider__navlinker {
    width: 12px;
    height: 12px;
  }
}


    .co-banner{
    background: whitesmoke;
    text-align: center;
    font-size: xx-large;
    font-weight: 900;
    width: 100%; 
    position: relative; 
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.co-banner:after {
margin: 0 auto;
    align-items: center;
    content: '';
    position: absolute;
    pointer-events: none;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001489;
    pointer-events: none;
    display: none;
}

.co-banner .date {
    color: white;
    position: relative;
    margin-top: -30px;
    padding-bottom: 8px;
    z-index: 100;
    font-weight: 700;
    font-size: 14px;
}

.co-banner .pool-closing {
    color: #001489;
    font-size: 11px;
    font-weight: 500;
    padding-top: 6px;
    position: relative;
    z-index: 100;
}

.co-banner .tab-logo {
    left: 138px;
    position: relative;
    top: -10px;
    width: 52px;
}

.co-banner .logo-icons {
    padding-top: 8px;
    margin-bottom: -6px;
    margin-right: 0;
}

.co-banner .footer-content {
    z-index: 100;
    position: absolute;
    bottom: 70px;
    left: 69px;
    color: #001489;
    font-size: 14px;
    line-height: 18px;
    padding-top: 0px;
    font-weight: 800;
}

.co-banner div {
    margin-right: 0px;
}

.co-banner .add-in, .co-banner .carryover  {
    color: white;
    position: relative;
    padding-top: 0px;
    z-index: 100;
    font-weight: 700;
    font-size: 25px;
}

.co-banner .add-in div, .co-banner .carryover div   {
    background: #E0004D;
    margin: 0 auto;
    padding: 3px 16px;
    font-size: 26px;
    line-height: 27px;
    font-weight: 900;
    width: 230px;
}

.co-banner .add-in div span, .co-banner .carryover div span {
    font-size: 38px;
    line-height: 42px;
}


.co-banner .likely-pool, .co-banner .guaranteed-pool  {
    color: white;
    position: relative;
    padding-top: 5px;
    z-index: 100;
    font-weight: 700;
    font-size: 24px;
}

.co-banner .likely-pool-amount  {
    font-weight: 900;
    font-size: 33px;
    line-height: 27px;
    font-family: "Arial Black", Gadget, sans-serif;
}

.co-banner .likely-pool-combo, .co-banner .guaranteed-pool-combo  {
position: relative;
    color: #001489;
    padding-top: 5px;
    z-index: 100;
    font-weight: 700;
    font-size: 15px;
    margin-right: 0;
}

.co-banner .guaranteed-pool-only  {
    background: #e0004d;
    color: #fff;
    font-family: Arial Black, Gadget, sans-serif;
    font-size: 18px;
    font-weight: 700;
    /* margin: 30px auto 0; */
    padding: 7px;
    position: relative;
    width: 300px;
    z-index: 100;
    display: inline-block;
}

.co-banner .guaranteed-pool-only {
    background: #E0004D;
    font-size: 18px;
    font-family: "Arial Black", Gadget, sans-serif;
  margin-top: 12px;
}

.co-banner .likely-pool-only  {
    background: #e0004d;
    color: #fff;
    font-family: Arial Black, Gadget, sans-serif;
    font-size: 18px;
    font-weight: 700;
    /* margin: 30px auto 0; */
    padding: 7px;
    position: relative;
    width: 300px;
    z-index: 100;
    display: inline-block;
}

.co-banner .likely-pool-only {
    background: #E0004D;
    font-size: 18px;
    font-family: "Arial Black", Gadget, sans-serif;
  margin-top: 12px;
}

.co-banner .carryover, .co-banner .add-in   {
    display: inline-block;
    background: #E0004D;
    margin: 0 auto;
    padding: 3px 16px;
    font-size: 15px;
    font-weight: 900;
}

.co-banner .carryoveronly-amount {
    display: inline;
    margin-right: 0;
    font-size: 72px;
    line-height: 46px;
}

.co-banner .guaranteed-pool-text, .co-banner .likely-pool-text  {
    margin: 0 auto;
    padding: 3px 16px;
    font-size: 45px;
    font-weight: 900;
}

.co-banner .pool-logo {
   left: 200px;
    position: relative;
    top: -37px;
    width: 112px;
}

.co-banner .product-image1  {
    position: absolute;
    z-index: 95;
    width: 151px;
    margin-right: 0;
    right: -30px;
    top: 51px;
}

.co-banner .product-name  {
    font-size: 30px;
    text-transform: uppercase;
    padding-left: 0px;
    color: #001489;
    margin-right: -14px;
}

.co-banner .disclaimer  {
    z-index: 102;
    color: #001489;
    font-size: 8px;
    line-height: 10px;
    font-weight: 400;
    position: absolute;
    margin: 0;
    right: 0px;
    bottom: 0px;
    padding: 5px;
    padding-bottom: 15px;
}

.co-banner .cta-button {
background-color: #011896;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    margin: 5px auto;
    padding: 3px 20px;
    position: relative;
    width: 112px;
    z-index: 100;
}

.co-banner .cta-button:hover {
    background-color: #e8004d;
    color: white;
    cursor: pointer;
}

.co-banner .logo-icons {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* align vertically */
  gap: 12px;               /* optional spacing between logos */
  padding-top: 8px;
  margin-bottom: -6px;
  margin-right: 0;
  position: relative; /* useful if children have absolute/relative positioning */
}

.co-banner .tab-logo,
.co-banner .pool-logo {
  position: relative;
  top: 0;
  left: 0;
  width: auto; /* or a specific width if needed */
  height: 28px; /* ensure consistent height if they differ */
}



@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.co-banner .pool-logo.animate-slide {
  animation: slideInRight 0.6s ease-out forwards;
}

.carryover.animate-pop span,
.add-in.animate-pop span,
.likely-pool-only.animate-pop .likely-pool-amount,
.guaranteed-pool-only.animate-pop .likely-pool-amount,
.likely-pool-combo.animate-pop .likely-pool-amount,
.guaranteed-pool-combo.animate-pop .likely-pool-amount {
  animation: popIn 0.5s ease-in-out;
}

.slide:nth-of-type(even) {
    background-color: #f5f5f5 !important;
}

.slide {
    background-color: #f5f5f5 !important;
}


.carousel-2 .co-banner {
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px; /* Optional */
  overflow: hidden; /* Prevent long text from breaking layout */
}

/* Mobile screens (max-width: 767px) */
@media (max-width: 767px) {
.carousel-2 .slides {
        height: 170px;
 /* max-width: 300px; */
    }
  
  #carousel-2-wrapper {
width: 100%;
}
  
.carousel-3 .slides {
     /*   height: 170px; */
    }
  
  .car-image {
display: none;
}
  
  .hubdb-value {
    padding: 20px;
    padding-top: 20px;
}
}

@media (min-width: 768px) {
    .carousel-2 .slides {
    min-height: 170px; /* Adjust as needed */
  /*  max-width: 424px; */
  }
   .carousel-2.feed .slides {
    min-height: 170px; /* Adjust as needed */
    max-width: 424px; 
  }
  
  .carousel-3 .slides {
    min-height: 180px; /* Adjust as needed */
  }

  .carousel-2.feed .slide {
    min-height: 170px; /* Match slides container */
  }
  
  .carousel-2 .slide {
    min-height: 180px; /* Match slides container */
  }
  
  .carousel-3 .slide {
    min-height: 180px; /* Match slides container */
  }

  .carousel-2 .co-banner {
    height: 100%; /* Stretch inner banner to match slide height */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 870px) {
  .carousel-2.feed .slides {
    width: 100%;
 max-width: 430px;
  }
}

@media (min-width: 870px) {
  .carousel-2.feed .slides {
    width: 100%;
 max-width: 430px;
  }
}

@media (min-width: 1049px) {
  .carousel-2.feed .slides {
    width: 100%;
 max-width: 604px;
  }
}

@media (min-width: 1168px) {
  .carousel-2.feed .slides {
    min-height: 220px; /* Adjust as needed */
  }

  .carousel-2.feed .slide {
    min-height: 220px; /* Match slides container */
  }
}

@media (min-width: 1324px) {
  .carousel-2.feed .slides {
 /*   min-height: 250px; /* Adjust as needed */
  }

  .carousel-2.feed .slide {
    min-height: 250px; /* Match slides container */
  }
}

@media (min-width: 1600px) {
  .carousel-2.feed .slides {
    min-height: 313px; /* Adjust as needed */
  }

  .carousel-2.feed .slide {
    min-height: 313px; /* Match slides container */
  }
}


.hubdb-value {
    font-family: sans-serif;
    text-align: center;
    padding: 20px;
    padding-top: 9px;
    background: #e8004d;
    color: white;
    margin: 2px 20px;
    border-radius: 10px;
}

#mystery-bet-count {
font-weight: 700;
}

#sc-claim-cta {
text-decoration: underline;
  cursor: pointer;
}


.car-image {
width: 80px;
    position: relative;
    margin-bottom: -17px;
    margin-right: 13px;
}


