@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
* {
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

html,
body {
  margin: 0;
  padding: 0; }

body {
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  background: #13141A; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  display: block;
  font-weight: 300; }
  h1.no-margin,
  h2.no-margin,
  h3.no-margin,
  h4.no-margin,
  h5.no-margin,
  h6.no-margin {
    margin: 0; }

h1 {
  font-size: 4.0rem;
  line-height: 1.2;
  letter-spacing: .1rem; }

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: .1rem; }

h3 {
  font-size: 3.0rem;
  line-height: 1.3;
  letter-spacing: .1rem; }

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: .08rem; }

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: .05rem; }

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0; }

p {
  margin-top: 0; }

@media (min-width: 550px) {
  h1 {
    font-size: 5.0rem; }

  h2 {
    font-size: 4.2rem; }

  h3 {
    font-size: 3.6rem; }

  h4 {
    font-size: 3.0rem; }

  h5 {
    font-size: 2.4rem; }

  h6 {
    font-size: 1.5rem; } }
section {
  position: relative;
  padding: 40px 50px 60px;
  overflow: hidden; }
  section.dark:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: url("../admin/content/bg-dark-curved.svg") 0 0 repeat;
    background-size: cover;
    background-attachment: fixed;
    content: ''; }
  section.light:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: url("../admin/content/bg-light-curved.svg") 0 0 repeat;
    background-size: cover;
    background-attachment: fixed;
    content: ''; }
  section.light h2 {
    color: #3F434A; }
  section.offset {
    padding-top: 200px; }
  section .heading {
    margin: 0 0 30px;
    text-align: center; }
  section h2 {
    padding: 5px 10px;
    border-bottom: solid 3px #3F434A;
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center; }
  @media (max-width: 1024px) {
    section.offset {
      padding-top: 150px; } }
  @media (max-width: 768px) {
    section {
      padding: 40px 10px 60px; }
      section.offset {
        padding-top: 120px; } }
  @media (max-width: 500px) {
    section.offset {
      padding-top: 100px; } }

.spinner {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative; }

.cube1, .cube2 {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out; }

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5); }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg); }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5); }
  100% {
    -webkit-transform: rotate(-360deg); } }
@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5); }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg); }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg); }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5); }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg); } }
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 70px 80px 70px 65px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s; }
  .navigation.shrink {
    padding: 10px 80px 10px 65px;
    background: rgba(0, 0, 0, 0.5); }
    .navigation.shrink .logo {
      max-width: 75px; }
  .navigation .logo {
    max-width: 150px;
    max-height: 120px;
    display: inline-block; }
    .navigation .logo img {
      max-width: 100%;
      max-height: 120px; }
  .navigation .open-menu {
    display: inline-block;
    color: #ffffff;
    cursor: pointer;
    transition: color .2s; }
    .navigation .open-menu.open-dark {
      color: #3F434A; }
    .navigation .open-menu i {
      font-size: 29px; }
    .navigation .open-menu:hover {
      color: #E51937; }
  @media (max-width: 1024px) {
    .navigation {
      padding: 40px 50px; }
      .navigation .logo {
        max-width: 110px;
        max-height: 80px; }
        .navigation .logo img {
          max-width: 110px;
          max-height: 80px; } }
  @media (max-width: 768px) {
    .navigation {
      padding: 20px 10px; }
      .navigation.shrink {
        padding: 10px; } }
  @media (max-width: 500px) {
    .navigation .logo {
      max-width: 80px;
      max-height: 60px; }
      .navigation .logo img {
        max-width: 80px;
        max-height: 60px; } }

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: none; }
  .menu .menu-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7); }
  .menu .close-menu {
    position: absolute;
    top: 80px;
    right: 50px;
    padding: 15px;
    display: inline-block;
    color: #ffffff;
    cursor: pointer;
    transition: color .2s; }
    .menu .close-menu i {
      font-size: 29px; }
    .menu .close-menu:hover {
      color: #E51937; }
  .menu .pages,
  .menu .social {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .menu .pages {
    margin-bottom: 20px; }
    .menu .pages li {
      display: block; }
      .menu .pages li a {
        padding: 10px;
        display: block;
        color: #ffffff;
        font-size: 17px;
        font-weight: 800;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        transition: color .2s; }
        .menu .pages li a:hover {
          color: #E51937; }
  .menu .social li {
    display: inline-block; }
    .menu .social li a {
      padding: 10px;
      display: inline-block;
      color: #ffffff;
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      text-decoration: none;
      transition: color .2s; }
      .menu .social li a:hover {
        color: #E51937; }

footer {
  padding: 50px;
  width: 100%;
  display: block;
  background: #13141A; }
  footer .pages,
  footer .social {
    margin: 0 auto 30px;
    padding: 0;
    list-style-type: none;
    text-align: center; }
  footer .pages li {
    display: inline-block; }
    footer .pages li a {
      padding: 10px;
      display: inline-block;
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      text-decoration: none;
      transition: color .2s; }
      footer .pages li a:hover {
        color: #E51937; }
  footer .social li {
    display: inline-block; }
    footer .social li a {
      padding: 10px;
      display: inline-block;
      color: #ffffff;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      transition: color .2s; }
      footer .social li a:hover {
        color: #E51937; }
  footer .copyright {
    color: #929292;
    font-size: 13px;
    text-align: center; }
  @media (max-width: 768px) {
    footer {
      padding: 50px 10px; } }

.filter {
  margin: 15px;
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #1C1F24;
  color: #ffffff;
  font-size: 0; }
  .filter .selectric-wrapper {
    flex: 1;
    border-bottom: 3px solid transparent;
    display: inline-block;
    transition: border-bottom .2s; }
    .filter .selectric-wrapper:hover {
      border-bottom: 3px solid #E51937; }
    .filter .selectric-wrapper .selectric {
      height: 48px;
      border: none;
      background: transparent; }
      .filter .selectric-wrapper .selectric .label {
        height: 48px;
        line-height: 48px;
        color: #ffffff;
        font-size: 14px;
        text-transform: uppercase; }
      .filter .selectric-wrapper .selectric .button {
        height: 48px;
        line-height: 48px;
        background: transparent; }
    .filter .selectric-wrapper .selectric-items {
      background: #1C1F24;
      border: none;
      box-shadow: none; }
      .filter .selectric-wrapper .selectric-items li {
        color: #ffffff;
        transition: background .2s; }
        .filter .selectric-wrapper .selectric-items li:hover {
          background: #3F434A; }
        .filter .selectric-wrapper .selectric-items li.highlighted {
          background: #3F434A; }
  .filter .controls {
    padding: 10px 25px 0 0;
    flex: 1px;
    text-align: right; }
    .filter .controls a {
      margin-left: 10px;
      color: #ffffff;
      font-size: 20px;
      transition: color .2s; }
      .filter .controls a:hover, .filter .controls a.option-selected {
        color: #E51937; }

.filter-error {
  margin: 15px;
  color: #E51937;
  font-size: 14px;
  font-weight: 700; }

@media (max-width: 1024px) {
  .filter .selectric-wrapper {
    flex: none;
    width: 50%; } }
@media (max-width: 550px) {
  .filter .selectric-wrapper {
    flex: none;
    width: 100%; } }
.banners {
  padding: 0; }
  .banners .item {
    position: relative;
    width: 100%;
    max-height: 600px; }
    .banners .item:focus {
      outline: none; }
    .banners .item img {
      min-width: 100%;
      min-height: 100%;
      max-width: 100vmax;
      max-height: 100vmin;
      display: block; }
    .banners .item .heading {
      position: absolute;
      bottom: 30px;
      padding: 0 10px;
      width: 100vw;
      color: #ffffff;
      font-size: 44px;
      font-weight: 800;
      text-align: center;
      text-transform: uppercase; }
    .banners .item .shader {
      position: absolute;
      bottom: 0;
      width: 100vw;
      height: 200px;
      background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
      background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
      background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
      /* IE6-9 */ }
  .banners .slick-track {
    max-height: 475px; }
    .banners .slick-track img {
      min-height: 100%; }
  .banners .slick-dots {
    position: absolute;
    bottom: 30px;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    text-align: center;
    list-style-type: none; }
    .banners .slick-dots li {
      margin: 0 5px;
      padding: 3px;
      border: 2px solid #ffffff;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer; }
      .banners .slick-dots li.slick-active {
        background: #ffffff; }
      .banners .slick-dots li button {
        display: none; }
  @media (max-width: 768px) {
    .banners .item .heading {
      font-size: 32px; } }
  @media (max-width: 560px) {
    .banners .item .heading {
      font-size: 20px; } }

.news {
  padding: 0 50px; }
  .news .post {
    margin: 0 15px; }
    .news .post:focus {
      outline: 0; }
    .news .post .thumbnail, .news .post .thumbnail img {
      width: 100%;
      height: auto; }
      .news .post .thumbnail img {
        display: block; }
    .news .post .content {
      padding: 20px 25px;
      width: 100%;
      background: #1C1F24; }
      .news .post .content .date {
        margin-bottom: 5px;
        color: #E51937;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase; }
      .news .post .content .title {
        margin-bottom: 5px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase; }
      .news .post .content .description {
        color: #6f7279;
        font-size: 16px;
        font-weight: 500;
        white-space: pre-wrap; }
        .news .post .content .description a {
          color: #E51937;
          font-weight: 700;
          text-decoration: none;
          transition: color .2s; }
          .news .post .content .description a:hover {
            color: #ffffff; }
  .news .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #3F434A;
    font-size: 60px;
    cursor: pointer; }
    .news .slick-arrow.slick-next {
      right: 0; }
    .news .slick-arrow.slick-prev {
      left: 0; }

.news-post {
  display: flex; }
  .news-post .news-image,
  .news-post .news-content {
    flex: 1; }
  .news-post .news-image {
    padding-right: 15px; }
    .news-post .news-image img {
      width: 100%; }
  .news-post .news-content {
    padding-left: 15px; }
    .news-post .news-content h2 {
      margin-bottom: 10px;
      padding: 5px 0;
      color: #ffffff; }
    .news-post .news-content .news-date {
      margin-bottom: 15px;
      color: #E51937;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase; }
    .news-post .news-content p {
      color: #6f7279;
      font-size: 16px;
      font-weight: 500;
      white-space: pre-wrap; }
  @media (max-width: 1024px) {
    .news-post {
      flex-direction: column; }
      .news-post .news-image {
        padding: 0;
        margin-bottom: 20px; }
      .news-post .news-content {
        padding: 0; } }

.news-list .news-article {
  margin: 15px;
  padding: 20px 25px;
  max-width: 100%;
  display: block;
  background: #1C1F24;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: border .2s; }
  .news-list .news-article:hover {
    border-bottom: 3px solid #E51937; }
  .news-list .news-article .news-date {
    color: #E51937;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase; }
  .news-list .news-article .news-title {
    color: #ffffff; }

.small-teams {
  padding: 0 50px;
  display: flex;
  align-items: center; }
  .small-teams .team {
    margin: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none; }
    .small-teams .team:focus {
      outline: 0; }
    .small-teams .team .team-logo, .small-teams .team .team-logo img {
      margin: 0 auto;
      width: 70%;
      height: auto; }
    .small-teams .team .team-name {
      padding: 20px 25px;
      color: #3F434A;
      font-size: 18px;
      font-weight: 700;
      text-align: center; }
  .small-teams .slick-track {
    display: flex;
    align-items: center; }
  .small-teams .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #3F434A;
    font-size: 60px;
    cursor: pointer; }
    .small-teams .slick-arrow.slick-next {
      right: 0; }
    .small-teams .slick-arrow.slick-prev {
      left: 0; }

.teams {
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap; }
  .teams:after {
    display: block;
    clear: both;
    content: ''; }
  .teams .team {
    margin: 15px;
    width: calc(25% - 30px);
    display: block;
    text-decoration: none; }
    .teams .team:focus {
      outline: none; }
    .teams .team .team-logo img {
      margin: 0 auto;
      max-width: 80%;
      max-height: 150px;
      display: block; }
    .teams .team .team-name {
      padding: 20px;
      color: #3F434A;
      font-size: 18px;
      font-weight: 700;
      text-align: center; }
  @media (max-width: 1024px) {
    .teams .team {
      width: calc(33.33333% - 30px); } }
  @media (max-width: 768px) {
    .teams .team {
      width: calc(50% - 30px); } }
  @media (max-width: 560px) {
    .teams .team {
      width: calc(100% - 30px); } }

.team-info {
  position: relative;
  padding: 0;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-position: 0 0;
  background-size: cover;
  background-attachment: fixed; }
  .team-info .team-background {
    position: absolute;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    max-width: 100vmax;
    max-height: 100vmin;
    display: block;
    z-index: -1; }
  .team-info .shader {
    position: absolute;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 200px;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
    /* IE6-9 */ }
  .team-info .team-name {
    margin-bottom: 50px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center; }
  @media (max-width: 768px) {
    .team-info {
      min-height: 300px; }
      .team-info .team-logo, .team-info .small-teams .team .team-logo img, .small-teams .team .team-logo .team-info img {
        margin: 0 auto;
        max-width: 150px;
        max-height: 100px;
        display: block; } }

.team-description {
  display: flex;
  justify-content: center; }
  .team-description .team-contact,
  .team-description .team-coach,
  .team-description .team-about {
    margin: 15px 15px 40px;
    padding: 20px 25px;
    border-bottom: 3px solid #E51937;
    background: #1C1F24;
    color: #ffffff; }
    .team-description .team-contact h5,
    .team-description .team-coach h5,
    .team-description .team-about h5 {
      margin-bottom: 10px;
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase; }
    .team-description .team-contact ul,
    .team-description .team-coach ul,
    .team-description .team-about ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
  @media (max-width: 768px) {
    .team-description {
      flex-direction: column; } }

.team-players {
  display: flex;
  flex-wrap: wrap; }
  .team-players .player {
    width: calc(25% - 30px);
    margin: 15px 15px 12px;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1C1F24;
    text-decoration: none;
    transition: border .2s; }
    .team-players .player:hover {
      border-bottom: 3px solid #E51937; }
    .team-players .player .player-image {
      padding: 20px 25px 0;
      max-width: 100%;
      max-height: 250px; }
      .team-players .player .player-image img {
        margin: 0 auto;
        max-width: 100%;
        max-height: 230px;
        display: block; }
    .team-players .player .player-info {
      padding: 20px 25px; }
      .team-players .player .player-info .player-name {
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase; }
  @media (max-width: 1024px) {
    .team-players .player {
      width: calc(33.33333% - 30px); } }
  @media (max-width: 768px) {
    .team-players .player {
      width: calc(50% - 30px); } }
  @media (max-width: 560px) {
    .team-players .player {
      width: calc(100% - 30px); } }

.player-main {
  padding-top: 60px; }
  .player-main .player-container {
    margin: 0 auto 40px;
    max-width: 700px;
    display: flex;
    justify-content: center; }
  .player-main .player-image {
    margin-right: 20px;
    flex: 1; }
    .player-main .player-image img {
      width: 100%;
      display: block; }
  .player-main .player-content {
    margin-left: 20px;
    flex: 1; }
    .player-main .player-content .player-name {
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
      text-transform: uppercase; }
      .player-main .player-content .player-name span {
        margin-left: 10px;
        color: #E51937; }
    .player-main .player-content .player-description ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
      .player-main .player-content .player-description ul li {
        color: #ffffff;
        font-size: 18px; }
        .player-main .player-content .player-description ul li span {
          color: #ffffff;
          font-size: 20px;
          font-weight: 700; }
  @media (max-width: 768px) {
    .player-main .player-container {
      flex-direction: column; }
      .player-main .player-container .player-image {
        margin: 0 0 20px 0; } }

.games {
  display: flex;
  flex-wrap: wrap; }
  .games .season-block {
    margin: 15px;
    padding: 10px 25px;
    width: 100%;
    border-bottom: 3px solid #E51937;
    background: #1C1F24;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase; }
    .games .season-block span {
      float: right;
      color: #E51937; }
  .games .game {
    margin: 15px;
    padding: 20px 25px;
    width: calc(25% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1C1F24;
    transition: all .2s; }
    .games .game.game-with-results {
      border-bottom: 3px solid transparent;
      text-decoration: none;
      cursor: pointer; }
      .games .game.game-with-results:hover {
        border-bottom: 3px solid #E51937; }
    .games .game .game-info {
      display: flex;
      align-items: center; }
    .games .game .game-date {
      margin-bottom: 20px;
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase; }
    .games .game .team-one,
    .games .game .team-two,
    .games .game .game-vs {
      flex: 1;
      text-align: center; }
    .games .game .team-one img,
    .games .game .team-two img {
      margin: 0 auto;
      max-width: 80%;
      max-height: 120px;
      display: block; }
    .games .game .team-one span,
    .games .game .team-two span {
      margin-top: 10px;
      display: block;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase; }
    .games .game .game-vs {
      color: #E51937;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase; }
    .games .game .game-result {
      color: #E51937;
      font-size: 24px;
      font-weight: 700;
      text-transform: uppercase; }
    .games .game .game-place {
      padding-top: 20px;
      width: 100%;
      color: #6f7279;
      font-size: 17px;
      text-align: center; }
  @media (max-width: 1920px) {
    .games .game {
      width: calc(33.33333% - 30px); }
      .games .game.game-small {
        width: calc(25% - 30px); } }
  @media (max-width: 1280px) {
    .games .game {
      width: calc(50% - 30px); }
      .games .game.game-small {
        width: calc(33.33333% - 30px); } }
  @media (max-width: 768px) {
    .games .game {
      width: calc(100% - 30px); }
      .games .game.game-small {
        width: calc(50% - 30px); } }

.game.game-small .game-date {
  font-size: 14px; }
.game.game-small .team-one img,
.game.game-small .team-two img {
  max-width: 60%;
  max-height: 80px; }
.game.game-small .team-one span,
.game.game-small .team-two span {
  font-size: 12px; }
.game.game-small .game-vs,
.game.game-small .game-place {
  font-size: 12px; }
.game.game-small .game-result {
  font-size: 14px; }

.protocol {
  margin-bottom: 40px; }
  .protocol:last-child {
    margin-bottom: 0; }
  .protocol h4 {
    color: #ffffff; }
  .protocol .table-scroll {
    margin: 15px;
    max-width: 100%;
    overflow-x: auto; }
  .protocol .protocol-team {
    width: 100%;
    min-width: 1300px;
    background: #1C1F24;
    color: #ffffff;
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: collapse; }
    .protocol .protocol-team .legend td {
      font-weight: 700; }
    .protocol .protocol-team .divider td {
      padding: 0;
      border-bottom: 2px solid #E51937; }
    .protocol .protocol-team tr:last-child {
      margin-top: 5px; }
    .protocol .protocol-team tr td {
      padding: 5px 0;
      text-align: center; }
      .protocol .protocol-team tr td.disabled {
        background: #3F434A; }
    .protocol .protocol-team tr:nth-child(even) {
      background: #23262d; }

.game-location {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase; }

.game-summary {
  margin: 0 auto 40px;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .game-summary .team,
  .game-summary .summary {
    flex: 1; }
  .game-summary .team .team-logo, .game-summary .small-teams .team .team-logo img, .small-teams .game-summary .team .team-logo img {
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    max-height: 200px;
    display: block; }
  .game-summary .team .team-name {
    margin-top: 15px;
    color: #ffffff;
    font-size: 20px;
    text-align: center; }
  .game-summary .summary {
    padding: 0 30px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center; }
  @media (max-width: 500px) {
    .game-summary .team .team-name {
      font-size: 14px; }
    .game-summary .summary {
      padding: 0 10px;
      font-size: 20px; } }

.protocol-download {
  text-align: center; }
  .protocol-download a {
    color: #E51937;
    text-decoration: none;
    transition: color .2s; }
    .protocol-download a:hover {
      color: #ffffff; }

.sponsors {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; }
  .sponsors .sponsor {
    margin: 10px 10px;
    display: block;
    max-width: 100px; }
    .sponsors .sponsor img {
      max-width: 100%; }

.regulations {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row; }
  .regulations .regulation {
    margin: 0 15px;
    padding: 20px 25px;
    display: block;
    width: calc(25% - 30px);
    border-bottom: 3px solid transparent;
    background: #1C1F24;
    text-decoration: none;
    transition: border .2s;
    cursor: pointer; }
    .regulations .regulation:hover {
      border-bottom: 3px solid #E51937; }
    .regulations .regulation .regulation-icon {
      margin-bottom: 20px;
      text-align: center; }
      .regulations .regulation .regulation-icon i {
        font-size: 58px;
        color: #ffffff; }
    .regulations .regulation .regulation-title {
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      text-align: center; }
  @media (max-width: 1240px) {
    .regulations .regulation {
      width: calc(33.33333% - 30px); } }
  @media (max-width: 900px) {
    .regulations .regulation {
      width: calc(50% - 30px); } }
  @media (max-width: 500px) {
    .regulations {
      flex-direction: column; }
      .regulations .regulation {
        margin: 0 0 30px;
        width: 100%; }
        .regulations .regulation:last-child {
          margin: 0; } }

.statistics-best {
  margin: 30px 15px;
  display: flex;
  flex-direction: row; }
  .statistics-best .best-player {
    margin-left: 30px;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: row;
    background: #1C1F24;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: border-bottom .2s; }
    .statistics-best .best-player:hover {
      border-bottom: 3px solid #E51937; }
    .statistics-best .best-player:first-child {
      margin-left: 0; }
    .statistics-best .best-player .player-image {
      flex: 1; }
      .statistics-best .best-player .player-image img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
        max-height: 200px; }
    .statistics-best .best-player .player-info {
      margin-left: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 2;
      color: #ffffff; }
      .statistics-best .best-player .player-info .player-name {
        font-size: 18px;
        font-weight: 700; }
        .statistics-best .best-player .player-info .player-name span {
          margin-right: 5px;
          color: #E51937; }
      .statistics-best .best-player .player-info .player-stats {
        margin-top: 15px;
        display: flex;
        flex-direction: row; }
        .statistics-best .best-player .player-info .player-stats div {
          flex: 1;
          font-weight: 700;
          font-size: 14px;
          text-transform: uppercase;
          text-align: center; }
          .statistics-best .best-player .player-info .player-stats div span {
            display: block;
            color: #E51937;
            font-size: 22px;
            font-weight: 700; }

.table {
  margin: 15px;
  max-width: 100%;
  color: #ffffff;
  overflow: hidden; }
  .table.margin-bottom {
    margin-bottom: 30px; }
  .table .row {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    transition: background .2s; }
    .table .row:hover {
      background: rgba(63, 67, 74, 0.5); }
    .table .row.header,
    .table .row .header {
      background: #1C1F24;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      transition: font-size .2s;
      word-break: break-all; }
      .table .row.header .cell,
      .table .row .header .cell {
        padding: 14px 10px; }
    .table .row .cell {
      position: relative;
      padding: 7px 10px;
      flex: 2;
      transition: font-size .2s; }
      .table .row .cell:hover::after, .table .row .cell:hover::before {
        position: absolute;
        left: 0;
        top: -5000px;
        z-index: -1;
        height: 10000px;
        width: 100%;
        content: "";
        background: rgba(63, 67, 74, 0.2); }
      .table .row .cell.small {
        flex: 1; }
      .table .row .cell.medium {
        flex: 3; }
      .table .row .cell.large {
        flex: 4; }
      .table .row .cell.center {
        text-align: center; }

@media (max-width: 1024px) {
  .table .row.header {
    font-size: 12px; }
  .table .row .cell {
    font-size: 10px; } }
.paginator {
  margin: 0 auto; }
  .paginator ul {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center; }
    .paginator ul li {
      padding: 4px 12px;
      background: #1C1F24;
      display: inline-block;
      border-bottom: 3px solid transparent;
      color: #ffffff;
      cursor: pointer;
      transition: border-bottom .2s; }
      .paginator ul li:hover, .paginator ul li.active {
        border-bottom: 3px solid #E51937; }
