.videoHeader {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 6px 10px;
  font-size: 16px;
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  font-weight: bold;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 34px;
}

.headerText {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.smallText {
  margin-left: 5px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  padding-top: 4px;
}

.RoundId{
  margin-left: 5px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  padding-top: 4px;
}

.videoHeader2 {
  display: none;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-primary, #0088cc);
  color: var(--text-primary, #ffffff);
  /* padding: 6px 10px; */
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.5);
  position: relative;
  width: 100%;
  flex-wrap: nowrap;
}

.navTabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  width: auto;
}

.navItem {
  margin: 0;
  padding: 0;
}

.navLink {
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-primary, #ffffff);
  background-color: transparent;
  border: none;
  font-size: 12px;
  font-weight: bold;
  transition: background-color 0.2s;
}

.navLink:hover {
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.navLink.active {
  /* background-color: rgba(255, 255, 255, 0.2); */
  border-top: 1px solid #ffffff;
  /* height: 34px; */
}

.pe2 {
  padding-right: 0.5rem;
}

.casinoRid {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .videoHeader .smallText {
    display: none;
  }

  .videoHeader2 {
    display: flex;
  }
}

@media (max-width: 1199px) {
  .videoHeader2 {
    background-color: var(--bg-primary, #0088cc);
    border-bottom: 0;
    box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
    flex-wrap: nowrap;
  }

  .navTabs {
    width: auto;
  }
}

@media (max-width: 767px) {
  .videoHeader2 {
    box-shadow: unset;
  }
}