.competition {
  background-color: #EAF4FF;
  height: 100%;
  min-height: 200px;
}
.competition__view {
  padding: 98px 0;
}
.competition__entrant-search-input {
  width: 100%;
  outline: none;
  padding: 10px 20px;
  border: none;
}
.competition__table td {
  background-color: #fff;
}
.competition__table th {
  border-bottom: 0 !important;
  padding: 20px !important;
  background-color: #f7f7fa;
}
.competition .dt-wrapper .dt-bottom {
  background-color: #f7f7fa;
}
@media (max-width: 550px) {
  .competition__entrant-search-input {
    max-width: 100%;
    width: 100%;
  }
}

.loading-spinner {
  font-family: "Circe";
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: showSpinner 0.5s;
}
@keyframes showSpinner {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loading-spinner__text {
  text-align: center;
  margin-top: 15px;
  color: #fff;
  font-size: 20px;
  width: 23em;
}
.loading-spinner__dots {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  width: 5px;
  animation: scaleDots 1.5s linear infinite;
}
@keyframes scaleDots {
  from {
    width: 0;
  }
  to {
    width: 25px;
  }
}
.loading-spinner_hidden {
  display: none;
}

.block {
  margin-bottom: 1rem;
  border-radius: 0.125rem;
  box-shadow: 0 2px 4px gainsboro;
  overflow: hidden;
  transition: height 500ms;
}
.block__title {
  position: relative;
  padding: 1rem;
  padding-right: 2rem;
  line-height: 1rem;
  font-weight: bold;
  background-color: slateblue;
  cursor: pointer;
  user-select: none;
  color: white;
}
.block__title h3 {
  line-height: 20px;
}
.block__title:hover {
  opacity: 0.8;
}
.block__title::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 0.75em;
  height: 100%;
  padding-right: 1rem;
  font-size: 1.17em;
  background: slateblue;
}
.block.is-collapsed .block__title::after {
  content: "+";
}
.block.is-expanded .block__title::after {
  content: "-";
}
.tabs {
  display: flex;
  margin-bottom: 16px;
}
.tabs > div {
  background: #ffffff;
  border-radius: 10px;
  margin-right: 8px;
  padding: 19px 40px;
  cursor: pointer;
  font-family: "Circe", serif;
  font-size: 16px;
}
.tabs > div.active {
  color: #00ab4f;
}

/* Стили для вкладок */
.tabs {
  margin-bottom: 20px;
}

.tabs > div {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #f0f0f0;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.tabs > div:hover {
  background-color: #e0e0e0;
}

.tabs > div.active {
  background-color: #007bff;
  color: white;
}

.tabs > div:last-child {
  margin-right: 0;
}

/*# sourceMappingURL=competition-results.css.map */
