.section-text-preview {
  border-radius: 3.33333vw;
  padding: 4.44444vw;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .section-text-preview {
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
  }
}

.text-preview {
  display: flex;
  flex-direction: column;
  gap: 3.33333vw;
  padding-right: 2.22222vw;
}
@media (min-width: 1200px) {
  .text-preview {
    font-size: 14px;
    gap: 12px;
    padding: 0;
  }
}
.text-preview__content {
  color: rgb(var(--color-text-black));
}
@media (min-width: 1200px) {
  .text-preview__content {
    line-height: 1.21429;
  }
}
.text-preview__more {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  margin-top: -3.33333vw;
}
@media (min-width: 1200px) {
  .text-preview__more {
    margin-top: -12px;
  }
}
.text-preview__more.active {
  margin-top: 0;
}
.text-preview__btn {
  display: flex;
  align-items: center;
  gap: 2.22222vw;
  background: none;
  border: none;
  align-self: flex-start;
  font-weight: 500;
  color: rgb(var(--color-primary));
  padding: 1.11111vw 0;
}
@media (min-width: 1200px) {
  .text-preview__btn {
    gap: 8px;
    padding: 4px 0;
  }
}
.text-preview__btn-icon {
  width: 4.44444vw;
  aspect-ratio: 1;
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .text-preview__btn-icon {
    width: 16px;
  }
}
.text-preview__btn.active .text-preview__btn-icon {
  transform: rotate(180deg);
}

.card-bet {
  background: rgb(var(--color-bg-blue));
  border-radius: 4.44444vw;
  padding: clamp(1px, .27777vw, .27777vw);
}
@media (min-width: 1200px) {
  .card-bet {
    padding: 2px;
    border-radius: 16px;
  }
}
.card-bet__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.77778vw 4.16667vw;
  color: rgb(var(--color-gray));
}
@media (min-width: 1200px) {
  .card-bet__header {
    padding: 10px 31px 10px 16px;
  }
}
.card-bet__result {
  display: flex;
  align-items: center;
  gap: 2.77778vw;
  font-size: 3.88889vw;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .card-bet__result {
    font-size: 14px;
    gap: 10px;
  }
}
.card-bet__item {
  background: rgb(var(--color-white));
  border-radius: 4.16667vw;
}
@media (min-width: 1200px) {
  .card-bet__item {
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
  }
}
.card-bet__item-left {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1200px) {
  .card-bet__item-left {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.card-bet__item-teams {
  display: flex;
  gap: 1.66667vw;
}
@media (min-width: 1200px) {
  .card-bet__item-teams {
    gap: 0;
  }
}
.card-bet__item-team {
  background: rgb(var(--color-bg-main));
  border-radius: 4.44444vw 4.44444vw 0 0;
  flex: 1 0 0;
  width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.44444vw;
}
@media (min-width: 1200px) {
  .card-bet__item-team {
    padding: 0;
    border-radius: 0;
    width: auto;
    background: none;
  }
}
@media (min-width: 1200px) {
  .card-bet__item-team:not(:first-child) {
    margin-left: -4px;
  }
}
.card-bet__item-team-img {
  width: 19.44444vw;
  height: 19.44444vw;
  padding: 4.72222vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .card-bet__item-team-img {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgb(var(--color-white));
    box-shadow: 0 8px 8px 8px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
  }
}
.card-bet__item-team-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-bet__item-team-name {
  margin: 0;
  font-size: 3.88889vw;
  line-height: 1.42857;
}
@media (min-width: 1200px) {
  .card-bet__item-team-name {
    display: none;
  }
}
.card-bet__item-info {
  display: flex;
  justify-content: center;
  padding: 3.33333vw;
}
@media (min-width: 1200px) {
  .card-bet__item-info {
    padding: 0;
    flex-direction: column;
    gap: 4px;
  }
}
.card-bet__item-title {
  display: none;
}
@media (min-width: 1200px) {
  .card-bet__item-title {
    display: block;
    font-weight: 500;
  }
}
.card-bet__item-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.22222vw;
  padding: 0.55556vw 1.11111vw;
  color: rgb(var(--color-gray));
}
@media (min-width: 1200px) {
  .card-bet__item-time {
    gap: 8px;
    padding: 3px 0;
    justify-content: flex-start;
    font-size: 14px;
  }
}
.card-bet__item-icon {
  width: 5.55556vw;
  aspect-ratio: 1;
  background: rgb(var(--color-accident));
}
@media (min-width: 1200px) {
  .card-bet__item-icon {
    width: 18px;
  }
}
.card-bet__item-right {
  background: rgb(var(--color-bg-main));
  border-radius: 0 0 4.16667vw 4.16667vw;
}
@media (min-width: 1200px) {
  .card-bet__item-right {
    background: none;
    border-radius: 0;
    display: flex;
  }
}
.card-bet__item-outcome {
  background: rgb(var(--color-primary));
  border-radius: 4.16667vw 4.16667vw 0 0;
  padding: 3.61111vw 2.77778vw 8.33333vw;
  color: rgb(var(--color-white));
  font-size: 3.33333vw;
  line-height: 1.16667;
  text-align: center;
}
@media (min-width: 1200px) {
  .card-bet__item-outcome {
    font-size: 16px;
    line-height: 1.1875;
    padding: 10px 36px 10px 14px;
    border-radius: 16px 0 0 16px;
    min-height: 48px;
    line-height: 28px;
    margin-right: -20px;
  }
}
.card-bet__item-offer {
  background: rgb(var(--color-bg-main));
  border-radius: 4.16667vw;
  margin-top: -5.83333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55556vw;
}
@media (min-width: 1200px) {
  .card-bet__item-offer {
    margin: 0;
    padding: 10px 8px;
    border-radius: 16px;
  }
}
.card-bet__item-coef {
  border-right: clamp(1px, .27777vw, .27777vw) solid rgb(var(--color-line-super-light-blue));
  padding: 3.05556vw 2.07778vw 3.05556vw 0;
  margin-right: 2.07778vw;
  font-weight: 500;
  line-height: 1.16667;
}
@media (min-width: 1200px) {
  .card-bet__item-coef {
    padding: 0;
    line-height: 1.1875;
    border-width: 1px;
    border-color: rgb(var(--color-white));
    min-height: 48px;
    margin: -10px 0;
    line-height: 48px;
    margin-right: 9px;
    padding-right: 11px;
    padding-left: 3px;
  }
}
.card-bet__item-bk {
  width: 27.77778vw;
  height: 7.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .card-bet__item-bk {
    width: 117px;
    height: 28px;
  }
}
.card-bet__item-bk-img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1199.98px) {
  .card-bet--v2 {
    background: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2.22222vw;
  }
  .card-bet--v2 .card-bet__header {
    border-radius: 4.44444vw;
    background: rgb(var(--color-bg-main));
    padding: 1.11111vw 1.11111vw 1.11111vw 3.33333vw;
  }
  .card-bet--v2 .card-bet__result {
    background: rgb(var(--color-accident));
    color: rgb(var(--color-white));
    padding: 2.22222vw 4.16667vw 2.22222vw 5.55556vw;
    border-radius: 3.33333vw;
    gap: 2.22222vw;
  }
  .card-bet--v2 .card-bet__tooltip {
    fill: rgb(var(--color-white));
    stroke: rgb(var(--color-white));
    --tooltip-size: 5.55556vw;
  }
  .card-bet--v2 .card-bet__list {
    background: rgb(var(--color-bg-main));
    border-radius: 4.44444vw;
    padding: 3.33333vw;
  }
  .card-bet--v2 .card-bet__item {
    background: none;
    border-radius: 0;
  }
  .card-bet--v2 .card-bet__item-left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 3.33333vw 5.55556vw;
  }
  .card-bet--v2 .card-bet__item-teams {
    gap: 0;
  }
  .card-bet--v2 .card-bet__item-team {
    background: none;
    border-radius: 0;
    padding: 0;
    width: auto;
  }
  .card-bet--v2 .card-bet__item-team:nth-child(2) {
    margin-left: -1.11111vw;
  }
  .card-bet--v2 .card-bet__item-team-img {
    width: 11.11111vw;
    height: 11.11111vw;
    padding: 1.66667vw;
    background: rgb(var(--color-white));
    border-radius: 50%;
    box-shadow: 0 2.22222vw 2.22222vw 2.22222vw rgba(0, 0, 0, 0.12);
  }
  .card-bet--v2 .card-bet__item-team-name {
    display: none;
  }
  .card-bet--v2 .card-bet__item-info {
    display: contents;
    padding: 0;
  }
  .card-bet--v2 .card-bet__item-title {
    display: block;
    font-size: 4.44444vw;
    font-weight: 500;
    line-height: 1.1875;
    width: calc(100% - 5.55556vw - 21.11111vw);
  }
  .card-bet--v2 .card-bet__item-time {
    padding: 1.11111vw;
    gap: 2.22222vw;
    font-size: 2.77778vw;
  }
  .card-bet--v2 .card-bet__item-icon {
    width: 4.44444vw;
  }
  .card-bet--v2 .card-bet__item-right {
    border-top: clamp(1px, .27777vw, .27777vw) solid rgb(var(--color-line-gray));
    background: none;
    border-radius: 0;
    margin-top: 2.22222vw;
    padding-top: 3.05556vw;
    display: flex;
    justify-content: space-between;
  }
  .card-bet--v2 .card-bet__item-outcome {
    border-radius: 3.33333vw;
    font-size: 4.44444vw;
    padding: 0 5px;
    min-height: 10vw;
    min-width: 10vw;
    line-height: 10vw;
  }
  .card-bet--v2 .card-bet__item-offer {
    padding: 0;
    margin: 0;
    background: rgb(var(--color-white));
    padding: 0 1.66667vw 0 2.5vw;
    box-shadow: 0 1.66111vw 1.66111vw 1.66111vw rgba(0, 0, 0, 0.12);
  }
}

.card-prediction {
  border: clamp(1px, .27777vw, .27777vw) solid rgb(var(--color-line-gray));
  border-radius: 4.44444vw;
  padding: 3.05556vw;
  display: flex;
  flex-direction: column;
  gap: 4.44444vw;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .card-prediction {
    border-width: 1px;
    padding: 15px;
    border-radius: 16px;
    gap: 20px;
    border-color: rgb(var(--color-line-super-light-blue));
  }
}
.card-prediction__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .card-prediction__header {
    align-items: center;
  }
}
.card-prediction__author {
  display: flex;
  align-items: center;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .card-prediction__author {
    gap: 10px;
  }
}
.card-prediction__author-img {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  .card-prediction__author-img {
    width: 36px;
    height: 36px;
  }
}
.card-prediction__author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55556vw;
}
@media (min-width: 1200px) {
  .card-prediction__author-info {
    gap: 2px;
  }
}
.card-prediction__author-name {
  font-size: 3.88889vw;
  font-weight: 500;
  line-height: 1.21429;
}
@media (min-width: 1200px) {
  .card-prediction__author-name {
    font-size: 14px;
  }
}
.card-prediction__author-position {
  position: relative;
  background: rgb(var(--color-green));
  color: rgb(var(--color-white));
  font-weight: 500;
  padding: 0.83333vw 0.83333vw 0.83333vw 1.66667vw;
  line-height: 1.16667;
  border-radius: 1.11111vw 0 0 1.11111vw;
  z-index: 2;
}
@media (min-width: 1200px) {
  .card-prediction__author-position {
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px 0 0 4px;
  }
}
.card-prediction__author-position::after {
  content: "";
  background: rgb(var(--color-green));
  position: absolute;
  top: 0;
  right: -1.66667vw;
  width: 5.55556vw;
  height: 100%;
  transform-origin: left center;
  transform: skew(-12deg);
  border-top-right-radius: 0.55556vw;
  border-bottom-right-radius: 0.55556vw;
  z-index: -1;
}
@media (min-width: 1200px) {
  .card-prediction__author-position::after {
    width: 20px;
    right: -3px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
  }
}
.card-prediction__date {
  font-size: 3.88889vw;
  color: rgb(var(--color-text-gray));
}
@media (min-width: 1200px) {
  .card-prediction__date {
    font-size: 14px;
  }
}
.card-prediction__content {
  display: flex;
  flex-direction: column;
  gap: 4.44444vw;
}
@media (min-width: 1200px) {
  .card-prediction__content {
    gap: 16px;
  }
}
.card-prediction__title {
  font-size: 4.44444vw;
  font-weight: 500;
  line-height: 1.1875;
}
@media (min-width: 1200px) {
  .card-prediction__title {
    font-size: 18px;
    line-height: 1.16667;
  }
}
.card-prediction__text {
  margin: 0;
  color: rgb(var(--color-gray));
  font-size: 3.88889vw;
  line-height: 1.42857;
}
@media (min-width: 1200px) {
  .card-prediction__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 1199.98px) {
  .card-prediction--v2 .card-prediction__date {
    display: none;
  }
  .card-prediction--v2 .card-prediction__title {
    font-size: 5vw;
    line-height: 1.16667;
  }
  .card-prediction--v2 .card-prediction__content {
    gap: 2.22222vw;
  }
  .card-prediction--v2 .card-prediction__text {
    font-size: 3.33333vw;
    line-height: 1.5;
  }
}

.section-tips {
  padding: 4.44444vw 2.22222vw;
  border-radius: 3.33333vw;
}
@media (min-width: 1200px) {
  .section-tips {
    border-radius: 24px;
    padding: 20px;
    gap: 20px;
  }
}

.tips {
  display: flex;
  flex-direction: column;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .tips {
    gap: 20px;
  }
}
.tips__list {
  display: flex;
  flex-direction: column;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .tips__list {
    gap: 8px;
  }
}
.tips__stats {
  display: flex;
  flex-direction: column;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .tips__stats {
    flex-direction: row;
    gap: 10px;
  }
}
.tips__stats-bar {
  display: flex;
  --bar-gap: 9.72222vw;
  gap: var(--bar-gap);
}
@media (min-width: 1200px) {
  .tips__stats-bar {
    --bar-gap: 35px;
    flex-grow: 1;
  }
}
.tips__stats-item {
  --bar-color: rgb(var(--color-bg-blue));
  background: var(--bar-color);
  border-radius: 4.44444vw 0 0 4.44444vw;
  min-height: 13.33333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.77778vw;
  font-size: 3.88889vw;
  color: rgb(var(--color-gray));
  padding: 0 2.22222vw 0 5.55556vw;
  width: calc(var(--bar-width) - var(--bar-gap) / 2);
  min-width: 23.88889vw;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .tips__stats-item {
    border-radius: 16px 0 0 16px;
    min-height: 48px;
    gap: 10px;
    font-size: 14px;
    padding: 0 8px 0 20px;
    min-width: 154px;
  }
}
.tips__stats-item::before {
  content: "";
  background: var(--bar-color);
  position: absolute;
  top: 0;
  right: -3.88889vw;
  width: 5.55556vw;
  height: 100%;
  transform-origin: left center;
  transform: skew(-12deg);
  border-radius: 0 4.16667vw 2.22222vw 0;
  z-index: -1;
}
@media (min-width: 1200px) {
  .tips__stats-item::before {
    right: -14px;
    width: 20px;
    border-radius: 0 14px 8px 0;
  }
}
.tips__stats-item--green {
  --bar-color: #E8F7F3;
  color: rgb(var(--color-accident));
}
.tips__stats-item:nth-child(2) {
  border-radius: 0 4.44444vw 4.44444vw 0;
  padding: 0 5.55556vw 0 2.22222vw;
}
@media (min-width: 1200px) {
  .tips__stats-item:nth-child(2) {
    border-radius: 0 16px 16px 0;
    padding: 0 20px 0 8px;
  }
}
.tips__stats-item:nth-child(2)::before {
  right: auto;
  left: -3.88889vw;
  border-radius: 2.22222vw 0 0 4.16667vw;
}
@media (min-width: 1200px) {
  .tips__stats-item:nth-child(2)::before {
    left: -14px;
    border-radius: 8px 0 0 14px;
  }
}
.tips__stats-logo {
  width: 6.66667vw;
  height: 6.66667vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1200px) {
  .tips__stats-logo {
    width: 24px;
    height: 24px;
  }
}
.tips__stats-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .tips__stats-btn {
    flex-shrink: 0;
    border-radius: 16px;
    padding: 11px 20px;
  }
}
.tips__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5.55556vw;
}
@media (min-width: 1200px) {
  .tips__empty {
    gap: 20px;
  }
}
.tips__empty-img {
  max-width: 51.66667vw;
}
@media (min-width: 1200px) {
  .tips__empty-img {
    max-width: 100%;
  }
}
.tips__empty-text {
  font-size: 4.44444vw;
  line-height: 1.1875;
  font-weight: 500;
  margin: 0;
}
@media (min-width: 1200px) {
  .tips__empty-text {
    font-size: 16px;
  }
}
.tips__empty-btn {
  width: 100%;
}
@media (min-width: 1200px) {
  .tips__empty-btn {
    width: auto;
    padding-left: 19px;
    padding-right: 19px;
  }
}

@media (min-width: 1200px) {
  .section-redaction-forecast {
    gap: 20px;
    border-radius: 24px;
  }
}

.redaction-forecast {
  display: flex;
  flex-direction: column;
  gap: 3.33333vw;
}
@media (min-width: 1200px) {
  .redaction-forecast {
    gap: 20px;
  }
}

.section-videos {
  padding: 4.44444vw 2.22222vw 3.33333vw;
  border-radius: 3.33333vw;
  gap: 4.44444vw;
}
@media (min-width: 1200px) {
  .section-videos {
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.videos__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4.44444vw;
}
@media (min-width: 1200px) {
  .videos__list {
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}
.videos__btn {
  display: none;
}
@media (min-width: 1200px) {
  .videos__btn {
    display: inline-flex;
  }
}

.video {
  display: flex;
  flex-direction: column;
  gap: 2.77778vw;
}
@media (min-width: 1200px) {
  .video {
    gap: 10px;
  }
}
.video iframe {
  width: 100%;
  aspect-ratio: 1.9435;
  height: auto;
  border-radius: 2.77778vw;
}
@media (min-width: 1200px) {
  .video iframe {
    border-radius: 14px;
    aspect-ratio: 1.79487;
  }
}
.video__title {
  font-weight: 500;
  line-height: 1.16667;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (min-width: 1200px) {
  .video__title {
    font-size: 14px;
    line-height: 1.21429;
  }
}

.coefficient-table {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.1111vw;
}
@media (min-width: 1200px) {
  .coefficient-table {
    gap: 4px;
    border-radius: 16px;
    padding: 8px;
    background: var(--background-main);
  }
}
.coefficient-table__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px 0 16px;
  gap: 4px;
  width: 100%;
}
.coefficient-table__head_td {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 32px;
  color: var(--text-L-gray);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.coefficient-table__head_td:first-child {
  width: auto;
  margin-right: auto;
  text-align: left;
}

.coefficient-card {
  display: block;
  width: 100%;
  padding: 2.2222vw;
  border-radius: 3.3333vw;
  background: #F8F8F8;
}
@media (min-width: 1200px) {
  .coefficient-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    padding: 12px 12px 12px 16px;
    background: var(--background-secondary);
  }
}
.coefficient-card__bk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2222vw;
  border-radius: 3.3333vw;
  background: #FFF;
}
@media (min-width: 1200px) {
  .coefficient-card__bk {
    padding: 0;
    justify-content: flex-start;
    border-radius: 0;
    background: none;
  }
}
.coefficient-card__bk_logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 8.3333vw;
}
@media (min-width: 1200px) {
  .coefficient-card__bk_logo {
    height: 24px;
  }
}
.coefficient-card__bk_logo img {
  display: block;
  height: 8.3333vw;
  width: auto;
}
@media (min-width: 1200px) {
  .coefficient-card__bk_logo img {
    height: 24px;
  }
}
.coefficient-card__bk_name {
  color: var(--Brands-primary);
  font-size: 3.8889vw;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .coefficient-card__bk_name {
    display: none;
  }
}
.coefficient-card__labels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5556vw;
}
@media (min-width: 1200px) {
  .coefficient-card__labels {
    display: none;
  }
}
.coefficient-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 100%;
  padding: 2.2222vw;
  color: var(--Text-Gray-Medium);
  text-align: center;
  font-size: 2.7778vw;
  font-weight: 500;
  line-height: 3.3333vw;
}
@media (min-width: 1200px) {
  .coefficient-card__label {
    display: none;
  }
}
.coefficient-card__values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5556vw;
}
@media (min-width: 1200px) {
  .coefficient-card__values {
    margin-left: auto;
    gap: 4px;
  }
}
.coefficient-card__value {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 100%;
  padding: 3.3333vw;
  background: #FFF;
  color: var(--text-primary);
  text-align: center;
  font-size: 3.3333vw;
  font-weight: 400;
  line-height: 3.8889vw;
}
@media (min-width: 1200px) {
  .coefficient-card__value {
    flex: 0 1 70px;
    width: 70px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    font-size: 12px;
    line-height: 14px;
    background: var(--background-main);
  }
}
.coefficient-card__value:first-child {
  border-radius: 3.3333vw 0 0 3.3333vw;
}
@media (min-width: 1200px) {
  .coefficient-card__value:first-child {
    border-radius: 8px;
  }
}
.coefficient-card__value:last-child {
  border-radius: 0 3.3333vw 3.3333vw 0;
}
@media (min-width: 1200px) {
  .coefficient-card__value:last-child {
    border-radius: 8px;
  }
}

.match-tabs {
  display: flex;
  flex-direction: column;
  gap: 3.33333vw;
}
@media (min-width: 1200px) {
  .match-tabs {
    gap: 20px;
  }
}
.match-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.11111vw;
  padding: 0 3.88889vw;
}
@media (min-width: 1200px) {
  .match-tabs__nav {
    padding: 0;
    gap: 12px;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .match-tabs__nav-item {
    flex: 1 0 0;
  }
}
.match-tabs__link {
  border-radius: 3.33333vw;
  border: clamp(1px, .27777vw, .27777vw) solid rgb(var(--color-line-super-light-blue));
  display: block;
  width: 100%;
  padding: 3.33333vw 4.16667vw;
  line-height: 1.16667;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 500;
  background: none;
}
@media (min-width: 1200px) {
  .match-tabs__link {
    border-radius: 12px;
    border-width: 1px;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.16667;
  }
}
.match-tabs__link:hover {
  border-color: rgb(var(--color-primary));
}
.match-tabs__link.active {
  background: rgb(var(--color-bg-black));
  border-color: rgb(var(--color-bg-black));
  color: rgb(var(--color-white));
  cursor: default;
}
.match-tabs__item {
  display: none;
  flex-direction: column;
  gap: 3.33333vw;
}
@media (min-width: 1200px) {
  .match-tabs__item {
    gap: 20px;
  }
}
.match-tabs__item.active {
  display: flex;
}

/*# sourceMappingURL=main.css.map */
