﻿@charset "UTF-8";
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: "Roboto";
  width: 100%;
  flex: 1;
}

main {
  max-width: 1304px;
  padding: 0 8px;
  width: 100%;
  margin: auto;
  flex: 1;
}

footer {
  padding: 64px 0;
  margin-top: 128px;
  background-color: #168095;
}

.red-text {
  color: #D74B4B;
}

.blue-text {
  color: #168095;
}

.title-text {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
}

.heading-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
}

.body-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.detail-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

.bold-text {
  font-weight: 700;
}

h1.heading-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 8px;
}

h2.heading-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 8px;
}

h3.heading-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 8px;
}

.sub-heading {
  margin-top: 0;
  margin-bottom: 8px;
}

.mb {
  margin-bottom: 8px;
}

.mt {
  margin-top: 8px;
}

.text-input {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #1E1E1E;
  box-shadow: inset 0 4px 0 -1px #F1F1F1;
}

.label {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}

select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #1E1E1E;
  box-shadow: inset 0 4px 0 -1px #F1F1F1;
  background-color: #FFF;
}

input[type=checkbox] {
  width: 21px;
  height: 21px;
  border-radius: 4px;
  border: 1px solid #1E1E1E;
  accent-color: #168095;
}

.grid-container {
  display: grid;
  column-gap: 32px;
  grid-template-columns: repeat(12, 1fr);
}
.grid-container > * {
  grid-column: span 12;
}
.grid-container .grid-col-1 {
  grid-column: span 1;
}
.grid-container .grid-col-1 .grid-row {
  grid-template-columns: repeat(1, 1fr);
}
.grid-container .grid-col-2 {
  grid-column: span 2;
}
.grid-container .grid-col-2 .grid-row {
  grid-template-columns: repeat(2, 1fr);
}
.grid-container .grid-col-3 {
  grid-column: span 3;
}
.grid-container .grid-col-3 .grid-row {
  grid-template-columns: repeat(3, 1fr);
}
.grid-container .grid-col-4 {
  grid-column: span 4;
}
.grid-container .grid-col-4 .grid-row {
  grid-template-columns: repeat(4, 1fr);
}
.grid-container .grid-col-5 {
  grid-column: span 5;
}
.grid-container .grid-col-5 .grid-row {
  grid-template-columns: repeat(5, 1fr);
}
.grid-container .grid-col-6 {
  grid-column: span 6;
}
.grid-container .grid-col-6 .grid-row {
  grid-template-columns: repeat(6, 1fr);
}
.grid-container .grid-col-7 {
  grid-column: span 7;
}
.grid-container .grid-col-7 .grid-row {
  grid-template-columns: repeat(7, 1fr);
}
.grid-container .grid-col-8 {
  grid-column: span 8;
}
.grid-container .grid-col-8 .grid-row {
  grid-template-columns: repeat(8, 1fr);
}
.grid-container .grid-col-9 {
  grid-column: span 9;
}
.grid-container .grid-col-9 .grid-row {
  grid-template-columns: repeat(9, 1fr);
}
.grid-container .grid-col-10 {
  grid-column: span 10;
}
.grid-container .grid-col-10 .grid-row {
  grid-template-columns: repeat(10, 1fr);
}
.grid-container .grid-col-11 {
  grid-column: span 11;
}
.grid-container .grid-col-11 .grid-row {
  grid-template-columns: repeat(11, 1fr);
}
.grid-container .grid-col-12 {
  grid-column: span 12;
}
.grid-container .grid-col-12 .grid-row {
  grid-template-columns: repeat(12, 1fr);
}

.ten-col-grid-container {
  display: grid;
  column-gap: 16px;
  grid-template-columns: repeat(10, 1fr);
}
.ten-col-grid-container > * {
  grid-column: span 12;
}
.ten-col-grid-container .grid-col-1 {
  grid-column: span 1;
}
.ten-col-grid-container .grid-col-1 .grid-row {
  grid-template-columns: repeat(1, 1fr);
}
.ten-col-grid-container .grid-col-2 {
  grid-column: span 2;
}
.ten-col-grid-container .grid-col-2 .grid-row {
  grid-template-columns: repeat(2, 1fr);
}
.ten-col-grid-container .grid-col-3 {
  grid-column: span 3;
}
.ten-col-grid-container .grid-col-3 .grid-row {
  grid-template-columns: repeat(3, 1fr);
}
.ten-col-grid-container .grid-col-4 {
  grid-column: span 4;
}
.ten-col-grid-container .grid-col-4 .grid-row {
  grid-template-columns: repeat(4, 1fr);
}
.ten-col-grid-container .grid-col-5 {
  grid-column: span 5;
}
.ten-col-grid-container .grid-col-5 .grid-row {
  grid-template-columns: repeat(5, 1fr);
}
.ten-col-grid-container .grid-col-6 {
  grid-column: span 6;
}
.ten-col-grid-container .grid-col-6 .grid-row {
  grid-template-columns: repeat(6, 1fr);
}
.ten-col-grid-container .grid-col-7 {
  grid-column: span 7;
}
.ten-col-grid-container .grid-col-7 .grid-row {
  grid-template-columns: repeat(7, 1fr);
}
.ten-col-grid-container .grid-col-8 {
  grid-column: span 8;
}
.ten-col-grid-container .grid-col-8 .grid-row {
  grid-template-columns: repeat(8, 1fr);
}
.ten-col-grid-container .grid-col-9 {
  grid-column: span 9;
}
.ten-col-grid-container .grid-col-9 .grid-row {
  grid-template-columns: repeat(9, 1fr);
}
.ten-col-grid-container .grid-col-10 {
  grid-column: span 10;
}
.ten-col-grid-container .grid-col-10 .grid-row {
  grid-template-columns: repeat(10, 1fr);
}

.league-card {
  display: flex;
  max-height: 128px;
  border: 1px solid #168095;
  border-radius: 4px;
  margin-bottom: 8px;
}
.league-card.inactive .league-card-content {
  background-color: #F1F1F1;
}
.league-card.inactive .season-name {
  color: #3C3C3D;
}
.league-card.inactive .date {
  color: #3C3C3D;
}
.league-card.inactive .score {
  color: #3C3C3D !important;
}
.league-card.inactive .studio-name {
  color: #3C3C3D;
}
.league-card.inactive .studio-place {
  color: #3C3C3D;
}
.league-card .league-card-image {
  width: 128px;
  height: 128px;
  flex: 0;
}
.league-card .league-card-image .league-image {
  width: 128px;
  height: 128px;
}
.league-card .league-card-content {
  flex: 1;
  display: flex;
  padding: 16px;
  overflow: hidden;
}
.league-card .league-card-content .info-section {
  flex: 1;
  position: relative;
}
.league-card .league-card-content .info-section p {
  margin: 8px 0;
}
.league-card .league-card-content .info-section a {
  text-decoration: none;
}
.league-card .league-card-content .info-section .league-name {
  font-weight: 700;
  color: #D74B4B;
}
.league-card .league-card-content .info-section .league-name:hover {
  color: #7B3535;
  cursor: pointer;
}
.league-card .league-card-content .score-section {
  text-align: right;
}
.league-card .league-card-content .score-section p {
  margin: 8px 0;
}
.league-card .league-card-content .score-section .score {
  font-weight: 700;
  color: #168095;
}
.league-card .league-card-content .score-section .studio-name {
  font-weight: 700;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table a, .table a:visited {
  color: #D74B4B;
}
.table a:hover {
  color: #7B3535;
}
.table th {
  padding: 16px;
  background-color: #168095;
  color: #FFFFFF;
}
.table th:first-child {
  border-radius: 4px 0 0 0;
}
.table th:last-child {
  border-radius: 0 4px 0 0;
}
.table thead tr th {
  text-align: left;
}
.table thead tr th.align-center {
  text-align: center;
}
.table thead tr th.align-right {
  text-align: right;
}
.table tbody tr {
  background-color: #F5F5F5;
}
.table tbody tr:not(:last-child) {
  border-bottom: 1px solid #9E9E9E;
}
.table tbody td {
  padding: 16px;
}
.table tbody td.align-center {
  text-align: center;
}
.table tbody td.align-right {
  text-align: right;
}
.table tbody td .movie-wrapper {
  display: flex;
}
.table tbody td .movie-wrapper .movie-content {
  text-align: left;
  padding: 8px;
}
.table tbody td .table-image {
  width: 64px;
  height: 96px;
}
.table tbody .studio {
  display: flex;
}
.table tbody .studio a {
  margin: auto 0;
}
.table tbody .studio-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding-right: 8px;
}
.table tbody .studio-name {
  color: #D74B4B;
  font-weight: 700;
}
.table tbody .total-score {
  color: #000000;
  font-weight: 700;
}

.link {
  color: #D74B4B;
  cursor: pointer;
  text-decoration: none;
}
.link:hover {
  color: #7B3535;
}

.leaderboard-banner {
  display: flex;
  max-height: 160px;
  border: 1px solid #168095;
  border-radius: 4px;
  background-color: #168095;
  margin: 32px 0;
}
.leaderboard-banner .leaderboard-banner-image {
  width: 128px;
  height: 128px;
  flex: 0;
  padding: 16px;
  padding-right: 0px;
}
.leaderboard-banner .leaderboard-banner-image .leaderboard-image {
  width: 128px;
  height: 128px;
  border-radius: 50%;
}
.leaderboard-banner .leaderboard-content {
  flex: 1;
  display: flex;
  padding: 16px;
  overflow: hidden;
  color: #FFF;
}
.leaderboard-banner .leaderboard-content .info-section {
  flex: 1;
  position: relative;
}
.leaderboard-banner .leaderboard-content .info-section p {
  margin: 8px 0;
}
.leaderboard-banner .leaderboard-content .info-section a {
  text-decoration: none;
}
.leaderboard-banner .leaderboard-content .info-section .league-name {
  font-weight: 700;
  color: #D74B4B;
}
.leaderboard-banner .leaderboard-content .info-section .league-name:hover {
  color: #7B3535;
  cursor: pointer;
}
.leaderboard-banner .leaderboard-content .leaderboard-score {
  text-align: right;
}
.leaderboard-banner .leaderboard-content .leaderboard-score p {
  margin: 8px 0;
}
.leaderboard-banner .leaderboard-content .leaderboard-score .season-total {
  font-weight: 400;
}
.leaderboard-banner .leaderboard-content .leaderboard-score .score {
  font-weight: 700;
}

.poster-container {
  margin-bottom: 32px;
}
.poster-container p {
  font-weight: 700;
  margin: auto;
}
.poster-container .poster img {
  width: 100%;
  margin-bottom: 4px;
  height: 368px;
}
.poster-container .current-total {
  height: 62px;
  background-color: #168095;
  color: #FFF;
  margin-bottom: 4px;
  text-align: center;
}
.poster-container .current-total p {
  padding-top: 15px;
}
.poster-container .week-total {
  height: 52px;
  background-color: #168095;
  color: #FFF;
  border-radius: 0 0 4px 4px;
  text-align: center;
}
.poster-container .week-total p {
  padding-top: 15px;
}
.poster-container .release-date {
  height: 62px;
  background-color: #8BC0CA;
  color: #FFF;
  border-radius: 0 0 4px 4px;
  text-align: center;
}
.poster-container .release-date p {
  padding-top: 15px;
}

.poster-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  overflow: hidden;
  position: relative;
  list-style: none;
}
.poster-list .poster-container {
  display: block;
  margin: 0 0 10px 10px;
}
.poster-list .poster-container .poster {
  display: block;
  height: 105px;
  width: 70px;
}

.nav-banner {
  border-radius: 4px;
  border: 1px solid #168095;
  height: 64px;
  display: flex;
}
.nav-banner .nav-banner-image {
  height: 64px;
  width: 64px;
}
.nav-banner .nav-banner-image img {
  height: 64px;
  width: 64px;
}
.nav-banner .nav-banner-breadcrumb-section {
  flex: 1;
  display: flex;
  padding: 16px;
  overflow: hidden;
  padding: 16px;
}
.nav-banner .nav-banner-breadcrumb-section .league {
  color: #168095;
  font-weight: 700;
}
.nav-banner .nav-banner-breadcrumb-section ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: end;
}
.nav-banner .nav-banner-breadcrumb-section li:not(:last-child)::after {
  display: inline-block;
  margin: 0 4px;
  content: "→";
}
.nav-banner .nav-banner-info {
  text-align: right;
  padding: 16px;
}
.nav-banner .nav-banner-info .primary {
  font-weight: 700;
  color: #168095;
}
.nav-banner .nav-banner-info .draft {
  font-weight: 700;
  color: #1E1E1E;
}
.nav-banner .nav-banner-info p {
  margin: 0;
}

.season-movies-info {
  text-align: right;
}

.draft .countdown {
  border: 1px solid #168095;
  border-radius: 4px;
  height: 230px;
  max-height: 230px;
  text-align: center;
}
.draft .countdown div {
  padding: 32px;
  max-height: 166px;
  height: 166px;
  overflow: hidden;
}
.draft .countdown p {
  font-weight: 400;
  font-size: 32px;
  line-height: 45px;
  margin: auto;
}
.draft .countdown .timer {
  color: #168095;
  font-size: 48px;
  line-height: 60px;
}
.draft .draft-details-header {
  display: flex;
}
.draft .draft-details-header h2 {
  flex: 1;
}
.draft .draft-details-header p {
  line-height: 30px;
}
.draft .detail-block {
  background-color: #F1F1F1;
  text-align: center;
  max-height: 132px;
  height: 132px;
  max-width: 254px;
  overflow: hidden;
}
.draft .detail-block .content {
  padding: 32px;
  height: 68px;
}
.draft .detail-block .content p {
  margin: 0 0 8px 0;
}
.draft .nav-wrapper {
  margin: 8px 0;
}

.draft-selection {
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #168095;
  display: flex;
  margin: 24px 0;
}
.draft-selection .draft-image {
  width: 144px;
  height: 216px;
}
.draft-selection .draft-image img {
  width: 144px;
  height: 216px;
}
.draft-selection .draft-content {
  text-align: center;
  flex: 1;
}
.draft-selection .draft-content p {
  margin: 16px 0;
}
.draft-selection .draft-content .movie-title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 8px;
}
.draft-selection .draft-content .release-date {
  font-size: 32px;
  line-height: 45px;
  margin-top: 8px;
}
.draft-selection .draft-content .studio-name {
  font-size: 32px;
  line-height: 45px;
  font-weight: 700;
  color: #168095;
}
.draft-selection .draft-content .arrow-button {
  height: 28px;
  width: 18px;
  color: #168095;
  background-color: #fff;
  border: 1px solid #168095;
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
}
.draft-selection .draft-content .arrow-button:hover {
  background-color: #F1F1F1;
}
.draft-selection .wager-section {
  width: 144px;
  height: 216px;
  border: 1px solid #168095;
  border-radius: 4px;
}
.draft-selection .wager-section .plus-button {
  background-color: #168095;
  color: white;
  width: 144px;
  height: 62px;
  border: none;
  font-size: 48px;
  line-height: 60px;
  cursor: pointer;
}
.draft-selection .wager-section .plus-button:hover {
  background-color: #1A4F5A;
}
.draft-selection .wager-section .wager-input {
  height: 92px;
  width: 140px;
  border: none;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
}
.draft-selection .wager-section .minus-button {
  background-color: #168095;
  color: white;
  width: 144px;
  height: 62px;
  border: none;
  font-size: 48px;
  line-height: 60px;
  cursor: pointer;
}
.draft-selection .wager-section .minus-button:hover {
  background-color: #1A4F5A;
}
.draft-selection .draft-header {
  color: #168095;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}
.draft-selection .create-bid {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.draft-selection .create-bid label {
  font-size: 24px;
  line-height: 30px;
}
.draft-selection .create-bid input {
  width: 458px;
  height: 62px;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 16px;
}
.draft-selection .create-bid select {
  width: 458px;
  height: 62px;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 16px;
}
.draft-selection .create-bid .input-section {
  margin-right: 16px;
}
.draft-selection .create-bid-movie-poster {
  height: 216px;
  width: 144px;
}

.nav-wrapper {
  border: 1px solid #168095;
  border-radius: 4px;
  display: flex;
  width: fit-content;
  margin-bottom: 24px;
}
.nav-wrapper .nav-element {
  background-color: #fff;
  border-radius: 0;
  cursor: pointer;
  border-left: 1px #168095 solid;
  border-right: 1px #168095 solid;
}
.nav-wrapper .nav-element:hover {
  background-color: #F1F1F1;
}
.nav-wrapper .nav-element.active {
  background-color: #168095;
  color: #fff;
}
.nav-wrapper .nav-element.active:hover {
  background-color: #1A4F5A;
}
.nav-wrapper .nav-element:first-child {
  border-radius: 4px 0 0 4px;
  border-left: 0;
  border-right: 0;
}
.nav-wrapper .nav-element:last-child {
  border-radius: 0 4px 4px 0;
  border-left: 0;
  border-right: 0;
}

.action-buttons {
  text-align: right;
}

.primary-button {
  background-color: #D74B4B;
  color: #fff;
  margin-right: 8px;
  cursor: pointer;
}
.primary-button:hover {
  background-color: #7B3535;
}

.secondary-button {
  background-color: #9E9E9E;
  color: #fff;
  cursor: pointer;
}
.secondary-button:hover {
  background-color: #8E8E8E;
}

.link-button {
  all: unset;
  color: #D74B4B;
  cursor: pointer;
  text-decoration: none;
}
.link-button:hover {
  color: #7B3535;
}

.button {
  padding: 16px;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  line-height: 20px;
}

.button-small {
  padding: 8px;
  border-radius: 4px;
  border: none;
  font-size: 12px;
  line-height: 26px;
}

.button-medium {
  padding: 16px;
  border-radius: 4px;
  border: none;
  font-size: 16px;
  line-height: 20px;
}

.button-large {
  padding: 16px;
  border-radius: 4px;
  border: none;
  font-size: 24px;
  line-height: 30px;
}

.studio-draft-card {
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #168095;
  display: block;
  margin-bottom: 24px;
}
.studio-draft-card:hover {
  cursor: pointer;
}
.studio-draft-card .card {
  display: flex;
  width: 100%;
  flex-basis: 100%;
}
.studio-draft-card .card .studio-image {
  width: 128px;
  height: 128px;
  flex: 0;
  padding: 16px 0;
}
.studio-draft-card .card .studio-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.studio-draft-card .card .studio-name {
  line-height: 60px;
  font-size: 48px;
  display: flex;
  flex: 1;
  padding: 0 16px;
}
.studio-draft-card .card .stats-content {
  display: flex;
  height: 169px;
  width: 576px;
}
.studio-draft-card .card .stats-section {
  text-align: center;
  padding: 32px;
  border-radius: 4px;
}
.studio-draft-card .card .stats-section .label {
  font-size: 32px;
  line-height: 45px;
}
.studio-draft-card .card .stats-section .value {
  font-weight: 700;
  line-height: 60px;
  font-size: 48px;
}
.studio-draft-card .card .max-bid {
  background-color: #F5F5F5;
}
.studio-draft-card .card .max-bid .label {
  font-size: 32px;
  line-height: 45px;
}
.studio-draft-card .card .max-bid .value {
  color: #D74B4B;
  font-weight: 700;
  line-height: 60px;
  font-size: 48px;
}
.studio-draft-card .expanded-section {
  width: 100%;
  margin-top: 16px;
}
.studio-draft-card .expanded-section .movie-list-element {
  background-color: #F5F5F5;
  padding: 16px;
  display: flex;
  font-size: 32px;
  line-height: 45px;
  flex-wrap: wrap;
  border-radius: 4px;
}
.studio-draft-card .expanded-section .movie-list-element:not(:last-child) {
  margin-bottom: 16px;
}
.studio-draft-card .expanded-section .movie-list-element img {
  width: 80px;
  height: 120px;
}
.studio-draft-card .expanded-section .movie-list-element .movie-title {
  font-weight: 700;
  flex: 1;
  margin-left: 16px;
}
.studio-draft-card .expanded-section .movie-list-element .release-date {
  margin-right: 32px;
}
.studio-draft-card .expanded-section .movie-list-element .score {
  font-weight: 700;
  margin-left: 32px;
  text-align: right;
}

.edit-link {
  color: #D74B4B;
  text-decoration: none;
  cursor: pointer;
}

.BocNav {
  align-items: center;
  background: #168095;
  width: 100%;
}

.BocNav-content {
  display: flex;
  justify-content: space-between;
  max-width: 1304px;
  align-items: center;
  background: #168095;
  padding: 0 8px;
  width: 100%;
  height: 64px;
  margin: auto;
}

.BocNav__logo {
  color: #fff;
  display: block;
  flex: 0 0 auto;
  margin: 0 8px;
}

.BocNav__logo .BocAbbrev {
  display: block;
}

@media (max-width: 649px) {
  .BocNav__logo .BocAbbrev {
    height: 40px;
    width: 32px;
  }
}
@media (min-width: 650px) {
  .BocNav__logo .BocAbbrev {
    height: 50px;
  }
}
.BocNav__logo-links {
  display: flex;
  flex: 0 0 auto;
}

.BocNav__links {
  display: flex;
  flex: 0 0 auto;
}

@media (min-width: 0) {
  .BocNav__links {
    font-size: 14px;
    line-height: 40px;
  }
}
@media (min-width: 950px) {
  .BocNav__links {
    font-size: 16px;
    line-height: 40px;
  }
}
.BocNav__secondary-links {
  display: flex;
  flex: 10 0 auto;
  justify-content: flex-end;
  align-items: center;
  padding: 0 8px;
  font-size: 16px;
  line-height: 20px;
}

@media (min-width: 0) {
  .BocNav__secondary-links {
    font-size: 16px;
    line-height: 40px;
  }
}
@media (min-width: 950px) {
  .BocNav__secondary-links {
    font-size: 18px;
    line-height: 40px;
  }
}
.BocNav__link {
  color: #E8F3F5;
  padding: 0 8px;
  position: relative;
  text-decoration: none;
  padding: 0 16px;
  cursor: pointer;
}
.BocNav__link img {
  vertical-align: middle;
}

.BocNav__link.is-selected {
  color: #fff;
}

.BocNav__link.is-selected::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

@media (min-width: 650px) {
  .BocNav__link {
    line-height: 50px;
  }
}
.BocNav__login {
  color: #fc3;
  padding: 0 8px;
}

@media (min-width: 0) {
  .BocNav__login {
    font-size: 14px;
    line-height: 40px;
  }
}
@media (min-width: 950px) {
  .BocNav__login {
    font-size: 16px;
    line-height: 40px;
  }
}
.BocNav__avatar {
  height: 32px;
  width: 32px;
  margin-right: 8px;
}

.BocNav__avatar.is-active {
  outline: 8px solid #d0e6ea;
  box-shadow: 0 0 0 8px #d0e6ea;
}

@media (min-width: 650px) {
  .BocNav__avatar {
    height: 42px;
    width: 42px;
  }
}
.BocNav__more {
  color: #8bc0ca;
  padding: 0 8px;
}

.secondary-nav {
  width: 100%;
  background-color: #FFF;
  height: 64px;
  border-bottom: 1px solid #168095;
  align-items: center;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 4px 4px -4px #8E8E8E;
}
.secondary-nav .secondary-nav-content {
  margin: auto;
  width: 1304px;
  text-align: left;
  display: flex;
}
.secondary-nav .breadcrumb-links {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.secondary-nav .breadcrumb-links img {
  vertical-align: middle;
  height: 32px;
  width: 32px;
}
.secondary-nav .breadcrumb-links a {
  vertical-align: middle;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 0 8px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.secondary-nav .breadcrumb-links .breadcrumb::after {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  vertical-align: middle;
  background-image: url(img/svg-sprite/chevron-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 8px 0 8px 8px;
}
.secondary-nav .breadcrumb-links .page-link {
  color: #D74B4B;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
.secondary-nav .breadcrumb-links .page-link.active {
  color: #1E1E1E;
  font-weight: 700;
}

.custom-leagues {
  text-align: center;
}
.custom-leagues .header-image {
  height: 128px;
}
.custom-leagues .secondary-header {
  color: #168095;
}
.custom-leagues .primary-button {
  margin-right: 0px;
  margin-bottom: 32px;
}
.custom-leagues .league-zero-state {
  background-color: #F1F1F1;
  padding: 16px 16px 48px 16px;
}
.custom-leagues .league-page-info-section {
  background-color: #F1F1F1;
  padding: 16px;
  display: flex;
  margin-bottom: 32px;
}
.custom-leagues .league-page-info-section .button {
  margin-bottom: 0;
}
.custom-leagues .league-page-info-section .step-section {
  text-align: left;
  width: 80%;
}
.custom-leagues .league-page-info-section .button-section {
  text-align: right;
  width: 20%;
}
.custom-leagues .league-detail-section {
  background-color: #F1F1F1;
  padding: 16px;
}
.custom-leagues .league-detail-section .league-image {
  width: 128px;
  height: 128px;
}
.custom-leagues .league-detail-section .league-name {
  color: #168095;
  font-weight: 700;
}
.custom-leagues .league-detail-section p {
  margin: 8px 0;
}

.create-league .bold-text {
  font-weight: 700;
}
.create-league .help-text {
  color: #168095;
  font-weight: 700;
}
.create-league p {
  margin: 8px 0;
}
.create-league .league-detail-section {
  background-color: #F1F1F1;
  padding: 16px;
}
.create-league .league-detail-section .league-image {
  width: 128px;
  height: 128px;
}
.create-league .league-detail-section .league-name {
  color: #168095;
  font-weight: 700;
}
.create-league .league-detail-section p {
  margin: 8px 0;
}
.create-league .league-detail-section .divider {
  color: #8E8E8E;
}

.league-details h3 {
  font-weight: 600;
}

.draft-table th {
  background-color: #8E8E8E;
}
.draft-table td .studio-wrapper {
  display: flex;
}
.draft-table td .studio-wrapper .studio-content {
  padding: 8px;
}
.draft-table td .studio-wrapper .body-text {
  color: #168095;
  font-weight: 700;
}
.draft-table td .studio-wrapper .studio-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.draft-table td .text-input {
  max-width: 48px;
  text-align: center;
}

.selected-league-avatar {
  border: 2px solid #168095;
  border-radius: 5px;
  width: 50px;
  height: 50px;
}

.league-avatar {
  width: 50px;
  height: 50px;
}

.Footer:not(x) {
  padding-bottom: 3rem;
  background: #E8F3F5;
  color: #8BC0CA;
  margin-top: 25px;
}

.Footer__section-title {
  color: #168095;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.8em;
}

.Footer__link {
  color: #8BC0CA;
  margin: 0.5em 0;
}
.Footer__link:hover {
  color: #168095;
}

.Footer__line {
  display: block;
  color: #8BC0CA;
  margin: 0.5em 0;
}
.Footer__line a:hover {
  color: #168095;
}

.Footer__social-link {
  display: inline-block;
  fill: #8BC0CA;
  margin: 0.2em 0;
}
.Footer__social-link + .BocFooter__social-link {
  margin-left: 0.4em;
}
.Footer__social-link:hover {
  fill: #168095;
}

.SocialIcon {
  display: inline-block;
  width: 2em;
  height: 2em;
}

.Footer__legal {
  margin-top: 25px;
  text-align: right;
  margin-right: 25px;
}

.bid-module {
  display: flex;
  border: 1px solid #168095;
  border-radius: 4px;
  height: 152px;
  max-height: 152px;
}
.bid-module.current-bidder-won {
  border: 1px solid #D74B4B;
}
.bid-module.draft-complete {
  background-color: #168095;
}
.bid-module.draft-complete .content {
  text-align: center;
}
.bid-module.draft-complete p {
  color: #FFF;
}
.bid-module.draft-complete .primary-text {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
.bid-module p {
  margin: 8px 0;
}
.bid-module .movie-information {
  display: flex;
  flex: 1;
  position: relative;
  padding: 16px;
}
.bid-module .movie-information .poster {
  width: 80px;
  height: 120px;
}
.bid-module .content-section {
  flex: 1;
  display: flex;
  overflow: hidden;
  padding: 16px;
}
.bid-module .content-section .content {
  margin: auto;
  flex: 1;
  position: relative;
}
.bid-module .content-section .content p {
  margin: 8px 0;
}
.bid-module .content-section .content .heading-text {
  font-weight: 700;
}
.bid-module .studio-information {
  text-align: right;
  padding: 16px;
  display: flex;
}
.bid-module .studio-information .studio-image {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: auto;
}
.bid-module .studio-information .heading-text {
  color: #168095;
  font-weight: 900;
}
.bid-module .action-section {
  max-width: 249px;
  border-left: 1px solid #168095;
  padding: 16px;
}
.bid-module .action-section.bid-won {
  max-width: 249px;
  width: 249px;
  background-color: #168095;
  text-align: center;
}
.bid-module .action-section.bid-won.current-bidder-won {
  background-color: #D74B4B;
}
.bid-module .action-section.bid-won.current-bidder-won a {
  text-decoration: underline;
  cursor: pointer;
}
.bid-module .action-section.bid-won p {
  color: #FFF;
}
.bid-module .action-section.bid-won .primary-text {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
.bid-module .action-section .button-section {
  display: flex;
  margin-bottom: 8px;
}
.bid-module .action-section .button-section .primary-button {
  flex: 1;
  margin-right: 8px;
}
.bid-module .action-section .button-section input {
  max-width: 80px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
}
.bid-module .action-section .button-section .secondary-button {
  flex: 1;
  margin-left: 8px;
}
.bid-module .action-section .timer {
  border-radius: 4px;
  background-color: #E8F3F5;
  height: 60px;
  width: 217px;
}
.bid-module .action-section .timer.low-time {
  background-color: #7B3535;
}
.bid-module .action-section .timer.low-time .heading-text {
  color: #FFF;
}
.bid-module .action-section .timer .timer-text {
  text-align: center;
  margin: auto;
  line-height: 60px;
}
.bid-module .action-section .timer .heading-text {
  color: #168095;
  font-weight: 900;
}

.draft-board-studios .nav-wrapper {
  margin: 8px 0;
}
.draft-board-studios .studio-draft-element {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #168095;
  display: block;
  margin-bottom: 16px;
}
.draft-board-studios .studio-draft-element:hover {
  cursor: pointer;
}
.draft-board-studios .studio-draft-element .card {
  display: flex;
  width: 100%;
  flex-basis: 100%;
  max-height: 98px;
}
.draft-board-studios .studio-draft-element .card .studio-image {
  width: 60px;
  height: 60px;
  flex: 0;
  padding: 16px 0;
}
.draft-board-studios .studio-draft-element .card .studio-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.draft-board-studios .studio-draft-element .card .studio-name {
  flex: 1;
}
.draft-board-studios .studio-draft-element .card .studio-name .content {
  padding: 0 16px;
  height: 98px;
}
.draft-board-studios .studio-draft-element .card .stats-content {
  display: flex;
  width: 576px;
}
.draft-board-studios .studio-draft-element .card .stats-section {
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  width: 100%;
}
.draft-board-studios .studio-draft-element .card .stats-section p {
  margin: 0 0 8px 0;
}
.draft-board-studios .studio-draft-element .card .stats-section .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.draft-board-studios .studio-draft-element .card .stats-section .value {
  font-weight: 400;
  line-height: 24px;
  font-size: 30px;
}
.draft-board-studios .studio-draft-element .card .max-bid {
  background-color: #F5F5F5;
}
.draft-board-studios .studio-draft-element .card .max-bid .label {
  font-size: 16px;
  line-height: 20px;
}
.draft-board-studios .studio-draft-element .card .max-bid .value {
  color: #D74B4B;
  font-weight: 400;
  line-height: 24px;
  font-size: 30px;
}
.draft-board-studios .studio-draft-element .expanded-section {
  width: 100%;
  margin-top: 16px;
}
.draft-board-studios .studio-draft-element .expanded-section .movie-list-element {
  background-color: #F5F5F5;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 4px;
}
.draft-board-studios .studio-draft-element .expanded-section .movie-list-element:not(:last-child) {
  margin-bottom: 16px;
}
.draft-board-studios .studio-draft-element .expanded-section .movie-list-element img {
  width: 40px;
  height: 60px;
}
.draft-board-studios .studio-draft-element .expanded-section .movie-list-element .movie-title {
  flex: 1;
  margin-left: 16px;
  font-size: 16px;
  line-height: 20px;
}
.draft-board-studios .studio-draft-element .expanded-section .movie-list-element .release-date {
  margin-right: 32px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.draft-board-studios .studio-draft-element .expanded-section .movie-list-element .score {
  margin-left: 32px;
  text-align: right;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.season-movie {
  background-color: #F1F1F1;
  max-height: 128px;
  border-bottom: 1px solid #8E8E8E;
  display: flex;
}
.season-movie .content {
  padding: 16px;
  flex: 1;
  display: flex;
}
.season-movie .content img {
  height: 96px;
  width: 64px;
}
.season-movie .content p {
  margin: 0 0 6px 0;
}
.season-movie .content button {
  padding: 0;
}
.season-movie .content .info-section {
  padding-left: 16px;
  flex: 1;
}
.season-movie .content .button-section {
  padding: 16px;
}

@media screen and (max-width: 500px) {
  .edit-draft {
    border: 1px solid #168095;
    border-radius: 4px 4px 0 0;
    padding: 8px;
  }
  .edit-draft-actions {
    padding: 8px;
    border: 1px solid #168095;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    margin-top: 0;
  }
}
.edit-draft {
  display: flex;
}
.edit-draft .content {
  margin: auto;
}
.edit-draft .text-input {
  max-width: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.edit-draft select {
  width: 200px;
  margin-bottom: 16px;
}

.edit-draft-actions {
  display: flex;
}
.edit-draft-actions .button-wrapper {
  margin: auto;
}

@media screen and (max-width: 500px) {
  .bid-module {
    height: auto;
    max-height: 548px;
    width: 100%;
    display: block;
  }
  .bid-module .movie-information {
    padding: 8px;
    display: block;
    text-align: center;
  }
  .bid-module .movie-information .poster {
    height: 216px;
    width: 144px;
  }
  .bid-module .content-section {
    padding: 0;
  }
  .bid-module .studio-information {
    text-align: center;
    padding: 8px;
  }
  .bid-module .studio-information .studio-image {
    display: none;
  }
  .bid-module .action-section {
    max-width: inherit;
    width: auto;
    text-align: center;
    border-top: 1px solid #168095;
    border-left: 0;
  }
  .bid-module .action-section.bid-won {
    max-width: inherit;
    width: auto;
  }
  .bid-module .action-section .timer {
    width: auto;
  }
}
