@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);
@font-face {
  font-display: swap;
  font-family: "Clock";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/clock.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Digital";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/digital.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Jawbreak";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Jawbreak-Sans.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Inter-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/Inter-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/InterTight-Light.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/InterTight-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/InterTight-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/InterTight-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "InterTight";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/InterTight-Bold.ttf") format("truetype");
}
.article {
  background-color: #fff;
  color: #0D0F12;
  padding: 2rem;
  padding: 7%;
  font-size: clamp(17px, 4vw, 19px);
  line-height: 1.6;
}
@media all and (min-width: 768px) {
  .article {
    line-height: 1.75;
  }
}
.article h1 {
  font-size: clamp(22px, 6vw, 28px);
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
.article p {
  margin: 24px 0;
}
.article p:first-child {
  margin-top: 0;
}
.article p:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 768px) {
  .article p {
    margin: 32px 0;
  }
}

.article-wrapper {
  padding: 0.5rem;
}
@media all and (min-width: 768px) {
  .article-wrapper {
    padding: 0;
  }
}

* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #00B55F;
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  color: #00E87A;
}

b, strong {
  font-weight: 600;
}

body {
  background-color: #0D0F12;
  color: #F0F2F5;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
body:has(#ticker) {
  padding-bottom: 122px;
}
@media all and (min-width: 768px) {
  body:has(#ticker) {
    padding-bottom: 135px;
  }
}

img {
  height: auto;
  max-width: 100%;
}

#main {
  min-height: calc(100vh - 64px);
}
body:has(#ticker) #main {
  min-height: calc(100vh - 164px);
}
@media all and (min-width: 768px) {
  #main {
    padding: 3rem;
  }
}
#main .featured-image {
  padding: 0.5rem;
}
@media all and (min-width: 768px) {
  #main .featured-image {
    margin-bottom: 3rem;
    padding: 0;
  }
}
#main .featured-image img {
  border: 1px solid #F0F2F5;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  position: relative;
}

#board {
  display: flex;
  flex-direction: column;
  grid-gap: 1.5rem;
  padding: 1.5rem 0.5rem;
}
@media all and (min-width: 768px) {
  #board {
    grid-gap: 3rem;
    padding: 0;
  }
}

#footer {
  font-size: 0.75em;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  background-color: #161920;
  border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
  display: flex;
  flex-direction: column;
  min-height: 4rem;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 99;
}
.site-header .container {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  justify-content: space-between;
  width: 100%;
}
.site-header .left, .site-header .right {
  align-items: stretch;
  display: flex;
}
.site-header .left {
  justify-content: flex-start;
  text-align: left;
  width: auto;
}
.site-header .right {
  flex: 1;
  justify-content: flex-end;
  text-align: right;
  width: 100%;
}
.site-header .logo {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.site-header .logo__icon svg {
  display: block;
  fill: #00E87A;
  height: 1.5rem;
}
.site-header .logo__text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
  color: #F0F2F5;
}
.site-header .logo__text span {
  color: #00E87A;
}

.nav {
  display: flex;
  max-width: 256px;
}
.nav__link {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.375rem;
  justify-content: center;
  padding: 0 0.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .nav__link {
    min-width: 4rem;
  }
}
.nav__link:after {
  background-color: transparent;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.nav__link--active:after {
  background-color: #00E87A;
}
.nav__link--active .nav__text {
  color: #F0F2F5;
}
.nav__link--active .nav__icon svg {
  fill: #00E87A;
}
.nav__link svg {
  display: block;
  fill: #7A8494;
  height: 1.25rem;
  width: auto;
}
.nav__text {
  color: #7A8494;
  font-size: 0.625rem;
  line-height: 1;
  text-transform: uppercase;
}

body.pick-is-in #pick-is-in {
  opacity: 1;
}
body:not(.pick-is-in) #pick-is-in {
  opacity: 0;
  top: -100%;
  transition: opacity 1s ease, top 0s linear 1s;
}

.pick-presentation {
  background-color: black;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
}
.pick-presentation.audio-ready #loader {
  opacity: 0;
}
.pick-presentation.background-loaded .pick-presentation__background img {
  opacity: 0.5;
}
.pick-presentation.close {
  opacity: 0s;
  transition: opacity 0.5s ease-in;
}
.pick-presentation__background {
  bottom: 0;
  left: -10px;
  position: absolute;
  right: 0;
  top: -50px;
}
@media all and (min-width: 768px) {
  .pick-presentation__background {
    left: 0;
    right: -15px;
    top: 0;
  }
}
.pick-presentation__background img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: 0.2s ease-out;
  width: 100%;
}
.pick-presentation__buttons {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.pick-presentation__buttons button {
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(241, 241, 241) 50%, rgb(225, 225, 225) 51%, rgb(246, 246, 246) 100%);
  border: 1px solid white;
  border-radius: 0;
  color: #0D0F12;
  cursor: pointer;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  height: 48px;
  left: 50%;
  margin-top: 24px;
  outline: 2px solid black;
  padding: 0 24px;
  position: absolute;
  text-shadow: 0 1px rgb(255, 255, 255);
  text-transform: uppercase;
  white-space: nowrap;
}
.pick-presentation__buttons button:disabled {
  opacity: 0;
  top: -100%;
  transform: translate(-50%, -50%) scale(0.9);
  transition: top 0s linear 0.5s, margin 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
}
.pick-presentation__buttons button:not(:disabled) {
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: top 0s linear, margin 0.25s ease-in, opacity 0.25s ease-in, transform 0.25s ease-in;
}
.pick-presentation__buttons button.announce:not(:disabled) {
  margin-top: 0;
}
.pick-presentation__buttons button.continue:not(:disabled) {
  margin-top: 5rem;
}
.pick-presentation #loader {
  align-items: center;
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-out;
  z-index: 1;
}
.pick-presentation #loader .loading-text {
  color: white;
  text-shadow: 1px 1px 12px rgb(0, 0, 0);
  text-transform: uppercase;
}
.pick-presentation #loader .spinner {
  animation: spin 1s linear infinite;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pick-presentation .pick-message {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  left: 50%;
  margin-top: 100px;
  opacity: 0;
  padding: 0 12px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.pick-presentation .pick-message.show {
  margin-top: 0;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s ease, margin 4s ease;
}

.picks__filter {
  padding: 24px;
}
@media all and (min-width: 768px) {
  .picks__filter {
    padding: 0 0 48px 0;
  }
}
.picks__list {
  color: #0D0F12;
  display: table;
  width: 100%;
}
.picks__list .picks-list-body {
  display: table-row-group;
}
.picks__list .picks-list-body .picks-list-cell {
  padding-bottom: 12px;
  padding-top: 12px;
}
.picks__list .picks-list-body .picks-list-row:nth-child(odd) {
  background-color: #FFFFFF;
}
.picks__list .picks-list-body .picks-list-row:nth-child(even) {
  background-color: #F7F7F7;
}
.picks__list .picks-list-head {
  background-color: #23282D;
  color: white;
  display: table-header-group;
  font-weight: 700;
  text-transform: uppercase;
}
.picks__list .picks-list-head .picks-list-cell {
  padding-bottom: 8px;
  padding-top: 8px;
}
.picks__list .picks-list-row {
  display: table-row;
}
.picks__list .picks-list-row .picks-list-cell {
  display: table-cell;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  padding-left: 6px;
  padding-right: 6px;
}
@media all and (min-width: 768px) {
  .picks__list .picks-list-row .picks-list-cell {
    font-size: 16px;
    line-height: 24px;
  }
}
.picks__list .picks-list-row .picks-list-cell:first-child {
  padding-left: 16px;
}
.picks__list .picks-list-row .picks-list-cell:last-child {
  padding-right: 16px;
}
.picks__list .picks-list-row .picks-list-cell--overall, .picks__list .picks-list-row .picks-list-cell--pick, .picks__list .picks-list-row .picks-list-cell--round {
  text-align: center;
}
@media all and (min-width: 768px) {
  .picks__list .picks-list-row .picks-list-cell--player, .picks__list .picks-list-row .picks-list-cell--team {
    width: auto;
  }
}

#players__filter {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  padding: 24px;
}
@media all and (min-width: 768px) {
  #players__filter {
    padding: 0 0 48px 0;
  }
}
#players__filter .filter-set {
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}
#players__filter .filter-set button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  flex-grow: 1;
  font-family: "Outfit", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: 40px;
  text-transform: uppercase;
}
#players__filter .filter-set button:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
#players__filter .filter-set button.active {
  background-color: #00E87A;
  background: linear-gradient(to bottom, rgb(12, 85, 48) 0%, rgb(0, 185, 98) 50%, rgb(0, 165, 87) 51%, rgb(115, 238, 178) 100%);
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.5);
}
#players__filter .filter-set button:not(.active) {
  background-color: white;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(243, 243, 243) 50%, rgb(237, 237, 237) 51%, rgb(255, 255, 255) 100%);
  color: #0D0F12;
  text-shadow: 0 1px rgb(255, 255, 255);
}
#players__list {
  display: table;
  width: 100%;
}
#players__list .players-list-body {
  background-color: #F0F2F5;
  display: table-row-group;
}
#players__list .players-list-body .players-list-cell {
  color: #0D0F12;
  padding-bottom: 12px;
  padding-top: 12px;
}
#players__list .players-list-body .players-list-row:nth-child(odd) {
  background-color: #FFFFFF;
}
#players__list .players-list-body .players-list-row:nth-child(even) {
  background-color: rgba(13, 15, 18, 0.0005);
}
#players__list .players-list-body .players-list-row[data-picked="1"] {
  background-color: rgba(13, 15, 18, 0.25);
  font-style: oblique;
}
#players__list .players-list-body .players-list-row[data-picked="1"] .players-list-cell {
  opacity: 0.5;
}
#players__list .players-list-head {
  background-color: #23282D;
  color: white;
  display: table-header-group;
  font-weight: 700;
  text-transform: uppercase;
}
#players__list .players-list-head .players-list-cell {
  padding-bottom: 8px;
  padding-top: 8px;
}
#players__list .players-list-row {
  display: table-row;
}
#players__list .players-list-row .players-list-cell {
  border-bottom: 1px solid rgba(13, 15, 18, 0.25);
  display: table-cell;
  font-size: 0.9375rem;
  line-height: 18px;
  padding-left: 6px;
  padding-right: 6px;
}
@media all and (min-width: 768px) {
  #players__list .players-list-row .players-list-cell {
    font-size: 16px;
    line-height: 24px;
  }
}
#players__list .players-list-row .players-list-cell:first-child {
  padding-left: 16px;
}
#players__list .players-list-row .players-list-cell:last-child {
  padding-right: 16px;
}
#players__list .players-list-row .players-list-cell--rank, #players__list .players-list-row .players-list-cell--position {
  text-align: center;
}

.selectmenu {
  background-color: white;
  border: 1px solid #F0F2F5;
  outline: 1px solid white;
  position: relative;
}
.selectmenu label {
  align-items: center;
  color: #0D0F12;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  grid-gap: 8px;
  height: 100%;
  justify-content: space-between;
  line-height: 48px;
  padding: 0 24px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
}
.selectmenu label svg {
  fill: #0D0F12;
  height: 16px;
}
.selectmenu select {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

.slot {
  align-items: stretch;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  display: flex;
  flex-direction: column;
}
.slot__cell {
  align-items: center;
  display: flex;
  position: relative;
}
.slot__cell--pick {
  background-color: #23282D;
  background-blend-mode: soft-light;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-family: "Jawbreak", sans-serif;
  font-size: 28px;
  font-style: oblique;
  justify-content: center;
  line-height: 1;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
  width: 64px;
}
.slot__cell--pick .slot__content {
  padding: 4px 4px 0 0;
}
.slot__cell--preview {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
.slot__cell--team {
  background-color: var(--slot-color);
  background-blend-mode: soft-light;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  flex: 1;
  font-weight: 300;
}
.slot__cell--team:after {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.slot__content {
  align-items: center;
  display: flex;
  position: relative;
  z-index: 2;
}
.slot__content--content {
  align-items: flex-start;
  flex-direction: column;
}
.slot__content--content .player-analysis:not(:first-child) {
  margin-top: 16px;
}
.slot__content--content .player-info {
  align-items: center;
  display: flex;
  grid-gap: 16px;
  width: 100%;
}
.slot__content--content .player-info__mug {
  background-color: #23282D;
  background-blend-mode: multiply;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 64px;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.25);
  height: 72px;
  outline: 1px solid #DDD;
  overflow: hidden;
  position: relative;
  width: 72px;
}
.slot__content--content .player-info__mug img, .slot__content--content .player-info__mug svg {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
}
.slot__content--content .player-info__details {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  grid-gap: 3px;
  justify-content: center;
  line-height: 1.2;
  text-transform: uppercase;
}
.slot__content--content .player-info__details .name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
}
.slot__content--content .player-info__details .posteam {
  color: rgb(from var(--slot-color) r g b/100%);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1333333333);
}
.slot__content--content .player-video {
  margin-top: 24px;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
.slot__content--content .player-video .video-link a {
  align-items: center;
  color: #00B55F;
  display: flex;
  grid-gap: 12px;
  text-decoration: none;
  text-transform: uppercase;
}
.slot__content--content .player-video .video-link a:hover {
  color: #00E87A;
}
.slot__content--content .player-video .video-link a .text {
  font-weight: 700;
}
.slot__content--content .player-video .video-link a svg {
  display: block;
  height: 16px;
  width: auto;
}
.slot__content--content .player-video .video-player {
  max-width: 100%;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.slot__content--content .player-video .video-player > *,
.slot__content--content .player-video .video-player iframe {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slot__content--content p {
  margin: 24px 0 0;
}
.slot__content--content p:first-child {
  margin-top: 0;
}
.slot__content--content p:last-child {
  margin-bottom: 0;
}
.slot__content--content p + ol,
.slot__content--content p + ul {
  margin-top: 12px;
}
.slot__content--content ol, .slot__content--content ul {
  margin: 0 0 0 12px;
  padding: 0 0 0 12px;
}
@media all and (min-width: 768px) {
  .slot__content--content ol, .slot__content--content ul {
    margin: 0 0 0 16px;
    padding: 0 0 0 16px;
  }
}
.slot__content--content ol:first-child, .slot__content--content ul:first-child {
  margin-top: 0;
}
.slot__content--content ol:last-child, .slot__content--content ul:last-child {
  margin-bottom: 0;
}
.slot__content--content ol li + li, .slot__content--content ul li + li {
  margin-top: 6px;
}
.slot__content--logo {
  justify-content: center;
  width: 64px;
}
@media all and (min-width: 768px) {
  .slot__content--logo {
    width: 72px;
  }
}
.slot__content--logo img {
  display: block;
  height: 48px;
  width: auto;
}
.slot__content--team {
  align-items: flex-start;
  color: white;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}
@media all and (min-width: 768px) {
  .slot__content--team {
    align-items: center;
    flex-direction: row;
    grid-gap: 6px;
    justify-content: flex-start;
  }
}
.slot__content--team .name {
  font-size: 1.375rem;
  font-weight: 700;
}
@media all and (min-width: 768px) {
  .slot__content--team .name {
    font-size: 24px;
  }
}
.slot__content--team .team {
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}
@media all and (min-width: 768px) {
  .slot__content--team .team {
    font-size: 24px;
    letter-spacing: 0;
  }
}
.slot__row {
  align-items: stretch;
  background-color: #23282D;
  display: flex;
  flex: 1;
  grid-column-gap: 1px;
  min-height: 64px;
}
.slot__row--content {
  background-color: #F0F2F5;
  color: #0D0F12;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.5;
  padding: 1.125rem;
  position: relative;
}
.slot__row--content:after {
  background-blend-mode: soft-light;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 64px;
  bottom: 2px;
  content: "";
  left: 2px;
  opacity: 0.05;
  position: absolute;
  right: 2px;
  top: 2px;
}
.slot__row--content p {
  margin: 0 0 20px;
}
.slot__row--content p:last-child {
  margin-bottom: 0;
}
.slot__row--otc {
  background-color: #C03;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
  color: white;
  font-size: 14px;
  font-weight: 700;
  grid-gap: 16px;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 32px;
  min-height: unset;
  text-transform: uppercase;
  background: linear-gradient(90deg, #D03, #C03, #B03);
  background-size: 400% 400%;
  animation: gradient 1s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.slot__row--otc .star {
  display: flex;
}
.slot__row--otc .star svg {
  display: flex;
  fill: white;
  height: 11px;
  width: auto;
}
.slot__row--otc .stars {
  align-items: center;
  display: flex;
  grid-gap: 6px;
}

.teamicon {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-weight: 600;
  grid-gap: 12px;
  vertical-align: middle;
}
.teamicon:before {
  background-image: url("../images/teamicons.webp");
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: auto 24px;
  border-radius: 50%;
  content: "";
  display: block;
  height: 24px;
  min-width: 24px;
  width: 24px;
}
.teamicon.RFA:before {
  background-position: calc(-1 * 24px) center;
}
.teamicon.UFA:before {
  background-position: calc(-2 * 24px) center;
}
.teamicon.AUS:before {
  background-position: calc(-3 * 24px) center;
}
.teamicon.MAD:before {
  background-position: calc(-4 * 24px) center;
}
.teamicon.COL:before {
  background-position: calc(-5 * 24px) center;
}
.teamicon.GRC:before {
  background-position: calc(-6 * 24px) center;
}
.teamicon.IRE:before {
  background-position: calc(-7 * 24px) center;
}
.teamicon.ITL:before {
  background-position: calc(-8 * 24px) center;
}
.teamicon.KAZ:before {
  background-position: calc(-9 * 24px) center;
}
.teamicon.PNG:before {
  background-position: calc(-10 * 24px) center;
}
.teamicon.PER:before {
  background-position: calc(-11 * 24px) center;
}
.teamicon.SKN:before {
  background-position: calc(-12 * 24px) center;
}
.teamicon.STM:before {
  background-position: calc(-13 * 24px) center;
}
.teamicon.SAB:before {
  background-position: calc(-14 * 24px) center;
}

.teams__filter {
  padding: 24px;
}
@media all and (min-width: 768px) {
  .teams__filter {
    padding: 0 0 48px 0;
  }
}
.teams__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.teams__section + .teams__section {
  margin-top: 2rem;
}
.teams__title {
  margin: 0;
  padding: 0 1.5rem;
}
.teams__list {
  color: #0D0F12;
  display: table;
  width: 100%;
}
.teams__list .teams-list-body {
  display: table-row-group;
}
.teams__list .teams-list-body .teams-list-cell {
  padding-bottom: 12px;
  padding-top: 12px;
}
.teams__list .teams-list-body .teams-list-row:nth-child(odd) {
  background-color: #FFFFFF;
}
.teams__list .teams-list-body .teams-list-row:nth-child(even) {
  background-color: #F7F7F7;
}
.teams__list .teams-list-head {
  background-color: #23282D;
  color: white;
  display: table-header-group;
  font-weight: 700;
  text-transform: uppercase;
}
.teams__list .teams-list-head .teams-list-cell {
  padding-bottom: 8px;
  padding-top: 8px;
}
.teams__list .teams-list-row {
  display: table-row;
}
.teams__list .teams-list-row .teams-list-cell {
  display: table-cell;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  padding-left: 6px;
  padding-right: 6px;
}
@media all and (min-width: 768px) {
  .teams__list .teams-list-row .teams-list-cell {
    font-size: 16px;
    line-height: 24px;
  }
}
.teams__list .teams-list-row .teams-list-cell:first-child {
  padding-left: 16px;
}
.teams__list .teams-list-row .teams-list-cell:last-child {
  padding-right: 16px;
}
.teams__list .teams-list-row .teams-list-cell--overall, .teams__list .teams-list-row .teams-list-cell--pick, .teams__list .teams-list-row .teams-list-cell--round {
  text-align: center;
}
@media all and (min-width: 768px) {
  .teams__list .teams-list-row .teams-list-cell--player, .teams__list .teams-list-row .teams-list-cell--team {
    width: auto;
  }
}

#ticker {
  bottom: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 99;
}

#ticker .marquee {
  align-items: center;
  background-blend-mode: multiply;
  background-color: rgb(32.3888888889, 36.8055555556, 47.1111111111);
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  flex: 1;
  font-size: 14px;
  height: 100%;
  min-height: 36px;
  overflow: hidden;
  position: relative;
}
#ticker .marquee__container {
  display: flex;
  overflow: hidden;
}
#ticker .marquee__content {
  animation-duration: 150s;
  animation-iteration-count: infinite;
  animation-name: scroll;
  animation-timing-function: linear;
  display: flex;
  white-space: nowrap;
}
@media all and (min-width: 768px) {
  #ticker .marquee__content {
    animation-duration: 300s;
  }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#ticker .marquee__item {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 800px;
  text-transform: uppercase;
}
#ticker .marquee__item--full {
  font-weight: 700;
  width: 100vw;
}
#ticker .marquee__item--intro {
  font-weight: 700;
  grid-gap: 16px;
}
#ticker .marquee__item--team {
  padding-right: 33vw;
}
#ticker .marquee__item--team .franchise {
  align-items: center;
  color: #CCC;
  display: flex;
}
#ticker .marquee__item--team .franchise:before {
  background-image: url("/assets/images/flags-wave.webp");
  background-size: auto 24px;
  background-position: 24px center;
  content: "";
  display: block;
  height: 24px;
  margin-bottom: 1px;
  margin-right: 9px;
  width: 24px;
}
#ticker .marquee__item--team .franchise.CHI:before {
  background-position: calc(-1 * 24px) center;
}
#ticker .marquee__item--team .franchise.CIC:before {
  background-position: calc(-2 * 24px) center;
}
#ticker .marquee__item--team .franchise.ECU:before {
  background-position: calc(-3 * 24px) center;
}
#ticker .marquee__item--team .franchise.EGY:before {
  background-position: calc(-4 * 24px) center;
}
#ticker .marquee__item--team .franchise.MAL:before {
  background-position: calc(-5 * 24px) center;
}
#ticker .marquee__item--team .franchise.MUN:before {
  background-position: calc(-6 * 24px) center;
}
#ticker .marquee__item--team .franchise.NAG:before {
  background-position: calc(-7 * 24px) center;
}
#ticker .marquee__item--team .franchise.RUS:before {
  background-position: calc(-8 * 24px) center;
}
#ticker .marquee__item--team .franchise.SAN:before {
  background-position: calc(-9 * 24px) center;
}
#ticker .marquee__item--team .franchise.TUR:before {
  background-position: calc(-10 * 24px) center;
}
#ticker .marquee__item--team .franchise.VTN:before {
  background-position: calc(-11 * 24px) center;
}
#ticker .marquee__item--team .franchise.WAK:before {
  background-position: calc(-12 * 24px) center;
}
#ticker .marquee__item--team .pick {
  margin-right: 8px;
}
#ticker .marquee__item--team .player {
  font-weight: 700;
}
#ticker .marquee__item--team .separator {
  color: #CCC;
  padding: 0 8px 2px 8px;
}
#ticker .marquee .star {
  display: flex;
}
#ticker .marquee .star svg {
  display: flex;
  fill: white;
  height: 11px;
  width: auto;
}
#ticker .marquee .stars {
  align-items: center;
  display: flex;
  grid-gap: 6px;
}

#ticker .mast {
  align-items: stretch;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(243, 243, 243) 50%, rgb(237, 237, 237) 51%, rgb(255, 255, 255) 100%);
  display: flex;
  min-height: 64px;
  position: relative;
}
#ticker .mast:after, #ticker .mast:before {
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
#ticker .mast:after {
  background-color: black;
  bottom: 0;
}
#ticker .mast:before {
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
}
#ticker .mast__background {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  bottom: 1px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: 1px;
  z-index: 1;
}
#ticker .mast__background:after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 1px;
  content: "";
  left: 1px;
  position: absolute;
  right: 1px;
  top: 1px;
}
#ticker .mast__background:before {
  background-blend-mode: soft-light;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 36px;
  bottom: 2px;
  content: "";
  left: 2px;
  opacity: 0.5;
  position: absolute;
  right: 2px;
  top: 2px;
}
#ticker .mast__cell {
  align-items: center;
  display: flex;
  position: relative;
}
#ticker .mast__cell--clock {
  font-family: "Clock", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  padding: 12px 8px;
}
@media all and (min-width: 480px) {
  #ticker .mast__cell--clock {
    font-size: 28px;
  }
}
@media all and (min-width: 768px) {
  #ticker .mast__cell--clock {
    padding: 24px;
  }
}
#ticker .mast__cell--clock .wrapper {
  background-color: #23282D;
  background-blend-mode: soft-light;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 36px;
  border: 1px solid rgb(0, 0, 0);
  justify-content: center;
  min-width: 85px;
  outline: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0;
  text-align: center;
}
@media all and (min-width: 768px) {
  #ticker .mast__cell--clock .wrapper {
    padding: 0 12px;
  }
}
#ticker .mast__cell--logo {
  justify-content: center;
  margin: 1px -12px 1px -6px;
  overflow: hidden;
  width: 20vw;
}
@media all and (min-width: 768px) {
  #ticker .mast__cell--logo {
    margin: 1px -6px;
    width: 128px;
  }
}
#ticker .mast__cell--logo .image img {
  display: block;
  height: 10vw;
  width: auto;
}
@media all and (min-width: 768px) {
  #ticker .mast__cell--logo .image img {
    height: 64px;
  }
}
#ticker .mast__cell--logo .star {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
#ticker .mast__cell--logo .star svg {
  display: block;
  fill: white;
  height: auto;
  left: 50%;
  opacity: 0.05;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#ticker .mast__cell--team {
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}
#ticker .mast__cell--team .name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
@media all and (min-width: 480px) {
  #ticker .mast__cell--team .name {
    font-size: 1.5rem;
  }
}
@media all and (min-width: 768px) {
  #ticker .mast__cell--team .name {
    line-height: 1.1;
  }
}
#ticker .mast__cell--team .team {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1;
}
@media all and (min-width: 480px) {
  #ticker .mast__cell--team .team {
    font-size: 0.9375rem;
  }
}
@media all and (min-width: 768px) {
  #ticker .mast__cell--team .team {
    font-size: 1rem;
  }
}
#ticker .mast__container {
  align-content: stretch;
  display: flex;
  flex: 1;
}
#ticker .mast__content {
  align-content: stretch;
  color: white;
  display: flex;
  flex: 1;
  position: relative;
  z-index: 2;
}
#ticker .mast .mast-pick {
  align-items: center;
  align-self: center;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 8px;
  grid-template-rows: repeat(2, auto);
  justify-content: center;
  justify-items: center;
  line-height: 1;
  padding: 12px 0 12px 12px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
}
@media all and (min-width: 430px) {
  #ticker .mast .mast-pick {
    grid-column-gap: 12px;
    padding: 12px 0 12px 12px;
  }
}
@media all and (min-width: 480px) {
  #ticker .mast .mast-pick {
    padding: 12px 0 12px 16px;
  }
}
@media all and (min-width: 768px) {
  #ticker .mast .mast-pick {
    grid-column-gap: 16px;
    padding: 12px 0 12px 24px;
  }
}
#ticker .mast .mast-pick__label {
  font-family: "Jawbreak", sans-serif;
  font-size: 11px;
  font-style: oblique;
  font-weight: normal;
  line-height: 1.3;
}
@media all and (min-width: 480px) {
  #ticker .mast .mast-pick__label {
    font-size: 14px;
  }
}
#ticker .mast .mast-pick__value {
  font-family: "Clock", sans-serif;
  font-size: 20px;
  font-weight: normal;
  line-height: 0.8;
}
@media all and (min-width: 480px) {
  #ticker .mast .mast-pick__value {
    font-size: 24px;
  }
}
@media all and (min-width: 768px) {
  #ticker .mast .mast-pick__value {
    font-size: 28px;
  }
}

#ticker .otc__content {
  align-items: center;
  align-self: flex-end;
  background-blend-mode: multiply;
  background-color: #23282D;
  background-image: url("/assets/images/dots-bg.webp");
  background-repeat: repeat-x;
  background-size: auto 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  bottom: 100%;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0 100%);
  color: white;
  display: flex;
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  grid-gap: 16px;
  height: auto;
  justify-self: flex-start;
  letter-spacing: 1px;
  line-height: 21px;
  overflow: hidden;
  padding: 0 32px 0 12px;
  position: absolute;
  text-transform: uppercase;
}
#ticker .otc__content .stars {
  align-items: center;
  display: flex;
  grid-gap: 6px;
  justify-content: center;
}
#ticker .otc__content .stars .star svg {
  display: block;
  fill: white;
  height: 11px;
  width: auto;
}
