/**
 * -----------------------------------------------------------------------------
 * New Colors - Source: Figma (these names will not change in Figma as they come
 * from the Figma library, we should standardize around them).
 * -----------------------------------------------------------------------------
 */
/* Custom breakpoints for mobile carousel */
/* Navy icons */
.component-rank .rank-details {
  font-family: "Liberator-Medium", Helvetica, sans-serif;
}
.component-rank .rank-details .rank-label {
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .component-rank .rank-details .rank-label {
    font-size: 24px;
    line-height: 32px;
  }
}
.component-rank .chart-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .component-rank .chart-container {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .component-rank .chart-container {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
  }
}
@media (min-width: 1440px) {
  .component-rank .chart-container {
    grid-template-columns: 1fr 1fr;
    place-items: stretch;
  }
}
.component-rank .chart-container .chart {
  height: 240px;
  width: 240px;
}
@media (min-width: 768px) {
  .component-rank .chart-container .chart {
    height: 288px;
    width: 288px;
  }
}
@media (min-width: 1024px) {
  .component-rank .chart-container .chart {
    height: 240px;
    width: 240px;
  }
}
@media (min-width: 1440px) {
  .component-rank .chart-container .chart {
    height: 360px;
    width: 360px;
  }
}
.component-rank .full-time-chart,
.component-rank .part-time-chart {
  max-height: 240px;
  max-width: 240px;
}
@media (min-width: 768px) {
  .component-rank .full-time-chart,
  .component-rank .part-time-chart {
    max-height: 288px;
    max-width: 288px;
  }
}
@media (min-width: 1024px) {
  .component-rank .full-time-chart,
  .component-rank .part-time-chart {
    max-height: 240px;
    max-width: 240px;
  }
}
@media (min-width: 1440px) {
  .component-rank .full-time-chart,
  .component-rank .part-time-chart {
    max-height: 360px;
    max-width: 360px;
  }
}
.component-rank .legend-container .chart-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .component-rank .legend-container .chart-legend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 4px;
  }
}
@media (min-width: 1024px) {
  .component-rank .legend-container .chart-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 8px;
  }
}
@media (min-width: 1440px) {
  .component-rank .legend-container .chart-legend {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.component-rank .legend-container .chart-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgb(2, 42, 58);
  border: 1px solid rgb(0, 118, 169);
  color: rgb(162, 167, 171);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Liberator-Light", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 410;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .component-rank .legend-container .chart-row {
    min-width: 264px;
  }
}
@media (min-width: 1024px) {
  .component-rank .legend-container .chart-row {
    min-width: 258px;
  }
}
.component-rank .legend-container .chart-row.active {
  background-color: rgba(242, 194, 76, 0.2);
  border: 1px solid rgb(242, 201, 76);
  color: rgb(247, 247, 247);
}
.component-rank .legend-container .chart-value {
  color: rgb(255, 255, 255);
  display: none;
}
@media (min-width: 768px) {
  .component-rank .legend-container .chart-value {
    display: block;
  }
}