:root {
  /*css - переменные*/
  --main: rgba(60, 60, 60);
  --main-opacity-7: rgba(60, 60, 60, 0.07);
  --main-opacity-14: rgba(60, 60, 60, 0.14);
  --main-opacity-30: rgba(60, 60, 60, 0.3);
  --hover: #292929;
  --dark-gradient-05: linear-gradient(90deg, #141414 0%, rgba(20, 20, 20, 0.5) 100%);
  --gray: #727272;
  --black-1: #141414;
  --white-2: #F1F1F1;
  --white-3: #E0E0E0;
  --green: #26A135;
/*  --green-opacity: 38, 161, 53; */
  --children-opacity: 219, 57, 78;
}

/* применение var(--color-blue); */

/*стили хедера*/

.header__top-wrap {
  background-color: var(--main);
}

.search {
  background-color: var(--main);
}

/*стили футера*/

.footer__top-wrap {
  background-color: var(--main);
}

.footer__bottom-wrap {
  background-color: var(--hover);
}

.footer__logo {
  fill: var(--white);
}

.footer__logo-link:hover .footer__logo {
  fill: var(--burgundy);
}

/*стили преимущества*/

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 20px;
  margin: 0 0 25px;
  background: var(--dark-white);
  border-radius: 5px;
}

.advantages--margin-40 {
  margin: 0 0 40px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantages__img {
  margin: 0 0 10px;
}

.advantages__heading {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}

.advantages__text {
  font-size: 14px;
  line-height: 18px;
}

/*стили программы*/

.grid {
  display: grid;
  grid-gap: 20px;
}

.grid--five {
  grid-template-columns: repeat(6, 1fr);
}

.grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.grid--one {
  grid-template-columns: repeat(1, 1fr);
}

.grid--five .grid__item:nth-child(1) {
  grid-column: 1 / 4;
}

.grid--five .grid__item:nth-child(2) {
  grid-column: 4 / 7;
}

.grid--five .grid__item:nth-child(3) {
  grid-column: 1 / 3;
}

.grid--five .grid__item:nth-child(4) {
  grid-column: 3 / 5;
}

.grid--five .grid__item:nth-child(5) {
  grid-column: 5 / 7;
}

.grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.grid__item {
  display: flex;
  flex-direction: column;
}

.grid__link {
  position: relative;
  display: block;
}

.grid__link:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(176, 24, 51, 0.5), rgba(176, 24, 51, 0.5)), rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 5px 5px 0 0;
}

.grid__img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: top center;
  border-radius: 5px 5px 0 0;
  z-index: 1;
}

.grid__img--240 {
  height: 240px;
}

.grid__top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 10px;
}

.grid__heading {
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  color: var(--white);
  margin: 0 0 5px;
  text-transform: uppercase;
}

.grid__additional {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
}

.grid__content {
  padding: 20px;
  background-color: var(--dark-white);
  border-radius: 0 0 5px 5px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.grid__price {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 10px;
}

.grid__price--margin-20 {
  margin: 0 0 20px;
}

.grid__cover {
  margin: 0 0 20px;
  min-height: 120px;
}

.grid__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px;
}

.grid__text:last-child {
  margin: 0;
}

.grid__bold {
  font-weight: 600;
}

.grid--main .grid__cover {
  margin: 0;
  min-height: auto;
}

.grid--main .grid__text {
  margin: 0;
}

.grid__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 45px;
}

.grid__subheading {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 15px;
  color: var(--red);
}

.grid__includes {
  padding: 0;
  margin: 0 0 auto;
}

.grid--button .grid__includes {
  padding: 0 0 30px;
}

.grid__include {
  display: flex;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 10px;
}

.grid__include:last-child {
  margin: 0;
}

.grid__check {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 10px 0 0;
  background-color: rgba(198, 22, 51, 0.1);
  flex-shrink: 0;
  padding: 0 0 1px 2px;
}

.grid__icon {
  stroke: var(--red);
}

.grid__include--blue {
  color: var(--dark-blue);
}

.grid__include--blue .grid__check {
  background-color: rgba(64, 91, 233, 0.1);
}

.grid__include--blue .grid__icon {
  stroke: var(--dark-blue);
}

.grid__variable {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.grid__button {
  border-radius: 5px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--red);
  transition: 0.3s;
}

.grid__button--red {
  background-color: var(--main);
  color: var(--white);
}

.grid__button--180 {
  max-width: 180px;
}

.grid__button:hover {
  color: var(--dark-red);
  border: 1px solid var(--light-gray);
  transition: 0.3s;
}

.grid__button--red:hover {
  color: var(--white);
  background-color: var(--hover);
}

.grid__resizes {
  display: none;
}

.grid__buttons {
  display: grid;
  gap: 20px;
  padding: 20px;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--white-2);
  border-radius: 0 0 5px 5px;
}

.vertical__img {
  width: 100%;
  height: auto;
}

.question-block.hidden {
  display: none;
}

/*стили таблиц*/

.tables-border:not(.tables-border-not-black) {
  border: 1px solid var(--light-black);
}

.table:not(.table-not-black) .table__head {
  background-color: var(--light-black);
}

.table__head .table__cell {
  color: var(--light-gray-1);
}

.table-progress .table__row {
  height: 50px;
}

.table-player .table__head .table__cell,
.table-unusual .table__head .table__cell {
  border-right: 1px solid var(--gray);
}

.table-progress .table__head .table__cell {
  padding: 10px 15px;
}

.table-unusual .table__head .table__cell:nth-child(even) {
  border-right: none;
}

.table:not(.table-not-black) .table__cell {
  padding: 5px 15px;
  border: 1px solid var(--light-black);
}

.table-progress .table__cell {
  border: none;
  z-index: 1;
}

.table-progress .table-progress__name {
  z-index: 2;
}

.table-player .table__cell {
  width: 20%;
}

.table-unusual .table__cell {
  width: 10%;
}

.table-unusual .table__cell:nth-child(even) {
  border-right: none;
}

.table-unusual .table__cell:nth-child(odd) {
  border-left: none;
}

.table-unusual .table-unusual__name {
  width: 20%;
}

.table-unusual__scale {
  font-size: 12px;
  line-height: 16px;
}

.table-progress__numbers {
  width: 15%;
}

.table-progress__name {
  width: 23%;
}

.table-progress__name--black {
  background-color: var(--light-black);
}

.table-progress__name--white {
  background-color: var(--white);
}

.table-progress__ref {
  width: 15%;
}

.table-progress__up {
  padding: 10px 5px 5px;
}

.table-progress__down {
  padding: 5px 5px 10px;
}

.table-progress__result {
  width: 7%;
}

.submenu {
  display: none;
  flex-direction: column;
  position: absolute;
  transition: 0.3s;
  background-color: var(--main);
  z-index: 1;
  width: 110px;
  margin-left: -55px;
  left: 50%;
}

.navigation__item--has-submenu .navigation__link {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.navigation__item--has-submenu .navigation__link:after {
  position: relative;
  top: 1px;
  display: block;
  width: 20px;
  height: 20px;
  content: url("/img/arrow-white.svg");
  transition: 0.3s;
}

.submenu__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 10px;
  display: flex;
  color: var(--white);
  opacity: 0.75;
  transition: 0.3s;
}

.submenu__item--active .submenu__link {
  opacity: 1;
  transition: 0.3s;
}

/*Тэги-ссылки*/

.tags-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.tags-links__link {
  display: flex;
  padding: 5px 15px;
  color: var(--white);
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  text-transform: lowercase;
  background-color: var(--main);
  border-radius: 5px;
  transition: 0.2s;
}

.tags-links__link:hover {
  background-color: var(--dark);
  transition: 0.2s;
}

.button--success {
  background-color: var(--green);
}

.button--success:hover {
  background-color: var(--green-hover);
}

.promo {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 630px;
  padding: 0 125px;
  margin: -40px -20px 0;
  position: relative;
}

.promo:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-gradient-05);
  z-index: 1;
  opacity: 0.5;
}

.promo__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 505px;
  z-index: 2;
}

.promo__title {
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  color: var(--white);
}

.promo__subtitle {
  font-weight: 500;
  color: var(--white);
}

.promo .button {
  max-width: 212px;
}

.task {
  display: flex;
  flex-direction: column;
  margin: 0 -20px;
}

.task--normal {
  margin: 0!important;
}

.task__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.task__item:nth-child(even) > .task__wrapper {
  order: 2;
}

.task__img {
  max-width: 100%;
  height: auto;
}

.task__content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-white);
  padding: 20px 15px;
}

.task__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  max-width: 400px;
}

.interaction__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.interaction {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.interaction__video {
  position: relative;
  max-width: 100%;
  height: 420px;
  display: flex;
  border-radius: 5px;
  z-index: 1;
}

/*
.interaction:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--black-opacity), 0.2);
  z-index: 2;
  border-radius: 5px;
}
*/

/*.interaction__text {
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 500;
  color: var(--white);
  padding: 30px;
  z-index: 3;
}*/

.form__has-icon {
  position: relative;
}

.form__has-icon:after {
  content: url("/img/calendar.svg");
  margin: -10px 0 0;
  position: absolute;
  top: 50%;
  right: 15px;
}

.open-day {
  margin: 0 -20px;
  width: calc(100% + 40px);
  height: auto;
  object-fit: cover;
  object-position: center;
}

.tables-gray {
  border: 1px solid var(--light-gray-1);
}

.tables-gray .table__head {
  background-color: var(--dark-white);
}

.tables-gray .table__head .table__cell {
  color: var(--gray);
}

.tables-gray .table__cell {
  border: 1px solid var(--light-gray-1);
}

.table__check {
  stroke: var(--main);
}

.table__width-160 {
  width: 160px;
}

.months {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider--static .slider__img {
  height: auto;
}

.header--solncevo .header__nav-block {
  justify-content: space-between;
  flex-grow: 1;
}

.footer--solncevo .footer__top {
  justify-content: space-between;
  gap: 10px;
}

.footer--solncevo .footer__logo-block {
  margin: 0;
}

.text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.text--center {
  text-align: center;
}

.text__gray {
  color: var(--gray);
}

.text__medium {
  font-weight: 600;
}

.slider--main .slider__arrow {
  stroke: var(--main);
}

.slider--main .slider__arrows-link:hover .slider__arrow {
  stroke: var(--hover);
}

.hide-tablet .sidebar {
  width: calc(100% - 20px);
}

.collaboration {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.collaboration__list {
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3));
}

.collaboration__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.collaboration__item:not(:last-child):after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.collaboration__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collaboration__logo {
  flex-shrink: 0;
  fill: var(--white);
  max-width: 100%;
  height: auto;
  margin: 0 5px;
}

.collaboration__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.collaboration__texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.collaboration__text {
  font-weight: 500;
  color: var(--white);
}

.collaboration .heading {
  text-align: center;
}

.collaboration__url {
  transition: 0.3s;
  text-decoration: underline;
  color: var(--white);
}

.collaboration__url:hover {
  transition: 0.3s;
  color: var(--hover);
}

.button--light-gray {
  color: var(--light-black);
  background: var(--dark-white);
  width: auto;
  min-height: 40px;
  padding: 0 15px;
}

.button--light-gray:hover {
  background: var(--light-gray-3);
  transition: 0.3s;
}

.r-container {
  padding: 40px;
  margin: 0 auto;
  max-width: 926px;
  width: 100%;
  background-color: var(--white);
}

.rept {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 500;
}

.rept__container {
  display: flex;
  justify-content: center;
  background-image: url(../img/welcome-report.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px 5px 0 0;
}

.rept__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 820px;
  color: var(--white);
  text-align: center;
}

.rept__subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.group__block {
  display: grid;
  grid-template-columns: 33% 67%;
  gap: 40px;
  font-size: 16px;
  line-height: 22px;
}

.group__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.group__item:not(:last-child):after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--white-3);
}

.group__title {
  color: var(--gray);
}

.group__text {
  color: var(--black-1);
}

.group__container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.group__content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.group__img {
  border-radius: 100%;
}

.tasks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--black-1);
}

.tasks__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tasks__subtitle {
  font-size: 16px;
  line-height: 22px;
}

.report__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-radius: 5px;
  background: var(--white-2);
  padding: 40px;
  max-width: 926px;
  margin: 0 auto;
  width: 100%;
}

.report__button {
  max-width: 216px;
}

.multicolor {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

.multicolor__thead {
  color: var(--white);
}

.multicolor--yellow .multicolor__thead {
  color: var(--light-black);
}

.multicolor__th {
  padding: 15px 0;
  position: sticky;
  top: 0;
}

.multicolor__th:first-child {
  width: 320px;
  min-width: 320px;
}

.multicolor__td:first-child {
  width: 320px;
  min-width: 320px;
  padding: 5px 15px 5px 20px;
}

.multicolor--double .multicolor__td:nth-child(3):not(:last-child),
.multicolor--double .multicolor__td:nth-child(5):not(:last-child),
.multicolor--double .multicolor__td:nth-child(7):not(:last-child) {
  padding: 5px 25px 5px 5px;
  width: 275px;
}

.multicolor--double .multicolor__td:nth-child(4),
.multicolor--double .multicolor__td:nth-child(6),
.multicolor--double .multicolor__td:nth-child(8) {
  padding: 5px 5px 5px 20px;
  width: 270px;
}

.multicolor--single .multicolor__td:not(:first-child) {
  padding: 5px 25px 5px 20px;
  width: 470px;
}

.multicolor--single .multicolor__td:nth-child(2) {
  padding: 5px 25px 5px 5px;
  width: 425px;
}

.multicolor--single .multicolor__td:last-child {
  padding: 5px 5px 5px 20px;
  width: 435px;
}

.multicolor__th:not(:first-child),
.multicolor__td:not(:first-child) {
  width: 225px;
}

.multicolor__thw {
  padding: 15px 5px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  text-align: center;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.multicolor--green .multicolor__thw {
  background-color: var(--green);
}

.multicolor--blue .multicolor__thw {
  background-color: var(--light-blue-1);
}

.multicolor--yellow .multicolor__thw {
  background-color: var(--yellow-1);
}

.multicolor--red .multicolor__thw {
  background-color: var(--red);
}

.multicolor__th:first-child .multicolor__thw {
  border-radius: 5px 0 0 5px;
  padding: 15px 5px 15px 20px;
}

.multicolor__th:last-child .multicolor__thw {
  border-radius: 0 5px 5px 0;
  padding: 15px 20px 15px 5px;
}

.multicolor__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.multicolor__td {
  padding: 5px;
}

.multicolor__tw {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  border-radius: 5px;
  height: 40px;
}

.multicolor__tw--bold {
  font-size: 16px;
  line-height: 20px;
}

.multicolor--green .multicolor__tw--small {
  background-color: rgba(var(--green-opacity), 0.15);
}

.multicolor--green .multicolor__tw--medium {
  background-color: rgba(var(--green-opacity), 0.25);
}

.multicolor--green .multicolor__tw--big {
  background-color: rgba(var(--green-opacity), 0.40);
}

.multicolor--green .multicolor__tw--unknown{
  background-color: var(--green);
}

.multicolor--blue .multicolor__tw--small {
  background-color: rgba(var(--blue-1-opacity), 0.15);
}

.multicolor--blue .multicolor__tw--medium {
  background-color: rgba(var(--blue-1-opacity), 0.25);
}

.multicolor--blue .multicolor__tw--big {
  background-color: rgba(var(--blue-1-opacity), 0.40);
}

.multicolor--blue .multicolor__tw--unknown{
  background-color: var(--light-blue-1);
}

.multicolor--yellow .multicolor__tw--small {
  background-color: rgba(var(--yellow-1-opacity), 0.15);
}

.multicolor--yellow .multicolor__tw--medium {
  background-color: rgba(var(--yellow-1-opacity), 0.25);
}

.multicolor--yellow .multicolor__tw--big {
  background-color: rgba(var(--yellow-1-opacity), 0.40);
}

.multicolor--yellow .multicolor__tw--unknown{
  background-color: var(--yellow-1);
}

.multicolor__tw--border {
  border: 1px solid var(--light-gray-3);
}

.multicolor__tw--column {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.multicolor__left {
  text-align: left;
  justify-content: flex-start;
}

.multicolor__small {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  opacity: 0.7;
}

.multicolor__normal {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.multicolor__bold {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}

.multicolor__comment {
  padding: 20px;
  background-color: rgba(var(--children-opacity), 0.07);
  border-radius: 5px;
  overflow: hidden;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.text-bold {
  font-weight: 700;
}

.form__header {
  display: flex;
  padding: 5px 20px;
  background-color: var(--main);
  gap: 30px;
  align-items: center;
  border-radius: 5px 5px 0 0;
}

.form__logo {
  flex-shrink: 0;
}

.form__brend {
  font-family: "PTSans Narrow", "Arial", sans-serif;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--white);
}

.form__or {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  line-height: 20px;
}

.form__or:before,
.form__or:after {
  content: '';
  display: flex;
  height: 1px;
  flex-grow: 1;
  background-color: var(--gray);
  position: relative;
  top: 1px;
}

.linker {
  display: flex;
  flex-direction: column;
  padding: 10px 15px 15px;
  gap: 10px;
  border-radius: 5px;
  background-color: var(--main-opacity-30);
}

.linker__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linker__icon {
  flex-shrink: 0;
}

.linker__attention {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: var(--main);
}

.linker__content {
  padding: 12px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 20px;
  background-color: var(--white);
}

.linker__line {
  width: 100%;
  height: 100%;
  background-color: var(--white-3);
}

.linker__profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linker__img {
  flex-shrink: 0;
  border-radius: 50%;
}

.liner__name {
  font-size: 14px;
  line-height: 20px;
}

.linker__birthdate {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  line-height: 16px;
}

.linker__title {
  color: var(--gray);
}

.linker__info {
  font-weight: 500;
}

.clue {
  display: flex;
  align-items: center;
  gap: 5px;
}

.clue__wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.clue__link {
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
}

.clue__content {
  display: none;
  transition: 0.3s;
  position: absolute;
  left: 100%;
  align-items: center;
}

.clue__link:hover + .clue__content {
  display: flex;
  transition: 0.3s;
}

.clue__polygon {
  position: relative;
  z-index: 2;
  left: 1px;
}

.clue__text {
  padding: 10px 15px;
  width: 505px;
  color: var(--gray);
  background-color: var(--white);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 25px 0 rgba(var(--black-opacity), 0.1), 0 0 10px 0 rgba(var(--black-opacity), 0.05);
}

.settings {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.settings__link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.settings__text {
  color: var(--children);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.settings__icon {
  flex-shrink: 0;
}

.settings--show-tablet {
  display: none;
}

.olds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.olds__link {
  display: grid;
  grid-template-columns: 205px auto;
  min-height: 70px;
  border-radius: 5px;
  overflow: hidden;
}

.olds__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.olds__wrap:after {
  position: absolute;
  content: '';
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(var(--black-opacity), 0.2), rgba(var(--black-opacity), 0.2)), linear-gradient(0deg, rgba(176, 24, 51, 0.5), rgba(176, 24, 51, 0.5));
}

.olds__img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  position: relative;
}

.olds__title {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
}

.olds__content {
  padding: 25px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-2);
}

.olds__dates {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.olds__item--hidden {
  display: none;
}

.collapses {
  display: flex;
  flex-direction: column;
}

.collapses__link {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid var(--white-3);
  transition: 0.3s;
  cursor: pointer;
}

.collapse-active {
  border: none;
  transition: 0.3s;
}

.collapses__icon {
  flex-shrink: 0;
  transition: 0.3s;
}

.collapse-active .collapses__icon {
  transition: 0.3s;
  transform: rotate(180deg);
}

.participation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  background-color: var(--white-2);
  border-radius: 5px;
  transition: 0.3s;
}

.participation--open {
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s;
}

.participation__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.participation__date {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: var(--gray);
}

.participation__row {
  max-width: 405px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.bottom {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--white-2);
}

.bottom__wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
}

.bottom__group {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bottom__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 18px;
}

.bottom__name {
  color: var(--gray);
}

.bottom__text {
  font-weight: 500;
}

.more {
  margin: 3px 0 0 15px;
  display: flex;
}

.reports {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reports--progress .heading-h3,
.reports--progress .reports__format {
  color: var(--children);
}

.reports__link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reports__wrapper {
  position: relative;
}

.reports__background {
  width: 100%;
  height: auto;
  z-index: 1;
  border-radius: 5px;
}

.reports__texts {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.reports__format {
  font-size: 14px;
  line-height: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
}

.reports__date {
  font-size: 12px;
  line-height: 14px;
  color: var(--gray);
}

.attendance--true {
  color: var(--green);
}

.attendance--false {
  color: var(--main);
}

.count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  max-width: 345px;
  padding: 10px 15px;
  border: 1px solid var(--main);
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

.freeze {
  background-color: rgba(64, 91, 233, 0.1);
}

.freeze__link {
  color: var(--dark-blue);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 1154;
  background-image: none;
}

.modal.open {
  display: flex;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--white-2);
}

.groups__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal {
  display: none;
}
.modal.show {
  display: block;
}

