@keyframes fav_coach_kf {
    to {color: hsl(var(--base));}
}

.fav_coach {
    animation: fav_coach_kf 500ms ease forwards;
}

@keyframes block_coach_kf {
    to {color:red; background-color:rgb(184, 55, 55);}
}

.block_coach {
    animation: block_coach_kf 500ms ease forwards;
}

.choices_outer {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    background: #1A1A1A;
    border-radius: 25px;
    padding: 20px;
}

.choices_inner{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.choices_inner2{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: 20px;
}

.choices_inner2 .btn{
  flex: 1 1 7rem;
  min-width: 7rem;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 576px){
  .choices_inner2{ margin-left: 0; }
  .choices_outer{ padding: 16px; }
}

.btn_off {
    background: #2B2B2B !important;
    border-color: #2B2B2B !important;
}

.btn_save {
    margin-left: auto;
    margin-top: 10px;
}

.btn-check:checked+.btn {
    background-color: hsl(var(--base)) !important;
}
