/* .top-bar{
    background: #8f8f8f;
    height: auto;
} */
 .top-bar{
  /* background: #8f8f8f; */
  background: rgba(183, 145, 181, 0.85);
  height: 115px;
}

#wrapper {
    padding-top: 179px;
}

.topbar-social  {
    left: 0px;
}

.topbar-social li a  {
	font-size:22px;
    float: left;
}

.logo-holder{
    padding-left: 8px;
    top: 10px;
    width: 50%;
    height: auto;
    text-align: left;
}

.video-background {
  position: absolute;
  top: -100;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-holder img {
  max-width: 100%;
  height: 100%;
}

/*Text Marquee*/
/* Marquee styles */
.marquee-holder{
    max-width: 100%;
    display: block;
    clear: both;

}
.marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
  }
  
  .marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  
  /* Pause animation when reduced-motion is set */
  @media (prefers-reduced-motion: reduce) {
    .marquee__content {
      animation-play-state: paused !important;
    }
  }
  
  /* Enable animation */
  .enable-animation .marquee__content {
    animation: scroll 20s linear infinite;
  }
  
  /* Reverse animation */
  .marquee--reverse .marquee__content {
    animation-direction: reverse;
  }
  
  /* Pause on hover */
  .marquee--hover-pause:hover .marquee__content {
    animation-play-state: paused;
  }
  
  /* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
  .marquee--fit-content {
    max-width: fit-content;
  }
  
  /* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
  .marquee--pos-absolute .marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Enable position absolute animation on the duplicate content (last-child) */
  .enable-animation .marquee--pos-absolute .marquee__content:last-child {
    animation-name: scroll-abs;
  }
  
  @keyframes scroll-abs {
    from {
      transform: translateX(calc(100% + var(--gap)));
    }
    to {
      transform: translateX(0);
    }
  }
  
  /* Other page demo styles */
  .marquee__content > * {
    flex: 0 0 auto;
    color: white;
   /*  background: dodgerblue; 
    border-radius: 0.25rem;
   */
    margin: 2px;
    padding: 1rem .5rem;
    text-align: center;
  }
  
 .marquee {
    /*  border: 2px dashed lightgray; */
    background-color: #6c6c6c;
  }


  /* ======= HERO START ============ */
  .hero-bg-image {
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
   /* height: 200px;  Adjust height as needed */
    
 }

.item-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
    z-index: 1;
}

.item-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end; /* Push content to the bottom */
    text-align: left;
    padding: 15px; /* Optional: Add some padding */
   /*  height: 100%; */
   height: 300px;
}


.item-container div {
    position: relative;
    z-index: 2;
}
.hero-wrapper.container {
    width: 100% !important;
    max-width: 100% !important;
}
.hero-wrapper.container .row a:hover{
    color: #fff;
    text-decoration: none;
}
.hero-border {
    border: solid #d462cf;
}


.hero-wrapper.container > .row {
    display: flex;
}
.hero-wrapper.container .hero-column {
    display: flex;
    flex-direction: column;
}
.hero-wrapper.container .hero-column > div {
    flex: 1;
}

.hb-1 {
    border-width: 5px 5px 5px 5px;
}
.hb-2 {
    border-width: 0px 5px 5px 5px;
}
.hb-3 {
    border-width: 0px 5px 5px 5px;
}
.hb-4 {
    border-width: 0px 5px 5px 5px;
}

.hero-story-link {
  display: contents;
}

    .share-wrapper {
      margin-top: 15px;
      margin-bottom: 20px;
    }

    .share-wrapper a:not(:last-child) {
      /* Add your styles here */
      border-right: 1px solid #eee;
    }

    .share-container{
      border: 1px solid #eee;
    }

    .share-container a:hover {
      text-decoration: none;
    }

    .single-post-content_text {
      text-align: left;
    }
    .single-post-content_text strong {
      font-weight: bold;
    }
.photodiv{
    color: #000000;
    font-size: 10px;
    padding: 4px;
    margin: 5px;

}

.photodiv:last-child {
  border: none;
  float: none;
  text-align: center;
}


.photodiv img{
    max-width: 100%;
    height: auto;
}

.story-photo img{
    max-width: 100%;
    height: auto;
    margin:20px 0 10px 0;
}

.story-photos a, .story-videos a{
    color: #d462cf;
    text-decoration: none;
  margin: 3px;
  display: inline-block;
}

.single-post-content_text a{
    color: #d462cf;
    text-decoration: underline;
}

.single-post-content_text a:hover{
    color: #565656;
}

.story-meta .widget-title{
    margin: 20px 0 10px 0;
}

div.tp-player-song-tiles{
  font-size: 16px;
    white-space: normal;
    line-height: normal;
    text-overflow: unset;
}
.tp-playlist-marker{
  display:none;
}
.tp-playlist-song{
  padding: 10px;
}

#view-scoreboards{
  padding: 0;
  background-color: #eee;
}

#view-scoreboards:hover{
  background-color: #cdcdcd
}

.show-scoreboards .modal-title{
  color: #d462cf;
  font-size: 20px;
  font-weight: bold;
}

.scoreboard {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  justify-content: flex-start;
}

.game-date h2 {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  text-align: left;
}

.game-date .score-card-header span{
  color: #696969;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
}

.scoreboard .score-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  width: auto;
}

.scoreboard .score-card-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #666;
  font-size: 14px;
  font-weight: bold;
}

.scoreboard .team {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.scoreboard .team div{
  white-space: nowrap;
}

.scoreboard .team img {
  width: 20px;
  object-fit: cover;
}

.scoreboard .team-name {
  font-size: 12px;
  font-weight: bold;
  flex: 1;
  text-align: left;
  color: #565656;
}

.scoreboard .score {
  font-size: 14px;
  color: #000;
  margin-left: 15px;
}


.station-info li{
  text-align: left;
    padding-bottom: 5px;
}

.station-info .link{
  display: inline-block;
  width: auto;
}

.station-info .link a{
  width: auto;
  font-size: 20px;
  padding: 5px;
  margin: 5px;
}

.station-info:not(:last-child) {
  border-bottom: 1px dashed rgb(231, 231, 231);
  margin-bottom: 5px;
}


.alexaInstuctionsModal h5 {
  font-size: 20px;
  font-weight: bold;
  color: #2e182d;
  margin-bottom: 7px;
}
.alexaInstuctionsModal strong {
  font-weight: bold;
}
.alexaInstuctionsModal p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.alexaInstuctionsModal em {
  font-style: italic;
  color: #d462cf;
}

.alexaInstuctionsModal ul, .alexaInstuctionsModal ol {
  margin-left: 20px;
  padding-left: 10px;
}
.alexaInstuctionsModal li {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
   
    .hb-1 {
        border-width: 10px 10px 10px 10px;
    }
    .hb-2 {
        border-width: 10px 10px 10px 0px;
    }
    .hb-3 {
        border-width: 0px 10px 10px 10px;
    }
    .hb-4 {
        border-width: 0px 10px 10px 10px;
    }


}
@media (min-width: 992px) {
    .hb-1 {
        border-width: 10px 10px 10px 10px;
    }
    .hb-2 {
        border-width: 10px 10px 10px 0px;
    }
    .hb-3 {
        border-width: 10px 10px 10px 0px;
    }
    .hb-4 {
        border-width: 0px 10px 10px 0px;
    }
    .hb-1 > div{
        padding-top: 450px;
    }
}
/* ======= HERO END ============ */

.latest-articles-header .ajax-nav li {
  float: none;
}

.latest-articles-header .ajax-nav a  {
  width:100%;
}

.latest-articles-header a{
  color: inherit;
  text-decoration: none;
}
.latest-articles-header a:hover{
    color: #fff;
    background-color: #222;
    text-decoration: none;
}
.latest-articles-content a,.latest-articles-content a:hover{
    color: inherit;
    text-decoration: none;
}
a.post-category-marker:hover,a.post-category-marker{
    color: #fff;
    text-decoration: none;
    background: #222;
}

.tabs-widget .tabs-menu li {
  width: 20%;
}

.post-widget-item-media{
    width:15%;
}
.post-widget-item-media img{
    max-width:100%;
}
.post-widget-item-content{
    width:85%;
}
.post-widget-item a{
    color:#d462cf;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display:inline-flex;
    width:80%;
    /* float:left; */
}
.tabs-widget .tabs-menu a:hover{
  text-decoration: none;
  background-color: #d462cf;
}
#up-sports-briefs .about-wrap a{
  color:#d462cf;
}
#up-sports-briefs .pwic_opt{
  text-align: left;
}
#up-sports-briefs .pwic_opt li{
  float: none;
}
/* #wrapper{
  padding-top:128px;
} */
.adplugg-tag img {
  margin: 0 auto;
}
div.top-ad-wrapper .adplugg-tag .adplugg-ad {
  width: 234px;
  display: inline-block;
  margin: 2px; 
}

div.sidebar-ad-wrapper{
  display: inline-block;
} 

div.sidebar-ad-wrapper .adplugg-tag{
  margin-bottom: 40px;
  padding-left: 30px;
}

.adplugg-tag.bottom .adplugg-ad{
  display: inline-block;
  margin: 5px;
}

div.top-ad-wrapper {
  height: 64px;
}

@media (min-width: 767px) {
  .top-ad-wrapper div.d-none:has(div.adplugg-tag:empty) {
  display: none;
}
.top-ad-wrapper:has(.d-none div.adplugg-tag:empty) {
  height: 0px;
}
}


@media (max-width: 767px) {
  .top-ad-wrapper div.d-block:has(div.adplugg-tag:empty) {
    display: none !important;
  }
  .top-ad-wrapper:has(.d-block div.adplugg-tag:empty){
    height: 0px;
  }
  header.main-header:has(.d-block div.adplugg-tag:empty) ~ #wrapper {
     padding-top: 114px;
  }
}


  @media (min-width: 630px) {
    .marquee-holder{
        clear: none;
    
    } 
    .latest-articles-header .ajax-nav li {
        float: left;
    }
    .marquee {
        /*  border: 2px dashed lightgray; */
        top:10px;
        border-radius: 0.25rem;
        left: 10px;
      }

      
.photodiv{
  border: 1px solid #144144;
  float: left;

}
.photodiv:last-child {
  border: none;
  float: none;
  text-align: center;
}
.photodiv:last-child {
  border: none;
  float: none;
  text-align: center;
}
  }
  @media (min-width: 717px) {
    .top-bar{
        height: 75px;
    }
    #wrapper {
        padding-top: 139px;
    }
    header.main-header:has(.d-none div.adplugg-tag:empty) ~ #wrapper {
      padding-top: 76px;
   }

  }  @media (max-width: 717px) {
 

    header.main-header:has(.d-block div.adplugg-tag:empty) ~ #wrapper {
      padding-top: 114px;
   }
  }

  .share-title {
    font-family: playfair display;
    font-size: 12px;
    font-weight: bold;
}

  .ver-share .share-container {
    width: auto;
    /* float: left;
    border: 1px solid #eee;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgb(0 0 0 / 5%); */
}

  @media only screen and (max-width: 856px) {
    .spc_column {
        padding-left: 0;
        padding-top: 100px;
    }
}

  
@media (min-width: 769px) and (max-width: 992px) {
  
  .latest-articles-header .ajax-nav li {
    float: none;
}
.latest-articles-header .ajax-nav  {
  width:100%;
}
}

  @media (min-width: 1065px) {
    .topbar-social  {
        left: 10px;
    }
  }



  