/* #region Choice-Header */
.choice-header {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px 20px 0px 0px;
  padding: 20px;
  box-shadow: 0px 0px 9px -5px rgba(102, 89, 188, 0.6),
    0px 0px 14px 7px rgba(102, 89, 188, 0.04);
}
.choice-header-closed {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 0px 9px -5px rgba(102, 89, 188, 0.6),
    0px 0px 14px 7px rgba(102, 89, 188, 0.04);
}
.choice-header__teacher p {
  color: #fb7b9d;
  font-weight: 700;
}
.choice-header-closed img {
  transform: rotate(180deg);
}
/* #endregion */
/* #region Choice-Container */
.choice-container {
  position: relative;
  z-index: 0;
  display: flex;
  padding: 20px;
  gap: 20px;
  flex-direction: column;
  border-radius: 0px 0px 20px 20px;
  background: var(--container, #fff);
  box-shadow: 0px 0px 9px -5px rgba(102, 89, 188, 0.6),
    0px 0px 14px 7px rgba(102, 89, 188, 0.04);
  /* animation: closed 3s ease; */
}
.choice-container-closed {
  display: none;
}
@keyframes closed {
  from {
    height: 0;
    visibility: hidden;
  }
  to {
    height: 500px;
    visibility: visible;
  }
}
.choice-container-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 10px;
  overflow: auto;
  max-height: 258px;
}
.choice-container-list__item-selected {
  background: var(--red-dark, #fb7b9d);
  box-shadow: 7px 9px 19px 3px rgba(229, 96, 131, 0.2);
  color: #fff;
}
.choice-container-list__item {
  cursor: pointer;
  flex: 0 1 290px;
  padding: 10px 20px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
/* #endregion */

/* #region Links */
.content__links {
  margin-top: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 14px 7px rgba(102, 89, 188, 0.04),
    0px 0px 9px -5px rgba(102, 89, 188, 0.6);
  border-radius: 20px;
}
.links__content {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}
.links__item {
  display: flex;
  justify-content: space-between;
  flex: 0 1 210px;
  flex-direction: column;
  background: #fcd3de;
  border-radius: 20px;
  padding: 30px;
}
.links-item__body {
  display: flex;
  flex-direction: column;
}
.item__image {
  align-self: center;
}
.item__image img {
  width: 80px;
}
.item__title {
  margin-top: 30px;
}
.item__link {
  margin-top: 20px;
}
.item__link p {
  color: #6659bc;
  cursor: pointer;
}
/* #endregion */
