/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/scss/basic.scss ***!
  \************************************************************************************************************************************************************************************/
/* Core variables */
:root {
  /* Colour palette */
  --theme-bg: #FFF;
  --main-bg: #FAFEFF;
  --link-color-active: #000;
  --link-bg-active: #FC0;
  --link-color: #000;
  --link-bg: #EBEBEB;
  --radius-button: 8px;
  --card-bg: #F2F2F2;
  --divider: #CCC;
  --text-main: #000;
  --text-secondary: #666;
  --radius-card: 16px;
  --card-stroke: #CCC;
  --live-bg: #D33;
  --button-color: #FFF;
  --button-bg: #000;
  --button-bg-hover: #333;
  --button-color-hover: #FFF;
  --thead-bg: #000;
  --thead-text: #FFF;
  --trow-bg: #FFF;
  --trow-text: #000;
  --trow-bg-secondary: #F2F2F2;
  --trow-text-secondary: #000;
  --heroscreen-badge-bg: #FC0;
  --heroscreen-badge-color: #000;
  --heroscreen-main-color: #000;
  --heroscreen-secondary-color: #666;
  --heroscreen-divider: #CCC;
  --heroscreen-card-bg: #FC0;
  --heroscreen-bg: #F2F2F2;
  /* Sizes and offsets */
  --inner-offsets: 32px;
  --outer-offsets: 51px;
  --max-width: 1366px;
}
@media (max-width: 1024px) {
  :root {
    --inner-offsets: 24px;
    --outer-offsets: 16px;
  }
}
@media (max-width: 800px) {
  :root {
    --inner-offsets: 16px;
    --outer-offsets: 8px;
  }
}

/* Fonts */
/**
 * Fonts
*/
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Bold.woff2) format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/RedHatDisplay-SemiBold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/RedHatText-Regular.woff2) format("woff2");
  font-display: swap;
}
/* Mixins, helpers and functions */
/* Fonts */
/* Components */
/* Mixins, helpers and functions */
/* Fonts */
.ks-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  padding-bottom: 8px;
}
.ks-calendar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 8px;
}
.ks-calendar__item--active {
  background: var(--link-bg-active);
}
.ks-calendar__date {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--text-main);
}
.ks-calendar__day {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  font-size: 12px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 16px;
  color: #FFF;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.ks-badge_live {
  background: var(--live-bg);
}
.ks-badge_live:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #FFF;
  border-radius: 50%;
}
.ks-badge_upcoming {
  background: #237D9A;
}
.ks-badge_result {
  background: #239A68;
}
.ks-badge_heroscreen {
  background: var(--heroscreen-badge-bg);
  color: var(--heroscreen-badge-color);
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-button {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  height: 46px;
  padding: 12px 48px;
  border-radius: var(--radius-button);
  background: var(--button-bg);
  color: var(--button-color);
  margin-top: auto;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media not all and (pointer: coarse) {
  .ks-button:hover {
    background: var(--button-bg-hover);
    color: var(--button-color-hover);
  }
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-filters-scroll {
  padding-bottom: 8px;
}

.ks-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.ks-filters_dashed {
  padding-bottom: 8px;
}
.ks-filters_dashed .ks-filters__item_active:has(+ .ks-filters__item:not(.ks-filters__item_active)) {
  position: relative;
  margin-right: 8px;
}
.ks-filters_dashed .ks-filters__item_active:has(+ .ks-filters__item:not(.ks-filters__item_active)):after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: var(--divider);
  position: absolute;
  right: -8px;
  top: 0;
}
.ks-filters_filter {
  border-radius: 36px;
  padding: 4px;
  background: var(--card-bg);
}
.ks-filters_filter:has(:nth-child(4)) {
  width: 100%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.ks-filters_filter:has(:nth-child(4)) .ks-filters__item {
  min-width: 125px;
}
.ks-filters_filter .ks-filters__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 24px;
  border-radius: 36px;
  background: var(--card-bg);
  font-weight: 600;
}
.ks-filters_filter .ks-filters__item_active {
  background: var(--link-bg-active);
}
@media (max-width: 500px) {
  .ks-filters_filter .ks-filters__item {
    padding: 12px 16px;
  }
}
.ks-filters__item {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--link-color);
  background: var(--link-bg);
  border-radius: var(--radius-button);
  padding: 4px 8px;
  white-space: nowrap;
  text-align: center;
}
.ks-filters__item_active {
  color: var(--link-color-active);
  background: var(--link-bg-active);
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-match-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--card-stroke);
}
.ks-match-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.ks-match-card__title {
  font-size: 20px;
  line-height: 140%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--text-main);
}
.ks-match-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}
.ks-match-card__teams-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}
.ks-match-card__teams-wrapper:last-child {
  border-bottom: 0;
}
.ks-match-card__teams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
}
.ks-match-card__content {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
}
.ks-match-card__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.ks-match-card__link {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--link-text);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--radius-button);
  background: var(--link-bg);
  text-align: center;
}
.ks-match-card__button {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  height: 46px;
  padding: 12px 48px;
  border-radius: var(--radius-button);
  background: var(--button-bg);
  color: var(--button-color);
  margin-top: auto;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media not all and (pointer: coarse) {
  .ks-match-card__button:hover {
    background: var(--button-bg-hover);
    color: var(--button-color-hover);
  }
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-no-matches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 16px;
}
.ks-no-matches__pic {
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 50%;
  background: #FFF;
}
.ks-no-matches__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.ks-no-matches__title {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--text-main);
}
.ks-no-matches__descr {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-odds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 640px;
  padding: 16px;
  background: var(--heroscreen-card-bg);
  border-radius: var(--radius-card);
}
.ks-odds__title {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--heroscreen-main-color);
  margin-bottom: 16px;
}
.ks-odds__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  width: 100%;
  margin-bottom: 8px;
}
.ks-odds__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px;
  border-radius: var(--radius-button);
  background: var(--link-bg);
}
.ks-odds__team {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--link-color);
}
.ks-odds__score {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--link-color);
}
.ks-odds__button-main {
  width: 100%;
}
.ks-odds__description {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--heroscreen-main-color);
  margin-top: 16px;
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
  background: #239A68;
  border-radius: 8px;
  padding: 4px 16px;
  min-width: 124px;
  min-height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.ks-schedule__date {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #FFF;
}
.ks-schedule__time {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #FFF;
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-table {
  width: 100%;
  padding-bottom: 8px;
}
.ks-table_halved {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 4px;
}
.ks-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  width: 100%;
}
.ks-table tr:not(:last-child) {
  margin-bottom: 4px;
}
.ks-table tr:nth-child(odd) td {
  background: var(--trow-bg-secondary);
  color: var(--trow-text-secondary);
}
.ks-table tr:first-child td {
  background: var(--thead-bg);
  color: var(--thead-text);
}
.ks-table tr:nth-child(even) td {
  background: var(--trow-bg);
  color: var(--trow-text);
}
.ks-table tr td {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  color: var(--thead-text);
  padding: 12px;
  border-radius: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.ks-table tr td:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
.ks-table tr td:not(:first-child) {
  min-width: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ks-table tr td:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
}
.ks-table tr td p {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: inherit;
  white-space: nowrap;
}
.ks-table tr td p:last-child {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.ks-table tr td > p:only-child {
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.ks-table tr img {
  display: inline-block;
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 20px;
  padding: 5px;
  background: #FFF;
}
.ks-table__table {
  width: 100%;
}
.ks-table__table_fix-width tr td {
  white-space: normal;
}
.ks-table__table_fix-width tr td:first-child {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 336px;
}
@media (max-width: 800px) {
  .ks-table__table_fix-width tr td:first-child {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.ks-table__table_fix-width tr td:not(:first-child) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ks-table__table_fix-width tr > td:only-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.ks-table__table_no-dark-heading tr:first-child td {
  background: var(--trow-bg-secondary);
  color: var(--trow-text-secondary);
}
.ks-table__table_no-secondary-line tr:nth-child(2n+3) td {
  background: var(--trow-bg);
  color: var(--trow-text);
}

/* Fonts */
/* Mixins, helpers and functions */
.ks-team {
  position: relative;
}
.ks-team__text {
  padding-left: 28px;
}
.ks-team__text_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
}
.ks-team__ico {
  position: absolute;
  top: -3px;
  display: inline-block;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 24px;
  padding: 5px;
  background: #FFF;
}
.ks-team__name {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: inline-block;
  color: var(--text-main);
  margin-right: 8px;
}
.ks-team__score {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  display: inline-block;
  color: var(--text-secondary);
}

/* Fonts */
.ks-venue {
  position: relative;
}
.ks-venue__ico {
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 4px;
}
.ks-venue__text {
  font-size: 14px;
  line-height: normal;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
  padding-left: 20px;
}

/* Mixins, helpers and functions */
.horizontal-wrapper {
  width: 100%;
  overflow: auto;
}
.horizontal-wrapper::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background-color: transparent;
  border-radius: 6px;
}
.horizontal-wrapper::-webkit-scrollbar-thumb {
  background-color: #667085;
  border-radius: 6px;
  cursor: pointer;
}

.ks-divider {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--divider);
}
