.ritz-team-team-selector {
  max-width: 1440px !important;
  width: 100%;
  padding: 62px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
}
.ritz-team-team-selector > .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.ritz-team-team-selector > .left > a.team-selector {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid #000;
  cursor: pointer;
}
.ritz-team-team-selector > .left > a.team-selector > span.text {
  flex: 1;
  color: var(--Ritholtz-Black, #151515);
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 104%; /* 24.96px */
  text-transform: capitalize;
}
.ritz-team-team-selector > .left > a.team-selector > svg {
  transition: transform 0.3s ease;
}
.ritz-team-team-selector > .left > a.team-selector.selected > span.text {
  color: var(--Ritholtz--Gold, #FFB921);
  font-weight: 600;
}
.ritz-team-team-selector > .left > a.team-selector.selected > svg {
  transform: rotate(-90deg);
}
.ritz-team-team-selector > .right {
  flex: 1;
}
.ritz-team-team-selector > .right .team-selector-content.hidden {
  display: none;
}
.ritz-team-team-selector > .right .team-selector-content > .team-selector-content-description {
  margin-top: 32px;
  color: #000;
}
@media screen and (max-width: 991.98px) {
  .ritz-team-team-selector {
    flex-direction: column;
    gap: 50px;
  }
  .ritz-team-team-selector > .left > a.team-selector {
    padding: 10px 0;
  }
}
