@import url("https://use.typekit.net/mjp3efy.css");
/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
:root {
  --font-family: lato, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #41B6E6;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: none;
  background-color: #41B6E6;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3b83d5;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #41B6E6;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #fff;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #262D34;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

html {
  color: #fff;
  font-family: var(--font-family);
  font-size: 100%;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #41B6E6;
  text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3b83d5;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper {
  font-size: 14px;
  overflow: hidden;
}

.inner {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.header {
  background-color: #000;
  position: relative;
}
.header .text {
  padding: 20px 0;
}
.header .text img {
  max-width: 200px;
}
.header .text h1 {
  margin: var(--spacing--small) 0;
  font-size: 1.7em;
  line-height: 1.2em;
}
.header .img {
  display: none;
}
@media screen and (min-width: 401px) {
  .header:before {
    position: absolute;
    content: "";
    height: 100%;
    width: calc(50% - 20px);
    top: 0;
    left: calc(50% + 20px);
    background-image: url(../img/header.jpg);
    background-size: cover;
    background-position: top center;
  }
  .header:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    left: calc(50% + 20px);
    background-image: url(../img/header_tri.svg);
    background-size: 100% 100%;
  }
  .header .text {
    width: 50%;
  }
}
@media screen and (min-width: 701px) {
  .header .inner {
    display: flex;
  }
  .header .text {
    width: calc(50% - 100px);
  }
  .header .img {
    display: flex;
    width: 200px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
  }
  .header:before, .header:after {
    left: calc(50% + 75px);
  }
}

.main {
  text-align: center;
}
.main h2 {
  font-size: 1.5em;
  line-height: 1.4em;
  margin: 0 0 var(--spacing);
}
.main .cols .col {
  text-align: center;
  margin-bottom: var(--spacing);
}
.main .cols .col .buttons {
  margin: var(--spacing) 0;
}
.main .cols .col .buttons button {
  padding: 7px 14px;
  margin: 0 10px 10px;
  background-color: #fff;
  color: #1D252D;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1em;
  border: 1px solid #41B6E6;
}
.main .cols .col .buttons button.active {
  background-color: #41B6E6;
  color: #fff;
}
.main .cols .col .table_wrap {
  text-align: left;
}
.main .cols .col .table_wrap .thead .row, .main .cols .col .table_wrap .tbody .row .top {
  display: grid;
  grid-template-columns: 50px 1fr minmax(30px, 100px);
  padding: 0 5px;
}
.main .cols .col .table_wrap .thead .row > div, .main .cols .col .table_wrap .tbody .row .top > div {
  padding: 5px 0;
}
.main .cols .col .table_wrap .thead {
  background-color: #41B6E6;
}
.main .cols .col .table_wrap .tbody {
  background-color: #fff;
  color: #1D252D;
}
.main .cols .col .table_wrap .tbody .row:nth-child(even) {
  background-color: #ECECEC;
}
.main .cols .col .table_wrap .tbody .top .num {
  height: 25px;
  width: 25px;
  line-height: 25px;
  border-radius: 100px;
  background-color: #41B6E6;
  color: #fff;
  text-align: center;
}
.main .cols .col .table_wrap .tbody .top > div:nth-child(2) {
  display: flex;
  align-items: center;
}
.main .cols .col .table_wrap .tbody .top > div:nth-child(2) .btn {
  height: 25px;
  width: 25px;
  background-color: #41B6E6;
  border-radius: 100px;
  margin-right: 10px;
  position: relative;
}
.main .cols .col .table_wrap .tbody .top > div:nth-child(2) .btn:before, .main .cols .col .table_wrap .tbody .top > div:nth-child(2) .btn:after {
  content: "";
  width: 15px;
  height: 0;
  border-top: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
}
.main .cols .col .table_wrap .tbody .top > div:nth-child(2) .btn:after {
  transform: translate(-50%) rotate(-90deg);
}
.main .cols .col .table_wrap .tbody .top > div:nth-child(2) .btn.open:after {
  transform: translate(-50%) rotate(0);
}
.main .cols .col .table_wrap .tbody .top > div:nth-last-child(1) {
  color: #41B6E6;
}
.main .cols .col .table_wrap .tbody .bottom {
  font-size: 0.9em;
  padding: 5px 10px 10px 55px;
}
.main .cols .col .table_wrap .tbody .bottom p {
  margin: 0;
}
.main .cols .col .table_wrap .tbody .bottom ul {
  border-top: 1px solid #41B6E6;
  margin-top: 5px;
  padding-top: 5px;
  color: #41B6E6;
}
.main .cols .col .table_wrap .tbody .bottom .wins {
  margin: 20px 0 5px;
}
@media screen and (min-width: 900px) {
  .main .cols .col .table_wrap .tbody .bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
  }
  .main .cols .col .table_wrap .tbody .bottom .wins {
    margin: 0;
  }
}
@media screen and (min-width: 701px) {
  .main .cols {
    display: flex;
  }
  .main .cols .col {
    padding: 0 0 0 20px;
    flex: 1;
  }
  .main .cols .col:nth-child(1) {
    border-right: 1px solid #fff;
    padding: 0 20px 0 0;
  }
}
.main .key {
  margin-top: 40px;
}
.main .key .home_away {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .key .home_away .box {
  height: 20px;
  width: 20px;
  background-color: #fff;
  margin-right: 5px;
}
.main .key .home_away > div {
  display: flex;
  margin-right: 10px;
}
.main .key .home_away .away {
  color: #41B6E6;
  margin: 0 0 0 10px;
}
.main .key .home_away .away .box {
  background-color: #41B6E6;
}
.main .key .pos {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.main .key .pos .box {
  border-radius: 100px;
  height: 20px;
  width: 20px;
  text-align: center;
  color: #1D252D;
  background-color: #fff;
  margin-right: 5px;
}
@media screen and (min-width: 701px) {
  .main .key .pos .box {
    display: none;
  }
}
.main .lollypop {
  grid-template-columns: 170px 1fr 170px;
  margin: 30px 0;
  display: none;
}
@media screen and (min-width: 701px) {
  .main .lollypop {
    display: grid;
  }
}
.main .lollypop .left .team {
  justify-content: flex-end;
  padding: 0 10px 0 0;
}
.main .lollypop .team {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.main .lollypop .team.away {
  color: #41B6E6;
}
.main .lollypop .middle {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) calc(100%/13), transparent calc(100%/13), transparent calc(100%/13*2));
  position: relative;
}
.main .lollypop .middle .axis {
  position: absolute;
  width: calc(100% + 20px);
  left: -10px;
  top: -25px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8em;
}
.main .lollypop .middle .axis div {
  width: 20px;
  text-align: center;
  position: relative;
}
.main .lollypop .middle .axis div:before {
  content: "";
  height: 5px;
  width: 0;
  border-left: 1px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -5px;
}
.main .lollypop .middle .row {
  position: relative;
}
.main .lollypop .middle .row > div {
  position: absolute;
}
.main .lollypop .middle .row .team1, .main .lollypop .middle .row .team2 {
  display: flex;
  align-items: center;
  line-height: 0;
  height: 10px;
  top: calc(50% - 5px);
  font-size: 0.8em;
}
.main .lollypop .middle .row .team1.away, .main .lollypop .middle .row .team2.away {
  color: #41B6E6;
}
.main .lollypop .middle .row .team1.away:before, .main .lollypop .middle .row .team1.away:after, .main .lollypop .middle .row .team2.away:before, .main .lollypop .middle .row .team2.away:after {
  background-color: #41B6E6;
}
.main .lollypop .middle .row .team1 {
  transform: translate(calc(-100% + 5px));
}
.main .lollypop .middle .row .team1:after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 100px;
  margin-left: 5px;
}
.main .lollypop .middle .row .team2 {
  transform: translate(-5px);
}
.main .lollypop .middle .row .team2:before {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 100px;
  margin-right: 5px;
}
.main .lollypop .middle .row .bar {
  height: 0;
  border-top: 1px solid #9D9D9C;
  top: 50%;
}
.main .lollypop .middle .row .bar .score {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 20px);
}
.main .lollypop .middle .row .bar .score .box {
  background-color: #fff;
  border-radius: 2px;
  width: 40px;
  margin: auto;
  text-align: center;
  color: #1D252D;
  font-size: 600;
}
.main .lollypop .middle .row .bar .score .box.blue {
  background-color: #41B6E6;
}
.main .lollypop .middle .row .bar .score .date {
  font-weight: 100;
  font-size: 0.9em;
}
.main .lollypop .team, .main .lollypop .row {
  height: 50px;
}
.main .mobile_chart {
  margin: 20px 0 40px 0;
  font-size: 0.8em;
}
@media screen and (max-width: 40px) {
  .main .mobile_chart {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 701px) {
  .main .mobile_chart {
    display: none;
  }
}
.main .mobile_chart .top {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  margin-bottom: 10px;
}
.main .mobile_chart .top .box {
  border-radius: 100px;
  height: 20px;
  width: 20px;
  text-align: center;
  color: #1D252D;
  background-color: #fff;
  margin: auto;
  position: absolute;
  margin: 0 5px;
}
.main .mobile_chart .top > div {
  position: relative;
}
.main .mobile_chart .top > div:nth-child(1) .box {
  right: 0;
}
.main .mobile_chart .row {
  display: grid;
  grid-template-columns: 1fr 30px 70px 30px 1fr;
  border-bottom: 1px solid #fff;
}
.main .mobile_chart .row:nth-last-child(1) {
  border-bottom: 0;
}
.main .mobile_chart .row > div {
  padding-top: 5px;
}
.main .mobile_chart .row .pos {
  background-color: rgba(255, 255, 255, 0.2);
}
.main .mobile_chart .row .score .box {
  background-color: #fff;
  border-radius: 2px;
  width: 40px;
  margin: auto;
  text-align: center;
  color: #1D252D;
  font-size: 600;
}
.main .mobile_chart .row .score .box.blue {
  background-color: #41B6E6;
}
.main .mobile_chart .row .score .date {
  font-weight: 100;
  font-size: 0.9em;
}
.main .mobile_chart .team.blue, .main .mobile_chart .pos.blue {
  color: #41B6E6;
}
.main .mobile_chart .box.blue {
  background-color: #41B6E6;
  color: #fff;
}
.main .mobile_chart .team {
  text-align: left;
  padding: 5px 0 5px 5px;
}
.main .mobile_chart .team:nth-child(1) {
  text-align: right;
  padding: 5px 5px 5px 0;
}
.main p.b {
  font-weight: 700;
  font-size: 1.1em;
}
.main a.button {
  background-color: #41B6E6;
  color: #fff;
  padding: 5px 30px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin: 10px auto;
}

.banner {
  background-color: #41B6E6;
}
.banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.banner ul li {
  margin: 0 0 5px 0;
}
.banner ul li:after {
  content: "|";
  margin: 0 5px;
}
.banner ul li:nth-last-child(1):after {
  display: none;
}
.banner a {
  color: #fff;
}
