@charset "UTF-8";
/*--------- BASE ---------*/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

a {
  text-decoration: none;
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

/*
4px - 0.25rem
8px - 0.5rem
10px - 0.625rem
11px - 0.6875rem
12px - 0.75rem
13px - 0.8125rem
14px - 0.875rem
15px - 0.9375rem
16px - 1rem
18px - 1.125rem
20px - 1.25rem
21px - 1.3125rem
22px - 1.375rem
24px - 1.5rem
25px - 1.5625rem
26px - 1.625rem
28px - 1.75rem
30px - 1.875rem
31px - 1.9375rem
32px - 2rem
34px - 2.125rem
35px - 2.1875rem
36px - 2.25rem
40px - 2.5rem
42px - 2.625rem
44px - 2.75rem
45px - 2.8125rem
48px - 3rem
52px - 3.25rem
54px - 3.375rem
64px - 4rem
72px - 4.5rem
75px - 4.6875rem
96px - 6rem
*/
body, button {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}

/*--------- STATE ---------*/
.clearfix {
  *zoom: 1;
  clear: both;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*how use*/
/*.container-box {
  @extend %clearfix;
}*/
/*z-index*/
/*how use*/
/*
.navigation {
  @include z(nav);
}
*/
/*pseudoelements*/
/*how use*/
/*
section:after {
    @include ps;
}
*/
/*fonts*/
/*how use*/
/*
p {
  @include font(1rem, white, 700 , 1.22)
}
*/
/*gradient*/
/*how use*/
/*
div {
  @include gradient(#000, #303030, hor);
}
*/
/*Centering vertically and horizontally*/
/*how use*/
/*
div{
  @include vert;
}
*/
/*Arrow in css*/
/*how use*/
/*
div {
   @include arrow(left, 30px, #000);
}
*/
/*how use*/
/*div.logo {
  background: url("logo.png") no-repeat;
  @include image-2x("logo2x.png", 100px, 25px);
}*/
/*opacity*/
/*how use*/
/*div.logo {
  @include opacity(0.8);
}*/
/*truncate*/
.button-more {
  text-align: center;
  position: relative;
  width: 100%;
  height: 30px;
  margin: -13px auto 20px;
}

@media (min-width: 768px) {
  .button-more {
    margin: 0 auto 30px;
  }
}

@media (min-width: 1024px) {
  .button-more {
    margin: -41px auto 30px;
  }
}

.button-more__elem {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #2b2b2b;
  background: #fff;
  padding: 8px 40px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.button-more__elem:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  background: #d9d9d9;
  height: 1px;
  width: 100%;
  z-index: -1;
}

.button-more__elem:hover {
  background: #e0e0eb;
  border: 1px solid #d9d9d9;
}

@media (min-width: 768px) {
  .button-more__elem {
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .button-more--transparent {
    margin: 20px auto 15px;
  }
  .button-more--transparent .button-more__elem {
    background: transparent;
    padding: 4px 0;
    color: #fff;
    display: block;
    width: 160px;
    margin: 0 auto;
  }
  .button-more--transparent .button-more__elem::before {
    width: calc(50% - 80px);
    top: 13px;
  }
  .button-more--transparent .button-more__elem:after {
    right: 0;
    width: calc(50% - 80px);
    content: '';
    position: absolute;
    top: 13px;
    background: #f05a22;
    height: 1px;
    z-index: -1;
  }
}

.button-more--orange .button-more__elem {
  border: 1px solid #f05a22;
}

.button-more--orange .button-more__elem:before {
  background: #f05a22;
}

.button-more--smaller {
  width: 50%;
}

@media (max-width: 768px) {
  .button-more--smaller {
    width: 100%;
  }
}

.button-play {
  width: 62px;
  height: 62px;
  background-image: url("images/icons/play-lime.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
}

.button-play.small {
  background-image: url("images/icons/play_S-lime.svg");
  width: 24px;
  height: 24px;
  left: 5px;
  bottom: 5px;
}

.button-play.halfmedium {
  width: 36px;
  height: 36px;
  left: 8px;
  bottom: 8px;
}

.button-play.medium {
  width: 22px;
  height: 22px;
  left: 5px;
  bottom: 5px;
}

@media (min-width: 768px) {
  .button-play.medium {
    width: 48px;
    height: 48px;
    left: 10px;
    bottom: 10px;
  }
}

.button-play.centered {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.button-play:hover {
  cursor: pointer;
}

.button-play__video {
  display: none;
  width: 165px;
  height: 36px;
  bottom: 65px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  font-size: 1.3125rem;
  color: #fff;
  font-weight: 700;
  background-size: 34px;
  background-position: center right;
}

@media (min-width: 1200px) {
  .button-play__video {
    display: block;
  }
}

.button-play__video span {
  display: inline-block;
  margin-top: 4px;
}

.button-play--banner {
  margin: 0 auto;
  position: relative;
  -webkit-transform: none;
          transform: none;
  top: 0;
  left: 0;
  width: 210px;
  background-size: none;
}

.button-up {
  position: fixed;
  right: 0;
  bottom: -65px;
  display: inline-block;
  height: 65px;
  width: 95px;
  background-color: #2b2b2b;
  background-image: url(images/icons/arrow-top.svg);
  background-repeat: no-repeat;
  background-position: top 14px left 50%;
  padding-top: 35px;
  letter-spacing: 1px;
  font-size: 0.6875rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  cursor: pointer;
}

.button-up--show {
  bottom: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 1;
}

.button-expand {
  display: inline-block;
  border: 1px solid #979797;
  padding: 5px 20px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.button-expand.dark::after {
  background: transparent url("images/icons/arrow-down-expand-dark.svg") no-repeat center center;
}

.button-expand.up::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: -2px;
}

.button-expand::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 10px;
  position: relative;
  top: -1px;
  margin-left: 4px;
  background: transparent url("images/icons/arrow-down-expand.svg") no-repeat center center;
}

.button-expand__wrapper {
  border-bottom: 2px solid #2b2b2b;
  padding-bottom: 40px;
  display: none;
}

.label {
  text-transform: uppercase;
  padding: 1px 12px;
  background-color: #170f7d;
  color: #ffffff;
  margin-left: -4px;
}

@media (min-width: 768px) {
  .label {
    padding: 3.5px 8px;
  }
}

.label__ver-0 {
  background-color: transparent;
  color: transparent;
}

.label__ver-1 {
  background-color: #D60707;
  color: #ffffff;
}

.label__ver-2 {
  background-color: #38324c;
  color: #eaff00;
}

.label__ver-3 {
  background-color: #eaff00;
  color: #38324c;
}

.label__ver-3_1 {
  background-color: #c8c8d3;
  color: #242934;
}

.label__ver-4 {
  background-color: #38324c;
  color: #eaff00;
}

.label__ver-5 {
  background-color: #38324c;
  color: #eaff00;
}

.label__ver-6 {
  background-color: #eaff00;
  color: #38324c;
}

figure.lazy-loading--loading {
  position: relative;
  overflow: hidden;
}

figure img {
  max-width: 100%;
}

figure img[lazy='loaded'] {
  height: auto;
  -webkit-animation: fadein 900ms;
          animation: fadein 900ms;
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

figure.lazy-loading--loading:after, div[lazy='loading']:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  -webkit-animation: shimmer 1s infinite;
          animation: shimmer 1s infinite;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #fff0), color-stop(20%, #fff3), color-stop(60%, #ffffff80), to(#fff0));
  background-image: linear-gradient(90deg, #fff0 0, #fff3 20%, #ffffff80 60%, #fff0);
}

figure img[lazy='loading'], div[lazy='loading'] {
  background-color: #d8d8d8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='206' height='172' viewBox='0 0 206 172'%3E%3Cpath fill='%23F7F7F7' fill-rule='nonzero' d='M206 34.4C206 15.48 190.55 0 171.667 0H34.333C15.45 0 0 15.48 0 34.4v103.2C0 156.52 15.45 172 34.333 172h137.334C190.55 172 206 156.52 206 137.6V34.4zm-154.5 0c9.442 0 17.167 7.74 17.167 17.2 0 9.46-7.725 17.2-17.167 17.2-9.442 0-17.167-7.74-17.167-17.2 0-9.46 7.725-17.2 17.167-17.2zm137.333 103.2c0 9.46-7.725 17.2-17.166 17.2h-133.9c-7.725 0-11.159-9.46-6.009-14.62l30.9-30.96c3.434-3.44 8.584-3.44 12.017 0l5.15 5.16c3.433 3.44 8.583 3.44 12.017 0l56.65-56.76c3.433-3.44 8.583-3.44 12.016 0l25.75 25.8c1.717 1.72 2.575 3.44 2.575 6.02v48.16z'/%3E%3C/svg%3E%0A") !important;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*------------------------
LAYOUT
------------------------*/
/*--------- GRID ---------*/
.container, .container-change {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 5px;
  padding-right: 5px;
}

.container:before, .container:after, .container-change:before, .container-change:after {
  content: " ";
  display: table;
}

.container:after, .container-change:after {
  clear: both;
}

@media (min-width: 768px) {
  .container, .container-change {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1024px) {
  .container, .container-change {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .container, .container-change {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1463px) {
  .container, .container-change {
    width: 1406px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1921px) {
  .container, .container-change {
    width: 1600px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 5px;
  padding-right: 5px;
}

.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}

.container-fluid:after {
  clear: both;
}

@media (min-width: 768px) {
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1280px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  margin-left: -5px;
  margin-right: -5px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

@media (min-width: 768px) {
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media (min-width: 1280px) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1280px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1024px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1280px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

body {
  background-color: #f5f5f5;
}

body.overley {
  overflow-y: hidden;
}

body.overlay {
  position: relative;
}

body.overlay.popup-loaded::after {
  background-image: none;
}

body.overlay::after {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("images/spinner.svg");
  background-repeat: no-repeat;
  background-position: center center;
}

@media (prefers-color-scheme: dark) {
  body.webview {
    background-color: #1c1c1c;
  }
  body.webview .news-text center a,
  body.webview .news-text p b a,
  body.webview .news-text p big a {
    background-color: #1c1c1c;
  }
  body.webview .news-lead,
  body.webview .news-text p,
  body.webview .news-heading__title,
  body.webview .news-author__name a:first-of-type,
  body.webview .news-author__name,
  body.webview .news-author__description,
  body.webview .news-citation__text,
  body.webview .news-citation__author {
    color: #fff;
  }
  body.webview .news-citation__icon .icon-citation {
    background-image: url(images/icons/citation-orange.svg);
  }
  body.webview .news-commentator {
    color: #fff;
    background-color: #2c2c2e;
  }
  body.webview .news-tags__tag {
    color: #fff;
    background-color: #2c2c2e;
    border-color: #686868;
  }
  body.webview .news-tags {
    border-top-color: #686868;
    border-bottom-color: #686868;
  }
  body.webview .news-tags__logo {
    color: #fff;
  }
  body.webview .home-video__slides-title {
    color: #fff;
    background-color: #1c1c1c;
  }
  body.webview .webview-news {
    background-color: #000;
    padding-bottom: 70px;
  }
  body.webview .webview-news .news-heading__tag,
  body.webview .webview-news .news-heading__tag a {
    color: rgba(255, 255, 255, 0.87);
  }
  body.webview .popup-timeline {
    background-color: #1c1c1c;
  }
  body.webview .popup-timeline__team-name, body.webview .popup-timeline__team-points--final, body.webview .popup-timeline__team-points--quarters, body.webview .popup-timeline-item__wrapper {
    color: #fff;
  }
  body.webview .popup-timeline__team {
    border-bottom-color: #414143;
  }
  body.webview .popup-squads__item {
    color: #fff;
    border-bottom-color: #414143;
  }
  body.webview .webview-transmission-header {
    color: #fff;
    background-color: #000;
  }
  body.webview .webview-tramission-tabs {
    background-color: #000;
  }
  body.webview .webview-transmission-container .transmission-section--squads .popup-squads__header,
  body.webview .transmission-section__content {
    color: #fff;
  }
  body.webview .webview-transmission-container .stats-table .table-row__item {
    border-bottom-color: #414143;
  }
  body.webview .webview-transmission-container .popup-timeline-item__time {
    background-color: #000;
  }
  body.webview .webview-transmission-container .stats-table .donut-center {
    background-color: #1c1c1c;
  }
  body.webview .gameplan {
    background-image: url("images/icons/boisko.svg"), linear-gradient(to bottom, #2c2c2e 0, #2c2c2e 80px, transparent 81px, transparent 160px);
  }
  body.webview .gameplan-player__name {
    color: #fff;
  }
  body.webview .webview-results-item__participant {
    color: #fff;
  }
  body.webview .webview-results-discipline {
    background-color: #1c1c1c;
  }
  body.webview .webview-results-event,
  body.webview .webview-results-round {
    background-color: #2c2c2e;
  }
  body.webview .webview-results-date {
    background-color: #3a3a3c;
    border-top-color: #414143;
  }
  body.webview .webview-results-list {
    color: #fff;
  }
  body.webview .webview-results-item::after {
    background-color: #414143;
  }
  body.webview .webview-results-item__label {
    color: #fff;
  }
  body.webview .webview-results-item__label.label-grey {
    color: #2b2b2b;
  }
  body.webview .webview-results-accordion__item-wrap {
    background-color: #2c2c2e;
    border-bottom-color: #2b2b2b;
  }
  body.webview .webview-results-accordion__subitem {
    background-color: #1c1c1c;
    border-bottom-color: #2b2b2b;
  }
  body.webview .webview-results-accordion__item a {
    color: #fff;
  }
  body.webview .page-results .beam-bg {
    background-color: #2c2c2e;
    color: #fff;
  }
  body.webview .page-results__beam {
    border-bottom-color: #414143;
  }
  body.webview .results-f1__content {
    color: #fff;
  }
  body.webview .results__person,
  body.webview .results__day,
  body.webview .results__title,
  body.webview .results__result {
    color: #fff;
  }
  body.webview .table__header {
    background-color: #2b2b2b;
  }
  body.webview .table {
    color: #fff;
  }
  body.webview .table-row--empty {
    color: #fff;
  }
  body.webview .draw-content__item {
    background-color: #2c2c2e;
    border-color: #2c2c2e;
  }
  body.webview .draw-details__content {
    background-color: #2b2b2b;
    border-color: #2c2c2e;
  }
  body.webview .draw-item__details {
    background-color: #2c2c2e;
    border-color: #2c2c2e;
  }
  body.webview .draw-item__brand figure.img-placeholder {
    background-color: #3f3f42;
  }
  body.webview .page-results__draw .VueCarousel-navigation-prev::before,
  body.webview .page-results__draw .VueCarousel-navigation-next::before {
    background-color: #2b2b2b !important;
  }
  body.webview .page-results__draw .VueCarousel-navigation-prev.VueCarousel-navigation--disabled::before,
  body.webview .page-results__draw .VueCarousel-navigation-next.VueCarousel-navigation--disabled::before {
    background-color: #2c2c2e !important;
  }
  body.webview .webview-calendar-day.active {
    color: #fff;
  }
  body.webview .webview-results-calendar__scrollbtn {
    background-color: #2c2c2e;
  }
  body.webview .participant-module__title,
  body.webview .next-event__date {
    color: rgba(255, 255, 255, 0.87);
  }
  body.webview .next-event__details,
  body.webview .next-event__name,
  body.webview .last-event__type,
  body.webview .results__name,
  body.webview .results__result--link {
    color: #fff;
  }
  body.webview .next-event--webview,
  body.webview .results__content {
    border-bottom-color: #2c2c2e;
  }
  body.webview .results__result::after {
    background-color: #2c2c2e;
  }
  body.webview .page-results__player,
  body.webview .page-results__set {
    color: #fff;
  }
  body.webview .button-expand {
    color: #fff;
  }
  body.webview .info__icon--assist {
    background: transparent url("images/icons/asysta-white.svg") no-repeat center center;
  }
  body.webview .quiz-detal .quiz__content {
    background-color: #2c2c2e;
  }
  body.webview .quiz-item__header {
    color: #fff;
  }
  body.webview .quiz-item__answer {
    background-color: #262626;
    color: #fff;
  }
  body.webview .quiz-item__answer.user-answer {
    color: #fff;
    background-color: #ff7676;
    -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 2px #f05a22, 0 4px 4px 0 rgba(0, 0, 0, 0.14);
            box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 2px #f05a22, 0 4px 4px 0 rgba(0, 0, 0, 0.14);
  }
  body.webview .quiz-item__answer.user-answer::before {
    color: #f05a22;
  }
  body.webview .quiz-item__answer.correct {
    color: #2b2b2b;
    background-color: #73fb95;
  }
  body.webview .quiz-summary__title,
  body.webview .news-tags__label,
  body.webview .quiz-answers__label,
  body.webview .webview-news .news-image__description {
    color: #fff;
  }
  body.webview .quiz-answers__label {
    padding: 10px 10px 0;
  }
  body.webview .quiz-answers__item {
    background-color: #2b2b2b;
  }
  body.webview .quiz-item__question-caption {
    color: #fff;
  }
  body.webview .transmission-section__label {
    color: #fff;
  }
}

@media (prefers-color-scheme: dark) and (min-width: 1024px) {
  body.webview .transmission-section__content {
    padding-left: 0;
  }
}

@media (prefers-color-scheme: dark) {
  body.webview .relation-item__text,
  body.webview .relation-item__time {
    color: #fff;
  }
  body.webview .button-expand.dark::after {
    background: transparent url("images/icons/arrow-down-expand.svg") no-repeat center center;
  }
  body.webview .quiz-detal__wrapp {
    background-color: #2c2c2c;
  }
  body.webview .webview-timeline {
    color: #fff;
  }
  body.webview .webview-results-list__content.loading::before {
    background-color: #2c2c2c;
  }
  body.webview .rectangle {
    right: auto;
    padding-bottom: 50px;
  }
  body.webview .highlights-tab__item {
    background-color: #252525;
    border: 0;
  }
  body.webview .highlights-content {
    background-color: #252525;
  }
  body.webview .highlights-content .box-small__title {
    color: #fff;
  }
  body.webview.euro2020-webview .transmission-prematch__content {
    background-color: #353535;
  }
  body.webview.euro2020-webview .transmission-prematch__content.prematch-table {
    color: #fff;
  }
  body.webview.euro2020-webview .prematch-table__header {
    background-color: #5f5f5f;
  }
  body.webview.euro2020-webview .prematch-table__col {
    color: #fff;
  }
  body.webview.euro2020-webview .prematch-table__group {
    background-color: #353535;
  }
  body.webview.euro2020-webview .gameplan-player__name {
    color: #000;
  }
  body.webview.euro2020-webview .gameplan-label__name {
    color: #fff;
  }
  body.webview .participant-stats__table-row {
    background-color: #353535;
    color: #fff;
    border-color: #575757;
  }
  body.webview .participant-stats__table-col-value {
    color: #fff;
  }
  body.webview .participant-stats .stats-section {
    background-color: #353535;
  }
  body.webview .participant-stats .stats-section--playerbg {
    background: #353535;
  }
  body.webview .participant-stats .stats-section__label, body.webview .participant-stats .stats-section__value {
    color: #fff;
  }
  body.webview .transmission-prematch__header {
    color: #fff;
    background-color: #353535;
  }
  body.webview .transmission-prematch__content {
    background-color: transparent;
  }
  body.webview .prematch-table__group {
    color: #fff;
    background-color: #494949;
  }
  body.webview .prematch-table__header {
    color: #fff;
    background-color: #636363;
  }
  body.webview .prematch-table__header .prematch-table__row {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body.webview .prematch-table__row {
    color: #fff;
    background-color: #525252;
    -webkit-box-shadow: inset 0 -1px 0 0 #3e3e3e;
            box-shadow: inset 0 -1px 0 0 #3e3e3e;
  }
  body.webview .prematch-table__col {
    color: #fff;
  }
  body.webview .prematch-table__col a {
    color: inherit;
  }
}

body.webview.euro2020-webview .webview-transmission-header {
  background-color: transparent;
}

[v-cloak] {
  display: none;
}

.nopadding {
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: 0 !important;
}

.nomargin {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.nomargintop {
  margin-top: 0 !important;
}

ghmo,
.ghmo {
  opacity: 1 !important;
}

.v-spacer-60 {
  height: 60px;
}

/*ADBLOCK*/
.block {
  display: none;
  background-image: url(images/adblock/adblock.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  text-align: left;
}

.block__content {
  position: absolute;
  top: 20px;
  left: 20%;
  -webkit-transform: translate(-20%, 0);
          transform: translate(-20%, 0);
  color: #fff;
}

@media (min-width: 768px) {
  .block__content {
    top: 50%;
    left: 20%;
    -webkit-transform: translate(-20%, -50%);
            transform: translate(-20%, -50%);
  }
}

.block:hover {
  cursor: default;
}

.block__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 1280px) {
  .block__title {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .block__title {
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.block__subtitle {
  font-size: 14px;
  line-height: 1.56;
}

.block__subtitle span {
  margin-top: 10px;
  display: block;
  font-weight: 700;
}

@media (min-width: 1280px) {
  .block__subtitle span {
    margin-top: 40px;
  }
}

@media (min-width: 1280px) {
  .block__subtitle {
    font-size: 18px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .block__subtitle {
    font-size: 10px;
  }
}

.block__button {
  font-size: 12px;
  background-color: #f05a22;
  outline: none;
  border: 0;
  color: #ffffff;
  margin-top: 20px;
  padding: 10px;
  font-weight: 700;
}

@media (min-width: 1280px) {
  .block__button {
    font-size: 18px;
    margin-top: 40px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .block__button {
    padding: 5px 10px 8px 5px;
    font-size: 10px;
    margin-top: 2px;
  }
}

/*END ADBLOCK*/
.icon-arrow-orange {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 5px;
  background-image: url(images/icons/arrow-orange.svg);
}

.icon-arrow-lime {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 5px;
  background-image: url(images/icons/arrow-lime.svg);
}

.icon-arrow-violet {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 5px;
  background-image: url(images/icons/arrow-violet.svg);
}

.icon-arrow-violet-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 5px;
  background-image: url(images/icons/arrow-violet-dark.svg);
}

.icon-arrow-white {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 5px;
  background-image: url(images/icons/arrow_white.svg);
}

.icon-arrow-grey-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15px;
  height: 30px;
  background-image: url(images/icons/arrow-grey-prev.svg);
  cursor: pointer;
}

.icon-arrow-grey-next {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15px;
  height: 30px;
  background-image: url(images/icons/arrow-grey-next.svg);
  cursor: pointer;
}

.icon-arrow-black-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 37px;
  height: 68px;
  background-image: url(images/icons/arrow-black-prev.svg);
  cursor: pointer;
}

.icon-arrow-white-next {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 37px;
  height: 68px;
  background-image: url(images/icons/arrow-white-next.svg);
  cursor: pointer;
}

.icon-arrow-white-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 37px;
  height: 68px;
  background-image: url(images/icons/arrow-white-prev.svg);
  cursor: pointer;
}

.icon-arrow-more {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 14px;
  height: 7px;
  background-image: url(images/icons/arrow__more.svg);
  cursor: pointer;
  left: auto;
  right: -25px;
}

.icon-arrow-black {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 5px;
  background-image: url(images/icons/arrow-black.svg);
}

.icon-arrow-dropdown {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 26px;
  height: 19px;
  background-image: url(images/icons/arrow__more.svg);
  position: relative;
  top: 6px;
  float: right;
}

.icon-facebook {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 21px;
  background-image: url(images/icons/facebook.svg);
}

.icon-twitter {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 26px;
  height: 21px;
  background-image: url(images/icons/twitter.svg);
}

.icon-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 26px;
  height: 18px;
  background-image: url(images/icons/yt.svg);
}

.icon-instagram {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 21px;
  height: 21px;
  background-image: url(images/icons/instagram.png);
}

.icon-facebook__news {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 31px;
  height: 31px;
  background-image: url(images/icons/facebook__news.svg);
  z-index: 1;
}

.icon-twitter__news {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 32px;
  height: 26px;
  background-image: url(images/icons/twitter__news.svg);
  z-index: 1;
}

.icon-message__news {
  position: absolute;
  top: 50%;
  left: 50%;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 27px;
  height: 24px;
  background-image: url(images/icons/message__news.svg);
  z-index: 1;
}

.icon-camera {
  display: inline-block;
  height: 13px;
  width: 18px;
  margin-left: 6px;
  vertical-align: -1px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url(images/icons/camera.svg);
}

.icon-citation {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 20px;
  background-image: url(images/icons/citation.svg);
}

@media (min-width: 1280px) {
  .icon-citation {
    width: 70px;
    height: 54px;
  }
}

.icon-pdf {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 24px;
  background-image: url(images/icons/pdf.svg);
}

.icon-x {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 22px;
  height: 22px;
  background-image: url(images/icons/icon-x.png);
}

.icon-close-gallery {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 22px;
  height: 22px;
  background-image: url(images/icons/close-gallery.svg);
  cursor: pointer;
}

.icon-arrow-down {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 7px;
  background-image: url(images/icons/arrow-down.svg);
  cursor: pointer;
}

.icon-arrow-big-grey-prev {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 37px;
  height: 68px;
  background-image: url(images/icons/arrow-grey-prev.svg);
  cursor: pointer;
  display: block;
}

.icon-arrow-big-grey-next {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 37px;
  height: 68px;
  background-image: url(images/icons/arrow-grey-next.svg);
  cursor: pointer;
  display: block;
}

.icon-search-filter {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 25px;
  height: 25px;
  background-image: url(images/icons/filter.png);
  cursor: pointer;
  display: inline-block;
}

.icon-goal {
  background: transparent url(images/icons/gol.svg) no-repeat center center;
  width: 16px;
  min-width: 16px;
  height: 22px;
  display: inline-block;
  margin: 0 5px;
}

.icon-yellow-card {
  background: transparent url(images/icons/yellow-card.svg) no-repeat center center;
  width: 16px;
  min-width: 16px;
  height: 22px;
  display: inline-block;
  margin: 0 5px;
}

.icon-red-card {
  background: transparent url(images/icons/red-card.svg) no-repeat center center;
  width: 16px;
  min-width: 16px;
  height: 22px;
  display: inline-block;
  margin: 0 5px;
}

.icon-stream-live {
  background: transparent url(images/icons/stream-live.svg) no-repeat center center;
  width: 24px;
  min-width: 24px;
  height: 20px;
  display: inline-block;
  margin: 0 5px;
}

.icon-stream-live-white {
  background: transparent url(images/icons/stream-live-white.svg) no-repeat center center;
  width: 33px;
  min-width: 33px;
  height: 27px;
  display: inline-block;
}

.icon-team-head {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 23px;
  height: 23px;
  background-image: url(images/icons/team-head.svg);
  cursor: pointer;
  display: block;
}

.icon-team-cup {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 23px;
  height: 23px;
  background-image: url(images/icons/team-cup.svg);
  cursor: pointer;
  display: block;
}

.icon-team-ball {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 23px;
  height: 23px;
  background-image: url(images/icons/team-ball.svg);
  cursor: pointer;
  display: block;
}

.icon-team-play-field {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 23px;
  height: 23px;
  background-image: url(images/icons/playing-field.svg);
  cursor: pointer;
  display: block;
}

.gallery-mark {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 50px;
  height: 50px;
  background-image: url(images/icons/gall-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
}

.gallery-mark.small {
  width: 22px;
  height: 22px;
  left: 5px;
  bottom: 5px;
}

.gallery-mark.halfmedium {
  width: 36px;
  height: 36px;
  left: 8px;
  bottom: 8px;
}

.gallery-mark.medium {
  width: 48px;
  height: 48px;
  left: 10px;
  bottom: 10px;
}

.gallery-mark:hover {
  cursor: pointer;
}

.legend-icons__sign {
  background: url(images/icons/jm.svg) no-repeat center/contain;
}

.legend-icons__subbed {
  background: url(images/icons/subbed.svg) no-repeat center/contain;
}

.legend-icons__audiodescription {
  background: url(images/icons/audiodesc.svg) no-repeat center/contain;
}

.legend-icons__live {
  width: auto !important;
  padding: 2px 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 4px;
  background: #fff;
  border: 1px solid #b50000;
  letter-spacing: 1px;
  font-size: .5625rem;
  color: #b50000;
  font-weight: 700;
  text-transform: uppercase;
}

.legend-icons__nolimits {
  background: url(images/icons/smile_green.svg) no-repeat center/contain;
}

.legend-icons__seven {
  background: url(images/icons/7.svg) no-repeat center/contain;
}

.legend-icons__twelve {
  background: url(images/icons/12.svg) no-repeat center/contain;
}

.legend-icons__sixteen {
  background: url(images/icons/16.svg) no-repeat center/contain;
}

.legend-icons__adult {
  background: url(images/icons/adult.svg) no-repeat center/contain;
}

.icon-arrow-det-left {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 11px;
  height: 20px;
  background-image: url(images/icons/arrow-det-left.svg);
}

.icon-arrow-det-right {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 11px;
  height: 20px;
  background-image: url(images/icons/arrow-det-right.svg);
}

.icon-transmission {
  display: inline-block;
}

.icon-transmission--main {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 45px;
  height: 45px;
  background-image: url(images/icons/transmission-main.svg);
}

.icon-transmission--camera_180 {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 45px;
  height: 45px;
  background-image: url(images/icons/transmission-180.svg);
}

.icon-transmission--camera_stadium {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 45px;
  height: 45px;
  background-image: url(images/icons/transmission-stadium.svg);
}

.icon-transmission--alternative_commentary {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 45px;
  height: 45px;
  background-image: url(images/icons/transmission-alternate.svg);
}

.icon-transmission--combined {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 45px;
  height: 45px;
  background-image: url(images/icons/transmission-combined.svg);
}

.icon-medal {
  display: inline-block;
  width: 27px;
  height: 28px;
}

.icon-medal--gold {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url(images/tokyo/medal-gold.svg);
}

.icon-medal--silver {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url(images/tokyo/medal-silver.svg);
}

.icon-medal--bronze {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-image: url(images/tokyo/medal-bronze.svg);
}

.scrolled .header {
  min-height: 54px;
}

.scrolled .header__button-more {
  color: #fff;
}

.scrolled .header__button-more i svg path {
  stroke: #fff;
}

.scrolled .navigation {
  position: fixed;
  top: 0;
  border-bottom-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scrolled .navigation__icon {
  position: fixed;
}

.scrolled .navigation__icon-holder {
  position: absolute;
  z-index: 104;
}

.scrolled .navigation__icon span {
  background: #e8e8e8;
}

.scrolled .navigation__links--secondary li {
  font-size: 1rem;
  margin-right: 20px;
}

.scrolled .navigation-dropdown,
.scrolled .search-dropdown {
  z-index: 103;
}

.header {
  position: relative;
  min-height: 54px;
}

.header__button-more {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .header__button-more {
    display: inline-block;
    margin-right: 64px;
    cursor: pointer;
    font-size: 1rem;
    color: #2b2b2b;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .header__button-more:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -7px;
    height: 1px;
    width: 50px;
    background-color: transparent;
  }
  .header__button-more svg {
    display: inline-block;
    width: 30px;
    height: 10px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .header__button-more:hover {
    color: #ebff00;
  }
  .header__button-more:hover:after {
    background-color: #ebff00;
  }
  .header__button-more:hover i svg path {
    stroke: #ebff00;
  }
}

.navigation {
  padding: 9px 16px 8px 37px;
  top: 0;
  width: 100%;
  background: #303542;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #303542;
  z-index: 101;
}

.navigation__sg {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 1024px) {
  .navigation {
    margin-bottom: 0;
    padding-left: 63px;
  }
  .navigation__sg {
    position: relative;
  }
}

.navigation__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1024px) {
  .navigation__bar {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.navigation__icon {
  width: 26px;
  height: 16px;
  position: absolute;
  top: 20px;
  left: 17px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  margin-right: 22px;
  -webkit-transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 102;
}

.navigation__icon-holder {
  height: 53px;
  width: 62px;
  position: absolute;
  top: 0;
  left: 0;
}

.navigation__icon-holder.open {
  background-color: transparent;
}

.navigation__icon:hover span {
  background: #ebff00;
}

.navigation__icon.open {
  position: fixed;
}

.navigation__icon.open:hover span {
  background: #e8e8e8;
}

@media (min-width: 1024px) {
  .navigation__icon.open:hover span {
    background: #ebff00;
  }
}

@media (min-width: 1024px) {
  .navigation__icon.open span {
    background: #e8e8e8;
  }
}

.navigation__icon span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #c8c8d3;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.navigation__icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.navigation__icon span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.navigation__icon span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.navigation__icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0px;
  left: 8px;
  background: #ebff00;
}

.navigation__icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
  background: #ebff00;
}

.navigation__icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
  left: 8px;
  background: #ebff00;
}

.navigation__arrow.open span:nth-child(1) {
  opacity: 1;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  top: 7px;
  left: 2px;
  width: 45%;
}

.navigation__arrow.open span:nth-child(3) {
  opacity: 1;
  -webkit-transform: rotate(38deg);
          transform: rotate(38deg);
  top: 7px;
  left: 2px;
  width: 45%;
}

.navigation__arrow.open span:nth-child(2) {
  left: 3px;
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 80%;
}

.navigation__logo {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  min-width: 148px;
  z-index: 1;
}

.navigation__logo img {
  display: block;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .navigation__logo {
    margin-right: 15px;
    margin-left: 0;
    min-width: 130px;
  }
  .navigation__logo img {
    margin: 0 auto;
  }
}

.navigation__logo a {
  display: block;
  padding: 10px 0 7px;
}

.navigation__links > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation__links li {
  font-size: 1.125rem;
  color: #2b2b2b;
}

.navigation__links a {
  position: relative;
  color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.navigation__links a:hover {
  color: #ebff00;
}

.navigation__links--primary {
  display: none;
}

@media (min-width: 1024px) {
  .navigation__links--primary {
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.navigation__links--primary li {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-right: 22px;
}

.navigation__links--primary li.active {
  position: relative;
}

.navigation__links--primary li.active a {
  color: #ebff00;
}

.navigation__links--primary li.active a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  height: 1px;
  width: 100%;
  background-color: #ebff00;
}

.navigation__links--primary li.active a:hover:after {
  background-color: #ebff00;
}

.navigation__links--primary li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  height: 1px;
  width: 100%;
  background-color: transparent;
}

.navigation__links--primary li a:hover {
  color: #ebff00;
}

.navigation__links--primary li a:hover:after {
  background-color: #ebff00;
}

.navigation__links--secondary {
  margin-left: auto;
  margin-right: 25px;
  display: none;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 1374px) {
  .navigation__links--secondary {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.navigation__links--secondary li {
  font-size: 1rem;
  margin-right: 20px;
  white-space: nowrap;
}

.navigation__links--secondary li a {
  color: #c8c8d3;
}

.navigation__links--secondary li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  height: 1px;
  width: 100%;
  background-color: transparent;
}

.navigation__links--secondary li a:hover {
  color: #ebff00;
}

.navigation__links--secondary li a:hover:after {
  background-color: #ebff00;
}

.navigation__links--secondary .euro2020,
.navigation__links--secondary .tokio-2020,
.navigation__links--secondary .pekin-2022 {
  color: #ebff00;
}

.navigation__links--social {
  margin-right: 20px;
  display: none;
}

@media (min-width: 1024px) {
  .navigation__links--social {
    display: block;
  }
}

.navigation__links--social li {
  width: 24px;
  height: 24px;
}

.navigation__links--social li svg path {
  fill: #c8c8d3;
}

.navigation__links--social li:not(:last-child) {
  margin-right: 10px;
}

.navigation__links--social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  background-color: transparent;
  text-align: center;
  border-radius: 50%;
}

.navigation__links--social a:hover {
  background-color: #ebff00;
}

.navigation__links--social a:hover svg path {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  fill: #303542;
}

.navigation__links--search {
  min-width: 21px;
  cursor: pointer;
}

.navigation__links--search span svg path {
  fill: #c8c8d3;
}

.navigation__links--search:hover path {
  fill: #ebff00;
}

.navigation__socials--mobile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.navigation__socials--mobile ul li {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0 5px;
  background: transparent;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  padding-top: 11px;
}

.navigation__socials--mobile ul li:nth-child(3) {
  padding-top: 12px;
}

.navigation__socials--mobile ul li:last-of-type {
  padding-top: 10px;
}

.navigation__socials--mobile ul li:hover {
  background-color: #3b3b3b;
}

@media (min-width: 1024px) {
  .navigation__socials--mobile ul {
    display: none;
  }
}

.navigation-dropdown,
.search-dropdown {
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 0;
  background-color: #303542;
  overflow: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  z-index: 101;
}

@media (min-width: 1024px) {
  .navigation-dropdown,
  .search-dropdown {
    height: auto;
  }
  .navigation-dropdown.open,
  .search-dropdown.open {
    top: 0;
    visibility: visible;
  }
}

.navigation-dropdown__logo,
.search-dropdown__logo {
  text-align: center;
  margin-bottom: 23px;
}

@media (min-width: 1024px) {
  .navigation-dropdown__logo img,
  .search-dropdown__logo img {
    margin-bottom: 34px;
  }
}

@media (max-width: 1023px) {
  .navigation-dropdown {
    top: 0;
    left: -100%;
    height: 100%;
    overflow-x: hidden;
  }
  .navigation-dropdown.open {
    left: 0;
    height: calc(100vh + 50px);
    visibility: visible;
  }
  .navigation-dropdown .container {
    width: 100%;
  }
  .search-dropdown {
    top: -100%;
    height: 100%;
  }
  .search-dropdown.open {
    top: 0;
    height: calc(100vh + 50px);
  }
}

@media only screen and (max-device-width: 1023px) {
  .navigation-dropdown.open {
    overflow-y: scroll;
  }
}

.search-dropdown {
  height: 100%;
}

.navigation-dropdown {
  visibility: hidden;
}

.navigation-dropdown .navigation__icon.open {
  display: none;
}

.navigation-dropdown .nts__slide {
  background-color: #0a0a0a;
}

.navigation-dropdown .nts__slide:hover .nts__slide-desc {
  background-color: inherit;
}

.navigation-dropdown .nts__slide-desc {
  background: #0a0a0a;
}

.navigation-dropdown .nts__slide-title {
  padding-bottom: 0;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navigation-dropdown .nts__slide-title, .navigation-dropdown .nts__slide-time {
  color: #fff;
}

.dropdown-links {
  margin-bottom: 20px;
}

.dropdown-links__shortcuts {
  overflow-x: scroll;
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
}

.dropdown-links__shortcuts::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.dropdown-links__shortcuts::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.dropdown-links__shortcuts::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.dropdown-links__shortcuts::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 1024px) {
  .dropdown-links__shortcuts {
    display: none;
  }
}

.dropdown-links__shortcuts .dropdown-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  margin-left: 15px;
}

.dropdown-links__shortcuts .dropdown-links__content--column-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  width: calc(100% - 82px);
}

.dropdown-links__shortcuts .dropdown-links__content--column-2 li {
  font-size: 1rem;
  color: #e8e8e8;
  font-weight: 900;
  padding: 0 10px;
  white-space: nowrap;
  text-transform: uppercase;
}

.dropdown-links__mobile {
  position: absolute;
  width: 100%;
  height: calc(100vh - 94px);
  background-color: #303542;
  right: -100%;
  z-index: 1;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media only screen and (max-device-width: 768px) {
  .dropdown-links__mobile {
    height: 100vh;
  }
}

.dropdown-links__mobile.open {
  right: 0;
}

.dropdown-links__mobile .dropdown-links__label {
  padding-top: 20px;
  margin-bottom: 10px;
}

.dropdown-links__mobile .dropdown-links__content--column-3 {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dropdown-links__mobile .dropdown-links__content--column-3 li {
  margin-bottom: 0;
  font-size: 1.3125rem;
  color: #e8e8e8;
  line-height: 2;
}

@media (min-width: 1024px) {
  .dropdown-links__mobile {
    display: none;
  }
}

.dropdown-links__desktop {
  display: none;
}

@media (min-width: 1024px) {
  .dropdown-links__desktop {
    display: block;
  }
}

.dropdown-links__label {
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #ebff00;
  font-weight: 900;
  cursor: pointer;
}

.dropdown-links__label--discipline {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (max-width: 1023px) {
  .dropdown-links__label--discipline:hover {
    padding-left: 6px;
    color: #e8e8e8;
  }
}

@media (min-width: 1024px) {
  .dropdown-links__label--discipline {
    pointer-events: none;
  }
}

@media (max-width: 1023px) {
  .dropdown-links__label--shortcuts {
    font-size: 1rem;
    color: #9b9b9b;
    font-weight: 900;
    cursor: default;
  }
}

@media (min-width: 1024px) {
  .dropdown-links__label {
    display: inline-block;
    text-align: left;
    cursor: default;
    margin-bottom: 14px;
    font-size: 1.3125rem;
    color: #e8e8e8;
    font-weight: 900;
    position: relative;
  }
  .dropdown-links__label--shortcuts {
    display: inline-block;
  }
  .dropdown-links__label::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ebff00;
    margin-bottom: 2px;
  }
}

.dropdown-links__content {
  position: relative;
}

@media (min-width: 1024px) {
  .dropdown-links__content {
    -webkit-animation: fade-in-and-up 0.8s ease-in-out;
            animation: fade-in-and-up 0.8s ease-in-out;
  }
}

.dropdown-links__content li {
  font-size: 1rem;
  color: #e8e8e8;
}

.dropdown-links__content li a {
  color: inherit;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.dropdown-links__content li a:hover {
  padding-left: 6px;
  color: #e8e8e8;
}

@media (min-width: 1024px) {
  .dropdown-links__content li a:hover {
    color: #ebff00;
  }
}

.dropdown-links__content--level-1 {
  text-align: center;
  margin-top: 27px;
}

@media (min-width: 1024px) {
  .dropdown-links__content--level-1 {
    margin-top: 0;
    text-align: left;
  }
}

.dropdown-links__content--level-1 li {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #ebff00;
  font-weight: 900;
}

@media (min-width: 1024px) {
  .dropdown-links__content--level-1 li {
    font-size: 1.3125rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 24px;
  }
  .dropdown-links__content--level-1 li a {
    display: inline-block;
    position: relative;
  }
  .dropdown-links__content--level-1 li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    margin-bottom: 2px;
  }
}

.dropdown-links__content--level-2 li {
  margin-bottom: 12px;
}

.dropdown-links__content--column-2 {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

.dropdown-links__content--column-3 {
  display: none;
  -webkit-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 30px;
          column-gap: 30px;
}

@media (min-width: 1024px) {
  .dropdown-links__content--column-3 {
    display: block;
  }
}

.navigation-blocks {
  display: none;
}

@media (min-width: 1024px) {
  .navigation-blocks {
    display: block;
    background-color: #262626;
    position: relative;
    padding: 30px 0;
  }
  .navigation-blocks::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110px;
    background-color: inherit;
    background: linear-gradient(106deg, transparent 40%, #262626 40%) 50% 50%/7em 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .navigation-blocks::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 110px;
    background-color: inherit;
    background: linear-gradient(106deg, #262626 40%, transparent 40%) 50% 50%/7em 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.navigation-block__label {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 1.3125rem;
  color: #e8e8e8;
  font-weight: 900;
  position: relative;
}

.navigation-block__label::before {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ebff00;
  margin-bottom: 2px;
}

.navigation-block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation-block__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  min-width: 160px;
  margin-right: 10px;
}

.navigation-block__text {
  font-size: 1rem;
  color: #e8e8e8;
  line-height: 1.31;
  padding-left: 5px;
}

.navigation-block--opinion .navigation-block__content {
  display: block;
}

.opinion-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 17px;
}

.opinion-author__image {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #d9d9d9;
}

.opinion-author__name {
  font-size: 1rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 1.13;
}

.external-links {
  margin-bottom: 20px;
  text-align: center;
  cursor: pointer;
}

.external-links--services {
  position: absolute;
  width: 100%;
  height: calc(100vh - 94px);
  background: #303542;
  right: -100%;
  z-index: 1;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.external-links--services.open {
  right: 0;
}

.external-links--services .external-links__content {
  display: block;
}

.external-links--services .external-links__label {
  font-size: 1.5rem;
  color: #9b9b9b;
  font-weight: 700;
  margin-bottom: 10px;
}

.external-links--services .external-links__content--columns li {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  font-weight: 400;
  margin-bottom: 0;
}

.external-links--services .external-links__content--columns li a {
  font-size: 1.3125rem;
  color: #e8e8e8;
  line-height: 2;
}

@media (min-width: 1024px) {
  .external-links--services {
    display: none;
  }
}

.external-links--stations {
  position: absolute;
  width: 100%;
  background: #303542;
  right: -100%;
  z-index: 1;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  padding-bottom: 40px;
}

.external-links--stations.open {
  right: 0;
}

.external-links--stations .external-links__content {
  display: block;
}

.external-links--stations .external-links__content ul {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.external-links--stations .external-links__content ul li {
  margin-right: 0;
  width: 108px;
  margin-bottom: 25px;
}

.external-links--stations .external-links__content ul li img {
  height: 40px;
  max-width: 100%;
}

.external-links--stations .external-links__label {
  font-size: 1.5rem;
  color: #9b9b9b;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .external-links--stations {
    display: none;
  }
}

@media (min-width: 1024px) {
  .external-links {
    text-align: left;
    padding-top: 32px;
    margin-bottom: 0;
    cursor: default;
  }
}

.external-links__label {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 900;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (max-width: 1023px) {
  .external-links__label:hover {
    padding-left: 6px;
    color: #e8e8e8;
  }
}

@media (min-width: 1024px) {
  .external-links__label {
    text-align: left;
    color: #e8e8e8;
  }
  .external-links__label::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background-color: #4a4a4a;
    margin-bottom: 7px;
  }
}

.external-links__content {
  display: none;
}

@media (min-width: 1024px) {
  .external-links__content {
    display: block;
  }
}

.external-links__content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.external-links__content li {
  margin-bottom: 6px;
  font-size: 0.8125rem;
  color: #9b9b9b;
  font-weight: 700;
}

.external-links__content li a {
  color: inherit;
}

.external-links__content li img {
  min-width: 30px;
}

.external-links__content--columns li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.external-links__content--columns li:hover {
  padding-left: 6px;
  color: #ebff00;
}

.external-links__content--inline li {
  margin-right: 25px;
  margin-bottom: 14px;
}

.search-dropdown {
  bottom: 0;
}

.search-dropdown__header {
  margin-bottom: 37px;
}

.search-dropdown__body {
  margin-bottom: 30px;
}

.search-dropdown__footer {
  text-align: center;
}

.search-form {
  padding: 30px 0 10px;
}

.search-form__title {
  text-transform: uppercase;
  font-size: 1.3125rem;
  color: #ebff00;
  font-weight: 700;
}

.search-form__subtitle {
  font-size: 1rem;
  color: #e8e8e8;
}

.search-form__input [type="text"] {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ebff00;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #e8e8e8;
  font-weight: 700;
}

.search-form__input [type="text"]:focus {
  outline: none;
}

@media (min-width: 768px) {
  .search-form__input [type="text"] {
    font-size: 4.5rem;
  }
}

.search-button--solid,
.next-button--solid {
  text-align: left;
  padding: 4px 20px;
  min-width: 8.5rem;
  border: 0;
  background-color: #ebff00;
  font-size: 1.25rem;
  color: #303542;
  font-weight: 700;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 768px) {
  .search-button--solid,
  .next-button--solid {
    padding: 14px 20px;
    font-size: 1.5rem;
    color: #303542;
    font-weight: 700;
  }
}

.search-button--solid .button-icon,
.next-button--solid .button-icon {
  font-size: 1rem;
  line-height: 2rem;
}

.search-button--solid svg,
.next-button--solid svg {
  width: 12px;
  height: 5px;
  display: inline-block;
  margin-left: 30px;
  position: relative;
  top: -5px;
  fill: #303542;
}

.search-button--link,
.next-button--link {
  background: transparent;
  border: 0;
  padding: 19px 15px;
  font-size: 1.3125rem;
  color: #e8e8e8;
  font-weight: 600;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.search-button--link:hover,
.next-button--link:hover {
  color: #ebff00;
}

.search-button--solid, .search-button--link,
.next-button--solid,
.next-button--link {
  margin: 0 10px;
  cursor: pointer;
  outline: none;
}

.next-button--solid {
  text-align: left;
  padding: 4px 20px;
  min-width: 8.5rem;
  border: 0;
  color: #eaff00;
  background-color: #38324c;
  font-size: 1.25rem;
  color: #e8e8e8;
  font-weight: 700;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 768px) {
  .next-button--solid {
    padding: 14px 20px;
    font-size: 1.5rem;
    color: #e8e8e8;
    font-weight: 700;
  }
}

.next-button--solid .button-icon {
  font-size: 1rem;
  line-height: 2rem;
}

.next-button--solid i {
  background-image: url(images/icons/arrow_white.svg);
  width: 12px;
  height: 5px;
  display: inline-block;
  margin-left: 30px;
  position: relative;
  top: -5px;
}

.next-button--solid:hover {
  background-color: #fff;
  color: #38324c;
}

.next-button--solid:hover i {
  background-image: url(images/icons/arrow-orange.svg);
}

.next-button--link {
  background: transparent;
  border: 0;
  padding: 19px 15px;
  font-size: 1.3125rem;
  color: #e8e8e8;
  font-weight: 600;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.next-button--link:hover {
  color: #eaff00;
}

.next-button--solid, .next-button--link {
  margin: 0 10px;
  cursor: pointer;
  outline: none;
}

.search-dropdown__footer {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.search-dropdown__footer.showed {
  opacity: 1;
  visibility: visible;
}

.next-button {
  display: inline-block;
  margin: 0;
  color: #fff;
  line-height: 2rem;
}

.next-button--disabled {
  background-color: #d5d5d5;
  cursor: default;
}

.button-icon--arrow {
  float: right;
}

.slide-enter-active {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.slide-leave-active {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.slide-enter,
.slide-leave-to {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.slide-enter-to,
.slide-leave {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes fade-in-and-up {
  0% {
    opacity: 0;
    top: 10px;
  }
  30% {
    opacity: 0.1;
    top: 5px;
  }
  50% {
    opacity: 0.5;
    top: 3px;
  }
  70% {
    opacity: 1;
    top: 0px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}

@keyframes fade-in-and-up {
  0% {
    opacity: 0;
    top: 10px;
  }
  30% {
    opacity: 0.1;
    top: 5px;
  }
  50% {
    opacity: 0.5;
    top: 3px;
  }
  70% {
    opacity: 1;
    top: 0px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}

@-moz-document url-prefix() {
  .dropdown-links__shortcuts .dropdown-links__content--column-2 li {
    margin-left: -5px;
    padding: 0;
  }
  .dropdown-links__shortcuts .dropdown-links__content--column-2 li:first-of-type {
    margin-left: 10px;
  }
}

.footer {
  background: #fff;
  margin-top: 45px;
}

.footer__cities {
  padding-top: 39px;
  padding-bottom: 70px;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 33px;
}

.footer__cities a {
  color: inherit;
}

.footer__wrapper {
  width: 291px;
  margin: 0 auto;
}

.footer__item {
  display: inline-block;
}

.footer__link {
  text-decoration: none;
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 2;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer__link:hover {
  padding-left: 6px;
  color: #38324c;
}

.footer__separator {
  color: #2b2b2b;
  padding: 0 4px;
}

.footer__social {
  width: 251px;
  height: 40px;
  background: #fff;
  margin: -22px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__socialTitle {
  display: inline-block;
  letter-spacing: 1.2px;
  font-size: 0.75rem;
  color: #2b2b2b;
}

.footer__socialIcon {
  display: inline-block;
  position: relative;
  width: 31px;
  height: 35px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.footer__socialIcon .icon-facebook {
  width: 12px;
  height: 21px;
}

.footer__socialIcon .icon-twitter {
  width: 23px;
  height: 20px;
}

.footer__socialIcon .icon-youtube {
  width: 24px;
  height: 20px;
}

.footer__socialIcon .icon-instagram {
  width: 20px;
  height: 20px;
}

.footer__title {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 2;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}

.footer__panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-align: center;
}

.footer__circle {
  width: 4px;
  height: 4px;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 9px 0 0;
}

.footer__info--last {
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  margin-top: 15px;
}

.footer__copyright {
  padding: 25px 0 35px;
  font-size: 0.75rem;
  color: #2b2b2b;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: -17px;
}

.footer__tvLogo {
  width: 180px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.footer__tvLogoImage {
  height: 25px;
  margin: 10px 10px;
}

.footer__hide {
  display: none;
}

@media (min-width: 768px) {
  .footer__wrapper {
    width: 709px;
  }
  .footer__cities {
    padding-bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .footer__wrapper {
    width: 766px;
  }
  .footer__cities {
    padding-top: 18px;
    padding-bottom: 32px;
  }
  .footer__title {
    display: none;
  }
  .footer__info {
    position: relative;
  }
  .footer__info--last {
    width: 1164px;
    margin: 5px auto 0;
    padding-top: 29px;
    padding-bottom: 31px;
    border-bottom: 1px solid #e5e5e5;
  }
  .footer__social {
    margin: -17px auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__socialTitle {
    vertical-align: 6px;
  }
  .footer__panel {
    overflow: visible;
    max-height: 100%;
    width: 940px;
    padding: 0 0 0 40px;
    text-align: left;
  }
  .footer__panel--image {
    text-align: center;
  }
  .footer__infoItem {
    display: inline-block;
    width: 24%;
    margin-right: 9px;
  }
  .footer__infoItem--last {
    width: 110px;
    text-align: right;
  }
  .footer__tvLogo {
    width: auto;
  }
  .footer__tvLogoImage {
    height: 20px;
    margin: 0 8px;
  }
  .footer__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1164px;
    margin: 35px auto 0;
    padding-top: 5px;
    border-top: 1px solid #e5e5e5;
  }
  .footer__items .footer__box {
    margin-right: 20px;
  }
  .footer__items .footer__link:hover {
    padding-left: 0;
  }
}

.screening__wrapper.active-yes .footer-banner-app {
  right: 10px;
}

.footer-banner-app {
  display: none;
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: #2b2b2b;
  max-width: 198px;
}

@media (min-width: 768px) {
  .footer-banner-app {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1280px) {
  .footer-banner-app {
    top: 0;
  }
}

.footer-banner-app__content {
  font-size: 0.9375rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0 0 11px;
  text-align: left;
}

.footer-banner-app__content svg {
  margin-top: 6px;
}

.footer-banner-app__image {
  max-height: 111px;
  max-width: 80px;
}

.footer-banner-app__image img {
  display: block;
  margin: -20px 0 0 -47px;
  max-width: 128px;
}

/*Belka EXPAND */
.header-publicity {
  display: block;
  z-index: 1000;
  position: relative;
  top: 0;
  -webkit-transition: top 0.3s linear;
  transition: top 0.3s linear;
  width: 100%;
}

.header-publicity > div:nth-of-type(1) {
  margin: 10px auto !important;
}

@media (max-width: 1215px) {
  .header-publicity img {
    height: auto !important;
  }
  .header-publicity > div > div:nth-of-type(1) {
    width: 100% !important;
  }
}

/*END Belka EXPAND */
/*BRANDING*/
.video-beam-top.active {
  background-position: 0 0 !important;
  background-color: transparent !important;
  height: 0 !important;
  background-size: cover !important;
  padding-bottom: 8.73%;
}

.video-beam-bottom.active {
  background-position: 0 0 !important;
  background-color: transparent !important;
  height: 0 !important;
  background-size: cover !important;
  padding-bottom: 8.73%;
}

/*END BRANDING*/
/*SCREENING*/
.screening {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-position: center 0 !important;
}

.screening--active:hover {
  cursor: pointer;
}

@media (min-width: 1250px) {
  .screening {
    display: block;
  }
}

.screening-sg {
  -webkit-transition: background-position 0.1s ease;
  transition: background-position 0.1s ease;
  top: 0;
  background-position: center 54px !important;
}

.screening-top.expandable-top {
  background-position: center 229px !important;
}

.screening-beam {
  background-position: center 100px !important;
}

.screening-beam-sg {
  background-position: center 54px !important;
}

.screening-beam-sg.screening-top {
  background-position: center 154px !important;
}

.screening__wrapper {
  position: relative;
}

@media (min-width: 1250px) {
  .screening__wrapper.active-yes {
    position: relative;
    width: 1240px;
    margin: 0 auto;
    background: #f7f7f7;
  }
  .screening__wrapper.active-yes #app .discipline {
    position: relative;
    width: 1240px;
    background: #f7f7f7;
    margin: 0 auto;
  }
  .screening__wrapper.active-yes #app .directory-standard-list .discipline {
    width: unset;
  }
  .screening__wrapper.active-yes #app .button-more,
  .screening__wrapper.active-yes #app .home-special__background {
    z-index: 0;
  }
  .screening__wrapper.active-yes #app .transmission-video {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .screening__wrapper.active-yes #app .container,
  .screening__wrapper.active-yes #app .container-fluid {
    width: auto;
  }
  .screening__wrapper.active-yes #app .page-results {
    padding: 15px 15px 0;
  }
  .screening__wrapper.active-yes #app .banner-variant-3.news-latest {
    padding: 0 15px 0;
  }
  .screening__wrapper.active-yes #app .news.news--transmission {
    padding: 0;
  }
  .screening__wrapper.active-yes #app .news.news__sidebar .transmission-header.news {
    margin: 0 15px;
  }
  .screening__wrapper.active-yes #app .transmission-navigation {
    padding-left: 15px;
  }
  .screening__wrapper.active-yes #app .news__container .news-tags {
    margin-left: 0;
  }
  .screening__wrapper.active-yes #app .news-latest__photo {
    z-index: 1;
  }
  .screening__wrapper.active-yes #app .news.news__sidebar .news-latest__container {
    padding-right: 15px;
  }
  .screening__wrapper.active-yes #app .transmission-player .news-image__description {
    color: #fff;
    border-bottom-width: 0;
  }
  .screening__wrapper.active-yes #app .epg-section--calendar {
    width: 1240px;
  }
  .screening__wrapper.active-yes #footer {
    position: relative;
    z-index: 999;
  }
  .screening__wrapper.active-yes #footer .container,
  .screening__wrapper.active-yes #footer .container-fluid {
    width: auto;
  }
  .screening__wrapper.active-yes .spare-title {
    background: #f7f7f7;
  }
  .screening__wrapper.active-yes .footer {
    position: relative;
    z-index: 1;
    margin-top: 45px;
  }
}

@media (min-width: 1250px) and (min-width: 1280px) {
  .screening__wrapper.active-yes .home-video .home-video__frame {
    height: 468px;
  }
}

@media (min-width: 1250px) and (min-width: 1463px) {
  .screening__wrapper.active-yes .home-video .home-video__frame {
    height: 420px;
  }
}

@media (min-width: 1250px) and (min-width: 1921px) {
  .screening__wrapper.active-yes .transmission-section--news .news-video__miniatures .news-video-large__frame {
    height: 348px !important;
  }
  .screening__wrapper.active-yes .home-video .home-video__frame {
    height: 385px;
  }
  .screening__wrapper.active-yes .news__large .news-video-small .news-video-large__single {
    margin-left: 64px;
  }
  .screening__wrapper.active-yes .video-primary__wrapper {
    height: 156px;
  }
  .screening__wrapper.active-yes .video-primary__img {
    width: 364px;
  }
  .screening__wrapper.active-yes .video-primary__description {
    width: 71%;
  }
  .screening__wrapper.active-yes .video-primary .author {
    margin: 0 0 10px;
    padding-bottom: 5px;
  }
  .screening__wrapper.active-yes .news-editor__image {
    left: 14px;
  }
}

.screening__wrapper.active-yes .primary-main .primary.euro {
  margin-bottom: 0;
}

.screening__wrapper.active-yes .primary-main .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.screening__wrapper.active-yes .primary-main .primary__background {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.screening__wrapper.active-yes .primary-main .primary__twin-category::after {
  top: -10px;
}

.screening__wrapper.active-yes .primary-main .primary__top {
  margin-top: 13px;
}

.screening__wrapper.active-yes .primary-main .primary__twin-title {
  font-size: 1.2rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.4rem;
  max-height: calc(1.4rem * 3);
}

.screening__wrapper.active-yes .primary-main .primary__large-title {
  font-size: 1.9rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.19;
}

.screening__wrapper.active-yes .primary-main .primary__double-title {
  font-size: 2.225rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.19;
}

/*END SCREENING*/
/*REKLAMY DESKTOP*/
.gigaboard {
  max-width: 1200px;
  margin: 10px auto 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gigaboard {
    width: 100%;
  }
}

.windowboard {
  max-width: 850px;
  margin: 10px auto 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .windowboard {
    width: 100%;
  }
}

.rectangle,
.halfpage {
  max-width: 300px;
  margin: 10px auto 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  right: 25px;
}

@media (max-width: 768px) {
  .rectangle,
  .halfpage {
    width: 100%;
  }
}

.rectangle {
  display: block;
  overflow: initial;
}

.halfpage {
  max-height: 600px;
}

.doubleboard,
.board {
  max-width: 1240px;
  margin: 10px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .doubleboard,
  .board {
    width: 100%;
  }
}

.board {
  margin: 10px auto 30px;
}

.doubleboard:empty,
.board:empty,
.gigaboard:empty,
.windowboard:empty,
.rectangle:empty,
.halfpage:empty {
  margin: 0 auto;
}

/*END REKLAMY DESKTOP*/
/*REKLAMY MOBILNE*/
.mobile-board-top,
.mobile-board-middle,
.mobile-board-last {
  max-width: 100%;
  margin: 10px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
}

@media (min-width: 992px) {
  .mobile-board-top,
  .mobile-board-middle,
  .mobile-board-last {
    display: none;
  }
}

.mobile-board-top:empty,
.mobile-board-middle:empty,
.mobile-board-last:empty {
  margin: 0 auto;
}

/*END REKLAMY MOBILNE*/
.a-ocean a,
.a-ocean div {
  z-index: 1;
  position: relative;
}

/*--------- GLOBAL ---------*/
.pagination {
  padding-top: 30px;
  padding-bottom: 45px;
  position: relative;
}

.pagination__pages {
  text-align: center;
}

.pagination__number {
  font-size: 1.3125rem;
  color: #9b9b9b;
  font-weight: 700;
  padding: 0 5px;
  background-color: transparent;
  border: 0;
  outline: none;
}

.pagination__number.active {
  color: #2b2b2b;
  border-bottom: 2px solid #eaff00;
}

.pagination__number--dots {
  padding-right: 10px;
  padding-left: 5px;
  font-size: 1.3125rem;
  color: #9b9b9b;
  font-weight: 700;
}

.pagination__number:last-child {
  padding-right: 0;
}

.pagination__number:hover {
  cursor: pointer;
  color: #2b2b2b;
  border-bottom: 2px solid #eaff00;
}

.pagination__next, .pagination__prev {
  position: absolute;
  font-size: 1.3125rem;
  color: #2b2b2b;
  line-height: 1.9;
  font-weight: 700;
  background-color: transparent;
  outline: none;
  border: 0;
  top: 20px;
}

.pagination__next:hover, .pagination__prev:hover {
  cursor: pointer;
}

.pagination__next i, .pagination__prev i {
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (max-width: 768px) {
  .pagination__next, .pagination__prev {
    color: transparent;
  }
}

.pagination__prev {
  left: 20px;
  padding-left: 25px;
}

.pagination__prev i {
  margin-left: -60px;
}

.pagination__prev:hover i {
  margin-left: -55px;
}

.pagination__next {
  right: 20px;
  padding-right: 25px;
}

.pagination__next i {
  margin-left: 55px;
}

.pagination__next:hover i {
  margin-left: 45px;
}

.error-page {
  background-color: #ffffff;
}

.error-page__title {
  padding-top: 50px;
  font-size: 1.75rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
}

.error-page__desc {
  padding-top: 20px;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.57;
  max-width: 435px;
  margin-bottom: 40px;
}

.error-page__bg {
  background-image: url("images/404.png");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 335px;
}

.error-page .next-button span {
  margin-left: 30px;
}

@media (min-width: 768px) {
  .error-page .error-page__title {
    font-size: 2.125rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.19;
  }
  .error-page .error-page__bg {
    min-height: 435px;
  }
}

@media (min-width: 1024px) {
  .error-page .error-page__title {
    font-size: 2.625rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.19;
  }
  .error-page .error-page__bg {
    min-height: 535px;
  }
}

/*--------- MODULES ---------*/
.home-banner {
  padding: 15px 0;
  margin-bottom: 15px;
}

@media (max-width: 1023px) {
  .home-banner {
    padding: 5px 0;
  }
}

.banner-lotto-wrapper {
  margin-bottom: 30px;
  padding-top: 25px;
}

@media (min-width: 768px) {
  .banner-lotto-wrapper {
    padding-top: 0;
  }
}

.banner-lotto {
  margin: 0 auto;
  max-width: 320px;
  height: auto;
  max-height: 150px;
  padding-bottom: calc((150 / 992) * 73%);
  background: transparent url("images/banner/banner-lotto-mobile.png") no-repeat center center;
  background-size: 100% 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .banner-lotto {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 992px;
    background-image: url("images/banner/banner-lotto-desktop.png");
  }
}

.banner-lotto__slogan {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 21px;
  font-weight: bold;
  text-align: center;
  max-width: 100%;
  min-width: 100%;
  position: relative;
  top: 16px;
  padding: 0 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .banner-lotto__slogan {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    font-size: 20px;
    line-height: 23px;
    max-width: 40%;
    min-width: 33%;
    padding: 0;
    padding-left: 70px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .banner-lotto__slogan {
    font-size: 26px;
    line-height: 30px;
  }
}

.banner-lotto__sponsor {
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 22px;
  padding-left: 14px;
  padding-right: 17px;
  max-width: 40%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 768px) {
  .banner-lotto__sponsor {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    max-width: none;
    padding-left: 21px;
    padding-right: 0;
  }
}

.banner-lotto__counter {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  padding: 28px 10px 10px 21px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 58%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 768px) {
  .banner-lotto__counter {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    max-width: none;
    padding: 18px 66px 10px 10px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.lotto-sponsor__label {
  margin-bottom: 8px;
  max-width: 100%;
  height: auto;
}

.lotto-sponsor__logo {
  max-width: 100%;
  height: auto;
}

.lotto-counter__label {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .lotto-counter__label {
    font-size: 22px;
  }
}

.lotto-counter__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lotto-counter__item {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  background: #f08a01;
  background: -webkit-gradient(linear, left top, right top, from(#ffe548), to(#f08a01));
  background: linear-gradient(90deg, #ffe548 0%, #f08a01 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 29px;
  height: 36px;
  margin-left: 6px;
  margin-right: 6px;
  position: relative;
}

.lotto-counter__item span {
  background: -webkit-linear-gradient(#009fe3, #00489d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .lotto-counter__item {
    font-size: 38px;
    border-radius: 20px;
    width: 53px;
    height: 67px;
    margin-left: 20px;
    margin-right: 0;
  }
}

.lotto-counter__item::before {
  content: attr(data-label);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  bottom: -15px;
}

.lotto-counter__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  top: 11%;
  right: -9px;
}

@media (min-width: 768px) {
  .lotto-counter__item:not(:last-child)::after {
    right: -16px;
  }
}

.box-label {
  position: absolute;
  left: 50%;
  top: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 3px 12px;
}

@media (max-width: 768px) {
  .box-label {
    width: 100%;
    top: -10px;
  }
}

.box-big--label {
  padding: 3px 12px;
}

.boxes-1-3-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 10px;
}

.boxes-1-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
  background-color: #fff;
}

.boxes-2-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  background-color: #fff;
}

.boxes-3-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.boxes-4-container {
  width: 100%;
}

.boxes-4-extra-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.boxes-4-extra-container .box-medium {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .boxes-type .box-big__image .button-play {
    width: 48px;
    height: 48px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big__content, .boxes-type .boxes-one-three-box .box-big__content {
    position: relative;
    -webkit-transform: none;
            transform: none;
    background: #fff;
    font-size: 1.5rem;
    color: #2b2b2b;
    padding: 14px 10px 20px;
    left: 0;
    top: 0;
    line-height: 1.25;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big__content br, .boxes-type .boxes-one-three-box .box-big__content br {
    display: none;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big__label, .boxes-type .boxes-one-three-box .box-big__label {
    font-size: 0.8125rem;
    margin-bottom: 6px;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big__image::after, .boxes-type .boxes-one-three-box .box-big__image::after {
    opacity: 0.5;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big__image .button-play__video, .boxes-type .boxes-one-three-box .box-big__image .button-play__video {
    width: 168px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    height: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big:after, .boxes-type .boxes-one-three-box .box-big:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-one-box .box-big .box-big__paramtitle, .boxes-type .boxes-one-three-box .box-big .box-big__paramtitle {
    margin-bottom: 0;
    top: -2px;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-1-container {
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-3-container,
  .boxes-type .boxes-2-container,
  .boxes-type .boxes-1-3-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-two-box .box-medium {
    width: 100%;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-two-box .box-medium__image {
    width: 40%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-two-box .box-medium__image .button-play {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
    position: absolute;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-two-box .box-medium__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    font-size: 0.8125rem;
    font-weight: 600;
    min-height: auto;
    padding: 5px 10px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-two-box .box-medium__content .box-label {
    display: none;
    top: 0;
    -webkit-transform: none;
            transform: none;
    position: static;
    left: 0;
    margin-bottom: 5px;
  }
}

.boxes-type .boxes-three-box .box-small,
.boxes-type .boxes-1-3-container .box-small {
  position: relative;
}

@media (max-width: 767px) {
  .boxes-type .boxes-three-box .box-small,
  .boxes-type .boxes-1-3-container .box-small {
    width: 100%;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-three-box .box-small__image,
  .boxes-type .boxes-1-3-container .box-small__image {
    width: 40%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-three-box .box-small__image .button-play,
  .boxes-type .boxes-1-3-container .box-small__image .button-play {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
    position: absolute;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }
}

@media (max-width: 1023px) {
  .boxes-type .boxes-three-box .box-small__content,
  .boxes-type .boxes-1-3-container .box-small__content {
    font-size: 1.3125rem;
    line-height: 1.33;
    padding: 20px 16px 20px 18px;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-three-box .box-small__content,
  .boxes-type .boxes-1-3-container .box-small__content {
    width: 60%;
    font-size: 0.8125rem;
    min-height: auto;
    padding: 5px 10px;
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-three-box .box-small__content .box-label,
  .boxes-type .boxes-1-3-container .box-small__content .box-label {
    top: 0;
    -webkit-transform: none;
            transform: none;
    position: static;
    left: 0;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .boxes-type .boxes-1-3-container.with-border {
    border-bottom-width: 0;
  }
}

.boxes-list__wrapper {
  background-color: #fff;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 208px;
}

.boxes-list__wrapper:hover .box-small__content::before,
.boxes-list__wrapper:hover .box-medium__content::before,
.boxes-list__wrapper:hover .news-latest__content::before,
.boxes-list__wrapper:hover .magazine__content::before,
.boxes-list__wrapper:hover .video-primary__title--large::before,
.boxes-list__wrapper:hover .video-primary__title--small::before,
.boxes-list__wrapper:hover .video-primary__description::before,
.boxes-list__wrapper:hover .boxes-list__content::before,
.boxes-list__wrapper:hover .news-latest__desc::before,
.boxes-list__wrapper:hover .magazine__desc::before,
.boxes-list__wrapper:hover .news-seealso__desc::before,
.boxes-list__wrapper:hover .home-opinion__cont::before,
.boxes-list__wrapper:hover .home-opinion__small::before,
.boxes-list__wrapper:hover .video-sidebar__content::before,
.boxes-list__wrapper:hover .boxes-list-discipline__content::before,
.boxes-list__wrapper:hover .epg-item__description::before {
  opacity: .06;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  border: 2px solid #2b2b2b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.boxes-list__wrapper:hover .banner-items__image::after,
.boxes-list__wrapper:hover .box-small__image::after,
.boxes-list__wrapper:hover .box-medium__image::after,
.boxes-list__wrapper:hover .news-latest__image::after,
.boxes-list__wrapper:hover .magazine__image::after,
.boxes-list__wrapper:hover .video-primary__title--large::before,
.boxes-list__wrapper:hover .video-primary__title--small::before,
.boxes-list__wrapper:hover .video-primary__img::after,
.boxes-list__wrapper:hover .boxes-list__img::after,
.boxes-list__wrapper:hover .news-latest__photo::after,
.boxes-list__wrapper:hover .magazine__photo::after,
.boxes-list__wrapper:hover .news-seealso__image::after,
.boxes-list__wrapper:hover .home-opinion__image::after,
.boxes-list__wrapper:hover .boxes-list-discipline__img::after,
.boxes-list__wrapper:hover .epg-item__image::after {
  opacity: 0.2;
}

.boxes-list__wrapper:hover .box-small__content,
.boxes-list__wrapper:hover .box-medium__content,
.boxes-list__wrapper:hover .news-latest__title,
.boxes-list__wrapper:hover .boxes-list-discipline__title,
.boxes-list__wrapper:hover .box-small__title {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2b2b2b;
}

.boxes-list__wrapper:hover .box-small__content,
.boxes-list__wrapper:hover .box-medium__content {
  background-color: #e0e0eb;
}

.boxes-list__img {
  vertical-align: top;
  display: inline-block;
  position: relative;
  float: left;
}

.boxes-list__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-list__title {
  padding: 53px 0 25px 30px;
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  display: inline-block;
  width: calc(100% - 362px);
  height: 100%;
  position: relative;
  float: left;
}

.boxes-list__breadcrumbs {
  padding-left: 30px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.1;
}

.boxes-list__content {
  height: 100%;
}

.boxes-list__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.boxes-list .news-latest__category {
  display: block;
  padding-top: 18px;
  position: absolute;
  bottom: 30px;
  left: 32px;
  text-transform: uppercase;
  z-index: 100;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.boxes-list .news-latest__category em {
  font-style: normal;
  display: inline-block;
}

.boxes-list .news-latest__category span {
  display: inline-block;
}

.boxes-list-discipline {
  margin-top: -25px;
}

.boxes-list-discipline__wrapper {
  background-color: #fff;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
  width: 100%;
}

.boxes-list-discipline__wrapper:hover .boxes-list-discipline__content {
  background-color: #ececf3;
}

.boxes-list-discipline__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-list-discipline__img {
  position: relative;
  width: 129px;
  vertical-align: top;
  display: inline-block;
}

.boxes-list-discipline__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-list-discipline__title {
  padding: 5px 8px;
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.38;
  width: calc(100% - 129px);
  position: relative;
}

.boxes-list-discipline__title::before {
  display: none;
}

.boxes-list-discipline__breadcrumbs {
  padding-left: 30px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.1;
}

.boxes-list-discipline__content {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.boxes-list-discipline__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.boxes-list-discipline .news-latest__category {
  display: none;
  padding-top: 18px;
  position: absolute;
  bottom: 30px;
  left: 32px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.boxes-list-discipline .news-latest__category em {
  font-style: normal;
  display: inline-block;
}

.boxes-list-discipline .news-latest__category span {
  display: inline-block;
  position: relative;
  z-index: 100;
  cursor: pointer;
}

@media (max-width: 767px) {
  .boxes-list-discipline .button-play.medium {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
    position: absolute;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }
}

@media (min-width: 768px) {
  .boxes-list-discipline {
    margin-top: 0;
  }
  .boxes-list-discipline__img {
    width: 265px;
  }
  .boxes-list-discipline__title {
    padding: 0 15px 0 30px;
    font-size: 1.5rem;
    line-height: 1.33;
    width: calc(100% - 265px);
  }
  .boxes-list-discipline__wrapper {
    margin-bottom: 10px;
  }
}

@media (min-width: 1280px) {
  .boxes-list-discipline__title {
    padding: 0 15px 0 30px;
    width: calc(100% - 362px);
  }
  .boxes-list-discipline__img {
    width: 362px;
  }
  .boxes-list-discipline .news-latest__category {
    display: block;
    left: 392px;
  }
}

.home .boxes-list-discipline__title::before {
  display: none;
}

.boxes-four-box .boxes-4-container {
  margin-bottom: 30px;
}

.boxes-four-box .boxes-4-container .box-small {
  margin-bottom: 30px;
  position: relative;
}

.boxes-four-box .boxes-4-container .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-four-box .boxes-4-container .box-small:hover .box-small__content {
  background-color: #e0e0eb;
}

@media (max-width: 767px) {
  .boxes-four-box .boxes-4-container {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .boxes-four-box .boxes-4-container::-webkit-scrollbar {
    height: 4px;
  }
  .boxes-four-box .boxes-4-container::-webkit-scrollbar-track {
    border-radius: 0px;
    background: rgba(199, 199, 199, 0.2);
  }
  .boxes-four-box .boxes-4-container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 0px;
  }
  .boxes-four-box .boxes-4-container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
  .boxes-four-box .box-small {
    min-width: 203px;
    display: inline-block;
    float: none;
  }
  .boxes-four-box .box-small__title {
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  .boxes-four-box .col-xs-3 {
    padding: 0;
  }
}

.boxes-four-box .box-small {
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.boxes-four-box .box-small__content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.boxes-four-box .box-small__title {
  height: 85px;
  overflow: hidden;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

.boxes-four-box .box-small__image {
  position: relative;
}

.boxes-four-box .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-four-box .box-small__image .button-play {
  width: 24px;
  height: 24px;
  left: 10px;
  bottom: 12px;
}

.boxes-four-box .box-small__duration {
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  left: 40px;
  bottom: 11px;
}

.boxes-four-box .box-small__author {
  color: #2b2b2b;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.38;
}

.boxes-four-box .box-small__category {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding-top: 10px;
}

.boxes-four-box .box-small__category span {
  z-index: 100;
  position: relative;
  cursor: pointer;
}

.boxes-four-box .box-small__category span b:hover {
  color: #9393a4;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .boxes-four-box.opinie .video__heading {
    border-top-color: #2b2b2b;
  }
}

.boxes-four-box.opinie .video__heading::before {
  background-color: #2b2b2b;
}

.boxes-three-box .box-small {
  width: calc(33.3% - 20px);
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.boxes-three-box .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-three-box .box-small__content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  min-height: 130px;
  background-color: #fff;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.boxes-three-box .box-small__content .box-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  left: 25px;
  -webkit-transform: none;
          transform: none;
  padding: 0;
}

@media (max-width: 767px) {
  .boxes-three-box .box-small__content .box-label {
    font-size: 0.625rem;
    font-weight: 700;
    left: 0;
  }
}

.boxes-three-box .box-small__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.boxes-three-box .box-small__image {
  position: relative;
}

.boxes-three-box .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-three-box .box-small:hover .box-small__content {
  background-color: #e0e0eb;
}

.boxes-three-box .box-small.box-small-three {
  position: relative;
}

.boxes-three-box .box-small.box-small-three:hover {
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
}

.boxes-three-box .box-small.box-small-three .results__more {
  position: absolute;
  bottom: 0;
  left: 0;
}

.boxes-three-box .box-small-hor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.38;
  border-bottom: 1px solid #d9d9d9;
  min-height: 93px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(33% - 5.5px);
  position: relative;
}

.boxes-three-box .box-small-hor img {
  max-width: 122px;
  height: 100%;
}

.boxes-three-box .box-small-hor__label {
  padding: 1px 5px 1px 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  margin-left: 0;
}

.boxes-three-box .box-small-hor__content {
  width: 65%;
}

.boxes-three-box .box-small-hor__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.boxes-three-box .box-small-hor__image {
  position: relative;
}

.boxes-three-box .box-small-hor__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 1024px) {
  .boxes-three-box .box-small-hor__image {
    height: 70px;
  }
}

.boxes-three-box .box-small-hor .label {
  margin-left: 0;
  margin-right: -3px;
}

.boxes-three-box .box-small-hor:hover {
  text-decoration: underline;
}

.boxes-two-box .box-medium {
  width: calc(50% - 15px);
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.boxes-two-box .box-medium__content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  min-height: 135px;
  background-color: #fff;
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.boxes-two-box .box-medium__content .box-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  text-align: center;
  min-width: 100%;
}

.boxes-two-box .box-medium__image {
  position: relative;
}

.boxes-two-box .box-medium__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-two-box .box-medium__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-two-box .box-medium:hover {
  background-color: transparent;
}

.boxes-two-box .box-medium:hover .box-medium__content {
  color: #9393a4;
}

.boxes-two-box .box-medium .opinion__small {
  display: none;
}

@media (min-width: 768px) {
  .boxes-two-box .box-medium .opinion__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.boxes-two-box .box-medium .opinion__small--name {
  color: #2b2b2b;
}

.boxes-one-box .box-big {
  width: 100%;
  display: block;
  position: relative;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.boxes-one-box .box-big__content {
  position: absolute;
  left: 30px;
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.19;
  z-index: 2;
}

@media (max-width: 767px) {
  .boxes-one-box .box-big__content {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .boxes-one-box .box-big__content {
    width: 80%;
    max-width: 450px;
    bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .boxes-one-box .box-big__content {
    max-width: 570px;
    bottom: 47px;
  }
}

@media (min-width: 1280px) {
  .boxes-one-box .box-big__content {
    max-width: 800px;
    bottom: 25px;
  }
}

.boxes-one-box .box-big__content.pt {
  padding-top: 25px;
}

.boxes-one-box .box-big__content.pt .button-play {
  position: static;
}

.boxes-one-box .box-big__content .opinion__small {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.boxes-one-box .box-big__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-one-box .box-big__label {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.boxes-one-box .box-big__image {
  position: relative;
}

.boxes-one-box .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 768px) {
  .boxes-one-box .box-big__image:before {
    display: block;
    position: absolute;
    content: "";
    height: 120px;
    width: 100%;
    bottom: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .boxes-one-box .box-big__image:before {
    height: 200px;
  }
}

.boxes-one-box .box-big__paramtitle {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  padding: 4px 10px 5px;
  background-color: #eaff00;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .boxes-one-box .box-big__paramtitle {
    display: none;
  }
}

.boxes-one-box .box-big__paramtitle--mobile {
  width: calc(100% - 40px);
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  z-index: 10;
  text-align: center;
}

.boxes-one-box .box-big__paramtitle--mobile--view {
  width: 485px;
  height: 1px;
  margin: 0 auto;
  background: #eaff00;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
}

@media (max-width: 767px) {
  .boxes-one-box .box-big__paramtitle--mobile--view {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .boxes-one-box .box-big__paramtitle--mobile {
    display: block;
  }
}

.boxes-one-box .box-big__paramtitle--content {
  background-color: #eaff00;
  display: inline-block;
  padding: 4px 10px 5px;
}

.boxes-one-box .box-big::after {
  display: block;
  position: absolute;
  content: "";
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(63deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  opacity: 0.5;
}

.boxes-one-box .box-big:hover .box-big__title,
.boxes-one-box .box-big:hover .home-video__title {
  text-decoration: underline;
}

.boxes-one-box .box-big:hover::after {
  opacity: 0.7;
}

.boxes-one-box .box-big__mixed {
  position: relative;
}

.boxes-one-box .box-big__mixed .button-play {
  position: static;
}

.boxes-one-three-box {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .boxes-one-three-box {
    margin-bottom: 20px;
  }
}

.boxes-one-three-box .box-big {
  width: 100%;
  display: block;
  position: relative;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.boxes-one-three-box .box-big__content {
  position: absolute;
  left: 30px;
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.19;
  z-index: 2;
}

@media (max-width: 767px) {
  .boxes-one-three-box .box-big__content {
    width: 100%;
  }
  .boxes-one-three-box .box-big__content .button-play {
    display: none;
  }
}

@media (min-width: 768px) {
  .boxes-one-three-box .box-big__content {
    width: 80%;
    max-width: 570px;
    bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .boxes-one-three-box .box-big__content {
    max-width: 570px;
    bottom: 47px;
  }
}

@media (min-width: 1280px) {
  .boxes-one-three-box .box-big__content {
    max-width: 800px;
    bottom: 25px;
  }
}

.boxes-one-three-box .box-big__content.pt {
  padding-top: 25px;
}

.boxes-one-three-box .box-big__content.pt .button-play,
.boxes-one-three-box .box-big__content.pt .gallery-mark {
  position: static;
}

.boxes-one-three-box .box-big__label {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.boxes-one-three-box .box-big__image {
  position: relative;
}

.boxes-one-three-box .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 768px) {
  .boxes-one-three-box .box-big__image:before {
    display: block;
    position: absolute;
    content: "";
    height: 120px;
    width: 100%;
    bottom: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .boxes-one-three-box .box-big__image:before {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .boxes-one-three-box .box-big__image > .button-play {
    display: block;
  }
}

@media (min-width: 768px) {
  .boxes-one-three-box .box-big__image > .button-play {
    display: none;
  }
}

.boxes-one-three-box .box-big__paramtitle {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  padding: 4px 10px 5px;
  background-color: #eaff00;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .boxes-one-three-box .box-big__paramtitle {
    display: none;
  }
}

.boxes-one-three-box .box-big__paramtitle--mobile {
  width: calc(100% - 40px);
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  z-index: 10;
  text-align: center;
}

.boxes-one-three-box .box-big__paramtitle--mobile--view {
  width: 485px;
  height: 1px;
  margin: 0 auto;
  background: #fff000;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: -1;
}

@media (max-width: 767px) {
  .boxes-one-three-box .box-big__paramtitle--mobile--view {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .boxes-one-three-box .box-big__paramtitle--mobile {
    display: block;
  }
}

.boxes-one-three-box .box-big__paramtitle--content {
  background-color: #fff000;
  display: inline-block;
  padding: 4px 10px 5px;
}

.boxes-one-three-box .box-big::after {
  display: block;
  position: absolute;
  content: "";
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(63deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  opacity: 0.5;
}

.boxes-one-three-box .box-big:hover .box-big__title,
.boxes-one-three-box .box-big:hover .home-video__title {
  text-decoration: underline;
}

.boxes-one-three-box .box-big:hover::after {
  opacity: 0.7;
}

.boxes-one-three-box .box-big__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-one-three-box .box-big .button-play.medium {
  position: static;
}

.boxes-one-three-box .box-small {
  width: 32.5%;
  padding: 0;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.boxes-one-three-box .box-small__content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0 20px;
  min-height: 108px;
  font-size: 1.313rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.boxes-one-three-box .box-small__content .box-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  min-width: 100%;
  display: none;
}

@media (min-width: 768px) {
  .boxes-one-three-box .box-small__content .box-label {
    display: block;
  }
}

@media (max-width: 767px) {
  .boxes-one-three-box .box-small__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 600;
  }
}

.boxes-one-three-box .box-small__content .opinion__small {
  display: none;
}

@media (min-width: 768px) {
  .boxes-one-three-box .box-small__content .opinion__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.boxes-one-three-box .box-small__content .opinion__small .opinion__small--name {
  color: #2b2b2b;
}

.boxes-one-three-box .box-small__image {
  position: relative;
}

.boxes-one-three-box .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-one-three-box .box-small:hover {
  background-color: transparent;
}

.boxes-one-three-box .box-small:hover .box-small__content {
  color: #9393a4;
}

.boxes-one-three-box .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.boxes-one-three-box .box-small .button-play.medium {
  bottom: 25px;
}

.boxes-one-three-box .boxes-1-3-container .box-small .button-play.medium {
  bottom: 20px;
  width: 35px;
  height: 35px;
}

@media (max-width: 767px) {
  .boxes-one-three-box .boxes-1-3-container .box-small .button-play.medium {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
    position: absolute;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }
}

.boxes-one-three-box.hot-topic .boxes-1-3-container {
  margin-bottom: 0;
  padding-bottom: 0;
}

.boxes-one-three-box.hot-topic .boxes-1-3-container .box-small__content,
.boxes-one-three-box.hot-topic .boxes-1-3-container .box-small .box-small__content .opinion__small--name,
.boxes-one-three-box.hot-topic .boxes-1-3-container .box-small:hover .box-small__content {
  color: #fff;
}

.boxes-one-three-box.hot-topic .box-small__content,
.boxes-one-three-box.hot-topic .box-small .box-small__content .opinion__small--name,
.boxes-one-three-box.hot-topic .box-small:hover .box-small__content {
  color: #fff;
}

.boxes-one-three-box.hot-topic .button-more {
  margin: 20px auto 0;
}

@media (max-width: 767px) {
  .boxes-one-three-box.hot-topic .box-big__content {
    background-color: transparent;
  }
  .boxes-one-three-box.hot-topic .boxes-1-3-container {
    padding-bottom: 10px;
  }
  .boxes-one-three-box.hot-topic .box-small__content,
  .boxes-one-three-box.hot-topic .boxes-type .boxes-1-3-container .box-small__content {
    background-color: transparent;
  }
  .boxes-one-three-box.hot-topic .box-big__title,
  .boxes-one-three-box.hot-topic .opinion__small .opinion__small--name {
    color: #fff;
  }
}

.boxes-one-three-box.hot-topic .hot-topic__bottom {
  margin-top: -1px;
}

.grid-three__header {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
  height: 41px;
  width: 100%;
  padding-left: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e0e0eb;
}

.grid-three__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  margin-bottom: 30px;
  background-color: #fff;
}

@media (max-width: 1023px) {
  .grid-three__wrapper {
    margin-bottom: 20px;
  }
}

.grid-three .box-small {
  width: 32.5%;
  padding: 0;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

@media (max-width: 767px) {
  .grid-three .box-small {
    width: 100%;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.grid-three .box-small__content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0 20px;
  min-height: 108px;
  font-size: 1.313rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media (max-width: 1023px) {
  .grid-three .box-small__content {
    font-size: 1.3125rem;
    line-height: 1.33;
    padding: 20px 16px 20px 18px;
  }
}

@media (max-width: 767px) {
  .grid-three .box-small__content {
    width: 60%;
    font-size: 0.8125rem;
    min-height: auto;
    padding: 5px 10px;
    background-color: #fff;
  }
}

.grid-three .box-small__content .box-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  min-width: 100%;
  display: none;
}

@media (max-width: 767px) {
  .grid-three .box-small__content .box-label {
    top: 0;
    -webkit-transform: none;
            transform: none;
    position: static;
    left: 0;
    margin-bottom: 5px;
  }
}

@media (min-width: 768px) {
  .grid-three .box-small__content .box-label {
    display: block;
  }
}

@media (max-width: 767px) {
  .grid-three .box-small__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 600;
  }
}

.grid-three .box-small__content .opinion__small {
  display: none;
}

@media (min-width: 768px) {
  .grid-three .box-small__content .opinion__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.grid-three .box-small__content .opinion__small .opinion__small--name {
  color: #2b2b2b;
}

.grid-three .box-small__image {
  overflow: hidden;
  position: relative;
}

.grid-three .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (max-width: 767px) {
  .grid-three .box-small__image {
    width: 40%;
    height: 100%;
  }
}

.grid-three .box-small:hover {
  background-color: transparent;
}

.grid-three .box-small:hover .box-small__content {
  color: #9393a4;
}

.grid-three .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.grid-three .box-small .button-play.medium {
  bottom: 20px;
  width: 35px;
  height: 35px;
}

@media (max-width: 767px) {
  .grid-three .box-small .button-play.medium {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
    position: absolute;
    -webkit-transform: none;
            transform: none;
    top: auto;
  }
}

@media (min-width: 1250px) {
  .screening__wrapper.active-yes .banner {
    padding-top: 15px;
  }
  .screening__wrapper.active-yes .banner-photo--one,
  .screening__wrapper.active-yes .banner-alternative {
    padding: 0 15px;
  }
  .screening__wrapper.active-yes .banner-transmissions {
    margin: 0 15px;
  }
  .screening__wrapper.active-yes .banner-variant-1,
  .screening__wrapper.active-yes .banner-variant-2 {
    padding: 0 10px;
  }
  .screening__wrapper.active-yes .banner-variant-1 .news-latest__photo,
  .screening__wrapper.active-yes .banner-alternative {
    z-index: 1;
  }
  .screening__wrapper.active-yes .banner-items {
    padding: 0 15px;
  }
  .screening__wrapper.active-yes .banner .news-latest.banner-variant-2 .box-small--one .box-small__content {
    height: 244px;
  }
  .screening__wrapper.active-yes .banner-photo__title {
    max-width: none;
  }
}

@media (min-width: 1280px) {
  .screening__wrapper.active-yes .banner-variant-1,
  .screening__wrapper.active-yes .banner-variant-2 {
    padding: 0 15px;
  }
  .screening__wrapper.active-yes .banner-variant-3.news-latest,
  .screening__wrapper.active-yes .news-latest.banner-variant-1,
  .screening__wrapper.active-yes .banner .news-latest {
    margin-top: 0;
  }
  .screening__wrapper.active-yes .banner-alternative .banner-photo__wrapper--large {
    width: 55%;
    left: 20px;
  }
  .screening__wrapper.active-yes .banner-alternative__box {
    right: 20px;
  }
}

@media (min-width: 1921px) {
  .screening__wrapper.active-yes .banner .news-latest.banner-variant-2 .box-small--one .box-small__content {
    height: 244px;
  }
  .screening__wrapper.active-yes .banner-variant-3.news-latest .video-primary__wrapper {
    height: 156px;
  }
  .screening__wrapper.active-yes .banner-variant-3.news-latest .video-primary__img {
    width: 429px;
  }
}

@media (max-width: 1023px) {
  .banner {
    padding-bottom: 10px;
  }
}

.banner__heading {
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 900;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 5px;
  padding: 12px 10px;
}

@media (min-width: 768px) {
  .banner__heading {
    font-size: 2.625rem;
    line-height: 1.19;
    margin-bottom: 12px;
    padding: 19px 20px;
  }
}

@media (min-width: 1024px) {
  .banner__heading {
    font-size: 3.25rem;
    line-height: 1.19;
    padding: 24px 20px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1280px) {
  .banner__heading {
    margin-bottom: 25px;
  }
}

.banner-photo {
  position: relative;
}

.banner-photo--one:hover .banner-photo__image::after {
  opacity: 0.45;
}

.banner-photo__image {
  position: relative;
  max-width: 1920px;
  max-height: 675px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .banner-photo__image {
    min-height: 370px;
  }
}

.banner-photo__image:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  -webkit-backface-visibility: hidden;
}

.banner-photo__image:before {
  display: block;
  position: absolute;
  content: "";
  height: 120px;
  width: 100%;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
  z-index: 1;
}

@media (min-width: 768px) {
  .banner-photo__image:before {
    height: 120px;
  }
}

@media (min-width: 1280px) {
  .banner-photo__image:before {
    height: 200px;
  }
}

.banner-photo__image img {
  margin: auto;
  width: auto;
  min-height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .banner-photo__image img {
    min-height: 292px;
  }
}

@media (min-width: 768px) {
  .banner-photo__image img {
    min-height: 385px;
  }
}

@media (min-width: 1280px) {
  .banner-photo__image img {
    min-height: 504px;
    height: 504px;
    margin: auto;
    width: 100%;
  }
}

.banner-photo__wrapper {
  width: 100%;
  position: absolute;
  bottom: 25px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .banner-photo__wrapper {
    bottom: 35px;
  }
}

@media (min-width: 1280px) {
  .banner-photo__wrapper {
    bottom: 51px;
  }
}

.banner-photo__tag {
  display: inline-block;
  margin-bottom: 5px;
  padding: 1px 12px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-photo__tag--now {
  color: #fff;
  background-color: #f05a22;
}

.banner-photo__tag--date {
  color: #fff;
  background-color: #170f7d;
}

@media (min-width: 768px) {
  .banner-photo__tag {
    font-size: 0.6875rem;
    padding: 3.5px 21px;
    margin-bottom: 15px;
  }
}

@media (min-width: 1024px) {
  .banner-photo__tag {
    margin-bottom: 17px;
  }
}

.banner-photo__breadcrumbs {
  font-size: 0.625rem;
  color: #2b2b2b;
  font-weight: 700;
  background-color: #efefef;
  padding: 1px 12px;
  text-transform: uppercase;
  height: 15px;
  margin-left: -4px;
}

@media (min-width: 768px) {
  .banner-photo__breadcrumbs {
    font-size: 0.8125rem;
    padding: 3.5px 21px;
    height: auto;
    display: inline-block;
  }
}

.banner-photo__cat {
  display: inline-block;
  margin-bottom: 17px;
  padding: 5px 21px;
  background-color: #d60707;
  margin-left: -4px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.banner-photo__title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.33;
  text-align: left;
  max-width: 100%;
  margin: 0 10px;
}

@media (min-width: 768px) {
  .banner-photo__title {
    font-size: 2rem;
    line-height: 1.25;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .banner-photo__title {
    font-size: 2.625rem;
    line-height: 1.24;
  }
}

@media (min-width: 1280px) {
  .banner-photo__title {
    font-size: 3.25rem;
    line-height: 1.19;
    max-width: 1214px;
    margin: 0 auto;
  }
}

.banner-photo__transmissions--wrapper:first-of-type {
  margin-bottom: 5px;
}

.banner-photo__transmissions--wrapper .banner-photo__title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.33;
}

.banner-photo__transmissions--wrapper .banner-photo__wrapper {
  bottom: 64px;
  z-index: 1;
}

.banner-photo__transmissions--wrapper .banner-play {
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.banner-photo__transmissions--wrapper .banner-play span {
  font-size: 1rem;
}

@media (min-width: 400px) {
  .banner-photo__transmissions--wrapper .banner-play span {
    font-size: 1.3125rem;
  }
}

.banner-photo__transmissions--wrapper .banner-photo__tag {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .banner-photo__transmissions--wrapper .banner-photo__image {
    z-index: -1;
  }
  .banner-photo__transmissions--wrapper .banner-photo__wrapper {
    bottom: 60px;
  }
  .banner-photo__transmissions--wrapper .banner-photo__title {
    font-size: 2rem;
    line-height: 1.25;
    padding: 0 10px;
  }
  .banner-photo__transmissions--wrapper .banner-photo__image img {
    height: 303px;
  }
}

@media (min-width: 1024px) {
  .banner-photo__transmissions--wrapper:first-of-type {
    -webkit-clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
    width: 53%;
  }
  .banner-photo__transmissions--wrapper:last-of-type {
    -webkit-clip-path: polygon(12% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(12% 0, 100% 0%, 100% 100%, 0% 100%);
    position: absolute;
    right: 0;
    width: 53%;
  }
  .banner-photo__transmissions--wrapper:last-of-type .banner-photo__wrapper {
    left: 54%;
  }
  .banner-photo__transmissions--wrapper:last-of-type .banner-play {
    left: 53%;
  }
  .banner-photo__transmissions--wrapper .banner-photo__wrapper {
    width: 80%;
    bottom: 68px;
    left: 44%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .banner-photo__transmissions--wrapper .banner-photo__title {
    font-size: 2.625rem;
    padding: 0 10px;
    max-width: 100%;
    text-transform: uppercase;
  }
  .banner-photo__transmissions--wrapper .banner-photo__title--0 {
    text-align: right;
  }
  .banner-photo__transmissions--wrapper .banner-photo__title--1 {
    text-align: left;
  }
  .banner-photo__transmissions--wrapper .banner-photo__tag {
    font-size: 0.8125rem;
  }
  .banner-photo__transmissions--wrapper .banner-play {
    left: 44%;
    bottom: 30px;
  }
  .banner-photo__transmissions--wrapper .banner-photo__image img {
    height: 340px;
  }
  .banner-photo__transmissions--wrapper:first-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 1280px) {
  .banner-photo__transmissions--wrapper .banner-photo__tag {
    margin-bottom: 15px;
  }
  .banner-photo__transmissions--wrapper .banner-photo__wrapper {
    width: 80%;
    bottom: 90px;
  }
  .banner-photo__transmissions--wrapper .banner-photo__image img {
    height: 400px;
  }
  .banner-photo__transmissions--wrapper .banner-play {
    bottom: 36px;
  }
  .banner-photo__transmissions--wrapper .banner-play span {
    font-size: 1.5rem;
  }
}

@media (min-width: 1921px) {
  .banner-photo__transmissions--wrapper:first-of-type {
    width: 53.2%;
  }
}

.banner-photo__transmissions--wrapper a:hover .banner-photo__image:after {
  opacity: 0.7;
}

.banner-items {
  margin: 5px 0;
  padding: 0 5px;
}

@media (min-width: 1280px) {
  .banner-items {
    margin: 30px 0 20px;
    padding: 0 15px;
  }
  .banner-items .container-fluid {
    max-width: 1164px;
  }
}

@media (min-width: 1280px) and (min-width: 1406px) {
  .banner-items .container-fluid {
    max-width: 1376px;
  }
}

@media (min-width: 1921px) {
  .banner-items .container-fluid {
    max-width: 1570px;
  }
}

@media (max-width: 767px) {
  .banner-items .opinion__small {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .banner-items .opinion__small--hide {
    display: none;
  }
}

.banner-items .opinion__small--name {
  color: #2b2b2b;
}

.banner-items--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 1023px) {
  .banner-items--container {
    width: 100%;
    overflow-x: scroll;
    width: 100%;
    overflow-x: auto;
  }
  .banner-items--container::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .banner-items--container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .banner-items--container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .banner-items--container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.banner-items--container .box-small {
  width: 33.3%;
  position: relative;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banner-items--container .box-small:last-child {
  margin-right: 0;
}

.banner-items--container .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .banner-items--container .box-small {
    min-width: 334px;
    width: calc(33.3% - 4px);
    margin-right: 5px;
  }
  .banner-items--container .box-small:last-child {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .banner-items--container .box-small {
    min-width: 240px;
    width: calc(33.3% - 4px);
    margin-right: 6px;
  }
  .banner-items--container .box-small:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .banner-items--container .box-small {
    margin-right: 6px;
  }
  .banner-items--container .box-small:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .banner-items--container .box-small {
    margin-right: 26px;
  }
  .banner-items--container .box-small:last-child {
    margin-right: 0;
  }
}

.banner-items--container .box-small__content {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
  padding: 17px;
  min-height: 125px;
}

@media (min-width: 768px) {
  .banner-items--container .box-small__content {
    padding: 18px 20px 35px;
    min-height: 135px;
  }
}

@media (min-width: 1024px) {
  .banner-items--container .box-small__content {
    font-size: 1.313rem;
    padding: 21px 20px 35px;
    min-height: 185px;
  }
}

.banner-items--container .box-small__content .box-label {
  font-size: 0;
  text-transform: uppercase;
  text-align: left;
  min-width: 100%;
  z-index: 2;
  padding-left: 24px;
}

.banner-items--container .box-small__content .box-label > span {
  font-size: 0.6875rem;
}

.banner-items--container .box-small__content .opinion__small {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.banner-items--container .box-small__content .box-label {
  padding: 3px 23px;
}

.banner-items--container .box-small__category {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-transform: uppercase;
  padding: 0 20px;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.banner-items--container .box-small__category time {
  cursor: pointer;
}

.banner-items--container .box-small__category em {
  padding: 0 5px;
}

.banner-items--container .box-small__category span b {
  cursor: pointer;
  z-index: 100;
  position: relative;
}

.banner-items--container .box-small__category span b:hover {
  color: #9393a4;
}

@media (min-width: 768px) {
  .banner-items--container .box-small__category {
    display: block;
  }
}

.banner-items--container .box-small:hover .box-small__content::before,
.banner-items--container .box-small:hover .box-medium__content::before,
.banner-items--container .box-small:hover .news-latest__content::before,
.banner-items--container .box-small:hover .magazine__content::before,
.banner-items--container .box-small:hover .video-primary__title--large::before,
.banner-items--container .box-small:hover .video-primary__title--small::before,
.banner-items--container .box-small:hover .video-primary__description::before,
.banner-items--container .box-small:hover .boxes-list__content::before,
.banner-items--container .box-small:hover .news-latest__desc::before,
.banner-items--container .box-small:hover .magazine__desc::before,
.banner-items--container .box-small:hover .news-seealso__desc::before,
.banner-items--container .box-small:hover .home-opinion__cont::before,
.banner-items--container .box-small:hover .home-opinion__small::before,
.banner-items--container .box-small:hover .video-sidebar__content::before,
.banner-items--container .box-small:hover .boxes-list-discipline__content::before,
.banner-items--container .box-small:hover .epg-item__description::before {
  opacity: .06;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  border: 2px solid #2b2b2b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.banner-items--container .box-small:hover .banner-items__image::after,
.banner-items--container .box-small:hover .box-small__image::after,
.banner-items--container .box-small:hover .box-medium__image::after,
.banner-items--container .box-small:hover .news-latest__image::after,
.banner-items--container .box-small:hover .magazine__image::after,
.banner-items--container .box-small:hover .video-primary__title--large::before,
.banner-items--container .box-small:hover .video-primary__title--small::before,
.banner-items--container .box-small:hover .video-primary__img::after,
.banner-items--container .box-small:hover .boxes-list__img::after,
.banner-items--container .box-small:hover .news-latest__photo::after,
.banner-items--container .box-small:hover .magazine__photo::after,
.banner-items--container .box-small:hover .news-seealso__image::after,
.banner-items--container .box-small:hover .home-opinion__image::after,
.banner-items--container .box-small:hover .boxes-list-discipline__img::after,
.banner-items--container .box-small:hover .epg-item__image::after {
  opacity: 0.2;
}

.banner-items--container .box-small:hover .box-small__content,
.banner-items--container .box-small:hover .box-medium__content,
.banner-items--container .box-small:hover .news-latest__title,
.banner-items--container .box-small:hover .boxes-list-discipline__title,
.banner-items--container .box-small:hover .box-small__title {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2b2b2b;
}

.banner-items--container .box-small:hover .box-small__content,
.banner-items--container .box-small:hover .box-medium__content {
  background-color: #e0e0eb;
}

.banner-items__image {
  position: relative;
}

.banner-items__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.banner-play--normal {
  z-index: 1;
  position: relative;
}

.banner-play--normal span {
  font-size: 1.125rem;
  color: #eaff00;
  font-weight: 700;
  line-height: 1.11;
}

.banner-play--normal i {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("images/icons/play-lime.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 11px;
  position: relative;
  top: 12px;
}

@media (min-width: 1280px) {
  .banner-play--normal span {
    font-size: 1.5rem;
    line-height: 0.83;
  }
  .banner-play--normal i {
    width: 48px;
    height: 48px;
    top: 17px;
    margin-left: 15px;
  }
}

.banner-play--transmission {
  display: inline-block;
}

.banner-play--transmission span {
  font-size: 1.3125rem;
  color: #f05a22;
  font-weight: 700;
}

.banner-play--transmission i {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url("images/icons/play-lime.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 15px;
  position: relative;
  top: 10px;
}

@media (min-width: 1024px) {
  .banner-play--transmission span {
    font-size: 1.125rem;
  }
  .banner-play--transmission i {
    width: 48px;
    height: 48px;
    top: 17px;
  }
}

@media (min-width: 1280px) {
  .banner-play--transmission span {
    font-size: 1.5rem;
  }
}

.banner-play--small i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("images/icons/play-lime.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.banner .news-latest .box-big,
.banner .news-latest .boxes-3-container .box-medium--one {
  margin-bottom: 0;
}

.banner-alternative .container {
  position: relative;
}

.banner-alternative:hover .banner-photo__image::after {
  opacity: 0.45;
}

.banner-alternative .banner-photo__image {
  z-index: -1;
}

.banner-alternative .banner-photo__wrapper {
  bottom: 88px;
}

.banner-alternative .banner-photo__wrapper--large {
  width: 60%;
  left: 15px;
}

.banner-alternative .banner-photo__tag,
.banner-alternative .banner-photo__breadcrumbs {
  font-size: 0.625rem;
  margin-bottom: 10px;
  padding: 1px 12px;
}

.banner-alternative .banner-photo__title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 768px) {
  .banner-alternative .banner-photo__title {
    font-size: 2.25rem;
    line-height: 1.22;
  }
}

@media (min-width: 1280px) {
  .banner-alternative .banner-photo__title {
    font-size: 3.25rem;
    line-height: 1.19;
  }
}

.banner-alternative .banner-play--normal {
  bottom: 0;
}

.banner-alternative .banner-play--normal span {
  font-size: 1.3125rem;
  line-height: 0.95;
}

.banner-alternative__altlabel {
  position: absolute;
  top: -22px;
  left: 7px;
  font-size: 0.6875rem;
  letter-spacing: 1.1px;
  color: #fff;
}

.banner-alternative__box {
  z-index: 1;
  margin-top: 5px;
  background-color: #fff000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-alternative__box::before {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  top: 0;
  left: -60px;
  bottom: 0;
  border: 15px solid red;
  border-color: transparent #fff000 transparent transparent;
  border-width: 144px 30px 0 0;
}

.banner-alternative__box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 0;
}

.banner-alternative__box .banner-photo__image {
  min-height: auto;
  min-width: 50px;
  margin: 0;
  z-index: 1;
}

.banner-alternative__box .banner-photo__image:after {
  display: none;
}

.banner-alternative__box .banner-photo__image:before {
  display: none;
}

.banner-alternative__box .banner-photo__image img {
  display: none;
  min-height: auto;
  height: auto;
}

.banner-alternative__box .banner-photo__wrapper {
  position: relative;
  bottom: 0;
  text-align: left;
  z-index: 1;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-left: 7px;
}

.banner-alternative__box .banner-photo__title {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: normal;
  margin-right: 13px;
  margin-left: 0;
}

.banner-alternative__box .banner-play .banner-play--small i {
  width: 36px;
  height: 36px;
}

@media (min-width: 768px) {
  .banner-alternative .banner-photo__tag,
  .banner-alternative .banner-photo__breadcrumbs {
    font-size: 0.8125rem;
  }
  .banner-alternative .banner-photo__wrapper--large {
    bottom: 26px;
  }
  .banner-alternative__box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 245px;
    height: 70px;
  }
  .banner-alternative__box::before {
    border-top-width: 70px;
  }
  .banner-alternative__box a {
    padding-left: 4px;
  }
  .banner-alternative__box .banner-photo__image {
    min-width: 0;
  }
  .banner-alternative__box .banner-photo__title {
    max-width: 100%;
    overflow: hidden;
  }
  .banner-alternative__box .banner-photo__wrapper {
    bottom: 0;
    margin-left: 10px;
  }
  .banner-alternative .banner-play {
    margin-top: 10px;
  }
}

@media (min-width: 1024px) {
  .banner-alternative .banner-photo__wrapper--large {
    bottom: 20px;
  }
  .banner-alternative .banner-photo__wrapper--large .banner-photo__title {
    font-size: 2.625rem;
    line-height: 1.19;
    max-width: none;
  }
  .banner-alternative .banner-photo__wrapper--large .banner-play {
    margin-top: 20px;
  }
  .banner-alternative .banner-play--normal i,
  .banner-alternative .banner-play--transmission i {
    width: 48px;
    height: 48px;
  }
  .banner-alternative .banner-play--normal span,
  .banner-alternative .banner-play--transmission span {
    font-size: 1.5rem;
  }
  .banner-alternative__box {
    width: 330px;
    bottom: 0;
    height: 144px;
  }
  .banner-alternative__box::before {
    border-top-width: 144px;
  }
  .banner-alternative__box .banner-photo__image img {
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    height: 80px;
  }
  .banner-alternative__box .banner-photo__wrapper {
    font-size: 13px;
    width: 51%;
  }
  .banner-alternative__box .banner-photo__title {
    font-size: 1.313rem;
    line-height: normal;
  }
  .banner-alternative__box .banner-play {
    margin-top: 0;
  }
  .banner-alternative__box .banner-play .banner-play--small i {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1280px) {
  .banner-alternative .banner-photo__wrapper--large {
    bottom: 20px;
    left: 15px;
  }
  .banner-alternative .banner-photo__wrapper--large .banner-photo__title {
    font-size: 3.25rem;
  }
  .banner-alternative .banner-photo__wrapper--large .banner-play {
    margin-top: 5px;
  }
  .banner-alternative__box {
    bottom: 0;
    right: 15px;
    height: 144px;
  }
  .banner-alternative__box .banner-photo__wrapper {
    width: 60%;
  }
  .banner-alternative__box .banner-photo__wrapper .banner-photo__title {
    max-height: 110px;
  }
}

@media (min-width: 1921px) {
  .banner-alternative .banner-photo__image {
    min-width: 140px;
  }
}

@media (min-width: 1024px) {
  .banner-transmissions .home-outcome__wrapper {
    padding: 0 10px;
  }
  .banner-transmissions .banner-photo__transmissions--enet:last-of-type {
    height: 100%;
    bottom: 0;
  }
  .banner-transmissions .banner-photo__transmissions--enet:last-of-type::after {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #2b2b2b;
    z-index: -2;
  }
  .banner-transmissions .banner-photo__transmissions--enet:last-of-type .banner-photo__image {
    position: absolute;
    bottom: 0;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .banner-transmissions .banner-photo__transmissions--enet:last-of-type .home-outcome__wrapper {
    padding-left: 12%;
  }
}

@media (min-width: 1024px) {
  .banner-transmissions .banner-photo__transmissions--enet + .banner-photo__transmissions--wrapper {
    height: 100%;
    bottom: 0;
  }
  .banner-transmissions .banner-photo__transmissions--enet + .banner-photo__transmissions--wrapper::after {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #2b2b2b;
    z-index: -2;
  }
  .banner-transmissions .banner-photo__transmissions--enet + .banner-photo__transmissions--wrapper .banner-photo__image {
    position: absolute;
    bottom: 0;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .banner-transmissions .banner-photo__transmissions--enet + .banner-photo__transmissions--wrapper .home-outcome__wrapper {
    padding-left: 12%;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .banner-transmissions .home-outcome__result {
    -ms-flex-preferred-size: 12%;
        flex-basis: 12%;
  }
}

.banner .news-latest {
  margin-top: 0;
}

@media (max-width: 767px) {
  .banner .news-latest .news-latest__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .banner .news-latest .news-latest__desc {
    width: 100%;
    padding: 20px 18px 19px;
  }
  .banner .news-latest .news-latest__photo {
    width: 100%;
  }
}

.banner .news-latest .news-latest__box {
  margin-bottom: 0;
}

.banner .news-latest .banner-play--normal,
.banner .news-latest .banner-play--transmission {
  position: absolute;
  bottom: 33px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 1;
}

.banner .news-latest .banner-play--normal span,
.banner .news-latest .banner-play--transmission span {
  font-size: 1.125rem;
}

.banner .news-latest .banner-play--normal i,
.banner .news-latest .banner-play--transmission i {
  margin-left: 20px;
}

.banner .news-latest .box-small__category {
  display: none;
}

@media (min-width: 768px) {
  .banner .news-latest .box-small__category {
    display: block;
  }
}

@media (min-width: 1280px) {
  .banner .news-latest {
    margin-top: 30px;
  }
  .banner .news-latest .box-label {
    top: -35px;
  }
  .banner .news-latest .container-fluid {
    max-width: 1163px;
    padding: 0;
  }
}

@media (min-width: 1280px) and (min-width: 1406px) {
  .banner .news-latest .container-fluid {
    max-width: 1376px;
  }
}

@media (min-width: 1921px) {
  .banner .news-latest .container-fluid {
    width: 1600px;
  }
}

.banner .news-latest.banner-variant-1 {
  margin-top: 10px;
}

.banner .news-latest.banner-variant-1 .opinion__small {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.banner .news-latest.banner-variant-1 .opinion__small--name {
  color: #2b2b2b;
}

@media (min-width: 768px) {
  .banner .news-latest.banner-variant-1 .container-fluid {
    padding: 0 5px;
  }
  .banner .news-latest.banner-variant-1 .box-label {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: -6px;
  }
}

@media (min-width: 1280px) {
  .banner .news-latest.banner-variant-1 .container-fluid {
    padding: 0;
  }
}

.banner .news-latest.banner-variant-2 {
  margin-top: 10px;
}

.banner .news-latest.banner-variant-2 .box-big {
  margin-bottom: 5px;
}

.banner .news-latest.banner-variant-2 .box-small__content {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
  padding-left: 10px;
  height: 71px;
}

.banner .news-latest.banner-variant-2 .box-small__image {
  max-height: 100% !important;
}

.banner .news-latest.banner-variant-2 .banner-play {
  display: none;
}

@media (max-width: 767px) {
  .banner .news-latest.banner-variant-2 .box-label {
    top: -13px;
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .banner .news-latest.banner-variant-2 {
    overflow: hidden;
  }
  .banner .news-latest.banner-variant-2 .col-lg-12 {
    padding: 0 5px;
  }
  .banner .news-latest.banner-variant-2 .box-big {
    width: 100%;
  }
  .banner .news-latest.banner-variant-2 .box-big .box-small__image:before {
    display: block;
    position: absolute;
    content: "";
    height: 120px;
    width: 100%;
    bottom: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
    z-index: 1;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .banner .news-latest.banner-variant-2 .box-big .box-small__image:before {
    height: 120px;
  }
}

@media (min-width: 768px) and (min-width: 1280px) {
  .banner .news-latest.banner-variant-2 .box-big .box-small__image:before {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .banner .news-latest.banner-variant-2 .box-big__content .box-label {
    top: -35px;
  }
  .banner .news-latest.banner-variant-2 .box-big__content {
    font-size: 2rem;
    line-height: 1.25;
    bottom: 35px;
  }
  .banner .news-latest.banner-variant-2 .banner-play {
    display: block;
  }
  .banner .news-latest.banner-variant-2 .banner-play--normal,
  .banner .news-latest.banner-variant-2 .banner-play--transmission {
    position: relative;
    bottom: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    left: 0;
  }
  .banner .news-latest.banner-variant-2 .box-small {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  .banner .news-latest.banner-variant-2 .box-small .box-label {
    display: none;
  }
  .banner .news-latest.banner-variant-2 .boxes-3-container .box-small .box-small__image {
    width: 60%;
    max-height: 100%;
  }
  .banner .news-latest.banner-variant-2 .box-small--one .box-small__content {
    height: auto;
    font-size: 1.125rem;
    line-height: 1.33;
    text-align: left;
    padding: 20px 10px 45px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner .news-latest.banner-variant-2 .boxes-3-container .box-small .box-small__category {
    bottom: 20px;
    left: 16px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .banner .news-latest.banner-variant-2 .box-big {
    width: calc(66.6% + 1px);
    margin-bottom: 0;
  }
  .banner .news-latest.banner-variant-2 .box-big .banner-play i {
    width: 48px;
    height: 48px;
    top: 17px;
  }
  .banner .news-latest.banner-variant-2 .box-big__content {
    bottom: 30px;
  }
  .banner .news-latest.banner-variant-2 .box-small {
    display: block;
    width: calc(33.3% - 10px);
    margin-left: 10px;
  }
  .banner .news-latest.banner-variant-2 .boxes-3-container .box-small .box-small__image {
    width: 100%;
  }
  .banner .news-latest.banner-variant-2 .box-small--one .box-small__content {
    height: calc(51% - 1px);
    font-size: 1.5rem;
  }
  .banner .news-latest.banner-variant-2 .boxes-3-container .box-small .box-small__category {
    bottom: 18px;
  }
}

@media (min-width: 1280px) {
  .banner .news-latest.banner-variant-2 .container-fluid {
    padding: 0 10px;
  }
  .banner .news-latest.banner-variant-2 .box-big__content {
    font-size: 2.25rem;
    line-height: 1.17;
  }
  .banner .news-latest.banner-variant-2 .box-small {
    display: block;
    width: calc(33.3% - 30px);
    margin-left: 30px;
  }
  .banner .news-latest.banner-variant-2 .box-small--one .box-small__content {
    height: 246px;
    font-size: 1.875rem;
    line-height: normal;
  }
}

@media (min-width: 1921px) {
  .banner .news-latest.banner-variant-2 .box-small--one .box-small__content {
    height: 318px;
    padding: 21px 20px 35px;
  }
}

.banner-variant-3.news-latest {
  margin-top: 10px;
  display: block;
}

.banner-variant-3.news-latest .video-primary__box {
  margin-bottom: 5px;
}

.banner-variant-3.news-latest .video-primary__category--small {
  color: #2b2b2b;
}

.banner-variant-3.news-latest .box-big__content {
  font-size: 1.3125rem;
}

.banner-variant-3.news-latest .box-label {
  top: -13px;
}

.banner-variant-3.news-latest .banner-photo__tag {
  margin-right: auto;
  margin-bottom: 3px;
  padding: 1px 12px;
}

.banner-variant-3.news-latest .video-primary__title--small {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.38;
  max-height: 36px;
}

.banner-variant-3.news-latest .video-primary__title--small::before {
  display: none;
}

.banner-variant-3.news-latest .video-primary__wrapper:last-of-type {
  margin-bottom: 0;
}

.banner-variant-3.news-latest .video-primary__wrapper:hover .video-primary__description {
  background-color: #e0e0eb;
}

.banner-variant-3.news-latest .video-primary__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.banner-variant-3.news-latest .video-primary__description {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.banner-variant-3.news-latest .video-primary__description .banner-photo__tag {
  display: none;
}

.banner-variant-3.news-latest .banner-play {
  display: none;
}

.banner-variant-3.news-latest .banner-play span,
.banner-variant-3.news-latest .banner-play i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .banner-variant-3.news-latest .video-primary__cont {
    padding: 0 5px;
  }
  .banner-variant-3.news-latest .box-big__content {
    font-size: 2rem;
    line-height: 1.25;
    bottom: 30px;
  }
  .banner-variant-3.news-latest .video-primary__box {
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .banner-variant-3.news-latest .video-primary__box:hover .box-big__content p {
    text-decoration: underline;
  }
  .banner-variant-3.news-latest .video-primary__box:hover .banner-play span {
    color: #fff;
  }
  .banner-variant-3.news-latest .video-primary__box:hover .banner-play i {
    background-image: url(images/icons/play-white.svg);
  }
  .banner-variant-3.news-latest .video-primary__box:hover .video-primary__large::after {
    opacity: 0.7;
  }
  .banner-variant-3.news-latest .banner-photo__tag {
    padding: 3px 9px;
  }
  .banner-variant-3.news-latest .video-primary__large:after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .banner-variant-3.news-latest .video-primary__large:before {
    display: block;
    position: absolute;
    content: "";
    height: 150px;
    width: 100%;
    bottom: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
    background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
    z-index: 1;
    opacity: 0.7;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .banner-variant-3.news-latest .video-primary__large:before {
    height: 120px;
  }
}

@media (min-width: 768px) and (min-width: 1280px) {
  .banner-variant-3.news-latest .video-primary__large:before {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .banner-variant-3.news-latest .banner-play {
    display: block;
  }
  .banner-variant-3.news-latest .banner-play--normal,
  .banner-variant-3.news-latest .banner-play--transmission {
    position: relative;
    bottom: 0;
  }
  .banner-variant-3.news-latest .banner-play--transmission {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .banner-variant-3.news-latest .video-primary__img {
    width: 47%;
  }
  .banner-variant-3.news-latest .video-primary__description {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 20px 16px 20px 18px;
  }
  .banner-variant-3.news-latest .video-primary__description .banner-photo__tag {
    display: block;
  }
  .banner-variant-3.news-latest .video-primary__title--small {
    font-size: 1.313rem;
    font-weight: 700;
    line-height: 1.33;
    max-height: 55px;
  }
  .banner-variant-3.news-latest .video-primary__category--small {
    display: block;
    position: absolute;
    bottom: 17px;
  }
  .banner-variant-3.news-latest .video-primary__wrapper:first-of-type {
    margin-bottom: 12px;
  }
  .banner-variant-3.news-latest .button-play {
    width: 48px;
    height: 48px;
    background-image: url(images/icons/play-lime.svg);
  }
}

@media (min-width: 1024px) {
  .banner-variant-3.news-latest .video-primary__cont {
    padding-right: 5px;
  }
  .banner-variant-3.news-latest .video-primary__cont:last-of-type {
    padding-left: 5px;
  }
  .banner-variant-3.news-latest .video-primary__box {
    margin-bottom: 0;
  }
  .banner-variant-3.news-latest .box-big__content {
    font-size: 1.5rem;
    line-height: 1.33;
  }
  .banner-variant-3.news-latest .banner-play i {
    width: 36px;
    height: 36px;
    top: 12px;
  }
  .banner-variant-3.news-latest .button-play {
    width: 48px;
    height: 48px;
  }
  .banner-variant-3.news-latest .video-primary__wrapper:first-of-type {
    margin-bottom: 10px;
  }
  .banner-variant-3.news-latest .video-primary__img {
    width: 86%;
  }
  .banner-variant-3.news-latest .video-primary__description {
    width: 85%;
    padding-top: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner-variant-3.news-latest .video-primary__description .banner-photo__tag {
    margin-top: -10px;
  }
  .banner-variant-3.news-latest .video-primary__title--small {
    max-height: 70px;
    line-height: 1.1;
  }
}

@media (min-width: 1280px) {
  .banner-variant-3.news-latest {
    margin-top: 30px;
  }
  .banner-variant-3.news-latest .video-primary__cont {
    padding: 0 13.33px;
  }
  .banner-variant-3.news-latest .video-primary__cont:last-of-type {
    padding-left: 13.33px;
  }
  .banner-variant-3.news-latest .video-primary__wrapper:first-of-type {
    margin-bottom: 15px;
  }
  .banner-variant-3.news-latest .video-primary__box {
    margin-bottom: -4px;
  }
  .banner-variant-3.news-latest .box-big__content {
    font-size: 2.625rem;
    line-height: 1.31;
  }
  .banner-variant-3.news-latest .banner-play i {
    width: 48px;
    height: 48px;
    top: 18px;
  }
  .banner-variant-3.news-latest .banner-play--normal,
  .banner-variant-3.news-latest .banner-play--transmission {
    margin-top: -5px;
  }
  .banner-variant-3.news-latest .video-primary__description {
    width: 87%;
  }
  .banner-variant-3.news-latest .video-primary__title--small {
    max-height: 80px;
    line-height: 1.33;
  }
}

@media (min-width: 1921px) {
  .banner-variant-3.news-latest .video-primary__wrapper {
    height: 212px;
  }
  .banner-variant-3.news-latest .video-primary__description {
    width: 82%;
  }
  .banner-variant-3.news-latest .video-primary__img {
    width: 76%;
  }
  .banner-variant-3.news-latest .video-primary__wrapper:first-of-type {
    margin-bottom: 30px;
  }
}

.banner-variant-3.banner__overlay {
  position: relative;
}

.banner-variant-3.banner__overlay .banner__heading {
  padding-top: 35px;
}

.banner-variant-3.banner__overlay::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 128px);
  background-color: inherit;
  top: 0;
  z-index: -1;
}

@media (min-width: 768px) {
  .banner-variant-3.banner__overlay::after {
    height: calc(100% + 146px);
  }
}

@media (min-width: 1024px) {
  .banner-variant-3.banner__overlay::after {
    height: 140%;
  }
}

@media (min-width: 1280px) {
  .banner-variant-3.banner__overlay::after {
    height: calc(100% + 244px);
  }
}

#navbar {
  background-color: #fff;
  z-index: 102;
  position: relative;
}

.nts {
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
  margin: 0 5px 5px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .nts {
    margin-left: 0;
  }
}

.nts__live-box {
  width: 150px;
  height: 92px;
  border-radius: 3px;
  border: solid 1px #e4e4e4;
  margin: 5px 5px 0 5px;
  position: relative;
  padding: 16px 7px 0 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-color: #c8c8d3;
}

@media (max-width: 992px) {
  .nts__live-box {
    display: none;
  }
}

.nts__live-box-header {
  height: 40px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 8px;
  padding-right: 33px;
}

.nts__live-box-link {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
}

.nts__live-box-link .icon-arrow-orange,
.nts__live-box-link .icon-arrow-violet,
.nts__live-box-link .icon-arrow-violet-dark {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: 0;
}

.nts__live-box-arrow {
  width: 12px;
  height: 5px;
  background-color: #38324c;
  display: inline-block;
}

.nts__live-box:hover {
  border-color: #2b2b2b;
}

.nts__live-box:hover .nts__live-box-link {
  text-decoration: underline;
}

.nts__live-box:hover .icon-arrow-orange {
  background-image: url(images/icons/arrow-black.svg);
}

.nts-carousel {
  position: relative;
  width: calc(100% - 150px);
}

@media (max-width: 992px) {
  .nts-carousel {
    width: 100%;
  }
}

.nts-carousel .VueCarousel-inner--center {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.nts__slide {
  width: auto;
  height: 92px;
  margin: 5px 5px 0 0;
  border-radius: 3px;
  background-color: #e0e0eb;
  overflow: hidden;
  border: 1px solid transparent;
  position: relative;
}

.nts__slide-img {
  width: 135px;
  height: 95px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  float: left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
  .nts__slide-img {
    width: 164px;
  }
}

.nts__slide-desc {
  width: calc(100% - 135px);
  padding: 10px 14px 0 14px;
  float: left;
  height: 92px;
  position: relative;
  z-index: 2;
  background-color: #ececf3;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media (min-width: 768px) {
  .nts__slide-desc {
    width: calc(100% - 164px);
  }
}

.nts__slide-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.nts__slide-ticket {
  font-size: 0;
  padding-bottom: 3px;
  letter-spacing: 1.1px;
}

.nts__slide-status {
  height: 15px;
  font-size: 0.625rem;
  color: #eaff00;
  font-weight: 700;
  line-height: 15px;
  display: inline-block;
  padding: 0 5px;
  text-transform: uppercase;
  background-color: #38324c;
}

.nts__slide-status--now {
  color: #2b2b2b;
  background-color: #eaff00;
}

.nts__slide-sport {
  height: 15px;
  background-color: #fff;
  font-size: 0.625rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 15px;
  display: inline-block;
  padding: 0 5px;
  text-transform: uppercase;
}

.nts__slide-title {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.25;
  padding-right: 20px;
  padding-bottom: 10px;
  max-height: 35px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .nts__slide-title {
    max-height: 40px;
  }
}

.nts__slide-time {
  display: inline-block;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 49%;
}

.nts__slide-time:nth-child(2) {
  text-align: right;
}

.nts__slide-progress {
  background-color: #dddddd;
}

.nts__slide-bar {
  background-color: #f05a22;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 1px;
}

.nts .progress-time__time {
  color: #000;
  margin-bottom: 0;
  font-size: 11px;
}

.nts--main .nts__slide:hover {
  border-color: #c0c0c0;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nts--main .nts__slide:hover .nts__slide-desc {
  background-color: #fff;
}

#navbar .nts .VueCarousel-navigation-prev {
  height: 92px;
  background: #2b2b2b;
  width: 20px;
  left: 20px;
  margin-top: 2px;
  color: transparent;
  padding: 0;
  margin-right: 0;
}

#navbar .nts .VueCarousel-navigation-prev::before {
  content: '';
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
  position: absolute;
  top: 37px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 59%;
  width: 30px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: 50%;
}

#navbar .nts .VueCarousel-navigation-next {
  height: 90px;
  background: #2b2b2b;
  width: 20px;
  right: 20px;
  margin-top: 2px;
  color: transparent;
  padding: 0;
  margin-right: 0;
}

#navbar .nts .VueCarousel-navigation-next::before {
  content: '';
  background-image: url(images/icons/arrow-grey-next-orange.svg);
  position: absolute;
  top: 37px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 46%;
  width: 30px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: 50%;
}

#navbar .nts .VueCarousel-navigation--disabled {
  opacity: 0;
}

@media (max-width: 1199px) {
  #navbar .nts .nts__slide-title {
    font-size: 0.875rem;
  }
}

.navbar-news .nts {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-news .nts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.section-grid .grid-box {
  margin-bottom: 30px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
}

.section-grid .grid-box__image {
  position: relative;
}

.section-grid .grid-box__image .button-play {
  left: auto;
  bottom: auto;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .section-grid .grid-box__image .button-play {
    width: 35px;
    height: 35px;
  }
}

.section-grid .grid-box__url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.section-grid .grid-box__content {
  position: relative;
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
}

.section-grid .grid-box__title {
  max-height: 92px;
  overflow: hidden;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (min-width: 1280px) {
  .section-grid .grid-box__title {
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.section-grid .grid-box__indicators {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .section-grid .grid-box__indicators {
    left: 16px;
    bottom: 16px;
  }
}

.section-grid .grid-box__category {
  display: block;
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.section-grid .grid-box__category::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 55px;
  height: 4px;
}

.section-grid .grid-box__category:hover {
  cursor: pointer;
}

.section-grid .grid-box__label {
  position: absolute;
  top: -11px;
  text-transform: uppercase;
  left: 25px;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-grid .grid-box__label {
    font-size: 0.688rem;
  }
}

.section-grid .grid-box__duration {
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  left: 60px;
  bottom: 19px;
}

.section-grid .grid-box:hover .grid-box__content {
  background-color: #e0e0eb;
}

@media (max-width: 768px) {
  .section-grid .grid-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    position: relative;
    margin-bottom: 5px;
  }
  .section-grid .grid-box__category {
    display: none;
  }
  .section-grid .grid-box__image {
    width: 40%;
    height: 100%;
  }
  .section-grid .grid-box__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    min-height: auto;
    height: auto;
    overflow: hidden;
    padding: 10px;
  }
  .section-grid .grid-box__title {
    max-height: 60px;
    overflow: hidden;
    font-size: 0.8125rem;
    color: 600;
    height: auto;
    padding: 5px 10px;
  }
  .section-grid .grid-box__duration {
    left: 35px;
    bottom: 7px;
  }
}

.section-grid__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

.section-grid__heading-more {
  font-size: 0.688rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
  display: block;
  text-transform: uppercase;
  position: relative;
}

.section-grid__heading-more:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 5px;
  position: relative;
  top: -1px;
  margin-left: 6px;
  background: transparent url(images/euro/arrow-orange.svg) no-repeat center center;
}

@media (min-width: 768px) {
  .section-grid__heading-more {
    top: -5px;
    margin-left: 22px;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .section-grid {
    margin-bottom: 20px;
  }
}

.home-first .left-sidebar {
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  height: 1000px;
}

.home-first .left-sidebar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.home-first .left-sidebar::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.home-first .left-sidebar::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.home-first .left-sidebar::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (max-width: 1023px) {
  .home-first .left-sidebar {
    display: none !important;
  }
}

.home-first .left-sidebar-placeholder:after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: 100%;
  background-color: #d8d8d8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='206' height='172' viewBox='0 0 206 172'%3E%3Cpath fill='%23F7F7F7' fill-rule='nonzero' d='M206 34.4C206 15.48 190.55 0 171.667 0H34.333C15.45 0 0 15.48 0 34.4v103.2C0 156.52 15.45 172 34.333 172h137.334C190.55 172 206 156.52 206 137.6V34.4zm-154.5 0c9.442 0 17.167 7.74 17.167 17.2 0 9.46-7.725 17.2-17.167 17.2-9.442 0-17.167-7.74-17.167-17.2 0-9.46 7.725-17.2 17.167-17.2zm137.333 103.2c0 9.46-7.725 17.2-17.166 17.2h-133.9c-7.725 0-11.159-9.46-6.009-14.62l30.9-30.96c3.434-3.44 8.584-3.44 12.017 0l5.15 5.16c3.433 3.44 8.583 3.44 12.017 0l56.65-56.76c3.433-3.44 8.583-3.44 12.016 0l25.75 25.8c1.717 1.72 2.575 3.44 2.575 6.02v48.16z'/%3E%3C/svg%3E%0A") !important;
  top: 0;
  z-index: -1;
}

@media (max-width: 1023px) {
  .home-first {
    padding-top: 10px;
  }
}

@media (min-width: 768px) {
  .home-first .button-play__video {
    bottom: -8px;
  }
}

@media (min-width: 1280px) {
  .home-first .button-play__video {
    bottom: 20px;
  }
}

.home-first .box-big .opinion__small--name {
  color: #2b2b2b;
}

@media (min-width: 768px) {
  .home-first .box-big .opinion__small--name {
    color: #fff;
  }
}

.home-first .box-small .opinion__small {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media (max-width: 767px) {
  .home-first .box-small .opinion__small {
    display: none;
  }
}

.home-first .box-small .opinion__small .opinion__small--name {
  color: #2b2b2b;
}

@media (min-width: 1024px) {
  .home-second .equal-item {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

.home-second .right-sidebar {
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .home-second .right-sidebar {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

.home-second .right-sidebar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.home-second .right-sidebar::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.home-second .right-sidebar::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.home-second .right-sidebar::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 768px) {
  .home-second .button-play__video {
    bottom: -8px;
  }
}

@media (min-width: 1200px) {
  .home-second .button-play__video {
    left: 84px;
    bottom: auto;
    top: 0;
  }
}

@media (min-width: 1280px) {
  .home-second .button-play__video {
    bottom: 20px;
  }
}

.home-second .boxes-one-box .opinion__small--name,
.home-second .boxes-one-three-box .opinion__small--name {
  color: #2b2b2b;
}

@media (min-width: 768px) {
  .home-second .boxes-one-box .opinion__small--name,
  .home-second .boxes-one-three-box .opinion__small--name {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .home-second .boxes-two-box .opinion__small {
    display: none;
  }
}

.home-second .boxes-two-box .opinion__small--name {
  color: #2b2b2b;
}

@media (min-width: 1024px) {
  .equal-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.home-quiz {
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .home-quiz {
    margin-bottom: 20px;
    padding-bottom: 22px;
    background-color: #e8e8e8;
  }
  .home-quiz .container {
    padding: 0;
  }
  .home-quiz .row {
    margin: 0;
  }
}

.home-quiz__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-quiz__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-quiz__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-quiz__heading {
    padding-left: 0;
  }
}

@media (max-width: 1023px) {
  .home-quiz__carousel {
    max-width: 100%;
  }
  .home-quiz__carousel:after {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #e8e8e8;
    z-index: -1;
  }
}

@media (min-width: 1280px) {
  .home-quiz__carousel {
    padding-left: 0;
  }
}

.home-quiz__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
  height: 100%;
}

@media (max-width: 1023px) {
  .home-quiz__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .home-quiz__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 10px;
  }
}

.home-quiz__content {
  background-color: #c8c8d3;
  padding: 21px 0 23px 30px;
  width: 67%;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (max-width: 1023px) {
  .home-quiz__content {
    padding: 12px 22px 20px;
    position: relative;
    margin-bottom: 12px;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .home-quiz__content {
    padding: 12px 12px 20px;
    width: 100%;
    margin-bottom: 22px;
  }
}

@media (min-width: 768px) {
  .home-quiz__content {
    height: 200px;
  }
}

@media (min-width: 1921px) {
  .home-quiz__content {
    width: calc(100% - 421px);
  }
}

.home-quiz__content:hover {
  background-color: #fff;
}

.home-quiz__title {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  color: #9393a4;
  font-weight: 900;
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  .home-quiz__title {
    font-size: 1.5rem;
    margin-bottom: 3px;
  }
}

@media (max-width: 767px) {
  .home-quiz__title {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .home-quiz__title {
    padding-right: 20px;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .home-quiz__title {
    max-height: 50px;
    overflow: hidden;
  }
}

.home-quiz__title a {
  color: #2b2b2b;
}

.home-quiz__title a:hover {
  color: #9393a4;
}

.home-quiz__desc {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 300;
  line-height: 1.38;
  margin-bottom: 15px;
}

@media (max-width: 1279px) {
  .home-quiz__desc {
    font-weight: 400;
  }
}

@media (max-width: 1023px) {
  .home-quiz__desc {
    max-width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .home-quiz__desc {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .home-quiz__desc {
    overflow: hidden;
    max-height: 45px;
    padding-right: 20px;
  }
}

@media (min-width: 1921px) {
  .home-quiz__desc {
    max-height: 65px;
  }
}

.home-quiz__img {
  width: 33%;
}

@media (max-width: 1023px) {
  .home-quiz__img {
    width: 364px;
  }
}

@media (max-width: 767px) {
  .home-quiz__img {
    width: 100%;
  }
}

.home-quiz__img figure {
  width: 100% !important;
}

@media (min-width: 768px) {
  .home-quiz__img figure {
    height: 200px;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1279px) {
  .home-quiz__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

.home-quiz__img--placeholder {
  height: 100%;
  background: linear-gradient(115deg, #d9d9d9 0%, #d9d9d9 40%, #e0e0e0 50%, #d9d9d9 60%, #d9d9d9 100%);
}

@media (max-width: 1023px) {
  .home-quiz__img--placeholder {
    min-height: 184px;
  }
}

@media (min-width: 1921px) {
  .home-quiz__img {
    width: 421px;
  }
}

.home-quiz__more {
  display: inline-block;
  background-color: #eaff00;
  font-size: 1.125rem;
  color: #38324c;
  font-weight: 700;
  line-height: 1.11;
  text-transform: capitalize;
  padding: 12px 20px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (max-width: 1023px) {
  .home-quiz__more {
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .home-quiz__more {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -20px;
  }
}

.home-quiz__more i {
  background-image: url(images/icons/arrow_violet.svg);
  width: 12px;
  height: 5px;
  display: inline-block;
  margin-left: 20px;
  position: relative;
  top: -3px;
}

.home-quiz__more:hover {
  color: #38324c;
  background-color: #fff;
}

.home-quiz__next, .home-quiz__prev {
  position: absolute;
  top: 50%;
  cursor: pointer;
}

.home-quiz__next i:hover {
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

@media (max-width: 1023px) {
  .home-quiz__next {
    display: none;
  }
}

@media (min-width: 768px) {
  .home-quiz__next {
    left: 21px;
  }
}

@media (min-width: 1280px) {
  .home-quiz__next {
    left: -22px;
  }
}

.home-quiz__prev {
  right: 22px;
}

.home-quiz__prev i:hover {
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

@media (max-width: 1023px) {
  .home-quiz__prev {
    display: none;
  }
}

.home-quiz .VueCarousel-pagination {
  display: none;
}

@media (max-width: 1279px) {
  .home-quiz .VueCarousel-pagination {
    display: block;
    margin-top: -5px;
    padding-bottom: 10px;
  }
}

.home-quiz .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #fff !important;
}

.home-quiz .VueCarousel-dot-button:focus {
  outline: none !important;
}

@media (max-width: 1279px) {
  .home-quiz .VueCarousel-dot-button {
    background: transparent !important;
    border: 1px solid #2a2a2a !important;
    width: 6px !important;
    height: 6px !important;
  }
}

@media (max-width: 1279px) {
  .home-quiz .VueCarousel-dot {
    padding: 0 5px 0 5px !important;
    margin-top: 15px !important;
  }
}

@media (max-width: 1023px) {
  .home-quiz .VueCarousel-dot {
    margin-top: 5px !important;
  }
}

.home-quiz .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #fff !important;
}

@media (max-width: 1279px) {
  .home-quiz .VueCarousel-dot--active .VueCarousel-dot-button {
    background: #2a2a2a !important;
  }
}

.home-quiz .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-quiz .VueCarousel-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .home-quiz .VueCarousel-navigation {
    display: block;
  }
}

.home-quiz .VueCarousel-navigation-prev {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15px;
  height: 30px;
  background-image: url(images/icons/arrow-grey-prev.svg);
  left: -20px !important;
}

.home-quiz .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-quiz .VueCarousel-navigation-next {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15px;
  height: 30px;
  background-image: url(images/icons/arrow-grey-next.svg);
  right: -20px !important;
}

.home-quiz .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-quiz .VueCarousel-navigation-button {
  color: transparent !important;
}

.home-quiz .VueCarousel-navigation--disabled {
  opacity: 0 !important;
  cursor: default !important;
}

.home-quiz .button-more {
  margin-top: 30px;
}

.home-video {
  position: relative;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-video {
    margin-bottom: 20px;
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .home-video__content {
    margin-bottom: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home-video__content:hover {
  cursor: pointer;
}

.home-video__content:hover .home-video__subtitle {
  color: #9393a4;
}

.home-video__content:hover .home-video__figure:after {
  opacity: 0.2;
}

.home-video__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-video__heading {
    padding: 0 10px 15px;
  }
}

@media (max-width: 767px) {
  .home-video__heading {
    padding: 0 10px 8px;
  }
}

.home-video__subheading {
  margin: 17px 0 10px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 1023px) {
  .home-video__subheading {
    display: none;
  }
}

.home-video .remove-overlay:after {
  display: none;
}

.home-video__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-video__player {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

@media (min-width: 1280px) {
  .home-video__player {
    width: auto;
  }
}

.home-video__lists {
  width: 100%;
}

@media (min-width: 1024px) {
  .home-video__lists {
    width: 360px;
  }
  .home-video__lists:after {
    display: block;
    position: absolute;
    content: "";
    bottom: 0;
    right: 13px;
    width: 360px;
    height: 66px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(238, 238, 238, 0)), to(#f7f7f7));
    background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0), #f7f7f7);
    z-index: 1;
  }
}

@media (min-width: 1463px) {
  .home-video__lists {
    width: 445px;
  }
  .home-video__lists:after {
    width: 445px;
  }
}

@media (min-width: 1921px) {
  .home-video__lists {
    width: 508px;
  }
  .home-video__lists:after {
    width: 508px;
  }
}

.home-video__frame {
  position: relative;
  display: none;
  overflow-y: scroll;
  padding-right: 9px;
  display: none;
}

.home-video__frame::-webkit-scrollbar {
  width: 8px;
}

.home-video__frame::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.home-video__frame::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.home-video__frame::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 1280px) {
  .home-video__frame {
    padding-left: 25px;
    height: calc(56.4vw - 240px);
    display: block;
    overflow-x: hidden;
  }
}

@media (min-width: 1463px) {
  .home-video__frame {
    height: 514px;
  }
}

@media (min-width: 1921px) {
  .home-video__frame {
    height: 588.5px;
  }
}

.home-video__wrapper {
  position: relative;
  display: none;
}

.home-video__wrapper::after {
  display: block;
  position: absolute;
  content: "";
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(63deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  opacity: 0.5;
}

.home-video__wrapper:hover {
  cursor: pointer;
}

.home-video__wrapper:hover .box-big__title,
.home-video__wrapper:hover .home-video__title {
  text-decoration: underline;
}

.home-video__wrapper:hover::after {
  opacity: 0.7;
}

.home-video__wrapper.active {
  display: block;
}

@media (max-width: 1023px) {
  .home-video__wrapper {
    display: none;
  }
  .home-video__wrapper.active {
    display: none !important;
  }
}

.home-video__wrapper figure img {
  height: auto;
}

.home-video__title {
  position: absolute;
  bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: 699px;
  text-align: center;
  font-size: 2.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.17;
  z-index: 1;
}

.home-video__subtitle {
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  margin: 7px 0 10px;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 1024px) {
  .home-video__subtitle {
    margin: 0 !important;
    padding: 12px;
    padding-bottom: 0;
    max-height: 80px;
    overflow: hidden;
  }
  .home-video__subtitle::before {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .home-video__subtitle {
    max-height: 102px;
  }
}

.home-video__time {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}

.home-video__overlay {
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#161616), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #161616, rgba(22, 22, 22, 0));
  width: 100%;
  height: 200px;
  bottom: 0;
  z-index: 1;
}

.home-video__button {
  position: relative;
  margin: 30px 0;
  text-align: center;
}

.home-video__button a {
  display: inline-block;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 7px 35px;
}

.home-video__button:after, .home-video__button:before {
  display: block;
  position: absolute;
  content: "";
  top: 17px;
  width: calc(50% - 85px);
  height: 1px;
  background-color: #d9d9d9;
}

.home-video__button:after {
  left: 0;
}

.home-video__button:before {
  right: 0;
}

.home-video__figure {
  position: relative;
}

.home-video__figure::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-video__figure .img-responsive {
  height: auto;
}

@media (min-width: 1024px) {
  .home-video__figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.home-video__slides {
  display: none;
}

@media (max-width: 1280px) {
  .home-video__slides {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    overflow-x: auto;
  }
  .home-video__slides::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .home-video__slides::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .home-video__slides::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .home-video__slides::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.home-video__img {
  position: relative;
}

.home-video__img::after {
  display: block;
  position: absolute;
  content: "";
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(63deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  opacity: 0.5;
}

.home-video__img:hover {
  cursor: pointer;
}

.home-video__img:hover .box-big__title,
.home-video__img:hover .home-video__title {
  text-decoration: underline;
}

.home-video__img:hover::after {
  opacity: 0.7;
}

.home-video__img .img-responsive {
  height: auto;
}

.home-video__slides-image {
  position: relative;
}

.home-video__slides-wrapper {
  position: relative;
  padding: 10px 5px;
  min-width: 200px;
}

.home-video__slides-wrapper .home-video__slides-content {
  height: 100%;
}

.home-video__slides-wrapper .home-video__slides-content .img-responsive {
  height: auto;
}

.home-video__slides-wrapper .home-video__slides-content .home-video__slides-title {
  height: 100%;
}

.home-video__slides-title {
  background: #fff;
  padding: 15px 8px 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2b2b2b;
  text-align: center;
}

.home-video .button-more--desktop {
  margin: 30px auto 0px;
}

@media (max-width: 1023px) {
  .home-video .button-more--desktop {
    margin: 45px auto 0;
  }
}

@media (max-width: 767px) {
  .home-video .button-more--desktop {
    margin: 15px auto 0;
  }
}

.home-video .button-play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home-video .button-play.small {
  left: 5px;
  bottom: 5px;
  top: auto;
  -webkit-transform: none;
          transform: none;
}

@media (min-width: 768px) {
  .home-video .VueCarousel-pagination {
    position: absolute;
    bottom: -25px;
    width: auto !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.home-video .VueCarousel-dot-button {
  width: 8px !important;
  height: 8px !important;
}

.home-video .VueCarousel-dot-button:focus {
  outline: none !important;
}

@media (max-width: 1023px) {
  .home-video .VueCarousel-dot-button {
    background: transparent !important;
    border: 1px solid #2a2a2a !important;
    width: 6px !important;
    height: 6px !important;
  }
}

.home-video .VueCarousel-dot {
  padding: 0 5px !important;
}

@media (max-width: 1023px) {
  .home-video .VueCarousel-dot {
    margin-top: 5px !important;
  }
}

.home-video .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #979797 !important;
}

@media (max-width: 1023px) {
  .home-video .VueCarousel-dot--active .VueCarousel-dot-button {
    background: #2a2a2a !important;
  }
}

.home-video .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

@media (min-width: 1024px) {
  .home-video .container .row .no-padding-right {
    padding-right: 0;
  }
}

.home-opinion {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-opinion {
    margin-bottom: 20px;
  }
}

.home-opinion__heading {
  font-family: "Lato", sans-serif;
  font-size: 2.125rem;
  color: #2a2a2a;
  font-weight: 900;
}

@media (max-width: 1279px) {
  .home-opinion__heading {
    font-size: 2rem;
  }
}

.home-opinion__large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 767px) {
  .home-opinion__large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5px;
  }
}

.home-opinion__large:hover .home-opinion__cont {
  background-color: #e0e0eb;
}

.home-opinion__image {
  position: relative;
  width: 55%;
}

.home-opinion__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (max-width: 767px) {
  .home-opinion__image {
    width: 100%;
    position: relative;
  }
  .home-opinion__image:before {
    display: block;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
    z-index: 1;
  }
}

.home-opinion__image img {
  height: 100%;
}

@media (min-width: 768px) {
  .home-opinion__image img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 205px;
  }
}

@media (min-width: 1024px) {
  .home-opinion__image img {
    height: 260px;
  }
}

.home-opinion__overlay {
  display: none;
}

@media (max-width: 767px) {
  .home-opinion__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
    z-index: 1;
  }
}

.home-opinion__cont {
  position: relative;
  width: 45%;
  padding: 25px 10px 28px 17px;
  background-color: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.home-opinion__cont::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

@media (max-width: 767px) {
  .home-opinion__cont {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}

.home-opinion__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .home-opinion__content {
    display: none;
  }
}

.home-opinion__content--mobile {
  display: none;
}

@media (max-width: 767px) {
  .home-opinion__content--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 6px;
    left: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
  }
}

@media (max-width: 767px) {
  .home-opinion__content--mobile .home-opinion__person {
    color: #fff;
    padding: 0 0 0 10px;
  }
}

.home-opinion__content--mobile .home-opinion__img--small,
.home-opinion__content--mobile .home-opinion__img--small figure {
  width: 48px;
  height: 48px;
}

.home-opinion__title {
  font-size: 2.25rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.17;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  margin-top: 12px;
  max-height: 126px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .home-opinion__title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .home-opinion__title {
    font-size: 1.5rem;
    margin-top: 0;
  }
}

.home-opinion__img {
  width: 116px;
  height: 116px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media (max-width: 1023px) {
  .home-opinion__img {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .home-opinion__img {
    width: 48px;
    height: 48px;
  }
}

.home-opinion__img figure {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .home-opinion__img figure {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 767px) {
  .home-opinion__img figure {
    width: 48px;
    height: 48px;
  }
}

.home-opinion__img--small {
  width: 64px;
  height: 64px;
}

.home-opinion__img--small figure {
  width: 64px;
  height: 64px;
}

@media (min-width: 768px) {
  .home-opinion__img--small {
    width: 32px;
    height: 32px;
  }
  .home-opinion__img--small figure {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .home-opinion__img--small {
    width: 64px;
    height: 64px;
  }
  .home-opinion__img--small figure {
    width: 64px;
    height: 64px;
  }
}

.home-opinion__person {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.13;
  padding: 21px 0 0 17px;
}

@media (min-width: 768px) {
  .home-opinion__person {
    padding: 10px 0 0 10px;
  }
}

@media (min-width: 1024px) {
  .home-opinion__person {
    padding: 21px 0 0 17px;
  }
}

.home-opinion__person--small {
  color: #2a2a2a;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  padding: 12px 0 5px 13px;
}

@media (max-width: 767px) {
  .home-opinion__person--small {
    font-size: 0.875rem;
    line-height: 1.29;
    padding: 0px 0 2px 10px;
  }
}

@media (min-width: 1024px) {
  .home-opinion__person--small {
    font-size: 1.3125rem;
  }
}

@media (min-width: 1280px) {
  .home-opinion__person--small {
    font-size: 1rem;
  }
}

.home-opinion__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-opinion__wrapper + .button-more {
  margin-top: 5px;
}

.home-opinion__small {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(1/2*100% - (1 - 1/2)*30px);
  min-height: 136px;
  padding: 10px 16px;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.home-opinion__small::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

@media (max-width: 767px) {
  .home-opinion__small {
    width: 100%;
    min-height: 100%;
    padding: 10px 10px 5px 10px;
  }
}

.home-opinion__small:nth-child(2n) {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .home-opinion__small:nth-child(2n) {
    margin-left: 0;
  }
}

.home-opinion__small:hover {
  background-color: #e0e0eb;
}

.home-opinion__desc {
  font-size: 1rem;
  color: #2a2a2a;
  line-height: 1.38;
  padding-left: 13px;
}

@media (max-width: 1279px) {
  .home-opinion__desc {
    font-size: 1.125rem;
  }
}

@media (max-width: 1023px) {
  .home-opinion__desc {
    font-size: 1.3125rem;
  }
}

@media (max-width: 767px) {
  .home-opinion__desc {
    font-size: 0.875rem;
    padding-left: 10px;
    font-weight: 600;
  }
}

.home-opinion__button {
  position: relative;
  margin: 12px auto 0;
  text-align: center;
}

.home-opinion__button a {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 7px 35px;
}

.home-opinion__button:after, .home-opinion__button:before {
  display: block;
  position: absolute;
  content: "";
  top: 12px;
  width: calc(50% - 86px);
  height: 1px;
  background-color: #d9d9d9;
}

.home-opinion__button:after {
  left: 0;
}

.home-opinion__button:before {
  right: 0;
}

.home-opinion .button-more {
  margin-bottom: 0;
}

@media (max-width: 1279px) {
  .home-opinion .button-more {
    margin: 10px auto 0;
  }
}

.home-opinion__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-special {
  position: relative;
}

@media (min-width: 1280px) {
  .home-special {
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .home-special {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .home-special {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .home-special .boxes-three-box .box-small {
    width: 33.3%;
  }
}

.home-special__background {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-special__background:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(48, 53, 66, 0.66)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to bottom, rgba(48, 53, 66, 0.66), rgba(0, 0, 0, 0.5));
  top: 0;
  left: 0;
  opacity: 0.71;
}

@media (max-width: 767px) {
  .home-special__background {
    display: block;
    height: 100% !important;
  }
}

.home-special__title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.13;
  position: relative;
  padding: 80px 0 40px;
}

@media (max-width: 1023px) {
  .home-special__title {
    padding: 65px 0 20px;
  }
}

@media (max-width: 767px) {
  .home-special__title {
    font-size: 2rem;
    line-height: normal;
    padding: 25px 0 10px;
  }
}

.home-special__title:before {
  content: '';
  position: absolute;
  top: 68px;
  left: 0;
  height: 3px;
  width: 25%;
  background: #c8c8d3;
}

@media (max-width: 1023px) {
  .home-special__title:before {
    top: 40px;
    width: 264px;
  }
}

@media (max-width: 767px) {
  .home-special__title:before {
    top: 20px;
    width: 240px;
  }
}

.home-special .box-small--content {
  text-align: center;
  padding: 20px 35px 20px;
}

.home-special .boxes-3-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1023px) {
  .home-special .boxes-3-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 0;
  }
  .home-special .boxes-3-container::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .home-special .boxes-3-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .home-special .boxes-3-container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .home-special .boxes-3-container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.home-special .boxes-3-container .box-small {
  margin-right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media (max-width: 1023px) {
  .home-special .boxes-3-container .box-small {
    min-width: 334px;
    margin-right: 6px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .home-special .boxes-3-container .box-small {
    min-width: 240px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.home-special .boxes-3-container .box-small:last-child {
  margin-right: 0;
}

.home-special .boxes-3-container .box-small .button-play.medium {
  left: 20px;
  bottom: 25px;
}

@media (max-width: 767px) {
  .home-special .boxes-3-container .box-small__content {
    font-size: 1rem;
    text-align: center;
  }
}

.home-special .boxes-3-container .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-special .boxes-3-container .box-small--special {
  height: 100%;
  padding: 25px 20px 20px;
  min-height: 166px;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

@media (max-width: 767px) {
  .home-special .boxes-3-container .box-small--special {
    padding: 15px 5px 20px;
    font-size: 1rem;
    text-align: center;
    min-height: 80px;
    line-height: 1.25;
  }
}

@media (min-width: 1280px) {
  .home-special .boxes-3-container .box-small--special {
    font-size: 1.5rem;
  }
}

.home-special .opinion__small--name {
  color: #2b2b2b;
}

.home-only {
  background: #2b2b2b;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .home-only {
    margin-bottom: 30px;
  }
}

.home-only__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .home-only__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-only__content-text {
  padding-top: 25px;
  width: 50%;
}

@media (max-width: 768px) {
  .home-only__content-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .home-only__content-text {
    padding-right: 10px;
  }
}

.home-only__content-img {
  width: auto;
}

@media (max-width: 768px) {
  .home-only__content-img {
    width: 100%;
  }
}

.home-only__content-img img {
  float: right;
  display: block;
}

.home-only__subtitle {
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .home-only__subtitle {
    font-weight: 700;
  }
}

.home-only__title {
  font-size: 2.25rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.17;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .home-only__title {
    font-size: 1.25rem;
    font-weight: 700;
  }
}

.home-only__btn {
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.3px;
  border: 1px solid #fff;
  width: 110px;
  text-transform: uppercase;
  padding: 6px 0px 6px 15px;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

@media (max-width: 768px) {
  .home-only__btn {
    font-weight: 700;
  }
}

.home-only__btn i {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: 25px;
}

.home-sponsorships {
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .home-sponsorships {
    padding-bottom: 30px;
  }
}

.home-sponsorships__title {
  font-size: 2rem;
  color: #2a2a2a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .home-sponsorships__title {
    font-size: 2rem;
    padding: 9px 0 13px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
  }
}

.home-sponsorships__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-sponsorships__link {
  display: block;
  width: calc(1/2*100% - (1 - 1/2)*30px);
  margin-bottom: 20px;
  margin-right: 30px;
  position: relative;
}

.home-sponsorships__link::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (max-width: 768px) {
  .home-sponsorships__link {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.home-sponsorships__link:nth-child(2n) {
  margin-right: 0;
}

.home-sponsorships__link:hover::after {
  opacity: 0.2;
}

.home-photo {
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .home-photo {
    padding-bottom: 30px;
  }
}

.home-photo__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-photo__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-photo__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-photo__heading {
    padding-left: 0;
  }
}

.home-photo__description {
  max-width: 842px;
  margin: 10px auto;
  font-size: 1rem;
  color: #2a2a2a;
  font-weight: 1.38;
  font-weight: 400;
}

@media (min-width: 768px) {
  .home-photo__description {
    color: #fff;
  }
}

.home-photo__wrapper {
  position: relative;
}

.home-photo__wrapper img {
  max-width: 1820px;
}

.home-photo__image {
  position: relative;
  display: block;
}

.home-photo__image img {
  height: 100%;
}

.home-photo__image:hover {
  cursor: pointer;
}

.home-photo__source {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-size: 0.6875rem;
  color: #e8e8e8;
  font-weight: 400;
  line-height: 1.1;
  background-color: rgba(11, 11, 11, 0.75);
  padding: 6px 12px;
}

.home-photo__text {
  position: absolute;
  bottom: 0;
  left: 225px;
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.17;
  z-index: 2;
  padding: 10px 5px 0;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .home-photo__text {
    position: static;
    font-size: 1.25rem;
    padding: 13px 15px 16px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .home-photo__text {
    background-color: rgba(23, 26, 31, 0.8);
    color: #fff;
    font-size: 2rem;
    text-align: left;
    padding: 10px 19px;
  }
}

@media (min-width: 1280px) {
  .home-photo__text {
    padding: 19px 26px 54px;
    max-width: 908px;
    margin: 0 auto;
  }
}

@media (min-width: 1280px) {
  .home-photo .VueCarousel-pagination {
    position: absolute;
    bottom: -23px;
    width: auto !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.home-photo .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  width: 8px !important;
  height: 8px !important;
}

.home-photo .VueCarousel-dot-button:focus {
  outline: none !important;
}

@media (max-width: 1279px) {
  .home-photo .VueCarousel-dot-button {
    background: transparent !important;
    width: 6px !important;
    height: 6px !important;
  }
}

.home-photo .VueCarousel-dot {
  padding: 0 5px !important;
}

@media (max-width: 1279px) {
  .home-photo .VueCarousel-dot {
    margin-top: 10px !important;
  }
}

@media (max-width: 1023px) {
  .home-photo .VueCarousel-dot {
    margin-top: 5px !important;
  }
}

.home-photo .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.home-photo .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-photo .VueCarousel-navigation {
  display: none;
}

@media (min-width: 768px) {
  .home-photo .VueCarousel-navigation {
    display: block;
  }
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-button {
  color: transparent;
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-photo .VueCarousel-navigation .VueCarousel-navigation-prev {
    left: 32px !important;
  }
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-photo .VueCarousel-navigation .VueCarousel-navigation-next {
    right: 32px !important;
  }
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation--disabled {
  opacity: 0;
  cursor: default;
}

.home-photo .button-more {
  margin: 13px auto 0;
}

@media (min-width: 768px) {
  .home-photo .button-more {
    margin: 25px auto 0;
  }
}

@media (min-width: 1280px) {
  .home-photo .button-more {
    display: none;
  }
}

.home-photo__container {
  overflow: hidden;
}

.home-photo .VueCarousel-wrapper {
  max-width: 1820px;
  overflow: unset;
  margin: 0 auto;
  width: calc(100% - 20px);
}

@media (min-width: 768px) {
  .home-photo .VueCarousel-wrapper {
    width: calc(100% - 88px);
  }
}

.home-discipline {
  padding-bottom: 20px !important;
}

@media (max-width: 767px) {
  .home-discipline .boxes-1-container {
    margin-bottom: 5px;
  }
  .home-discipline .box-big__content {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
    width: 100%;
    background-color: #fff;
    font-size: 1.25rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.3;
    padding: 19px 5px 21px;
  }
  .home-discipline .boxes-one-box .box-big__label {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -12px);
            transform: translate(-50%, -12px);
    font-size: 0.8125rem;
  }
  .home-discipline .boxes-3-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .home-discipline .boxes-3-container .box-small__content {
    font-size: 0.8125rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.38;
  }
  .home-discipline .boxes-three-box .box-small {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
  }
  .home-discipline .boxes-three-box .box-small .box-label {
    display: none;
  }
  .home-discipline .boxes-three-box .box-small .box-small__image {
    width: 127px;
  }
  .home-discipline .boxes-three-box .box-small .box-small__content {
    width: calc(100% - 127px);
    min-height: auto;
  }
  .home-discipline .boxes-three-box .box-small .box-small__content span {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    overflow: hidden;
    font-weight: 600;
  }
  .home-discipline .box-small-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-discipline .box-small-three .box-small-hor {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    display: none;
  }
  .home-discipline .box-small-three .box-small-hor:first-of-type {
    border-bottom-width: 0;
  }
  .home-discipline .box-small-three .box-small-hor:first-of-type .box-small-hor__content {
    width: calc(100% - 127px);
    overflow: hidden;
    font-size: 0.8125rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.38;
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
  }
  .home-discipline .box-small-three .box-small-hor:first-of-type .box-small-hor__content span {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    overflow: hidden;
  }
  .home-discipline .box-small-three .box-small-hor:first-of-type .box-small-hor__image {
    width: 127px;
  }
  .home-discipline .box-small-three .box-small-hor:first-of-type .img-placeholder {
    width: 127px !important;
  }
  .home-discipline .button-more {
    margin-top: 5px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .home-discipline .box-big__image > .button-play {
    display: block;
    position: absolute;
    width: 48px;
    height: 48px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .home-discipline .box-big__content .button-play {
    display: none;
  }
}

.home-discipline .boxes-one-box .box-big__label {
  display: block;
}

@media (min-width: 768px) {
  .home-discipline {
    padding-bottom: 30px !important;
  }
  .home-discipline .box-big {
    position: relative;
  }
  .home-discipline .box-big__image > .button-play {
    display: none;
  }
  .home-discipline .box-big__content .button-play {
    display: block;
    position: static;
    margin-bottom: 20px;
  }
  .home-discipline .box-big__label {
    margin-bottom: 10px;
  }
  .home-discipline .box-big__content {
    font-size: 2.25rem;
    line-height: 1.17;
    bottom: 40px;
  }
  .home-discipline .boxes-three-box .box-small__content {
    padding-top: 15px;
  }
  .home-discipline .boxes-three-box .box-small:nth-child(3) {
    display: none;
  }
  .home-discipline .boxes-three-box .box-small-hor__image {
    display: none;
  }
  .home-discipline .boxes-three-box .box-small-hor:first-of-type {
    border-top: 1px solid #d9d9d9;
  }
  .home-discipline .boxes-three-box .box-small-hor {
    min-height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0;
    margin-bottom: 9px;
  }
  .home-discipline .boxes-three-box .box-small-hor__content {
    width: 100%;
  }
  .home-discipline .boxes-three-box .box-small__content .box-label {
    top: -13px;
  }
  .home-discipline .button-more {
    margin: 0 auto;
  }
  .home-discipline .button-play__video {
    width: 210px;
    margin: 10px auto 0;
    display: block;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    z-index: 1;
  }
  .home-discipline .button-play__video i {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url(images/icons/play-lime.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 15px;
    vertical-align: middle;
  }
}

@media (min-width: 1024px) {
  .home-discipline .button-more {
    float: right;
    margin: 20px 0 0;
  }
  .home-discipline .box-small-hor__image {
    height: auto;
  }
}

@media (min-width: 1280px) {
  .home-discipline .box-big__content {
    width: 80%;
  }
  .home-discipline .boxes-three-box .box-small-hor__image {
    display: block;
  }
  .home-discipline .boxes-three-box .box-small-hor__content {
    width: 65%;
    padding-right: 10px;
  }
  .home-discipline .boxes-three-box .box-small-hor {
    height: calc(33% - -1px);
    margin-bottom: 0;
  }
  .home-discipline .button-play__video {
    position: static;
    background-image: none;
  }
}

.home-discipline .box-small .opinion__small {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media (max-width: 767px) {
  .home-discipline .box-small .opinion__small {
    display: none;
  }
}

.home-discipline .box-small .opinion__small .opinion__small--name {
  color: #2b2b2b;
}

.home-discipline .boxes-3-container {
  margin-bottom: 10px;
}

.discipline-teams {
  padding: 30px 0;
}

.discipline-teams__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-width: 116px;
  font-size: 0.75rem;
  color: inherit;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.23px;
  text-align: center;
  margin: 0 auto;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.discipline-teams__item:hover {
  border-bottom-color: #f05a22;
}

.discipline-teams__item figure {
  max-width: 65px;
  margin: auto;
}

.discipline-teams__item .icon-arrow-orange {
  position: static;
  display: block;
  -webkit-transform: none;
          transform: none;
}

.discipline-teams__item--morelink {
  max-width: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px;
  text-transform: uppercase;
  text-align: right;
}

.discipline-teams__item--morelink:hover {
  background-color: #fff;
}

.discipline-teams__items {
  overflow: hidden;
}

.team-item__label {
  padding-right: 10px;
}

.team-item__name {
  margin-top: 3px;
}

.team-item .img-responsive {
  height: auto;
  width: auto;
}

.discipline-teams-slider {
  padding: 0 20px;
}

.discipline-teams-slider .VueCarousel-navigation-prev,
.discipline-teams-slider .VueCarousel-navigation-next {
  color: transparent !important;
  top: 47px !important;
  height: 95px;
}

.discipline-teams-slider .VueCarousel-navigation-prev::before,
.discipline-teams-slider .VueCarousel-navigation-next::before {
  content: '';
  display: block;
  width: 19px;
  height: 37px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: 50% !important;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
}

.discipline-teams-slider .VueCarousel-navigation-next {
  right: 30px !important;
}

@media (min-width: 1024px) {
  .discipline-teams-slider .VueCarousel-navigation-next {
    right: 21px !important;
  }
}

.discipline-teams-slider .VueCarousel-navigation-next::before {
  background: #fff url(images/icons/slide-arrow-right.svg) no-repeat center center;
  right: 7px;
}

.discipline-teams-slider .VueCarousel-navigation-prev {
  left: 30px !important;
}

@media (min-width: 1024px) {
  .discipline-teams-slider .VueCarousel-navigation-prev {
    left: 21px !important;
  }
}

.discipline-teams-slider .VueCarousel-navigation-prev::before {
  background: transparent url(images/icons/slide-arrow-left.svg) no-repeat center center;
  background-size: cover;
  left: 7px;
}

.home-beam {
  position: relative;
  height: 51px;
  background: #141414;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.home-beam .img-placeholder {
  padding-bottom: 13px !important;
  background: transparent;
}

.home-beam__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  margin: 0 30px 0 30px;
}

.home-beam__content-elem {
  background: #ececf3;
  font-size: 0.6875rem;
  color: #2b2b2b;
  border-right: 1px solid #c8c8d3;
  padding: 8px 11px;
  display: block;
  position: relative;
}

@media (max-width: 1400px) {
  .home-beam__content-elem {
    height: 51px;
  }
}

.home-beam__content-elem:hover {
  border-bottom: 2px solid #38324c;
}

.home-beam__content-elem--bg {
  background: #c8c8d3;
  font-weight: 600;
  width: 100%;
  padding: 3px 8px 4px;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 110px;
  height: 51px;
}

@media (max-width: 1400px) {
  .home-beam__content-elem--bg {
    min-width: 95px;
  }
}

.home-beam__content-elem--bg:hover {
  border-bottom: 0;
}

.home-beam__content-elem--bg:hover::before {
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.home-beam__content-elem--bg:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #38324c;
}

.home-beam__content-elem--bg::before {
  content: attr(data-name);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  padding: 3px 8px 4px;
}

.home-beam__content-elem--bg::after {
  content: attr(data-discipline);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.home-beam__content-elem--btn {
  background: #c8c8d3;
  width: 96px;
  height: 51px;
  padding: 13px 11px;
}

.home-beam__content-elem--btn:hover {
  border-bottom: 0;
}

@media (max-width: 1400px) {
  .home-beam__content-elem--btn {
    min-width: 105px;
  }
}

.home-beam__content-elem:last-child {
  border-right: 0;
}

.home-beam__content-elem:last-child:hover {
  border-bottom: 0;
}

.home-beam__content.scrolling .home-beam__content-elem {
  pointer-events: none;
}

.home-beam .fullWidth {
  width: 100%;
}

.home-beam__game {
  white-space: nowrap;
}

.home-beam__game-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
}

.home-beam__game-result:last-child {
  margin-bottom: 0;
}

.home-beam__game-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-beam__game-logo {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.home-beam__game-logo--second {
  margin-left: 2px;
}

.home-beam__game-logo img {
  display: inline-block;
  vertical-align: -1px;
  height: auto;
  max-height: 20px;
}

.home-beam__game-name {
  margin: 0 5px;
}

.home-beam__game-score {
  font-weight: 600;
}

.home-beam__game--empty {
  width: 30px;
}

.home-beam__game--empty:hover {
  border-bottom: 0;
}

.home-beam__discipline-title {
  margin-bottom: 5px;
  color: #d9d9d9;
}

.home-beam__discipline-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  color: #d9d9d9;
}

.home-beam__btn {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.1px;
  position: relative;
}

.home-beam__btn .icon-arrow-orange {
  -webkit-transform: none;
          transform: none;
  right: 0;
  bottom: 5px;
  top: auto;
  left: auto;
}

@media (min-width: 1400px) {
  .home-beam__btn .icon-arrow-orange {
    right: -8px;
  }
}

.home-beam__mobile {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95px;
          flex: 0 0 95px;
}

.home-beam__mobile:hover {
  text-decoration: underline;
}

.home-beam__arrow {
  position: absolute;
  z-index: 3;
  top: 0;
  height: 51px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  background: #c8c8d3;
}

.home-beam__arrow--left {
  left: 0;
}

.home-beam__arrow--right {
  right: 0;
}

.home-beam__arrow .icon-arrow-white-next,
.home-beam__arrow .icon-arrow-white-prev {
  width: 30px;
  height: 51px;
  background-size: 30%;
}

.home-outcome {
  background-color: #38324c;
  padding: 8px 5px;
  font-size: 0.875rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 1.38;
}

.home-outcome--webview {
  font-size: 0.75rem;
  text-transform: uppercase;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-outcome--webview .home-outcome__team {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.home-outcome--webview .home-outcome__result {
  font-size: 0.75rem;
  line-height: 0.85rem;
}

.home-outcome--webview .home-outcome__wrapper {
  width: 100%;
}

.home-outcome--webview.euro {
  background-color: #016270;
}

.home-outcome__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-outcome__wrapper figure {
  width: 26px;
}

@media (min-width: 768px) {
  .home-outcome__wrapper figure {
    width: 36px;
  }
}

.home-outcome__team {
  -ms-flex-preferred-size: 38%;
      flex-basis: 38%;
  margin: 0 5px;
}

.home-outcome__team--right {
  text-align: right;
}

.home-outcome__result {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  text-align: center;
  background-color: #eaff00;
  color: #2b2b2b;
  padding: 2px 4px;
}

.home-outcome__result--incoming {
  font-size: 0.75rem;
}

@media (min-width: 380px) {
  .home-outcome__team {
    -ms-flex-preferred-size: 42%;
        flex-basis: 42%;
  }
  .home-outcome__result {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    max-width: 90px;
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .home-outcome {
    font-size: 1rem;
    line-height: 1.38;
    padding: 7px 10px;
  }
  .home-outcome__team {
    margin: 0 0 0 15px;
  }
  .home-outcome__team--right {
    margin: 0 15px 0 0;
  }
  .home-outcome__results {
    font-size: 1rem;
  }
}

.home-slider {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-slider {
    margin-bottom: 20px;
  }
}

.home-slider__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-slider__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-slider__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-slider__heading {
    padding-left: 0;
  }
}

.home-slider__container {
  overflow: hidden;
}

@media (max-width: 767px) {
  .home-slider__container .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.home-slider__wrapper {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-slider__wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .home-slider__wrapper::after {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(32.76%, #0602025e), to(#000));
    background-image: linear-gradient(to left, #0602025e 32.76%, #000);
  }
}

.home-slider__wrapper figure img {
  height: auto;
}

.home-slider__text {
  position: static;
  z-index: 100;
  padding: 15px 22px 22px 22px;
  height: 100%;
}

@media (min-width: 768px) {
  .home-slider__text {
    height: auto;
    background: none;
    position: absolute;
    left: 66px;
    bottom: 44px;
    padding: 0;
    max-width: 70%;
  }
}

@media (min-width: 1024px) {
  .home-slider__text {
    max-width: 45%;
  }
}

.home-slider__category {
  font-size: 0.813rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-slider__category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -11px;
  left: 0;
  background-color: #c8c8d3;
}

@media (min-width: 768px) {
  .home-slider__category::after {
    width: 281px;
    bottom: -16px;
  }
}

@media (min-width: 768px) {
  .home-slider__category {
    margin-bottom: 22px;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.38;
  }
}

.home-slider__title {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.19;
}

@media (min-width: 768px) {
  .home-slider__title {
    color: #fff;
  }
}

@media (min-width: 1280px) {
  .home-slider__title {
    font-size: 2.625rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
  }
}

.home-slider__description {
  margin-top: 17px;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.38;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

.home-slider__description a {
  color: #2b2b2b;
}

@media (max-width: 767px) {
  .home-slider__description {
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 768px) {
  .home-slider__description {
    color: #fff;
  }
  .home-slider__description a {
    color: #fff;
  }
}

.home-slider .VueCarousel-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  overflow: unset;
  position: relative;
  width: calc(100% - 15px);
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-wrapper {
    width: 100%;
  }
}

.home-slider .VueCarousel-wrapper::before {
  right: calc(-100%);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.8;
  background-color: #fff;
  z-index: 1;
}

.home-slider .VueCarousel-wrapper::after {
  left: calc(-100%);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.8;
  background-color: #fff;
  z-index: 1;
}

.home-slider .VueCarousel-pagination {
  display: none;
}

@media (min-width: 1280px) {
  .home-slider .VueCarousel-pagination {
    display: block;
    position: absolute;
    bottom: -23px;
    width: auto !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.home-slider .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  width: 8px !important;
  height: 8px !important;
}

.home-slider .VueCarousel-dot-button:focus {
  outline: none !important;
}

@media (max-width: 1279px) {
  .home-slider .VueCarousel-dot-button {
    background: transparent !important;
    width: 6px !important;
    height: 6px !important;
  }
}

.home-slider .VueCarousel-dot {
  padding: 0 5px !important;
}

@media (max-width: 1279px) {
  .home-slider .VueCarousel-dot {
    margin-top: 10px !important;
  }
}

@media (max-width: 1023px) {
  .home-slider .VueCarousel-dot {
    margin-top: 5px !important;
  }
}

.home-slider .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.home-slider .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-slider .VueCarousel-navigation {
  display: block;
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-button {
  color: transparent;
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-prev {
  width: 21px;
  height: 63px;
  background-color: #fff;
  left: 20px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
  z-index: 100;
  padding: 5px !important;
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-prev {
    padding: 8px !important;
    width: 30px;
    height: 90px;
    left: 25px !important;
  }
}

@media (min-width: 1280px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-prev {
    left: 14px !important;
  }
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-prev::after {
  position: relative;
  top: -10px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-prev::after {
    top: -8px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 32px;
    background-image: url(images/icons/arrow-grey-prev-orange.svg);
  }
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-next {
  width: 21px;
  height: 63px;
  background-color: #fff;
  right: 20px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
  z-index: 100;
  padding: 5px !important;
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-next {
    padding: 8px !important;
    width: 30px;
    height: 90px;
    right: 25px !important;
  }
}

@media (min-width: 1280px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-next {
    right: 14px !important;
  }
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-next::after {
  position: relative;
  top: -10px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-next::after {
    top: -8px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 32px;
    background-image: url(images/icons/arrow-grey-next-orange.svg);
  }
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation--disabled {
  opacity: 0;
  cursor: default;
}

.home-slider .button-more {
  margin: 35px auto 35px;
}

.home-second {
  padding-bottom: 20px;
}

@media (min-width: 1280px) {
  .home-second {
    padding-bottom: 0;
  }
}

@media (max-width: 1023px) {
  .home .is-mobile {
    padding-right: 0;
  }
}

.home h3 {
  margin-bottom: 17px;
}

.home h3::before {
  content: '';
  display: block;
  width: 206px;
  height: 3px;
  margin-bottom: 7px;
  background-color: #c8c8d3;
}

.news-heading__tag {
  margin-top: 15px;
}

.news-heading__tag span:hover {
  text-decoration: underline;
}

.news-heading__tag,
.news-heading__tag a {
  margin-bottom: 15px;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.news-heading__title {
  margin-bottom: 13px;
  font-size: 1.25rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 1280px) {
  .news-heading__tag {
    margin-top: 0;
  }
  .news-heading__tag a {
    margin-bottom: 10px;
  }
  .news-heading__title {
    margin-bottom: 30px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 768px) {
  .news-heading__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news-heading__logo .news-heading__title {
    padding-right: 10px;
  }
}

.news-heading__specialLogo {
  height: 72px;
  background-color: #f5f5f5;
  background-image: url("images/logotype/tokyo2020.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .news-heading__specialLogo {
    height: 80px;
    width: 165px;
    background-position: right;
  }
}

.news-image {
  position: relative;
}

@media (min-width: 1280px) {
  .news-image {
    border-bottom-width: 1px;
    font-size: 1rem;
    line-height: 1.38;
  }
}

.news-image--small {
  margin-top: 20px;
}

.news-image--large {
  margin-top: 20px;
}

@media (min-width: 1921px) {
  .news-image--large {
    max-width: 100%;
  }
}

.news-image--gallery {
  margin-top: 0;
  border-bottom-width: 0;
}

.news-image--gallery .news-gallery-large__carousel {
  cursor: pointer;
}

.news-image__img {
  position: relative;
}

.news-image__source {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 6px 6px;
  background-color: rgba(11, 11, 11, 0.75);
  font-size: 0.6875rem;
  color: #e8e8e8;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

@media (min-width: 1280px) {
  .news-image__source {
    right: 11px;
    bottom: 10px;
  }
}

.news-image__description {
  border-bottom: 2px solid #d9d9d9;
  padding: 10px 0 13px;
  font-size: 0.75rem;
  color: #2b2b2b;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .news-image__description {
    font-size: 1rem;
    line-height: 1.38;
    border-bottom: 1px solid #d9d9d9;
  }
}

@media (min-width: 1921px) {
  .news-image__description {
    max-width: 100%;
    padding-right: 20px;
  }
}

.news-image__popup {
  width: 98%;
  max-height: 85vh;
  background-color: #2b2b2b;
  padding: 10px 20px 20px;
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 300;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow-y: auto;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.news-image__popup--btn {
  margin-bottom: 10px;
  float: right;
  width: 26px;
  height: 16px;
  position: relative;
  cursor: pointer;
}

.news-image__popup--btn span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  top: 8px;
  left: 0;
}

.news-image__popup--btn span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.news-image__popup--btn span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.news-image__popup .img-responsive {
  height: auto;
}

.news-paragraph .news-image__img {
  cursor: pointer;
}

.news-image__popup.news-image__img {
  cursor: default;
}

.news-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}

.news-author__img {
  width: 38px;
  height: 38px;
  margin-right: 6px;
}

.news-author__img img,
.news-author__img figure {
  border-radius: 50%;
}

.news-author__name a:first-of-type, .news-author__name {
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.13;
  margin-right: 10px;
}

.news-author__name a:first-of-type {
  -webkit-transition: all .07s;
  transition: all .07s;
}

.news-author__name a:first-of-type:hover {
  color: inherit;
}

.news-author__description {
  color: #2a2a2a;
}

.news-author__follow {
  display: inline-block;
  width: 108px;
  font-size: 0.8125rem;
  color: #0a0a0a;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 4px 5px 4px 10px;
}

.news-author--more {
  border-top: 1px solid #d9d9d9;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 0;
}

.news-author--more .news-author__img {
  width: 81px;
  height: 81px;
  margin-right: 21px;
}

.news-author--more .news-author__name {
  margin-top: 10px;
  font-size: 1rem;
}

.news-author--more .news-author__follow {
  margin-top: 13px;
  display: block;
}

.news-author--more .news-author__description {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  margin-top: 12px;
}

@media (min-width: 1280px) {
  .news-author {
    margin-top: 30px;
  }
  .news-author--more .news-author__img {
    width: 96px;
    height: 96px;
    margin-right: 19px;
  }
  .news-author--more .news-author__name {
    font-size: 1.3125rem;
  }
  .news-author--more .news-author__follow {
    margin-left: 15px;
    display: inline;
    vertical-align: 4px;
  }
  .news-author--more .news-author__description {
    margin-left: 116px;
    margin-top: -30px;
  }
}

@-moz-document url-prefix() {
  .news-author--more {
    align-items: flex-start;
  }
}

.news-editor {
  padding-top: 10px;
}

.news-editor__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.news-editor__image {
  width: 85px;
  height: 85px;
  margin-right: 12px;
}

.news-editor__image img {
  border-radius: 50%;
}

.news-editor__container {
  position: relative;
  min-height: 85px;
}

.news-editor__container--noimage {
  min-height: 65px;
}

.news-editor__container--nobtn {
  min-height: auto;
}

.news-editor__name {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

.news-editor .news-author__follow {
  position: absolute;
  bottom: 0;
  margin-left: 0;
  margin-top: 5px;
}

.news-editor__description {
  margin-top: 20px;
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .news-editor {
    padding-top: 30px;
  }
  .news-editor__wrapper {
    margin-bottom: 20px;
  }
  .news-editor__image {
    width: 94px;
    height: 94px;
    margin-right: 19px;
  }
  .news-editor__container {
    min-height: 94px;
  }
  .news-editor__container--nobtn {
    min-height: auto;
  }
  .news-editor__name {
    font-size: 2.625rem;
  }
  .news-editor__description {
    margin-top: 30px;
    font-size: 1.3125rem;
    line-height: 1.57;
  }
}

@media (min-width: 1024px) {
  .news-editor {
    padding-top: 50px;
  }
  .news-editor__wrapper {
    width: 868px;
    margin: 0 auto 50px;
    padding-left: 171px;
    min-height: 110px;
  }
  .news-editor__image {
    position: absolute;
    left: -10px;
    width: 140px;
    height: 140px;
  }
  .news-editor__container {
    min-height: auto;
  }
  .news-editor__name {
    line-height: 0.9;
    margin-bottom: 20px;
  }
  .news-editor__description {
    margin-top: 20px;
  }
  .news-editor .news-author__follow {
    position: relative;
  }
}

@media (min-width: 1280px) {
  .news-editor {
    padding-top: 50px;
  }
  .news-editor__wrapper {
    width: 736px;
    padding-right: 36px;
    padding-left: 0;
    min-height: 160px;
  }
  .news-editor__image {
    position: absolute;
    top: 9px;
    left: -200px;
    width: 166px;
    height: 166px;
    margin-bottom: 0;
  }
  .news-editor__name {
    font-size: 2.625rem;
    line-height: 1.19;
    margin-bottom: 10px;
  }
  .news-editor__description {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 1.3125rem;
    line-height: 1.57;
  }
}

@media (min-width: 1921px) {
  .news-editor__wrapper {
    width: 750px;
    padding-right: 30;
  }
}

.news-editor-list {
  padding-bottom: 40px;
}

.news-editor-list .search-results__top {
  margin-bottom: 20px;
}

.news-editor-list .search-results__tag-title::before {
  width: 147px;
}

.news-editor-list .news-seealso__wrapper {
  margin-left: 0;
}

.news-editor-list .news-seealso__desc {
  max-width: 630px;
  padding-right: 15px;
}

.news-editor-list .news-latest__category {
  display: none;
  padding-top: 18px;
  position: absolute;
  bottom: 10px;
  left: 33px;
  text-transform: uppercase;
  z-index: 100;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  width: 100%;
  text-align: left;
}

.news-editor-list .news-latest__category em {
  font-style: normal;
  display: inline-block;
}

@media (min-width: 1024px) {
  .news-editor-list .news-seealso__image {
    width: 230px;
  }
}

@media (min-width: 1280px) {
  .news-editor-list {
    padding-bottom: 55px;
  }
  .news-editor-list .news-seealso__image {
    width: 264px;
  }
  .news-editor-list .news-latest__category {
    display: block;
  }
}

.news-socials {
  display: none;
}

@media (min-width: 1024px) {
  .news-socials {
    display: block;
  }
}

.news-socials__wrapper {
  position: absolute;
  top: 36px;
  left: 27px;
}

.news-socials a {
  display: inline-block;
}

.news-socials .icon-twitter__news {
  top: calc(50% + 60px);
}

.news-socials .icon-message__news {
  top: calc(50% + 118px);
}

.news-lead {
  margin: 35px 0 3px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

.news-lead:first-letter {
  font-size: 4.6875rem;
  float: left;
  line-height: 60px;
  margin-top: -14px;
  padding-right: 3px;
}

.news-lead a,
.news-lead a:visited {
  color: #5960c0;
}

@media (min-width: 1280px) {
  .news-lead {
    font-size: 1.5rem;
    line-height: 1.46;
    margin: 30px 0 3px;
  }
  .news-lead:first-letter {
    font-size: 6rem;
    margin-top: -5px;
  }
}

.news-text p {
  font-size: 1rem;
  color: #2b2b2b;
  line-height: 1.5;
  margin-top: 18px;
}

.news-text__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.news-text__subtitle {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 27px;
  padding-right: 5px;
  margin-top: 5px;
}

.news-text__image {
  display: none;
  width: 40%;
  float: right;
  margin-left: 20px;
  margin-bottom: 5px;
  position: relative;
}

.news-text__image:hover .news-text__subtitle {
  color: #9393a4;
}

.news-text__paragraph iframe {
  max-width: 100%;
}

.news-text__paragraph p a,
.news-text__paragraph p b a {
  color: #5960c0;
}

.news-text__paragraph img[src*="gif"] {
  max-width: 100%;
  height: auto;
}

.news-text__read {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-text center a,
.news-text p b a,
.news-text p big a {
  position: relative;
  width: 100%;
  display: inline-block;
  margin: 10px 0;
  background-color: #e0e0e9;
  padding: 13px 40px 13px 20px;
  font-size: 1.125rem;
  color: #575ec0;
  font-weight: 700;
  line-height: 1.33;
  text-align: left;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-repeat: no-repeat;
  background-size: 12px 5px;
  background-position: right 20px center;
  background-image: url(images/icons/arrow-violet-2.svg);
}

.news-text b,
.news-text h3,
.news-text h4,
.news-text h5 {
  font-weight: 700;
}

.news-text .icon-arrow-orange {
  left: auto;
  right: 20px;
}

.news-text twitter-widget {
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .news-text p {
    font-size: 1.3125rem;
    line-height: 1.57;
    margin-top: 20px;
  }
  .news-text__image {
    display: block;
  }
  .news-text center a,
  .news-text p b a,
  .news-text p a {
    margin-top: 10px;
    font-size: 1.3125rem;
    line-height: 1.43;
  }
}

.news-text__supertitle {
  font-size: 1.125rem;
  margin: 16px 0;
}

@media (min-width: 1280px) {
  .news-text__supertitle {
    font-size: 1.525rem;
  }
}

.news-text__supertitle2 {
  font-size: 1rem;
  margin: 16px 0;
}

@media (min-width: 1280px) {
  .news-text__supertitle2 {
    font-size: 1.3125rem;
  }
}

.news-citation {
  position: relative;
  margin-top: 18px;
  padding: 9px 0 10px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-citation__icon {
  width: 23px;
  height: 17px;
}

.news-citation__text {
  padding-left: 30px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

.news-citation__author {
  margin-top: 20px;
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 0.86;
}

@media (min-width: 1280px) {
  .news-citation {
    margin-top: 20px;
    padding: 20px 0 26px;
  }
  .news-citation__icon {
    width: 70px;
    height: 54px;
    margin-right: 40px;
  }
  .news-citation__text {
    padding-left: 0;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .news-citation__author {
    margin-top: 20px;
    font-size: 1.3125rem;
  }
}

.news-downloads {
  margin-top: 20px;
  padding: 18px 10px 18px 20px;
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.news-downloads__link {
  display: block;
  margin-top: 15px;
  font-size: 0.875rem;
  color: #f05a22;
  line-height: 2.14;
}

.news-downloads__link:first-of-type {
  margin-top: 0;
}

.news-downloads__link i {
  vertical-align: -7px;
  margin-right: 11px;
}

@media (min-width: 1280px) {
  .news-downloads {
    padding: 18px 10px 18px 60px;
  }
  .news-downloads__link {
    font-size: 1.3125rem;
    line-height: 1.43;
  }
  .news-downloads__link i {
    vertical-align: text-top;
  }
}

.news-gallery-large {
  position: relative;
  margin: 20px 0 0 auto;
  width: 80%;
}

@media (min-width: 1024px) {
  .news-gallery-large .VueCarousel-inner {
    margin-right: 20%;
  }
}

.news-gallery-large .VueCarousel-slide {
  padding-right: 13px;
}

.news-gallery-large__wrapper {
  position: relative;
}

.news-gallery-large__counter {
  position: absolute;
  top: 13px;
  left: 11px;
  z-index: 2;
  background-color: rgba(11, 11, 11, 0.5);
  padding: 8px 10px 6px;
  font-size: 0.8125rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.news-gallery-large__counter:hover {
  color: #eaff00;
}

@media (min-width: 768px) {
  .news-gallery-large__counter {
    font-size: 1.125rem;
  }
}

.news-gallery-large__number {
  font-size: 1.125rem;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .news-gallery-large__number {
    font-size: 3.375rem;
  }
}

.news-gallery-large__img {
  position: relative;
  cursor: pointer;
}

.news-gallery-large__img .img-responsive img {
  height: auto;
}

.news-gallery-large__description {
  padding: 10px 0 13px;
  border-bottom: 2px solid #d9d9d9;
  font-size: 0.75rem;
  color: #2b2b2b;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .news-gallery-large__description {
    font-size: 1rem;
    line-height: 1.38;
    border-bottom-width: 1px;
  }
}

.news-gallery-large__source {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 6px 6px;
  background-color: rgba(11, 11, 11, 0.75);
  font-size: 0.6875rem;
  color: #e8e8e8;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

@media (min-width: 1280px) {
  .news-gallery-large__source {
    right: 11px;
    bottom: 10px;
  }
}

.news-gallery-large .icon-arrow-black-prev {
  display: none;
}

@media (min-width: 1024px) {
  .news-gallery-large .icon-arrow-black-prev {
    display: block;
    top: calc(50% - 34px);
    left: -25px;
  }
}

@media (min-width: 1280px) {
  .news-gallery-large .icon-arrow-black-prev {
    left: -60px;
  }
}

.news-gallery-large .icon-arrow-white-next {
  display: none;
}

@media (min-width: 1024px) {
  .news-gallery-large .icon-arrow-white-next {
    display: block;
    top: calc(50% - 34px);
    left: auto;
    right: 0;
  }
}

.news-gallery-large .VueCarousel-pagination {
  margin-top: -10px;
}

@media (min-width: 1024px) {
  .news-gallery-large .VueCarousel-pagination {
    display: none;
  }
}

.news-gallery-large .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #979797 !important;
  width: 6px !important;
  height: 6px !important;
}

.news-gallery-large .VueCarousel-dot-button:focus {
  outline: none !important;
}

.news-gallery-large .VueCarousel-dot {
  padding: 0 5px 0 5px !important;
  margin-top: 10px !important;
}

.news-gallery-large .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.news-gallery-large .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.news-gallery-small {
  margin-top: 20px;
}

.news-gallery-small__overlay {
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(transparent));
  background-image: linear-gradient(to top, #000000, transparent);
  width: 100%;
  height: 150px;
  bottom: 0;
  z-index: 1;
}

.news-gallery-small .VueCarousel-pagination {
  position: absolute;
  bottom: 0;
}

.news-gallery-small .VueCarousel-dot {
  padding: 5px 3px !important;
}

@media (min-width: 1280px) {
  .news-gallery-small .VueCarousel-dot {
    padding: 10px !important;
  }
}

.news-gallery-small .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #fff !important;
}

.news-gallery-small .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #fff !important;
  width: 6px !important;
  height: 6px !important;
}

@media (min-width: 1280px) {
  .news-gallery-small .VueCarousel-dot-button {
    width: 10px !important;
    height: 10px !important;
  }
}

.news-gallery-small .news-gallery__prev,
.news-gallery-small .news-gallery__next {
  display: none;
}

@media (min-width: 1280px) {
  .news-gallery-small .news-gallery__prev,
  .news-gallery-small .news-gallery__next {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    height: 100%;
    width: 118px;
  }
  .news-gallery-small .news-gallery__prev:after,
  .news-gallery-small .news-gallery__next:after {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
  }
  .news-gallery-small .news-gallery__prev {
    left: 0;
    z-index: 1;
  }
  .news-gallery-small .news-gallery__next {
    left: auto;
    right: 0;
  }
  .news-gallery-small .news-gallery__prev:after {
    left: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  }
  .news-gallery-small .news-gallery__next:after {
    right: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  }
  .news-gallery-small .news-gallery-large__carousel:hover ~ .news-gallery__prev,
  .news-gallery-small .news-gallery-large__carousel:hover ~ .news-gallery__next {
    opacity: 1;
  }
  .news-gallery-small .icon-arrow-white-prev,
  .news-gallery-small .icon-arrow-white-next {
    z-index: 1;
  }
  .news-gallery-small .news-gallery__prev:hover,
  .news-gallery-small .news-gallery__next:hover {
    opacity: 1;
  }
}

.transmission-section__content.transmission-news .news-gallery-large {
  margin: 20px auto 0;
  width: 100%;
  padding-left: 0;
}

@media (min-width: 1024px) {
  .transmission-section__content.transmission-news .news-gallery-large {
    padding-left: 90px;
  }
}

.transmission-section__content.transmission-news .news-gallery-large__description {
  width: calc(100% - 13px);
}

@media (min-width: 1024px) {
  .transmission-section__content.transmission-news .news-gallery-large__description {
    width: 100%;
  }
}

@media (min-width: 1921px) {
  .transmission-section__content.transmission-news .news-gallery-large {
    width: 905px;
    padding-left: 155px;
    margin: 20px auto 0 33px;
  }
}

.news-video {
  margin-top: 20px;
}

.news-video .button-play {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .news-video .button-play {
    width: 62px;
    height: 62px;
  }
}

@media (min-width: 1024px) {
  .news-video__gradient:after {
    display: block;
    position: absolute;
    content: "";
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(238, 238, 238, 0)), to(#f7f7f7));
    background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0), #f7f7f7);
    width: 100%;
    height: 69px;
    bottom: 0;
  }
}

.news-video__overlay {
  position: relative;
}

.news-video__overlay:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-image: linear-gradient(60deg, #17006e, #ff4500);
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}

.news-video__overlay--play:after {
  display: none;
}

.news-video .remove-overlay:after {
  display: none;
}

.news-video__miniatures .home-video__subtitle {
  font-size: 0.8rem;
}

@media (max-width: 1023px) {
  .news-video__miniatures {
    display: none;
  }
}

.news-video .VueCarousel-dot-button:focus {
  outline: none !important;
}

.news-video .VueCarousel-dot {
  margin-top: 0 !important;
}

.news-video-large {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 1280px) {
  .news-video-large {
    display: block;
  }
}

.news-video-large__content {
  display: inline-block;
}

@media (max-width: 1279px) {
  .news-video-large__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0 5px;
    width: 120px;
    overflow-y: hidden;
    padding-right: 0;
  }
  .news-video-large__content:first-of-type {
    margin-left: 0;
  }
  .news-video-large__content:last-of-type {
    margin-left: 0;
  }
}

.news-video-large__content:hover {
  cursor: pointer;
}

.news-video-large__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .news-video-large__heading {
    background: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 13px 10px 7px;
  }
}

.news-video-large__subheading {
  display: none;
  margin: 17px 0 10px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: capitalize;
}

@media (min-width: 1280px) {
  .news-video-large__subheading {
    display: block;
  }
}

.news-video-large__frame {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 8px;
  width: 100%;
  overflow-x: auto;
}

.news-video-large__frame::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.news-video-large__frame::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.news-video-large__frame::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.news-video-large__frame::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 1024px) {
  .news-video-large__frame {
    display: block;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 9px;
    height: 398px;
  }
}

@media (min-width: 1921px) {
  .news-video-large__frame {
    height: 633px;
  }
}

.news-video-large__frame .home-video__content {
  display: block;
}

.news-video-large__frame .home-video__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}

.news-video-large__frame .home-video__subtitle {
  padding: 12px 0;
}

.news-video-large__wrapper {
  position: relative;
}

.news-video-large__wrapper--overlay:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-image: linear-gradient(60deg, #17006e, #ff4500);
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}

.news-video-large__wrapper .transmission-player__lead {
  text-align: center;
}

@media (max-width: 1199px) {
  .news-video-large__title {
    padding: 18px 10px 16px;
    z-index: 0;
    background-color: #fff;
    font-size: 1.375rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.36;
    max-width: 100%;
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .news-video-large__title {
    position: absolute;
    bottom: 45px;
    width: calc(100% - 110px);
    text-align: left;
    margin-left: 22px;
    font-size: 2.25rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.17;
    overflow: hidden;
  }
}

.news-video-large__subtitle {
  margin: 14px 0 5px;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 1280px) {
  .news-video-large__subtitle {
    margin: 14px 0 20px;
  }
}

.news-video-large__time {
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  bottom: 8px;
  background-color: transparent;
  padding: 0;
}

@media (min-width: 1280px) {
  .news-video-large__time {
    background-color: #2b2b2b;
    bottom: 12px;
    padding: 4px 10px;
  }
}

.news-video-large__time--small {
  left: 5px;
  bottom: 5px;
  background-color: #2b2b2b;
  padding: 4px 10px;
}

.news-video-large__figure {
  position: relative;
}

.news-video-large__figure .img-responsive {
  height: auto;
}

.news-video-large__img {
  position: relative;
}

@media (min-width: 1280px) {
  .news-video-large__single {
    max-width: 1145px;
  }
}

@media (min-width: 1921px) {
  .news-video-large__single {
    max-width: 1600px;
  }
}

@media (max-width: 768px) {
  .news-video-large .no-padding-r {
    padding-right: 15px !important;
  }
}

@media (min-width: 1280px) {
  .news-video-large .col-lg-10 {
    padding: 0 !important;
    margin-left: -34px;
  }
  .news-video-large .no-padding-r {
    padding-right: 45px !important;
  }
}

@media (min-width: 1921px) {
  .news-video-large .col-lg-10 {
    padding: 0 0 0 101px !important;
    margin-left: -68px;
    width: calc(84% - 11px);
  }
  .news-video-large .no-padding-r {
    width: 20%;
    padding-right: 0 !important;
  }
}

@media (min-width: 1921px) {
  .news__sidebar .news-video-large .no-padding-r {
    width: calc(19% + 10px);
  }
  .news__sidebar .news-video-large .col-lg-10 {
    padding: 0 0 0 83px !important;
  }
}

.news-video-small .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 1024px) {
  .news-video-small .row {
    display: block;
  }
}

@media (min-width: 1280px) {
  .news-video-small .news-video-large__frame {
    height: 342px;
    padding-right: 6px;
  }
  .news-video-small .col-lg-10 {
    width: 80%;
  }
}

.news-video-small .news-video-large__single .home-video__slides {
  display: none;
}

@media (min-width: 1921px) {
  .news-video-small .col-lg-10 {
    width: 80%;
  }
  .news-video-small .no-padding-r {
    width: 18%;
    padding-right: 0 !important;
    margin-left: -61px;
  }
  .news-video-small .news-video-large__frame {
    height: 370px;
  }
}

.transmission-section__content.transmission-news .news-video-small {
  padding-left: 0;
}

.transmission-section__content.transmission-news .news-video-small .news-video-large__single {
  padding-left: 15px;
}

@media (min-width: 768px) {
  .transmission-section__content.transmission-news .news-video-small .news-video-large__single {
    padding-left: 10px;
  }
}

@media (min-width: 1280px) {
  .transmission-section__content.transmission-news .news-video-small .news-video-large__frame {
    height: 495px;
  }
}

@media (min-width: 1921px) {
  .transmission-section__content.transmission-news .news-video-small .news-video-large__frame {
    height: 370px;
  }
  .transmission-section__content.transmission-news .news-video-small .no-padding-r {
    padding-right: 0 !important;
  }
  .transmission-section__content.transmission-news .news-video-small .col-lg-10 {
    padding-right: 12px;
    width: calc(69% - 3px);
  }
  .transmission-section__content.transmission-news .news-video-small .news-video-large__single {
    max-width: 750px;
    padding-left: 0;
    margin-left: 195px;
  }
}

.news-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 25px;
  padding-bottom: 53px;
}

@media (min-width: 1280px) {
  .news-tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 19px 0 20px 20px;
  }
}

@media (min-width: 1921px) {
  .news-tags {
    max-width: 1185px;
    padding-left: 156px;
  }
}

.news-tags__logo {
  width: 130px;
  text-align: center;
  margin: 15px auto;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.news-tags__logo img {
  display: block;
  margin: 0 auto 10px;
}

@media (min-width: 1280px) {
  .news-tags__logo {
    width: 140px;
    margin: 0;
    text-align: left;
    border-right: 1px solid #d9d9d9;
    padding-right: 10px;
  }
  .news-tags__logo img {
    margin: 0 0 10px;
  }
}

.news-tags__wrapper {
  text-align: center;
  padding-left: 20px;
}

@media (min-width: 1280px) {
  .news-tags__wrapper {
    text-align: left;
  }
}

.news-tags__tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  margin-right: 9px;
  font-size: 0.75rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 9px;
}

@media (min-width: 1280px) {
  .news-tags__tag {
    font-size: 0.8125rem;
    letter-spacing: 1.3px;
  }
}

.news-tags__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1280px) {
  .news-tags__social {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-tags__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 149px;
  height: 32px;
  margin-top: 35px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
}

.news-tags__button span {
  display: none;
}

@media (min-width: 1280px) {
  .news-tags__button {
    height: 54px;
    margin-top: 11px;
    padding: 0 23px 0 27px;
    background-position: center right 32px;
  }
  .news-tags__button span {
    display: block;
  }
}

.news-tags__fb {
  background-image: url(images/icons/fb__white.svg);
  margin-right: 5px;
  background-color: #3b5998;
}

@media (min-width: 1280px) {
  .news-tags__fb {
    width: auto;
    max-width: 420px;
    padding-right: 70px;
    margin-right: 20px;
    background-image: url(images/icons/fb__background__white.svg);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.news-tags__twitter {
  background-image: url(images/icons/twitter__white.svg);
  margin-left: 5px;
  background-color: #1da1f2;
}

@media (min-width: 1280px) {
  .news-tags__twitter {
    width: auto;
    max-width: 420px;
    margin-left: 20px;
    padding-right: 70px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.news-tags__label {
  text-align: center;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .news-tags__label {
    font-size: 1.75rem;
  }
}

.news-quiz {
  padding: 30px 0;
}

.poll__title {
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .poll__title {
    font-size: 2rem;
    font-weight: 700;
  }
}

.poll__content {
  background-color: #e8e8e8;
  padding: 22px 22px 30px;
}

.poll--answered .poll-item__answer .progress-line {
  display: block;
}

.poll--answered .poll-item__answer--correct {
  color: #fff;
}

.poll--answered .poll-item__answer--correct .progress-line {
  background-color: #c8c8d3;
}

.poll--answered .poll-item__answer .percentage-votes {
  display: inline;
}

.poll--answered .poll-item__body :checked + label.poll-item__answer {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.poll--answered .next-button__inner {
  padding-right: 25px;
}

.poll-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .poll-item__header {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.poll-item__question-text {
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .poll-item__question-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 110px;
  }
}

.poll-item__body {
  font-size: 1rem;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .poll-item__body {
    font-size: 1.3125rem;
  }
}

.poll-item__body input[type='radio'] {
  display: none;
}

.poll-item__body :checked + label.poll-item__answer {
  -webkit-box-shadow: inset 0 0 0 4px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 4px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.poll-item__body :checked + label.poll-item__answer .progress-line {
  background-color: #c8c8d3;
}

.poll-item__body :checked + label.poll-item__answer::before {
  color: #38324c;
}

.poll-item__answer {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  margin-bottom: 9px;
  padding: 10px 20px;
  margin-left: 32px;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .poll-item__answer {
    margin-left: 47px;
  }
}

.poll-item__answer::before {
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  content: attr(data-answer-id);
  position: absolute;
  top: -6px;
  left: -50px;
  text-transform: uppercase;
  width: 45px;
  text-align: center;
}

@media (min-width: 768px) {
  .poll-item__answer::before {
    top: 0;
    left: -48px;
  }
}

.poll-item__answer .progress-line {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background-color: #e8e8e8;
  z-index: 1;
  display: none;
  -webkit-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out;
}

.poll-item__answer .percentage-votes {
  display: none;
}

.poll-item__text {
  position: relative;
  z-index: 2;
}

.poll-item__footer {
  padding-left: 32px;
}

@media (min-width: 768px) {
  .poll-item__footer {
    padding-left: 47px;
  }
}

.news-poll {
  padding: 30px 0;
}

.news-latest {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .news-latest {
    margin-top: 35px;
  }
}

.news-latest__wrapper {
  width: 100%;
  height: 74px;
  display: inline-block;
  background-color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.news-latest__wrapper:hover .box-small__content::before,
.news-latest__wrapper:hover .box-medium__content::before,
.news-latest__wrapper:hover .news-latest__content::before,
.news-latest__wrapper:hover .magazine__content::before,
.news-latest__wrapper:hover .video-primary__title--large::before,
.news-latest__wrapper:hover .video-primary__title--small::before,
.news-latest__wrapper:hover .video-primary__description::before,
.news-latest__wrapper:hover .boxes-list__content::before,
.news-latest__wrapper:hover .news-latest__desc::before,
.news-latest__wrapper:hover .magazine__desc::before,
.news-latest__wrapper:hover .news-seealso__desc::before,
.news-latest__wrapper:hover .home-opinion__cont::before,
.news-latest__wrapper:hover .home-opinion__small::before,
.news-latest__wrapper:hover .video-sidebar__content::before,
.news-latest__wrapper:hover .boxes-list-discipline__content::before,
.news-latest__wrapper:hover .epg-item__description::before {
  opacity: .06;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  border: 2px solid #2b2b2b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.news-latest__wrapper:hover .banner-items__image::after,
.news-latest__wrapper:hover .box-small__image::after,
.news-latest__wrapper:hover .box-medium__image::after,
.news-latest__wrapper:hover .news-latest__image::after,
.news-latest__wrapper:hover .magazine__image::after,
.news-latest__wrapper:hover .video-primary__title--large::before,
.news-latest__wrapper:hover .video-primary__title--small::before,
.news-latest__wrapper:hover .video-primary__img::after,
.news-latest__wrapper:hover .boxes-list__img::after,
.news-latest__wrapper:hover .news-latest__photo::after,
.news-latest__wrapper:hover .magazine__photo::after,
.news-latest__wrapper:hover .news-seealso__image::after,
.news-latest__wrapper:hover .home-opinion__image::after,
.news-latest__wrapper:hover .boxes-list-discipline__img::after,
.news-latest__wrapper:hover .epg-item__image::after {
  opacity: 0.2;
}

.news-latest__wrapper:hover .box-small__content,
.news-latest__wrapper:hover .box-medium__content,
.news-latest__wrapper:hover .news-latest__title,
.news-latest__wrapper:hover .boxes-list-discipline__title,
.news-latest__wrapper:hover .box-small__title {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2b2b2b;
}

.news-latest__wrapper:hover .box-small__content,
.news-latest__wrapper:hover .box-medium__content {
  background-color: #e0e0eb;
}

@media (min-width: 768px) {
  .news-latest__wrapper {
    height: 152px;
  }
}

.news-latest__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.news-latest__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.news-latest__image {
  width: 130px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}

.news-latest__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 768px) {
  .news-latest__image {
    width: 265px;
    margin-right: 33px;
  }
}

.news-latest__title {
  width: calc(100% - 150px);
  height: 130px;
  overflow: hidden;
  display: inline-block;
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  padding: 5px 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .news-latest__title {
    padding: 33px 0 26px;
    width: calc(100% - 320px);
  }
}

.news-latest__category {
  text-align: center;
}

.news-latest__category span b:hover {
  color: #9393a4;
}

.news-latest__desc {
  position: relative;
  background-color: #fff;
  padding: 20px 18px 50px;
  text-align: center;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.news-latest__desc h3, .news-latest__desc .h3 {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

.news-latest__desc .box-label {
  font-size: 0.8125rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .news-latest__desc .box-label {
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .news-latest__desc {
    width: 43%;
    padding: 20px 26px 27px 21px;
    text-align: left;
  }
  .news-latest__desc h3, .news-latest__desc .h3 {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

@media (min-width: 1024px) {
  .news-latest__desc h3, .news-latest__desc .h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
}

@media (min-width: 1280px) {
  .news-latest__desc h3, .news-latest__desc .h3 {
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 768px) {
  .news-latest__description {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-right: 10px;
  }
}

.news-latest__photo {
  position: relative;
  z-index: -1;
}

.news-latest__photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 768px) {
  .news-latest__photo {
    width: 57%;
  }
}

.news-latest .boxes-3-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
}

.news-latest .boxes-3-container .box-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 5px;
  position: relative;
}

.news-latest .boxes-3-container .box-small .box-small__image {
  width: 127px;
}

.news-latest .boxes-3-container .box-small .box-small__image .button-play {
  width: 26px;
  height: 26px;
  left: 3px;
  bottom: 3px;
}

.news-latest .boxes-3-container .box-small .box-small__image .button-play.centered {
  left: 50%;
}

@media (max-width: 768px) {
  .news-latest .boxes-3-container .box-small .box-small__image {
    max-height: 66px;
  }
}

.news-latest .boxes-3-container .box-small .box-label,
.news-latest .boxes-3-container .box-small .box-small__category {
  display: none;
}

@media (min-width: 768px) {
  .news-latest .boxes-3-container .box-small {
    display: block;
    margin-bottom: 13px;
    margin-right: 12px;
    width: calc(33.3% - 8px);
  }
  .news-latest .boxes-3-container .box-small:nth-child(-3n + 6) {
    margin-right: 0;
  }
  .news-latest .boxes-3-container .box-small .box-small__image {
    width: 100%;
  }
  .news-latest .boxes-3-container .box-small .box-small__image .button-play {
    width: 38px;
    height: 38px;
    left: 20px;
    bottom: 25px;
  }
  .news-latest .boxes-3-container .box-small .box-label,
  .news-latest .boxes-3-container .box-small .box-small__category {
    display: block;
  }
  .news-latest .boxes-3-container .box-small .box-label {
    z-index: 1;
  }
  .news-latest .boxes-3-container .box-small .box-small__category {
    left: 20px;
    bottom: 16px;
  }
  .news-latest .boxes-3-container .box-small .box-small__category b:hover {
    color: #9393a4;
  }
}

@media (min-width: 1280px) {
  .news-latest .boxes-3-container .box-small {
    width: calc(33.3% - 18px);
    margin-bottom: 30px;
    margin-right: 27px;
  }
  .news-latest .boxes-3-container .box-small:nth-child(-3n + 6) {
    margin-right: 0;
  }
}

.news-latest .box-small__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 127px);
  min-height: auto;
  max-height: 71px;
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 600;
  line-height: 1.29;
  padding-left: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-latest .box-small__content {
    display: block;
    width: 100%;
    min-height: 135px;
    max-height: 100%;
    padding: 12px 9px 45px;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.38;
    overflow: inherit;
  }
}

@media (min-width: 1024px) {
  .news-latest .box-small__content {
    font-size: 1.5rem;
    line-height: 1.33;
    padding: 21px 13px 55px;
    min-height: 177px;
  }
}

@media (min-width: 1280px) {
  .news-latest .box-small__content {
    padding: 22px 20px 55px;
    min-height: 184px;
  }
}

.news-latest .box-small__category {
  position: absolute;
  bottom: 20px;
  left: 0;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.news-latest .box-small__category time {
  cursor: pointer;
}

.news-latest .box-small__category span {
  z-index: 100;
  position: relative;
  cursor: pointer;
}

.news-latest .box-small__category b:hover {
  color: #9393a4;
}

.news-latest .box-big {
  width: 100%;
  -webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
          box-shadow: 0 1px 3px rgba(128, 128, 128, 0), 0 1px 2px rgba(228, 228, 228, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 5px;
}

.news-latest .box-big .box-small__image:after {
  display: block;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
  opacity: 0.5;
}

.news-latest .box-big .box-small__image:hover:after {
  opacity: 0.2;
}

@media (min-width: 768px) {
  .news-latest .box-big {
    position: relative;
    width: calc(66.6% - 4px);
    margin-bottom: 13px;
  }
}

@media (min-width: 1280px) {
  .news-latest .box-big {
    position: relative;
    width: calc(66.6% - 9px);
    margin-bottom: 30px;
  }
}

.news-latest .box-big__content {
  position: relative;
  padding: 20px 18px 50px;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
  text-transform: uppercase;
  background-color: #fff;
  z-index: 7;
}

.news-latest .box-big__content .box-label {
  font-size: 0.8125rem;
  left: 22px;
  padding: 0;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

.news-latest .box-big__content a {
  color: inherit;
}

.news-latest .box-big__content .banner-photo__tag {
  height: 16px;
}

@media (min-width: 768px) {
  .news-latest .box-big__content .banner-photo__tag {
    height: auto;
  }
}

.news-latest .box-big__content .banner-photo__breadcrumbs {
  color: #2b2b2b;
  display: inline-block;
  height: 16px;
}

@media (min-width: 768px) {
  .news-latest .box-big__content .banner-photo__breadcrumbs {
    height: auto;
  }
}

@media (min-width: 768px) {
  .news-latest .box-big__content {
    position: absolute;
    bottom: 40px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    width: 100%;
    padding: 0 20px;
    background-color: transparent;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.33;
  }
  .news-latest .box-big__content .box-small__category {
    color: #e8e8e8;
    bottom: -20px;
  }
  .news-latest .box-big__content .box-label {
    top: -28px;
  }
}

@media (min-width: 1024px) {
  .news-latest .box-big__content {
    bottom: 76px;
    font-size: 2rem;
    line-height: 1.25;
  }
  .news-latest .box-big__content .box-small__category {
    bottom: -55px;
    left: 20px;
  }
  .news-latest .box-big__content .box-label {
    top: -35px;
  }
}

@media (min-width: 1280px) {
  .news-latest .box-big__content {
    font-size: 2.25rem;
    line-height: 1.17;
  }
}

@media (min-width: 768px) {
  .news-latest .box-small--one .box-small__content {
    height: 146px;
  }
}

@media (min-width: 1024px) {
  .news-latest .box-small--one .box-small__content {
    height: 182px;
    min-height: 0;
  }
}

@media (min-width: 1280px) {
  .news-latest .box-small--one .box-small__content {
    height: 249px;
  }
}

@media (min-width: 1921px) {
  .news-latest .box-small--one .box-small__content {
    height: 244px;
  }
}

.news-latest__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 5px;
  position: relative;
}

.news-latest__box:hover .news-latest__desc {
  background-color: #e0e0eb;
}

.news-latest__box .banner-photo__tag {
  position: absolute;
  top: -12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 1;
  margin-bottom: 0;
}

.news-latest__box .news-heading__tag {
  position: absolute;
  bottom: 27px;
  margin-bottom: 0;
}

.news-latest__box .box-small__category {
  bottom: 17px;
  text-align: center;
  left: 20px;
  right: 20px;
}

.news-latest__box .opinion__small {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

@media (min-width: 768px) {
  .news-latest__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 13px;
  }
  .news-latest__box .box-label {
    top: -30px;
    left: 5px;
    padding: 0;
    -webkit-transform: none;
            transform: none;
  }
  .news-latest__box .box-small__category {
    left: 23px;
    right: auto;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .news-latest__box {
    margin-bottom: 30px;
  }
  .news-latest__box .box-label {
    top: -35px;
  }
  .news-latest__box .box-small__category {
    bottom: 27px;
  }
}

@media (min-width: 768px) {
  .news-latest .boxes-3-container .box-medium--one {
    margin: 0 0 13px 12px;
  }
}

@media (min-width: 1280px) {
  .news-latest .boxes-3-container .box-medium--one {
    margin: 0 0 30px 27px;
  }
}

.news-latest .opinion__small {
  display: none;
}

@media (min-width: 768px) {
  .news-latest .opinion__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news-latest .opinion__small .opinion__small--name {
  color: #2b2b2b;
}

@media (min-width: 1921px) {
  .news.news__sidebar .news-latest__container {
    width: 1284px;
    padding-right: 70px;
  }
}

@media (min-width: 1921px) {
  .news.news__sidebar .news-latest__container {
    width: 1600px;
  }
}

.news-seealso {
  margin-top: 20px;
  padding-bottom: 25px;
}

.news-seealso__wrapper {
  height: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
  position: relative;
}

.news-seealso__wrapper:hover .news-seealso__desc {
  background-color: #e0e0eb;
}

.news-seealso__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.news-seealso__image {
  position: relative;
  width: 129px;
  display: inline-block;
  vertical-align: top;
}

.news-seealso__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-seealso__desc {
  position: relative;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding-left: 8px;
  width: calc(100% - 129px);
  height: 74px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.news-seealso__desc .grid-box__label {
  font-size: 0.688rem;
  font-weight: 700;
  position: relative;
  left: 5px;
}

.news-seealso__title {
  max-height: 78px;
  overflow: hidden;
  display: inline-block;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
  padding: 5px 0;
}

.news-seealso__category span b:hover {
  color: #ff5d21;
}

.news-seealso__content .button-more {
  margin: 30px auto 0;
}

.news-seealso .box-small__category {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 33px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.news-seealso .box-small__category time {
  cursor: pointer;
}

.news-seealso .box-small__category span {
  z-index: 100;
  position: relative;
  cursor: pointer;
}

.news-seealso .box-small__category b:hover {
  color: #9393a4;
}

@media (min-width: 768px) {
  .news-seealso__wrapper {
    height: 150px;
    margin-bottom: 10px;
  }
  .news-seealso__image {
    width: 265px;
  }
  .news-seealso__desc {
    padding-left: 30px;
    padding-right: 20px;
    height: 150px;
    width: calc(100% - 265px);
  }
  .news-seealso__title {
    font-size: 1.2rem;
    line-height: 1.33;
    max-height: 85px;
  }
}

@media (min-width: 1024px) {
  .news-seealso__content {
    padding-top: 7px;
  }
  .news-seealso .fb-comments-wrapper {
    padding-left: 30px;
  }
  .news-seealso .box-small__category {
    display: block;
    bottom: 12px;
  }
}

@media (min-width: 1280px) {
  .news-seealso__content {
    padding-top: 10px;
    padding-right: 30px;
  }
  .news-seealso__wrapper {
    height: 150px;
    padding-left: 0;
  }
  .news-seealso__image {
    width: 265px;
  }
  .news-seealso__desc {
    width: calc(100% - 267px);
    height: 150px;
    padding-left: 33px;
  }
  .news-seealso__title {
    max-height: 130px;
    font-size: 1.5rem;
    line-height: 1.33;
  }
  .news-seealso .fb-comments-wrapper {
    width: 940px;
    padding-left: 0;
  }
}

@media (min-width: 1921px) {
  .news-seealso__wrapper,
  .news-seealso .fb-comments-wrapper {
    width: calc(100% - 10px);
    margin-left: 12px;
  }
}

.news-seealso .opinion__small {
  display: none;
}

@media (min-width: 768px) {
  .news-seealso .opinion__small {
    display: inline;
  }
  .news-seealso .opinion__small figure,
  .news-seealso .opinion__small img {
    display: inline;
    vertical-align: bottom;
  }
  .news-seealso .opinion__small .opinion__small--name {
    color: #2b2b2b;
    text-transform: capitalize;
  }
}

.news-comments {
  margin-top: 20px;
}

.banner-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #2b2b2b;
  color: inherit;
  margin: 40px 0;
}

.banner-app:hover {
  color: inherit;
}

.banner-app__content {
  font-size: 0.6875rem;
  color: #fff;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner-app__content span {
  display: none;
}

@media (min-width: 480px) {
  .banner-app__content {
    font-size: 0.8125rem;
    color: #fff;
    padding: 20px 20px;
  }
  .banner-app__content span {
    display: inline;
  }
}

@media (min-width: 768px) {
  .banner-app__content {
    font-size: 1.25rem;
    color: #fff;
    padding: 16px 20px;
  }
}

@media (min-width: 1280px) {
  .banner-app__content {
    font-size: 1.5rem;
    color: #fff;
    padding: 13px 20px;
  }
}

.banner-app__image {
  margin-top: -11px;
}

@media (min-width: 480px) {
  .banner-app__image {
    margin-top: -14px;
  }
}

.banner-app__image img {
  display: block;
}

.news {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: -45px;
}

.news.news--transmission .news__wrapper,
.news.news--transmission .news-image--small {
  padding-left: 0;
}

.news.news--transmission .transmission-header__parent {
  margin-bottom: 0;
}

.news.news--transmission {
  padding-top: 0;
}

@media (min-width: 1280px) {
  .news.news--transmission {
    padding-top: 0;
  }
}

.news__large.news--transmission .news-image--small {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .news__large.news--transmission .news-image--small {
    padding-left: 180px;
  }
}

@media (min-width: 1921px) {
  .news__large.news--transmission .news-image--small {
    margin-left: 195px;
    padding-left: 0;
  }
}

.news__large.news--transmission .news__wrapper {
  padding-left: 0;
}

@media (min-width: 1921px) {
  .news__large.news--transmission .news__wrapper {
    margin-left: 195px;
    padding-left: 0;
  }
}

.news__large .news-video-large__single {
  max-width: 100%;
  padding-left: 5px;
}

@media (min-width: 768px) {
  .news__large .news-video-large__single {
    padding-left: 15px;
  }
}

@media (min-width: 1280px) {
  .news__large .news-video-small {
    max-width: 845px;
  }
  .news__large .news-video-large__single {
    max-width: 895px;
  }
  .news__large .transmission-news .news-video-small .no-padding-r {
    width: 20%;
  }
  .news__large .transmission-news .news-video-small .col-lg-10 {
    width: 80%;
    padding-left: 21px;
  }
}

@media (min-width: 1921px) {
  .news__large .news__wrapper {
    width: 750px;
    margin: 0 auto;
    padding-left: 0;
  }
  .news__large .news-socials {
    left: 245px;
  }
  .news__large .news-tags {
    margin: 25px auto 0;
    padding-left: 217px;
  }
  .news__large .container-fluid--np {
    padding-left: 7px;
  }
  .news__large .news-video-small {
    max-width: 1065px;
    margin: 20px auto 0 181px;
    padding-left: 0;
  }
  .news__large .news-video-small .news-video-large__frame {
    height: 425px;
  }
  .news__large .news-video-small .news-video-large__single {
    max-width: 750px;
    padding-right: 0;
    padding-left: 0;
    margin-left: 243px;
  }
  .news__large .news-image--small {
    width: 895px;
    margin: 20px auto 0;
    padding-left: 0;
  }
  .news__large .news-video-small .col-lg-10 {
    width: calc(68% + 7px);
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 24px;
  }
  .news__large .news-video-small .no-padding-r {
    width: 20%;
    margin-left: 0;
    padding-right: 15px !important;
  }
  .news__large .transmission-news .news-video-small {
    margin: 20px auto 0 0;
  }
  .news__large .transmission-news .news-video-small .no-padding-r {
    padding-left: 0;
    width: 16.66667%;
  }
  .news__large .transmission-news .news-video-small .col-lg-10 {
    width: calc(69% - 3px);
    margin-left: 13px;
    padding-left: 0;
    padding-right: 3px;
  }
}

@media (min-width: 1280px) {
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 auto;
  }
}

@media (min-width: 1280px) {
  .news__items {
    padding-right: 15px;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    padding-bottom: 90px;
  }
}

.news__news {
  padding: 29px 10px 10px;
}

@media (min-width: 1280px) {
  .news__news {
    padding: 29px 0 0;
    overflow-y: auto;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
  .news__news::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  .news__news::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .news__news::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .news__news::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.news__news .buttons-tabs-visibility {
  display: none;
}

@media (min-width: 1024px) {
  .news__news .buttons-tabs-visibility {
    display: block;
  }
}

.news__news .buttons-tabs-visibility.d-block {
  display: block;
}

.news__news .buttons-tabs {
  display: block;
  background-color: transparent;
  font-size: 2rem;
}

.news__news .buttons-tabs-item--active, .news__news .buttons-tabs-item:hover {
  font-size: 2rem;
}

@media (min-width: 1024px) {
  .news__news .buttons-tabs {
    display: none;
  }
}

.news__label {
  position: absolute;
  width: 167px;
  font-size: 2rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.25rem;
}

.news__label::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #2b2b2b;
  margin-bottom: 21px;
}

.news__wrapper {
  position: relative;
}

.news__heading {
  position: relative;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .news__heading {
    line-height: 1.25;
    display: inline-block;
    text-align: left;
  }
}

.news__heading--line {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .news__heading--line {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .news__heading--line {
    padding-top: 17px;
  }
}

@media (min-width: 1280px) {
  .news__heading--line {
    padding-top: 7px;
  }
}

.news__heading--line:before {
  display: block;
  position: absolute;
  content: "";
  top: -3px;
  width: 100%;
  height: 3px;
  background-color: #c8c8d3;
}

@media (min-width: 768px) {
  .news__heading--line:before {
    width: 166px;
    top: -14px;
  }
}

@media (min-width: 1024px) {
  .news__heading--line:before {
    top: -7px;
  }
}

@media (min-width: 1280px) {
  .news__heading--line:before {
    top: -4px;
  }
}

.news__heading--big {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 2;
}

.news__heading--big.news__heading--line::before {
  top: 4px;
}

.news__twitter {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 13px;
  height: 11px;
  background-image: url(images/icons/twitter.svg);
  display: inline-block;
  margin-left: 9px;
}

.news .container-fluid--np {
  padding-right: 0 !important;
}

@media (min-width: 1280px) {
  .news > .container:first-of-type {
    padding-top: 26px;
  }
}

.news .transmission-header__parent {
  margin-bottom: 30px;
}

.news-special {
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .news-special {
    margin-bottom: -26px;
  }
}

@media (min-width: 1024px) {
  .transmission-section--news .news-video__miniatures .news-video-large__frame {
    height: 300px !important;
  }
}

@media (min-width: 1280px) {
  .transmission-section--news .news-video__miniatures .news-video-large__frame {
    height: 327px !important;
  }
  .transmission-section--news .col-md-10 {
    width: 80%;
  }
}

@media (min-width: 1921px) {
  .transmission-section--news .news-video__miniatures .news-video-large__frame {
    height: 426px !important;
  }
}

.transmission-header {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
  min-height: 200px;
  background-color: #161616;
  position: relative;
  z-index: 2;
}

.transmission-header::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 200px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#161616), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #161616, rgba(22, 22, 22, 0));
}

.transmission-header::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 200px;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#161616), color-stop(5%, rgba(22, 22, 22, 0)), color-stop(95%, rgba(22, 22, 22, 0)), to(#161616));
  background-image: linear-gradient(to right, #161616 0%, rgba(22, 22, 22, 0) 5%, rgba(22, 22, 22, 0) 95%, #161616 100%);
}

.transmission-header.video {
  padding-bottom: 35px;
  margin-bottom: 25px;
}

.transmission-header.without-image::before {
  display: none;
}

.transmission-header.without-image:not(.news-transmission) {
  background-color: #f5f5f5;
  padding-bottom: 0;
  margin-bottom: 35px;
}

.transmission-header.without-image:not(.news-transmission)::after {
  display: none;
}

.transmission-header.without-image:not(.news-transmission) .team__name, .transmission-header.without-image:not(.news-transmission) .team__timeline {
  color: #2b2b2b;
}

.transmission-header.without-image:not(.news-transmission) .match-details,
.transmission-header.without-image:not(.news-transmission) .news-heading__tag,
.transmission-header.without-image:not(.news-transmission) .news-heading__tag a,
.transmission-header.without-image:not(.news-transmission) .news-heading__title {
  color: #2b2b2b;
}

.transmission-header.without-image:not(.news-transmission) .button-expand {
  color: #2b2b2b;
}

.transmission-header.without-image:not(.news-transmission) .button-expand__wrapper {
  display: block;
}

.transmission-header.without-image:not(.news-transmission) .transmission-tablescore__table .tr--featured {
  background-color: #f1f1f1;
}

.transmission-header.without-image:not(.news-transmission) .transmission-tablescore__table .tr .td {
  color: #2b2b2b;
}

.transmission-header.without-image .team--squads.team--squads-sportid-5 .timeline__incident .info__icon--assist-white {
  background: transparent url("images/icons/kij_hokej_black.svg") no-repeat center center;
}

.transmission-header.without-image .team--squads.team--squads-sportid-5 .timeline__incident .info__icon--goal {
  background: transparent url("images/icons/krazek_hokej_black.svg") no-repeat center center;
}

.transmission-header.with-tabs {
  padding-bottom: 70px;
}

.transmission-header--default {
  padding-top: 30px;
}

.transmission-header--default.news + .container .news-image {
  padding-top: 20px;
}

.transmission-header.news + .container .news-heading {
  padding-top: 20px;
}

.transmission-header > .container {
  position: relative;
  z-index: 2;
}

.transmission-header .button-expand {
  color: #fff;
}

.transmission-header .news-heading__tag,
.transmission-header .news-heading__tag a, .transmission-header .news-heading__title {
  color: #fff;
}

.transmission-header .news-heading__title {
  margin-bottom: 10px;
  position: relative;
  left: -2px;
}

.transmission-header .transmission-tablescore {
  max-width: 750px;
  margin: 20px auto 0;
}

.transmission-header .transmission-tablescore__table .tr--featured {
  background-color: #252525;
}

.transmission-header .transmission-tablescore__table .tr .td {
  color: #fff;
}

.transmission-header .transmission-tablescore__table .tr .td:nth-child(2) {
  text-align: left;
}

.transmission-header .transmission-tablescore__table .tr .td a {
  color: inherit;
}

.transmission-header .transmission-tablescore__table .tr .td a:hover {
  color: #f05a22;
}

.transmission-header .transmission-tablescore__table .tr .th:nth-child(2) {
  text-align: left;
}

.transmission-header .transmission-tablescore__table.qualifying .tr .td:nth-child(3),
.transmission-header .transmission-tablescore__table.qualifying .tr .th:nth-child(3) {
  -webkit-box-flex: 0.24;
      -ms-flex: 0.24;
          flex: 0.24;
}

.transmission-header--h2h .team.loser .team__name {
  text-decoration: line-through;
  font-weight: normal;
}

.transmission-header.news {
  margin-bottom: 0;
}

.team {
  padding-top: 20px;
}

.team > .flex-row {
  margin-bottom: 20px;
}

.team--first {
  padding-top: 33px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.team--right {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.team--right .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 480px) {
  .team--right .flex-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.team--right .team__logo {
  background-position: center;
}

@media (min-width: 480px) {
  .team--right .team__logo {
    background-position: right center;
    margin-left: 18px;
  }
}

.team--right .timeline__item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 768px) {
  .team--right .timeline__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .team--right .timeline__player {
    margin-right: 5px;
  }
}

@media (min-width: 1280px) {
  .team--right .team__timeline {
    padding-left: 0;
    padding-right: 71px;
  }
}

.team--right .timeline__icon {
  margin-left: 5px;
  margin-right: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.team--right .timeline__icon.info__icon {
  margin-left: 5px;
  margin-right: 0;
}

.team--left .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 480px) {
  .team--left .flex-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.team--squads .info__icon {
  width: 11px;
  height: 16px;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  top: 1px;
  margin: 0 7px 0 0;
}

.team--squads .info__icon--substitution-out, .team--squads .info__icon--substitution-in {
  min-width: 11px;
  top: 4px;
}

.team--squads .info__icon--assist-white {
  min-width: 12px;
  height: 14px;
  top: 4px;
}

.team--squads .info__icon--second-yellow-card {
  vertical-align: -1px;
}

.team--squads .info__icon--basket {
  width: 18px;
  height: 17px;
  margin-right: 1px;
}

.team--squads.team--squads-sportid-5 .timeline__incident .info__icon--assist-white {
  background: transparent url("images/icons/kij_hokej_white.svg") no-repeat center center;
  min-width: 23px;
  height: 23px;
  margin-top: -9px;
}

.team--squads.team--squads-sportid-5 .timeline__incident .info__icon--goal {
  background: transparent url("images/icons/krazek_hokej_white.svg") no-repeat center center;
  min-width: 20px;
}

.team--squads.team--squads-sportid-20 .timeline__incident .info__icon--goal, .team--squads.team--squads-sportid-23 .timeline__incident .info__icon--goal {
  margin-right: 0;
}

.team__logo {
  width: 50px;
  height: 50px;
  min-width: 20px;
  margin: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 480px) {
  .team__logo {
    background-position: left center;
    width: 33px;
    height: 33px;
    min-width: 33px;
    margin-right: 18px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33px;
            flex: 0 0 33px;
  }
}

@media (min-width: 768px) {
  .team__logo {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
            flex: 0 0 50px;
  }
}

.team__name {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  line-height: 1rem;
}

@media (min-width: 480px) {
  .team__name {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

@media (min-width: 768px) {
  .team__name {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

@media (min-width: 1024px) {
  .team__name {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.team__timeline {
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1rem;
}

@media (min-width: 768px) {
  .team__timeline {
    line-height: 1.69rem;
  }
}

@media (min-width: 1280px) {
  .team__timeline {
    padding-left: 71px;
  }
}

.team__timeline .team__player a {
  color: inherit;
}

.team__timeline .team__player a:hover {
  color: #f05a22;
}

.team__timeline .team__player a[href=""] {
  pointer-events: none;
}

.timeline__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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 768px) {
  .timeline__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.timeline__item--inline {
  margin-bottom: 8px;
}

.timeline__item--inline .info__icon--penalty-shootout-scored {
  background-image: url("images/icons/penalty-in.svg");
}

.timeline__item--inline-block {
  display: inline-block;
  vertical-align: baseline;
}

.timeline__item a {
  color: inherit;
}

.timeline__item a:hover {
  color: #f05a22;
}

.timeline__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timeline__icon {
  margin-right: 5px;
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timeline__icon.info__icon {
  margin-left: 0;
}

.timeline__minutes {
  margin-right: 3px;
}

.timeline__incident .info__icon:not(:last-of-type) + br + .timeline__incident--player,
.timeline__incident .info__icon:not(:last-of-type) + br + .timeline__incident--player2 {
  position: relative;
  margin-right: 5px;
}

.timeline__incident .info__icon:not(:last-of-type) + br + .timeline__incident--player::after,
.timeline__incident .info__icon:not(:last-of-type) + br + .timeline__incident--player2::after {
  content: ' , ';
  position: absolute;
  right: -4px;
  top: 2px;
}

.team--squads .timeline__incident .info__icon--goal {
  width: 16px;
  min-width: 16px;
  height: 22px;
  position: relative;
  margin: 0 10px 0 0;
  vertical-align: middle;
  background: transparent url(images/icons/gol.svg) no-repeat;
}

.team--squads .timeline__incident .info__icon--goal:not(:last-of-type)::after {
  content: ' , ';
  position: absolute;
  right: -7px;
  top: 0;
  margin-right: 2px;
}

.info__icon.info__icon--assist-white:not(:last-of-type)::after {
  content: ' , ';
  position: absolute;
  right: -4px;
  top: -1px;
  margin-right: 2px;
}

.timeline__incident--player .info__icon.info__icon--substitution-in {
  margin: 0 1px 0 0;
}

.team--squads .timeline__incident .info__icon--substitution-in:not(:last-of-type)::after {
  top: 1px;
}

.team--squads.team--right .info__icon:last-of-type {
  margin: 0;
}

.team--squads .timeline__incident .info__icon--red-card,
.team--squads .timeline__incident .info__icon--yellow-card {
  vertical-align: -2px;
}

.icon-card {
  width: 10px;
  height: 13px;
}

.icon-card--red {
  background-color: #b30d08;
}

.icon-card--yellow {
  background-color: #f8c31c;
}

.match-details {
  text-align: center;
  color: #fff;
  padding-top: 24px;
}

.match__type {
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.08125rem;
}

@media (min-width: 480px) {
  .match__type {
    font-size: 0.8125rem;
    letter-spacing: 0.08125rem;
  }
}

.match__score {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media (min-width: 480px) {
  .match__score {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.75rem;
  }
}

.match__score--details {
  margin-bottom: 6px;
}

.match__time {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

@media (min-width: 768px) {
  .match__time {
    font-size: 1rem;
  }
}

.match__data {
  margin-bottom: 4px;
}

.match__data, .match__location {
  font-size: 0.8125rem;
}

.match__part, .match__part-score {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.expanding-scorelist .team__logo {
  display: none;
}

.expanding-penalty .timeline__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.expanding-penalty .team--right .timeline__item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.expanding-squads .team {
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .expanding-squads .team {
    padding-top: 60px;
  }
}

.expanding-squads .team__timeline {
  line-height: 1.25rem;
}

.expanding-squads .team__timeline.timeline--inline .team__player {
  display: inline-block;
}

.expanding-squads .team__timeline--title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.expanding-squads .team__timeline--title:not(:first-of-type) {
  margin-top: 20px;
}

.expanding-squads .timeline__incident {
  padding-left: 4px;
}

.dropdown-enter-active {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.dropdown-leave-active {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.dropdown-enter,
.dropdown-leave-to {
  opacity: 0;
}

.dropdown-enter-to,
.dropdown-leave {
  opacity: 1;
}

.transmission-title {
  color: #e8e8e8;
  background-color: #161616;
  padding: 34px 0 0;
}

.transmission-title__item {
  margin-bottom: 0;
  padding-top: 50px;
}

@media (min-width: 480px) {
  .transmission-title__item {
    margin-bottom: 30px;
  }
}

.transmission-title__tag {
  margin-bottom: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.transmission-title__tag a {
  margin-bottom: 10px;
  text-transform: uppercase;
  color: inherit;
}

.transmission-title__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.625rem;
  position: relative;
  left: -2px;
}

@media (min-width: 768px) {
  .transmission-title__title {
    font-size: 2.625rem;
    font-weight: 700;
    line-height: 1.19em;
  }
}

.transmission-navigation {
  position: absolute;
  bottom: -60px;
  left: 5px;
  left: 0;
  right: 0;
  overflow-x: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media (min-width: 768px) {
  .transmission-navigation {
    left: 0;
  }
}

@media (min-width: 1280px) {
  .transmission-navigation {
    left: 0;
  }
}

@media (min-width: 1280px) {
  .transmission-navigation {
    overflow-x: initial;
  }
}

.transmission-navigation__wrapper {
  position: relative;
}

.transmission-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.transmission-navigation li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 13px;
}

.transmission-navigation li::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-left: 17px;
  background-color: #9b9b9b;
}

.transmission-navigation li:last-child {
  padding-right: 30px;
}

.transmission-navigation li:last-child::after {
  display: none;
}

.transmission-navigation li a {
  display: inline-block;
  font-size: 1.125rem;
  color: #9b9b9b;
  font-weight: 700;
  position: relative;
}

@media (min-width: 480px) {
  .transmission-navigation li a {
    font-size: 1.3125rem;
    color: #9b9b9b;
    font-weight: 700;
  }
}

.transmission-navigation li a:hover {
  color: #fff;
  position: relative;
}

.transmission-navigation li a:hover::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #eaff00;
  margin-top: 2px;
}

.transmission-navigation li a::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: transparent;
  margin-top: 2px;
}

.transmission-navigation.overflowed .transmission-navigation__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.transmission-navigation__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 999;
  width: 25px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #2b2b2b;
  cursor: pointer;
}

.transmission-navigation__arrow:hover {
  background-color: #454545;
}

.transmission-navigation__arrow--prev {
  left: 0;
}

.transmission-navigation__arrow--next {
  right: 0;
}

.transmission-navigation__arrow i {
  max-width: 9px;
}

.transmission-player {
  background-color: #161616;
  padding: 10px 0;
}

@media (min-width: 480px) {
  .transmission-player {
    padding: 0 30px 30px;
  }
}

.transmission-player > .container {
  width: auto;
}

.transmission-player__content {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.transmission-player__content:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-image: linear-gradient(60deg, #17006e, #ff4500);
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}

.transmission-player__content.transmission-player__content--nooverlay::after {
  display: none;
}

.transmission-player__content .img-responsive {
  margin: 0 auto;
}

.transmission-player__content .img-placeholder {
  margin: 0 auto;
  width: auto !important;
}

.transmission-player__content .button-play {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("images/icons/triangle.svg");
  background-size: 15px;
  background-position: left 21px center;
  background-color: rgba(22, 22, 22, 0.5);
  border: 1px solid #5a5a5a;
  width: auto;
  height: auto;
  max-height: 52px;
  padding: 0.1rem 1.3125rem 0.1rem 3rem;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 2.9em;
}

@media (min-width: 480px) {
  .transmission-player__content .button-play {
    background-position: left 37px center;
    background-size: 22px;
    max-height: 72px;
    padding: 8px 53px 8px 73px;
    font-size: 2rem;
    line-height: 1.56em;
  }
}

.transmission-player__lead {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.31em;
}

@media (min-width: 480px) {
  .transmission-player__lead {
    font-size: 2rem;
  }
}

.transmission-player__lead .icon-clock {
  margin: 0 auto 20px;
  width: 49px;
  height: 66px;
  background-size: contain;
}

@media (min-width: 1024px) {
  .transmission-player__lead .icon-clock {
    width: 79px;
    height: 96px;
  }
}

.transmission-player .news-video {
  margin-top: 0;
}

.transmission-player .news-video-large__subtitle,
.transmission-player .news-video-large__subheading {
  color: #fff;
  font-weight: 600;
}

.transmission-player .news-image__description {
  color: #fff;
}

@media (min-width: 1280px) {
  .transmission-player .news-video-large__subheading {
    margin-top: -6px;
  }
  .transmission-player .news-video__gradient:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(238, 238, 238, 0)), to(#161616));
    background-image: linear-gradient(to bottom, rgba(238, 238, 238, 0), #161616);
  }
}

.icon-clock {
  width: 79px;
  height: 96px;
  display: block;
  background: transparent url("images/icons/icon-clock.svg") no-repeat center center;
}

.transmission-alternate {
  padding: 30px 0 0;
  margin-bottom: -10px;
  text-align: center;
}

.transmission-alternate__wrapper {
  max-width: 930px;
  margin: 0 auto;
  display: inline-block;
}

.transmission-alternate__label {
  font-size: 0.813rem;
  color: #f05a22;
  font-weight: 700;
  padding-left: 13px;
  margin-bottom: 11px;
  text-align: left;
}

.transmission-alternate__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.transmission-alternate__item {
  position: relative;
  margin: 0 13px 20px;
  max-width: 207px;
  height: 116px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("images/euro/transmission-extend.png");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  line-height: 1rem;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .transmission-alternate__item {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.375rem;
    border-radius: 0;
  }
}

.transmission-alternate__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(10, 70, 80, 0.8);
  -webkit-transition: background-color .35s ease;
  transition: background-color .35s ease;
}

.transmission-alternate__item:hover::before {
  background-color: rgba(10, 70, 80, 0.2);
}

.transmission-alternate__item:hover .transmission-item {
  opacity: 0.6;
}

.transmission-alternate__item .icon-transmission {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 30px;
}

@media (min-width: 768px) {
  .transmission-alternate__item .icon-transmission {
    margin-right: 13px;
    max-width: none;
  }
}

.transmission-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 76%;
  position: relative;
  z-index: 2;
  -webkit-transition: opacity .35s ease;
  transition: opacity .35s ease;
  text-align: center;
}

@media (min-width: 768px) {
  .transmission-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

.transmission-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
}

@media (min-width: 480px) {
  .transmission-video {
    overflow-x: initial;
    padding-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.transmission-video .video-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 0 15px;
}

.transmission-video .video-item .button-play {
  left: 19px;
  bottom: 55px;
  width: 48px;
  height: 48px;
}

.transmission-video .video-item--multi {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-bottom: 40px;
}

@media (min-width: 1280px) {
  .transmission-video .video-item--multi {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
  }
}

.transmission-video .video-item--multi .button-play {
  left: 10px;
  bottom: 13px;
  right: auto;
}

.transmission-video .video-item__image {
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.transmission-video .video-item__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.transmission-video .video-item__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.transmission-video .video-item__title {
  font-size: 1.25rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.3em;
}

.transmission-highlights__tabs {
  margin-bottom: 27px;
}

.highlights-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.highlights-tab__item {
  font-size: 0.813rem;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  height: 35px;
  padding: 7px 10px;
  margin-right: -1px;
  cursor: pointer;
  -webkit-transition: background-color 0.35s ease;
  transition: background-color 0.35s ease;
}

@media (min-width: 480px) {
  .highlights-tab__item {
    height: 47px;
    padding: 14px 25px;
  }
}

.highlights-tab__item:first-child {
  border-radius: 10px 0 0 10px;
}

.highlights-tab__item:last-child {
  border-radius: 0 10px 10px 0;
}

.highlights-tab__item:hover {
  background-color: #f2f2f2;
}

.highlights-tab__item.active {
  background-color: #f05a22;
  color: #fff;
}

@media (min-width: 1280px) {
  .screening__wrapper.active-yes .highlights-content .box-small {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 30.6%;
            flex: 0 1 30.6%;
  }
}

.highlights-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 22px 12px;
  background-color: #fff;
}

.highlights-content .box-small {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  position: relative;
  margin: 7px;
}

@media (min-width: 320px) {
  .highlights-content .box-small {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
}

@media (min-width: 1024px) {
  .highlights-content .box-small {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 29%;
            flex: 0 1 29%;
    margin: 10px;
  }
}

@media (min-width: 1280px) {
  .highlights-content .box-small {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 31%;
            flex: 0 1 31%;
  }
}

.highlights-content .box-small.euro .box-small__image::before {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 29px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .highlights-content .box-small.euro .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.highlights-content .box-small.euro .box-small__image::after {
  content: '';
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.highlights-content .box-small.euro .box-small__image .button-play {
  background-image: url(images/euro/play-euro.svg);
}

.highlights-content .box-small__image {
  position: relative;
}

.highlights-content .box-small__content {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.highlights-content .box-small__title {
  height: 85px;
  overflow: hidden;
  font-size: 1rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1024px) {
  .highlights-content .box-small__title {
    font-size: 1.3125rem;
  }
}

.highlights-content .box-small__image .button-play {
  background-image: url(images/icons/play_S-lime.svg);
  width: 24px;
  height: 24px;
  left: 10px;
  bottom: 12px;
}

.highlights-content .box-small__duration {
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  left: 40px;
  bottom: 11px;
}

.transmission-relation__body {
  position: relative;
}

@media (min-width: 480px) {
  .transmission-relation__body {
    margin-left: 65px;
    padding-left: 35px;
  }
}

.transmission-relation__body::before {
  content: '';
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(0deg, transparent 0, transparent 2px, #d9d9d9 3px, #d9d9d9 5px);
  background-repeat: repeat-y;
  background-position: left;
  background-size: 1px 5px;
}

@media (min-width: 480px) {
  .transmission-relation__body::before {
    display: block;
  }
}

.transmission-relation .button-more {
  margin: 20px auto 0;
}

.relation-item {
  position: relative;
  padding-bottom: 20px;
}

.relation-item:first-of-type .relation-item__time {
  color: #f05a22;
}

.relation-item:first-of-type .relation-item__time::after {
  border-color: #f05a22;
}

.relation-item--featured {
  font-size: 1.5rem;
  font-weight: 700;
}

.relation-item__time {
  font-size: 1rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 480px) {
  .relation-item__time {
    display: block;
    position: absolute;
    top: -5px;
    left: -102px;
    margin-bottom: 0;
    width: 48px;
  }
}

.relation-item__time::after {
  content: '';
  display: none;
  width: 10px;
  height: 10px;
  border: 2px solid #2b2b2b;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: -24px;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 0 0 3px #f5f5f5;
          box-shadow: 0 0 0 3px #f5f5f5;
}

@media (min-width: 480px) {
  .relation-item__time::after {
    display: block;
  }
}

.relation-item__text {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.57rem;
  position: relative;
  top: -5px;
}

@media (min-width: 480px) {
  .relation-item__text {
    font-size: 1.3125rem;
  }
}

.relation-item__text--media {
  margin: 15px 0;
}

.relation-item__text--media a {
  color: inherit;
}

.relation-item__text--citation {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.52;
}

.relation-item__text--citation .relation-citation {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: transparent url("images/icons/citation.svg") no-repeat left top 20px;
  padding: 20px 20px 20px 100px;
  margin-top: 40px;
}

.relation-item__text--citation .relation-citation__author {
  text-align: right;
  margin-top: 20px;
}

.relation-item__text iframe {
  max-width: 100%;
}

.relation-item__text .instagram-media {
  min-width: 0 !important;
  max-width: 100% !important;
}

.relation-item__caption {
  font-size: 15px;
}

.relation-item__news {
  padding: 20px;
}

.relation-item__title {
  margin-bottom: 10px;
  font-size: 1.375rem;
  font-weight: 700;
}

.relation-item__lead {
  font-size: 18px;
}

.relation-time__row {
  text-align: left;
}

@media (min-width: 480px) {
  .relation-time__row {
    text-align: right;
  }
}

.relation-time__row .info__icon {
  display: inline-block;
}

.relation-time__row .info__icon--substitution {
  width: 24px;
}

.squads-table {
  color: #000;
}

.squads-table__header {
  margin-bottom: 14px;
  text-align: center;
  padding: 20px 0;
  font-size: 1.3125rem;
  font-weight: 700;
}

.squads-table__header:not(:first-of-type) {
  margin-top: 31px;
}

.squads-table__row--trainers .table-row__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.squads-table .table-row__left .table-row__detail--logo {
  margin-right: 10px;
}

.squads-table .table-row__right .table-row__detail--logo {
  margin-left: 10px;
}

.gameplan {
  background-color: #f5f5f5;
  max-width: 750px;
  height: 846px;
  background: url("images/icons/boisko.svg"), linear-gradient(to bottom, #f0f0f0 0, #f0f0f0 80px, transparent 81px, transparent 160px);
  background-repeat: no-repeat, repeat-y;
  background-position: center center, center 50px;
  background-size: cover, 100% 160px;
}

@media (min-width: 768px) {
  .gameplan {
    background-size: 100%, 100% 160px;
    height: 868px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .gameplan {
    height: 846px;
  }
}

@media (min-width: 1280px) {
  .gameplan {
    height: 900px;
  }
}

.gameplan__label {
  height: 50px;
  background-color: #2b2b2b;
}

.gameplan__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin: 20px 0;
}

.gameplan__half {
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gameplan-label {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -48px;
}

@media (min-width: 768px) {
  .gameplan-label {
    margin-top: 0;
  }
}

.gameplan-label__logo {
  display: inline-block;
  vertical-align: middle;
  max-width: 50px;
  margin: 0 5px;
  padding: 5px;
}

.gameplan-label__logo .img-responsive {
  max-height: 40px;
  width: auto;
}

.gameplan-label__name {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  font-size: 1.3125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.9;
}

.gameplan-players__item {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent url("images/icons/player-away.svg") no-repeat center top;
  width: 150px;
  height: 45px;
  background-size: 26%;
}

@media (min-width: 768px) {
  .gameplan-players__item {
    background-size: auto;
  }
}

.gameplan-home .gameplan-players__item {
  background-image: url("images/icons/player-home.svg");
}

.gameplan-player__number {
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 0 5px;
}

@media (min-width: 768px) {
  .gameplan-player__number {
    font-size: 1rem;
    padding-bottom: 12px;
  }
}

.gameplan-player__name {
  text-align: center;
  font-size: 0.75rem;
  color: #000;
}

@media (min-width: 768px) {
  .gameplan-player__name {
    font-size: 0.875rem;
  }
}

.gameplan-player__name .info__icon {
  margin: 0 2px;
  vertical-align: middle;
  display: inline-block;
}

.gameplan-player__name a {
  color: inherit;
}

.gameplan-player__name a:hover {
  color: #f05a22;
}

.transmission-gameplan .gameplan-away .gameplan-label {
  margin-top: 0;
  margin-bottom: -48px;
}

@media (min-width: 768px) {
  .transmission-gameplan .gameplan-away .gameplan-label {
    margin-bottom: 0;
  }
}

.transmission-gameplan .popup-timeline-item.info__icon {
  margin: 0 5px;
}

.transmission-tablescore__table .thead .th {
  font-size: 1rem;
  color: #777777;
  font-weight: 700;
}

.transmission-tablescore__table .tr {
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.transmission-tablescore__table .tr--featured {
  background-color: #f1f1f1;
}

.transmission-tablescore__table .tr .td,
.transmission-tablescore__table .tr .th {
  padding: 13px 0;
  font-size: 0.875rem;
}

@media (min-width: 480px) {
  .transmission-tablescore__table .tr .td,
  .transmission-tablescore__table .tr .th {
    font-size: 1rem;
  }
}

.transmission-tablescore__table .tr .td:nth-child(1),
.transmission-tablescore__table .tr .th:nth-child(1) {
  -webkit-box-flex: 0.29;
      -ms-flex: 0.29;
          flex: 0.29;
}

.transmission-tablescore__table .tr .td:nth-child(2),
.transmission-tablescore__table .tr .th:nth-child(2) {
  -webkit-box-flex: 0.29;
      -ms-flex: 0.29;
          flex: 0.29;
}

.transmission-tablescore__table .tr .td:nth-child(3),
.transmission-tablescore__table .tr .th:nth-child(3) {
  -webkit-box-flex: 0.14;
      -ms-flex: 0.14;
          flex: 0.14;
}

.transmission-tablescore__table .tr .td:nth-child(4),
.transmission-tablescore__table .tr .th:nth-child(4) {
  -webkit-box-flex: 0.14;
      -ms-flex: 0.14;
          flex: 0.14;
}

.transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore__table .tr .th:nth-child(5) {
  -webkit-box-flex: 0.14;
      -ms-flex: 0.14;
          flex: 0.14;
}

.transmission-tablescore__table .tr .td:first-child,
.transmission-tablescore__table .tr .th:first-child {
  padding-left: 10px;
}

.transmission-tablescore__table .tr .td:nth-child(2),
.transmission-tablescore__table .tr .th:nth-child(2) {
  text-align: left;
}

.transmission-tablescore__table .tr .td:last-child,
.transmission-tablescore__table .tr .th:last-child {
  padding-right: 10px;
}

.transmission-tablescore__table .tr .td .flag {
  width: auto;
  margin: 0 auto 10px;
  max-width: 30px;
}

@media (min-width: 480px) {
  .transmission-tablescore__table .tr .td .flag {
    float: left;
    margin: 0;
    margin-right: 10px;
  }
}

.transmission-tablescore__table.kwalifikacje .tr .td:nth-child(3),
.transmission-tablescore__table.kwalifikacje .tr .th:nth-child(3) {
  -webkit-box-flex: 0.24;
      -ms-flex: 0.24;
          flex: 0.24;
}

.transmission-tablescore__table--skijump .tr .td .flag {
  width: 30px;
}

.transmission-tablescore__table--skijump .tr .td .flag .img-responsive {
  width: auto;
}

@media (max-width: 767px) {
  .transmission-tablescore__table--skijump .tr .th:nth-child(2),
  .transmission-tablescore__table--skijump .tr .td:nth-child(2) {
    -webkit-box-flex: 1 !important;
        -ms-flex: auto !important;
            flex: auto !important;
    width: 30%;
  }
  .transmission-tablescore__table--skijump .tr .th:nth-child(3), .transmission-tablescore__table--skijump .tr .th:nth-child(4),
  .transmission-tablescore__table--skijump .tr .td:nth-child(3),
  .transmission-tablescore__table--skijump .tr .td:nth-child(4) {
    -webkit-box-flex: 1 !important;
        -ms-flex: auto !important;
            flex: auto !important;
    width: 20%;
    text-align: center;
  }
  .transmission-tablescore__table--skijump .tr .th:last-child,
  .transmission-tablescore__table--skijump .tr .td:last-child {
    text-align: right;
  }
  .transmission-tablescore__table--skijump .tr .td .flag {
    margin: 0;
  }
  .transmission-tablescore__table--skijump .tr .td .country__name {
    display: none;
  }
}

@media (max-width: 767px) and (min-width: 768px) {
  .transmission-tablescore__table--skijump .tr .td .country__name {
    display: inline;
  }
}

.transmission-tablescore .formula-laps {
  text-align: center;
}

@media (max-width: 767px) {
  .transmission-tablescore .formula-laps {
    display: none;
  }
}

.transmission-tablescore .transmission-tablescore__table .tr .th:nth-child(4).no-laps,
.transmission-tablescore .transmission-tablescore__table .tr .td:nth-child(4).no-laps {
  -webkit-box-flex: 0.24;
      -ms-flex: 0.24;
          flex: 0.24;
}

.transmission-tablescore .th.formula-time {
  text-align: right;
  padding-right: 10px;
}

.transmission-tablescore .td.formula-time {
  text-align: right;
  padding-right: 5px;
}

.transmission-tablescore .th.formula-country,
.transmission-tablescore .td.formula-country {
  -webkit-box-flex: 0.23 !important;
      -ms-flex: 0.23 !important;
          flex: 0.23 !important;
}

@media (max-width: 767px) {
  .transmission-tablescore .th.formula-country,
  .transmission-tablescore .td.formula-country {
    display: none;
  }
}

.transmission-tablescore .th.formula-team,
.transmission-tablescore .td.formula-team {
  -webkit-box-flex: 0.26 !important;
      -ms-flex: 0.26 !important;
          flex: 0.26 !important;
}

.transmission-tablescore .flag__mobile {
  display: inline-block;
  width: 24px;
  height: 15px;
  margin: 0 5px;
}

@media (max-width: 767px) {
  .transmission-tablescore .transmission-tablescore__table .tr .td:first-child,
  .transmission-tablescore .transmission-tablescore__table .tr .th:first-child {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    padding-right: 5px;
  }
  .transmission-tablescore .transmission-tablescore__table .tr .td:nth-child(3),
  .transmission-tablescore .transmission-tablescore__table .tr .th:nth-child(3) {
    -webkit-box-flex: 30% !important;
        -ms-flex: 30% !important;
            flex: 30% !important;
  }
  .transmission-tablescore .transmission-tablescore__table .tr .td:last-child,
  .transmission-tablescore .transmission-tablescore__table .tr .th:last-child {
    -webkit-box-flex: 20%;
        -ms-flex: 20%;
            flex: 20%;
  }
  .transmission-tablescore .th {
    font-size: 0.6875rem !important;
  }
  .transmission-tablescore .td {
    font-size: 0.8125rem !important;
  }
  .transmission-tablescore .formula-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .transmission-tablescore .formula-mobile,
  .transmission-tablescore .flag__mobile {
    display: none;
  }
  .transmission-tablescore .formula-desktop {
    display: inline-block;
  }
}

.transmission-tablescore.speedway .transmission-tablescore__table .thead .th {
  font-size: 1rem;
  color: #777777;
  font-weight: 700;
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr {
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td,
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th {
  padding: 13px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  text-align: center;
  max-width: 8%;
}

@media (min-width: 480px) {
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td,
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th {
    font-size: 1rem;
  }
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(29),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(29) {
  max-width: calc(1 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(29),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(29) {
  max-width: calc(2 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(3 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(4 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(5 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(6 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(7 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(8 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
  max-width: calc(9 * 1%);
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:first-child,
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:first-child {
  padding-left: 10px;
  min-width: 30%;
  text-align: left;
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:last-child,
.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:last-child {
  padding-right: 10px;
}

@media (min-width: 768px) {
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(29),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(29) {
    max-width: calc(1 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(29),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(29) {
    max-width: calc(2 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(3 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(4 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(5 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(6 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(7 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(8 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(5),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(5) {
    max-width: calc(9 * 1%);
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:first-child,
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:first-child {
    padding-left: 10px;
    min-width: 30%;
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(2),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(2) {
    text-align: left;
    min-width: 25%;
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:last-child,
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:last-child {
    padding-right: 10px;
  }
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .td .flag {
  width: auto;
  margin: 0 auto 10px;
  max-width: 30px;
}

@media (min-width: 480px) {
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td .flag {
    float: left;
    margin: 0;
    margin-right: 10px;
  }
}

.transmission-tablescore.speedway .transmission-tablescore__table.kwalifikacje .tr .td:nth-child(3),
.transmission-tablescore.speedway .transmission-tablescore__table.kwalifikacje .tr .th:nth-child(3) {
  -webkit-box-flex: 0.24;
      -ms-flex: 0.24;
          flex: 0.24;
}

.transmission-tablescore.speedway .formula-laps {
  text-align: center;
}

@media (max-width: 767px) {
  .transmission-tablescore.speedway .formula-laps {
    display: block;
  }
}

.transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(4).no-laps,
.transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(4).no-laps {
  -webkit-box-flex: 0.24;
      -ms-flex: 0.24;
          flex: 0.24;
}

.transmission-tablescore.speedway .th.formula-time {
  text-align: right;
  padding-right: 10px;
}

.transmission-tablescore.speedway .td.formula-time {
  text-align: right;
  padding-right: 5px;
}

.transmission-tablescore.speedway .th.formula-country,
.transmission-tablescore.speedway .td.formula-country {
  -webkit-box-flex: 0.23 !important;
      -ms-flex: 0.23 !important;
          flex: 0.23 !important;
}

@media (max-width: 767px) {
  .transmission-tablescore.speedway .th.formula-country,
  .transmission-tablescore.speedway .td.formula-country {
    display: none;
  }
}

.transmission-tablescore.speedway .th.formula-team,
.transmission-tablescore.speedway .td.formula-team {
  -webkit-box-flex: 0.26 !important;
      -ms-flex: 0.26 !important;
          flex: 0.26 !important;
}

.transmission-tablescore.speedway .flag__mobile {
  display: inline-block;
  width: 24px;
  height: 15px;
  margin: 0 5px;
}

@media (max-width: 767px) {
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:first-child,
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:first-child {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    padding-right: 5px;
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:nth-child(3),
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:nth-child(3) {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
  }
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:last-child,
  .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:last-child {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    max-width: none;
    margin-left: auto;
  }
  .transmission-tablescore.speedway .th {
    font-size: 0.6875rem !important;
  }
  .transmission-tablescore.speedway .td {
    font-size: 0.8125rem !important;
  }
  .transmission-tablescore.speedway .formula-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .transmission-tablescore.speedway .formula-mobile,
  .transmission-tablescore.speedway .flag__mobile {
    display: none;
  }
  .transmission-tablescore.speedway .formula-desktop {
    display: inline-block;
  }
}

.transmission-tablescore .transmission-header .transmission-tablescore.no-laps-formula {
  max-width: 650px;
}

@media (max-width: 767px) {
  .transmission-tablescore .transmission-tablescore__table.transmission-tablescore__table--skijump .tr .th:nth-child(3),
  .transmission-tablescore .transmission-tablescore__table.transmission-tablescore__table--skijump .tr .td:nth-child(3) {
    -webkit-box-flex: 1 !important;
        -ms-flex: auto !important;
            flex: auto !important;
  }
}

.transmission-header .transmission-tablescore.no-laps-formula {
  max-width: 650px;
}

.transmission-prematch__header {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  background-color: #c8c8d3;
  height: 41px;
  padding: 10px;
}

.transmission-prematch__content {
  padding: 30px 0 27px;
  background-color: #fff;
}

.transmission-prematch__content.prematch-table {
  padding-top: 0;
}

.prematch-lastevents__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 13px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .prematch-lastevents__column {
    margin-bottom: 0;
  }
}

.prematch-lastevents__logo {
  max-width: 50px;
  min-height: 50px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.prematch-lastevents__teamname {
  text-align: center;
  margin-bottom: 9px;
}

.prematch-lastevents__label {
  margin-bottom: 6px;
}

.prematch-lastevents__value {
  font-size: 1.313;
  font-weight: 700;
}

.prematch-lastevents__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 269px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .prematch-lastevents__details {
    margin-top: auto;
  }
}

.prematch-lastevents__details .flex-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.prematch-lastevents__progressbar {
  max-width: 269px;
}

.prematch-lastevents .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .prematch-lastevents .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.prematch-condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .prematch-condition {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.prematch-condition__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.prematch-condition__column {
  padding: 0 18px;
  margin-bottom: 50px;
}

@media (min-width: 480px) {
  .prematch-condition__column {
    margin-bottom: 0;
    padding: 0 9px 0 9px;
  }
}

@media (min-width: 1024px) {
  .prematch-condition__column {
    padding: 0 18px;
  }
}

.prematch-condition__column--last {
  margin-bottom: 20px;
}

.prematch-condition__column--last .prematch-condition {
  margin-right: 0;
  margin-left: 10px;
}

.prematch-condition__column--last .prematch-condition__icons {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.prematch-condition__column--last .d-flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.prematch-condition__column--last .condition-icon {
  margin-right: 0;
  margin-left: 12px;
}

.prematch-condition__column .d-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.condition-event {
  min-width: 260px;
  max-width: 296px;
}

@media (min-width: 480px) {
  .condition-event {
    min-width: 210px;
  }
}

@media (min-width: 768px) {
  .condition-event {
    min-width: 296px;
  }
}

@media (min-width: 1024px) {
  .condition-event {
    min-width: 240px;
  }
}

@media (min-width: 1280px) {
  .condition-event {
    min-width: 296px;
  }
}

.condition-event__logo {
  max-width: 24px;
  margin-right: 8px;
  border-radius: 50%;
  overflow: hidden;
}

.condition-event__date {
  background-color: #ececf3;
  font-size: 0.688rem;
  font-weight: 600;
  height: 24px;
  padding: 4px;
}

.condition-event__participant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.813rem;
  padding: 4px 14px;
  -webkit-box-shadow: inset 0 0 1px 0 #e1e1e1;
          box-shadow: inset 0 0 1px 0 #e1e1e1;
  margin-top: -1px;
}

.condition-event__score {
  margin-left: auto;
  font-weight: 600;
}

.prematch-table__group {
  background-color: #e0e0eb;
  height: 24px;
  padding: 4px 10px;
  font-size: 0.688rem;
  color: #2b2b2b;
  font-weight: 600;
}

.prematch-table__header {
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  background-color: #d9d9d9;
  height: 26px;
  padding-top: 4px;
}

.prematch-table__header .prematch-table__row {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.prematch-table__header .prematch-table__col {
  color: #fff;
}

.prematch-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: inset 0 -1px 0 0 #e1e1e1;
          box-shadow: inset 0 -1px 0 0 #e1e1e1;
}

.prematch-table__body .prematch-table__row {
  padding: 10px 0;
}

.prematch-table__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.813rem;
  color: #2b2b2b;
}

.prematch-table__col:nth-child(1) {
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
}

.prematch-table__col:nth-child(2) {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
}

.prematch-table__col:nth-child(3) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.prematch-table__col:nth-child(4) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.prematch-table__col:nth-child(5) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.prematch-table__col:nth-child(6) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.prematch-table__col:nth-child(7) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.prematch-table__col:nth-child(8) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.prematch-table__col:nth-child(2) {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.prematch-table__col:last-child {
  font-weight: bold;
}

.prematch-table__col figure {
  width: 20px;
  border-radius: 50%;
  margin-right: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .prematch-table__col figure {
    width: 40px;
    height: 40px;
  }
}

.prematch-table__col a {
  color: inherit;
}

.prematch-table__col a:hover {
  color: #f05a22;
}

.prematch-table__logo img {
  width: auto;
  margin: 0 auto;
}

.stats-table__row.table-row {
  max-height: none;
}

.stats-table__row.table-row:first-child {
  padding-top: 70px;
}

@media (min-width: 480px) {
  .stats-table__row.table-row:first-child {
    padding-top: 0;
  }
}

.stats-table__ball-posession {
  font-size: 1rem;
  color: #000;
  font-weight: 900;
}

@media (min-width: 768px) {
  .stats-table__ball-posession {
    font-size: 2rem;
  }
}

.stats-table__team-name {
  font-size: 1.125rem;
  color: #000;
  font-weight: 700;
  width: 100%;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 768px) {
  .stats-table__team-name {
    font-size: 1.5rem;
    margin-top: 0;
  }
}

.stats-table__number {
  font-size: 1.3125rem;
  font-weight: 700;
}

.stats-table__stat-item {
  font-size: 1rem;
  color: #000;
  font-weight: 700;
}

.stats-table .table-row {
  position: relative;
}

.stats-table .table-row__item {
  max-height: none;
}

.stats-table .table-row__left .table-row__item {
  position: relative;
}

.stats-table .table-row__left .table-row__item::after {
  content: attr(data-stat-name);
  position: absolute;
  top: 17px;
  right: -50%;
  -webkit-transform: translateX(2%);
          transform: translateX(2%);
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.stats-table .table-row__left .table-row__item--possession {
  position: static;
}

.stats-table .table-row__left .table-row__item--possession::after {
  top: 26%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 100px;
}

@media (min-width: 768px) {
  .stats-table .table-row__left .table-row__item--possession::after {
    top: 34%;
  }
}

@media (min-width: 768px) {
  .stats-table .table-row__left .table-row__item--possession .stats-table__team-name {
    margin-left: 0;
  }
}

.stats-table .table-row__right .table-row__item--possession {
  margin-left: auto;
}

@media (min-width: 768px) {
  .stats-table .table-row__right .table-row__item--possession .stats-table__team-name {
    margin-right: 0;
  }
}

.rect-auto, .c100.p51 .slice, .c100.p52 .slice, .c100.p53 .slice, .c100.p54 .slice, .c100.p55 .slice, .c100.p56 .slice, .c100.p57 .slice, .c100.p58 .slice, .c100.p59 .slice, .c100.p60 .slice, .c100.p61 .slice, .c100.p62 .slice, .c100.p63 .slice, .c100.p64 .slice, .c100.p65 .slice, .c100.p66 .slice, .c100.p67 .slice, .c100.p68 .slice, .c100.p69 .slice, .c100.p70 .slice, .c100.p71 .slice, .c100.p72 .slice, .c100.p73 .slice, .c100.p74 .slice, .c100.p75 .slice, .c100.p76 .slice, .c100.p77 .slice, .c100.p78 .slice, .c100.p79 .slice, .c100.p80 .slice, .c100.p81 .slice, .c100.p82 .slice, .c100.p83 .slice, .c100.p84 .slice, .c100.p85 .slice, .c100.p86 .slice, .c100.p87 .slice, .c100.p88 .slice, .c100.p89 .slice, .c100.p90 .slice, .c100.p91 .slice, .c100.p92 .slice, .c100.p93 .slice, .c100.p94 .slice, .c100.p95 .slice, .c100.p96 .slice, .c100.p97 .slice, .c100.p98 .slice, .c100.p99 .slice, .c100.p100 .slice {
  clip: rect(auto, auto, auto, auto);
}

.pie, .c100 .bar, .c100.p51 .fill, .c100.p52 .fill, .c100.p53 .fill, .c100.p54 .fill, .c100.p55 .fill, .c100.p56 .fill, .c100.p57 .fill, .c100.p58 .fill, .c100.p59 .fill, .c100.p60 .fill, .c100.p61 .fill, .c100.p62 .fill, .c100.p63 .fill, .c100.p64 .fill, .c100.p65 .fill, .c100.p66 .fill, .c100.p67 .fill, .c100.p68 .fill, .c100.p69 .fill, .c100.p70 .fill, .c100.p71 .fill, .c100.p72 .fill, .c100.p73 .fill, .c100.p74 .fill, .c100.p75 .fill, .c100.p76 .fill, .c100.p77 .fill, .c100.p78 .fill, .c100.p79 .fill, .c100.p80 .fill, .c100.p81 .fill, .c100.p82 .fill, .c100.p83 .fill, .c100.p84 .fill, .c100.p85 .fill, .c100.p86 .fill, .c100.p87 .fill, .c100.p88 .fill, .c100.p89 .fill, .c100.p90 .fill, .c100.p91 .fill, .c100.p92 .fill, .c100.p93 .fill, .c100.p94 .fill, .c100.p95 .fill, .c100.p96 .fill, .c100.p97 .fill, .c100.p98 .fill, .c100.p99 .fill, .c100.p100 .fill {
  position: absolute;
  border: 0.07em solid #eaff00;
  width: 0.86em;
  height: 0.86em;
  clip: rect(0em, 0.5em, 1em, 0em);
  border-radius: 50%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.pie-fill, .c100.p51.bar:after, .c100.p51 .fill, .c100.p52.bar:after, .c100.p52 .fill, .c100.p53.bar:after, .c100.p53 .fill, .c100.p54.bar:after, .c100.p54 .fill, .c100.p55.bar:after, .c100.p55 .fill, .c100.p56.bar:after, .c100.p56 .fill, .c100.p57.bar:after, .c100.p57 .fill, .c100.p58.bar:after, .c100.p58 .fill, .c100.p59.bar:after, .c100.p59 .fill, .c100.p60.bar:after, .c100.p60 .fill, .c100.p61.bar:after, .c100.p61 .fill, .c100.p62.bar:after, .c100.p62 .fill, .c100.p63.bar:after, .c100.p63 .fill, .c100.p64.bar:after, .c100.p64 .fill, .c100.p65.bar:after, .c100.p65 .fill, .c100.p66.bar:after, .c100.p66 .fill, .c100.p67.bar:after, .c100.p67 .fill, .c100.p68.bar:after, .c100.p68 .fill, .c100.p69.bar:after, .c100.p69 .fill, .c100.p70.bar:after, .c100.p70 .fill, .c100.p71.bar:after, .c100.p71 .fill, .c100.p72.bar:after, .c100.p72 .fill, .c100.p73.bar:after, .c100.p73 .fill, .c100.p74.bar:after, .c100.p74 .fill, .c100.p75.bar:after, .c100.p75 .fill, .c100.p76.bar:after, .c100.p76 .fill, .c100.p77.bar:after, .c100.p77 .fill, .c100.p78.bar:after, .c100.p78 .fill, .c100.p79.bar:after, .c100.p79 .fill, .c100.p80.bar:after, .c100.p80 .fill, .c100.p81.bar:after, .c100.p81 .fill, .c100.p82.bar:after, .c100.p82 .fill, .c100.p83.bar:after, .c100.p83 .fill, .c100.p84.bar:after, .c100.p84 .fill, .c100.p85.bar:after, .c100.p85 .fill, .c100.p86.bar:after, .c100.p86 .fill, .c100.p87.bar:after, .c100.p87 .fill, .c100.p88.bar:after, .c100.p88 .fill, .c100.p89.bar:after, .c100.p89 .fill, .c100.p90.bar:after, .c100.p90 .fill, .c100.p91.bar:after, .c100.p91 .fill, .c100.p92.bar:after, .c100.p92 .fill, .c100.p93.bar:after, .c100.p93 .fill, .c100.p94.bar:after, .c100.p94 .fill, .c100.p95.bar:after, .c100.p95 .fill, .c100.p96.bar:after, .c100.p96 .fill, .c100.p97.bar:after, .c100.p97 .fill, .c100.p98.bar:after, .c100.p98 .fill, .c100.p99.bar:after, .c100.p99 .fill, .c100.p100.bar:after, .c100.p100 .fill {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c100 {
  position: relative;
  font-size: 120px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: transparent;
}

.c100 *,
.c100 *:before,
.c100 *:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.c100.center {
  float: none;
  margin: 0 auto;
}

.c100.big {
  font-size: 50px;
}

@media (min-width: 768px) {
  .c100.big {
    font-size: 100px;
  }
}

.c100 > span {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  width: 3.2em;
  line-height: 3.2em;
  font-size: 0.32em;
  color: #000;
  display: block;
  text-align: center;
  white-space: nowrap;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.c100 > span > small {
  font-size: 0.6563em;
}

.c100:after {
  position: absolute;
  top: 0.07em;
  left: 0.07em;
  display: block;
  content: " ";
  border-radius: 50%;
  background-color: transparent;
  width: 0.86em;
  height: 0.86em;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

.c100 .slice {
  position: absolute;
  width: 1em;
  height: 1em;
  clip: rect(0em, 1em, 1em, 0.5em);
}

.c100.p1 .bar {
  -webkit-transform: rotate(3.6deg);
  transform: rotate(3.6deg);
}

.c100.p2 .bar {
  -webkit-transform: rotate(7.2deg);
  transform: rotate(7.2deg);
}

.c100.p3 .bar {
  -webkit-transform: rotate(10.8deg);
  transform: rotate(10.8deg);
}

.c100.p4 .bar {
  -webkit-transform: rotate(14.4deg);
  transform: rotate(14.4deg);
}

.c100.p5 .bar {
  -webkit-transform: rotate(18deg);
  transform: rotate(18deg);
}

.c100.p6 .bar {
  -webkit-transform: rotate(21.6deg);
  transform: rotate(21.6deg);
}

.c100.p7 .bar {
  -webkit-transform: rotate(25.2deg);
  transform: rotate(25.2deg);
}

.c100.p8 .bar {
  -webkit-transform: rotate(28.8deg);
  transform: rotate(28.8deg);
}

.c100.p9 .bar {
  -webkit-transform: rotate(32.4deg);
  transform: rotate(32.4deg);
}

.c100.p10 .bar {
  -webkit-transform: rotate(36deg);
  transform: rotate(36deg);
}

.c100.p11 .bar {
  -webkit-transform: rotate(39.6deg);
  transform: rotate(39.6deg);
}

.c100.p12 .bar {
  -webkit-transform: rotate(43.2deg);
  transform: rotate(43.2deg);
}

.c100.p13 .bar {
  -webkit-transform: rotate(46.8deg);
  transform: rotate(46.8deg);
}

.c100.p14 .bar {
  -webkit-transform: rotate(50.4deg);
  transform: rotate(50.4deg);
}

.c100.p15 .bar {
  -webkit-transform: rotate(54deg);
  transform: rotate(54deg);
}

.c100.p16 .bar {
  -webkit-transform: rotate(57.6deg);
  transform: rotate(57.6deg);
}

.c100.p17 .bar {
  -webkit-transform: rotate(61.2deg);
  transform: rotate(61.2deg);
}

.c100.p18 .bar {
  -webkit-transform: rotate(64.8deg);
  transform: rotate(64.8deg);
}

.c100.p19 .bar {
  -webkit-transform: rotate(68.4deg);
  transform: rotate(68.4deg);
}

.c100.p20 .bar {
  -webkit-transform: rotate(72deg);
  transform: rotate(72deg);
}

.c100.p21 .bar {
  -webkit-transform: rotate(75.6deg);
  transform: rotate(75.6deg);
}

.c100.p22 .bar {
  -webkit-transform: rotate(79.2deg);
  transform: rotate(79.2deg);
}

.c100.p23 .bar {
  -webkit-transform: rotate(82.8deg);
  transform: rotate(82.8deg);
}

.c100.p24 .bar {
  -webkit-transform: rotate(86.4deg);
  transform: rotate(86.4deg);
}

.c100.p25 .bar {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c100.p26 .bar {
  -webkit-transform: rotate(93.6deg);
  transform: rotate(93.6deg);
}

.c100.p27 .bar {
  -webkit-transform: rotate(97.2deg);
  transform: rotate(97.2deg);
}

.c100.p28 .bar {
  -webkit-transform: rotate(100.8deg);
  transform: rotate(100.8deg);
}

.c100.p29 .bar {
  -webkit-transform: rotate(104.4deg);
  transform: rotate(104.4deg);
}

.c100.p30 .bar {
  -webkit-transform: rotate(108deg);
  transform: rotate(108deg);
}

.c100.p31 .bar {
  -webkit-transform: rotate(111.6deg);
  transform: rotate(111.6deg);
}

.c100.p32 .bar {
  -webkit-transform: rotate(115.2deg);
  transform: rotate(115.2deg);
}

.c100.p33 .bar {
  -webkit-transform: rotate(118.8deg);
  transform: rotate(118.8deg);
}

.c100.p34 .bar {
  -webkit-transform: rotate(122.4deg);
  transform: rotate(122.4deg);
}

.c100.p35 .bar {
  -webkit-transform: rotate(126deg);
  transform: rotate(126deg);
}

.c100.p36 .bar {
  -webkit-transform: rotate(129.6deg);
  transform: rotate(129.6deg);
}

.c100.p37 .bar {
  -webkit-transform: rotate(133.2deg);
  transform: rotate(133.2deg);
}

.c100.p38 .bar {
  -webkit-transform: rotate(136.8deg);
  transform: rotate(136.8deg);
}

.c100.p39 .bar {
  -webkit-transform: rotate(140.4deg);
  transform: rotate(140.4deg);
}

.c100.p40 .bar {
  -webkit-transform: rotate(144deg);
  transform: rotate(144deg);
}

.c100.p41 .bar {
  -webkit-transform: rotate(147.6deg);
  transform: rotate(147.6deg);
}

.c100.p42 .bar {
  -webkit-transform: rotate(151.2deg);
  transform: rotate(151.2deg);
}

.c100.p43 .bar {
  -webkit-transform: rotate(154.8deg);
  transform: rotate(154.8deg);
}

.c100.p44 .bar {
  -webkit-transform: rotate(158.4deg);
  transform: rotate(158.4deg);
}

.c100.p45 .bar {
  -webkit-transform: rotate(162deg);
  transform: rotate(162deg);
}

.c100.p46 .bar {
  -webkit-transform: rotate(165.6deg);
  transform: rotate(165.6deg);
}

.c100.p47 .bar {
  -webkit-transform: rotate(169.2deg);
  transform: rotate(169.2deg);
}

.c100.p48 .bar {
  -webkit-transform: rotate(172.8deg);
  transform: rotate(172.8deg);
}

.c100.p49 .bar {
  -webkit-transform: rotate(176.4deg);
  transform: rotate(176.4deg);
}

.c100.p50 .bar {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c100.p51 .bar {
  -webkit-transform: rotate(183.6deg);
  transform: rotate(183.6deg);
}

.c100.p52 .bar {
  -webkit-transform: rotate(187.2deg);
  transform: rotate(187.2deg);
}

.c100.p53 .bar {
  -webkit-transform: rotate(190.8deg);
  transform: rotate(190.8deg);
}

.c100.p54 .bar {
  -webkit-transform: rotate(194.4deg);
  transform: rotate(194.4deg);
}

.c100.p55 .bar {
  -webkit-transform: rotate(198deg);
  transform: rotate(198deg);
}

.c100.p56 .bar {
  -webkit-transform: rotate(201.6deg);
  transform: rotate(201.6deg);
}

.c100.p57 .bar {
  -webkit-transform: rotate(205.2deg);
  transform: rotate(205.2deg);
}

.c100.p58 .bar {
  -webkit-transform: rotate(208.8deg);
  transform: rotate(208.8deg);
}

.c100.p59 .bar {
  -webkit-transform: rotate(212.4deg);
  transform: rotate(212.4deg);
}

.c100.p60 .bar {
  -webkit-transform: rotate(216deg);
  transform: rotate(216deg);
}

.c100.p61 .bar {
  -webkit-transform: rotate(219.6deg);
  transform: rotate(219.6deg);
}

.c100.p62 .bar {
  -webkit-transform: rotate(223.2deg);
  transform: rotate(223.2deg);
}

.c100.p63 .bar {
  -webkit-transform: rotate(226.8deg);
  transform: rotate(226.8deg);
}

.c100.p64 .bar {
  -webkit-transform: rotate(230.4deg);
  transform: rotate(230.4deg);
}

.c100.p65 .bar {
  -webkit-transform: rotate(234deg);
  transform: rotate(234deg);
}

.c100.p66 .bar {
  -webkit-transform: rotate(237.6deg);
  transform: rotate(237.6deg);
}

.c100.p67 .bar {
  -webkit-transform: rotate(241.2deg);
  transform: rotate(241.2deg);
}

.c100.p68 .bar {
  -webkit-transform: rotate(244.8deg);
  transform: rotate(244.8deg);
}

.c100.p69 .bar {
  -webkit-transform: rotate(248.4deg);
  transform: rotate(248.4deg);
}

.c100.p70 .bar {
  -webkit-transform: rotate(252deg);
  transform: rotate(252deg);
}

.c100.p71 .bar {
  -webkit-transform: rotate(255.6deg);
  transform: rotate(255.6deg);
}

.c100.p72 .bar {
  -webkit-transform: rotate(259.2deg);
  transform: rotate(259.2deg);
}

.c100.p73 .bar {
  -webkit-transform: rotate(262.8deg);
  transform: rotate(262.8deg);
}

.c100.p74 .bar {
  -webkit-transform: rotate(266.4deg);
  transform: rotate(266.4deg);
}

.c100.p75 .bar {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.c100.p76 .bar {
  -webkit-transform: rotate(273.6deg);
  transform: rotate(273.6deg);
}

.c100.p77 .bar {
  -webkit-transform: rotate(277.2deg);
  transform: rotate(277.2deg);
}

.c100.p78 .bar {
  -webkit-transform: rotate(280.8deg);
  transform: rotate(280.8deg);
}

.c100.p79 .bar {
  -webkit-transform: rotate(284.4deg);
  transform: rotate(284.4deg);
}

.c100.p80 .bar {
  -webkit-transform: rotate(288deg);
  transform: rotate(288deg);
}

.c100.p81 .bar {
  -webkit-transform: rotate(291.6deg);
  transform: rotate(291.6deg);
}

.c100.p82 .bar {
  -webkit-transform: rotate(295.2deg);
  transform: rotate(295.2deg);
}

.c100.p83 .bar {
  -webkit-transform: rotate(298.8deg);
  transform: rotate(298.8deg);
}

.c100.p84 .bar {
  -webkit-transform: rotate(302.4deg);
  transform: rotate(302.4deg);
}

.c100.p85 .bar {
  -webkit-transform: rotate(306deg);
  transform: rotate(306deg);
}

.c100.p86 .bar {
  -webkit-transform: rotate(309.6deg);
  transform: rotate(309.6deg);
}

.c100.p87 .bar {
  -webkit-transform: rotate(313.2deg);
  transform: rotate(313.2deg);
}

.c100.p88 .bar {
  -webkit-transform: rotate(316.8deg);
  transform: rotate(316.8deg);
}

.c100.p89 .bar {
  -webkit-transform: rotate(320.4deg);
  transform: rotate(320.4deg);
}

.c100.p90 .bar {
  -webkit-transform: rotate(324deg);
  transform: rotate(324deg);
}

.c100.p91 .bar {
  -webkit-transform: rotate(327.6deg);
  transform: rotate(327.6deg);
}

.c100.p92 .bar {
  -webkit-transform: rotate(331.2deg);
  transform: rotate(331.2deg);
}

.c100.p93 .bar {
  -webkit-transform: rotate(334.8deg);
  transform: rotate(334.8deg);
}

.c100.p94 .bar {
  -webkit-transform: rotate(338.4deg);
  transform: rotate(338.4deg);
}

.c100.p95 .bar {
  -webkit-transform: rotate(342deg);
  transform: rotate(342deg);
}

.c100.p96 .bar {
  -webkit-transform: rotate(345.6deg);
  transform: rotate(345.6deg);
}

.c100.p97 .bar {
  -webkit-transform: rotate(349.2deg);
  transform: rotate(349.2deg);
}

.c100.p98 .bar {
  -webkit-transform: rotate(352.8deg);
  transform: rotate(352.8deg);
}

.c100.p99 .bar {
  -webkit-transform: rotate(356.4deg);
  transform: rotate(356.4deg);
}

.c100.p100 .bar {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.c100:hover {
  cursor: default;
}

.c100:hover:after {
  top: 0.04em;
  left: 0.04em;
  width: 0.92em;
  height: 0.92em;
}

.transmission-commentator {
  margin-bottom: 30px;
}

.transmission-commentator__header {
  margin: 15px 0 0;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.5;
}

.transmission-commentator__commentator {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.5;
}

.news__large--video .transmission-commentator__commentator {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 5px;
}

@media (min-width: 1024px) {
  .news__large--video .transmission-commentator {
    max-width: 945px;
    padding-left: 145px;
  }
}

@media (min-width: 1280px) {
  .news__large--video .transmission-commentator {
    position: relative;
    max-width: 945px;
    margin: 15px auto 0;
    padding-left: 0;
  }
  .news__large--video .transmission-commentator .container {
    padding-left: 0;
    margin-left: 10px;
  }
  .news__large--video .transmission-commentator__commentator {
    max-width: 800px;
  }
}

@media (min-width: 1921px) {
  .news__large--video .transmission-commentator {
    max-width: 772px;
  }
}

.transmission .container {
  max-width: 1440px;
  position: relative;
  z-index: 1;
}

.transmission + .news__container {
  width: auto;
  max-width: 1210px;
  padding-left: 210px;
}

.transmission + .news__container .news__wrapper {
  padding-left: 210px;
}

@media (min-width: 1280px) {
  .transmission + .news__container .news__wrapper {
    padding-left: 0;
  }
}

.transmission + .news__container .news__label {
  display: block;
  left: 24px;
}

.transmission .news__wrapper.news-signature {
  padding-left: 0;
  margin-left: 0;
}

.transmission-section {
  padding: 50px 0 30px;
  position: relative;
}

.transmission-section--relation .transmission-section__label::before {
  background-color: #f05a22;
}

.transmission-section--stats {
  overflow-x: hidden;
}

.transmission-section__anchor {
  position: absolute;
  top: -200px;
  width: 1px;
  height: 1px;
}

.transmission-section__label {
  margin: 0 auto 25px;
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.25rem;
}

@media (min-width: 480px) {
  .transmission-section__label {
    margin: 0 auto 50px;
  }
}

@media (min-width: 1024px) {
  .transmission-section__label {
    margin: 0 0 30px;
  }
}

.transmission-section__label::before {
  content: '';
  display: block;
  width: 103px;
  height: 3px;
  background-color: #2b2b2b;
  margin-bottom: 21px;
}

.transmission-section__label--pt {
  padding-top: 26px;
}

@media (min-width: 1280px) {
  .transmission-section__label--pt {
    padding-top: 0;
  }
}

.transmission-section__content {
  padding-left: 0;
  overflow-anchor: none;
}

.transmission-section__content.transmission-gameplan {
  padding: 50px 0;
}

@media (min-width: 1024px) {
  .transmission-section__content.transmission-gameplan {
    padding: 0;
  }
}

.transmission-section__content.transmission-gameplan .popup-timeline {
  background-color: #fff;
  padding-bottom: 5px;
}

.transmission-section__content.transmission-news {
  padding-left: 0;
}

.transmission-section__content.transmission-news .news-tags {
  padding: 19px 0 20px;
}

.transmission-section__content.transmission-video {
  margin: 0 -15px;
}

.transmission-section__content.transmission-squads, .transmission-section__content.transmission-stats {
  background-color: #fff;
  padding: 0 20px;
}

.screening__wrapper.active-yes #app .transmission-section__content.transmission-news .news-tags {
  padding: 19px 0 20px 19px;
}

.table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3px;
  position: relative;
}

.table-row__item {
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0 13px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 77px;
}

@media (min-width: 768px) {
  .table-row__item {
    min-height: 72px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.table-row__item:last-child {
  border-bottom: 0;
}

.table-row__item--possession {
  border-bottom: 0;
  max-width: 80%;
}

.table-row__left, .table-row__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
}

.table-row__both {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.table-row__both .table-row__item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-row__right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.table-row__right .table-row__item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.table-row__right .table-row__detail {
  text-align: right;
}

.table-row__right .table-row__name {
  text-align: right;
}

.table-row__right .table-row__info {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media (min-width: 768px) {
  .table-row__right .table-row__info {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.table-row__right .table-row__info .info {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 1024px) {
  .table-row__right .table-row__info .info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.table-row__right .c100 .bar,
.table-row__right .c100 .fill {
  border-color: #38324c;
}

.table-row__detail {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25px;
          flex: 0 1 25px;
}

@media (min-width: 480px) {
  .table-row__detail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33px;
            flex: 0 0 33px;
  }
}

.table-row__detail--logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-row__detail--logo img {
  max-height: 40px;
  width: auto;
}

.table-row__name {
  font-size: 1rem;
  line-height: 1.1em;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 80%;
          flex: 1 0 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .table-row__name {
    font-size: 1rem;
    line-height: 1.8em;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.table-row__name a {
  color: inherit;
}

.table-row__name a:hover {
  color: #f05a22;
}

.table-row__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 0.8125rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .table-row__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.table-row__info .info {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 480px) {
  .table-row__info .info {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .table-row__info .info {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.info__wrapper {
  text-align: center;
  display: block;
}

.info__icon {
  margin: 0 auto;
}

.info__time {
  margin: 0 auto;
}

.info__icon {
  width: 16px;
  min-width: 16px;
  height: 22px;
  position: relative;
  margin: 0 5px;
}

.info__icon--red-card, .info__icon--yellow-card-2 {
  background: transparent url("images/icons/red-card.svg") no-repeat center center;
}

.info__icon--yellow-card {
  background: transparent url("images/icons/yellow-card.svg") no-repeat center center;
}

.info__icon--second-yellow-card {
  background: transparent url("images/icons/second-yellow.svg") no-repeat center center;
}

.info__icon--penalty-kick {
  background: transparent url("images/icons/karny.svg") no-repeat center center;
}

.info__icon--injury {
  background: transparent url("images/icons/kontuzja.svg") no-repeat center center;
}

.info__icon--goal, .info__icon--penalty, .info__icon--regular-goal, .info__icon--extratime-goal, .info__icon--penalty-shootout-scored {
  background: transparent url("images/icons/gol.svg") no-repeat center center;
}

.info__icon--penalty-shootout-missed {
  background: transparent url("images/icons/penalty-out.svg") no-repeat center center;
}

.info__icon--substitution {
  background: transparent url("images/icons/zmiana.svg") no-repeat center center;
}

.info__icon--substitution-in, .info__icon--subst_in {
  background: transparent url("images/icons/pitch-in.svg") no-repeat center center;
}

.info__icon--substitution-out, .info__icon--subst_out {
  background: transparent url("images/icons/pitch-out.svg") no-repeat center center;
}

.info__icon--assist {
  background: transparent url("images/icons/asysta.svg") no-repeat center center;
}

.info__icon--assist-white {
  background: transparent url("images/icons/asysta-white.svg") no-repeat center center;
}

.info__icon--cancelled-goal, .info__icon--cancelled-penalty {
  background: transparent url("images/icons/goal-cancelled.svg") no-repeat center center;
}

.info__icon--basket {
  background: transparent url("images/icons/basket.svg") no-repeat center center;
  width: 18px;
  height: 17px;
  margin-right: 1px;
}

.overlay .transmission .container {
  position: initial;
}

.search-results__top {
  padding: 20px 0 30px;
  background-color: #fff;
}

.search-results__top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 23px;
}

.search-results__tag-title {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 2.5;
  position: relative;
}

.search-results__tag-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 200px;
  background: #2b2b2b;
}

@media (min-width: 768px) {
  .search-results__tag-title {
    font-size: 1.3125rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.9;
  }
}

.search-results__tag-name {
  font-size: 1.5rem;
  color: #38324c;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 4px solid #eaff00;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .search-results__tag-name {
    margin-bottom: 0;
    font-size: 2.625rem;
    font-weight: 700;
  }
}

.search-results__tag-empty {
  margin-top: 30px;
  padding-top: 30px;
  font-size: 1.5rem;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.search-results__found {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.search-results__found span {
  color: #e0e0eb;
}

.search-results__content {
  padding: 30px 0;
}

.search-results__content .news-latest__title {
  height: 100%;
  position: relative;
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .search-results__content .news-latest__title {
    font-size: 1.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.search-results__content .news-latest__category {
  display: block;
  padding-top: 18px;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-transform: uppercase;
  z-index: 100;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.search-results__content .news-latest__category em {
  font-style: normal;
  display: inline-block;
}

@media (max-width: 768px) {
  .search-results__content .news-latest__category {
    bottom: 0;
    font-size: 0.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
    padding-bottom: 5px;
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding-top: 0;
  }
}

.search-results__content .news-latest__wrapper {
  width: 100%;
}

.search-results__content .news-latest__wrapper:hover .news-latest__category {
  background-color: transparent;
}

.search-results__content .news-latest__image {
  position: relative;
}

@media (max-width: 768px) {
  .search-results__content .news-latest__image .button-play.medium {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
  }
}

.search-results__content .news-latest__content {
  height: 100%;
}

.search-results__sidebar-title {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.9;
}

.search-results__sidebar-list li a, .search-results__sidebar-list li span {
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 15px;
  display: block;
  position: relative;
}

.search-results__sidebar-list li a::before, .search-results__sidebar-list li span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9b9b9b;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search-results__sidebar-list li a:hover, .search-results__sidebar-list li span:hover {
  color: #2b2b2b;
  cursor: pointer;
}

.search-results__sidebar-list li a:hover::before, .search-results__sidebar-list li span:hover::before {
  background: #eaff00;
}

.search-results__sidebar-list li.active a, .search-results__sidebar-list li.active span {
  color: #2b2b2b;
}

.search-results__sidebar-list li.active a::before, .search-results__sidebar-list li.active span::before {
  background: #eaff00;
}

.search-results__sidebar-mobile {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  text-align: right;
  position: absolute;
  top: -85px;
  right: 15px;
}

.search-results__sidebar-mobile i {
  position: relative;
  top: 8px;
}

@media (min-width: 768px) {
  .search-results__sidebar-mobile {
    display: none;
  }
}

.search-results__sidebar-mobile:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .search-results__sidebar-content {
    display: none;
  }
}

.search-results__mfilters {
  width: 100%;
  height: 100%;
  background-color: #e8e8e8;
  position: fixed;
  z-index: 102;
  top: -100%;
  visibility: hidden;
  padding-top: 10px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.search-results__mfilters-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #38324c;
  font-weight: 900;
  margin-bottom: 20px;
}

.search-results__mfilters-list {
  text-align: center;
}

.search-results__mfilters-list li span {
  display: block;
  margin-bottom: 20px;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 400;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.search-results__mfilters-list li span:hover {
  font-weight: bold;
  cursor: pointer;
}

.search-results__mfilters-list li.active span {
  font-weight: bold;
  position: relative;
}

.search-results__mfilters-list li.active span i {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 23px;
  height: 20px;
  background-image: url(images/icons/search-active.svg);
  margin-left: 15px;
  margin-left: 15px;
  position: absolute;
}

.search-results__mfilters-close {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 26px;
  height: 26px;
  background-image: url(images/icons/x_orange.svg);
}

.search-results__mfilters-close:hover {
  cursor: pointer;
}

.search-results__mfilters.active {
  top: 0;
  visibility: visible;
}

.search-results__empty {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 50px 0 70px;
}

.epg-header__title {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 800;
}

@media (min-width: 768px) {
  .epg-header__title {
    margin-top: 20px;
    font-size: 3.375rem;
    color: #2b2b2b;
    font-weight: 800;
  }
}

.epg-slider {
  margin-bottom: 17px;
}

.epg-slider__item {
  position: relative;
}

.epg-slider__item:hover .epg-slider__image:after {
  opacity: .7;
}

.epg-slider__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.epg-slider__image {
  padding-bottom: 105%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.epg-slider__image::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(60deg, #00000017, #000000);
  opacity: .5;
}

.epg-slider__image:before {
  display: block;
  position: absolute;
  content: "";
  height: 120px;
  width: 100%;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
  z-index: 1;
}

@media (min-width: 768px) {
  .epg-slider__image:before {
    height: 120px;
  }
}

@media (min-width: 1280px) {
  .epg-slider__image:before {
    height: 200px;
  }
}

.epg-slider__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.epg-slider__content {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  padding: 0 20px;
  z-index: 1;
}

.epg-slider__label {
  margin-bottom: 13px;
}

.epg-slider__label .box-label {
  position: static;
  left: auto;
  top: auto;
  -webkit-transform: none;
          transform: none;
  font-size: 0;
  text-transform: uppercase;
  min-width: 100%;
  margin-left: 0;
  padding-left: 6px;
}

.epg-slider__label .box-label > span,
.epg-slider__label .box-label > time {
  font-size: 0.8125rem;
}

.epg-slider__label .box-label > span.label,
.epg-slider__label .box-label > time.label {
  color: #2b2b2b;
  background-color: #fff;
  font-weight: bold;
}

.epg-slider__label .box-label > span.label--now,
.epg-slider__label .box-label > time.label--now {
  color: #38324c;
  background-color: #eaff00;
}

.epg-slider__label .box-label > span.label--date,
.epg-slider__label .box-label > time.label--date {
  background-color: #c8c8d3;
}

.epg-slider__title {
  font-size: 1.3125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.625rem;
  margin-bottom: 21px;
}

@media (min-width: 768px) {
  .epg-slider__title {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.25em;
  }
}

.epg-slider__details {
  font-size: 0.9375rem;
  color: #eaff00;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .epg-slider__details {
    font-size: 1.3125rem;
    color: #eaff00;
    font-weight: 700;
    line-height: 0.95em;
  }
}

.epg-slider__details .button-play {
  width: 34px;
  height: 34px;
  margin-left: 10px;
  position: static;
}

.epg-slider__progress-time {
  width: 100%;
}

.epg-slider .VueCarousel-navigation-prev,
.epg-slider .VueCarousel-navigation-next {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  color: transparent !important;
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .epg-slider .VueCarousel-navigation-prev,
  .epg-slider .VueCarousel-navigation-next {
    display: block;
  }
}

.epg-slider .VueCarousel-navigation-prev::before,
.epg-slider .VueCarousel-navigation-next::before {
  content: '';
  display: block;
  width: 37px;
  height: 68px;
  position: absolute;
  top: 0;
}

.epg-slider .VueCarousel-navigation-prev::before {
  background: transparent url("images/icons/slide-arrow-left.svg") no-repeat center center;
  background-size: cover;
  left: 20px;
}

.epg-slider .VueCarousel-navigation-next::before {
  background: transparent url("images/icons/slide-arrow-right.svg") no-repeat center center;
  background-size: cover;
  right: 20px;
}

.epg-slider .VueCarousel-dot {
  margin-top: 1px !important;
}

.epg-calendar {
  margin-bottom: 18px;
}

.epg-calendar__wrapper {
  display: grid;
  grid-gap: 14px;
  grid-template-columns: 100%;
}

@media (min-width: 768px) {
  .epg-calendar__wrapper {
    grid-template-columns: 240px calc(100% - 270px);
  }
}

.epg-calendar__day {
  margin: 0 2px;
}

.epg-calendar__day-indicator {
  background-color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 20px;
  color: #2b2b2b;
  position: relative;
  border: 1px solid #d9d9d9;
  height: 46px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media (min-width: 768px) {
  .epg-calendar__day-indicator {
    margin-top: 40px;
    font-size: 1.313rem;
    height: 72px;
  }
}

.epg-calendar__day-indicator.active {
  background-color: #2b2b2b;
  color: #ffffff;
  cursor: default;
}

.epg-calendar__day-indicator.active:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #2b2b2b;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
  z-index: 1;
}

.epg-day {
  text-align: center;
  color: #262626;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 11px 0 17px;
  width: 74px;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  display: block;
  opacity: .5;
  pointer-events: none;
}

.epg-day:hover {
  border-color: silver;
}

.epg-day--weekend {
  background-color: #e8e8e8;
}

.epg-day--active {
  background-color: #2b2b2b;
  color: #fff;
  position: relative;
  cursor: default;
}

.epg-day--active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-color: #2b2b2b transparent transparent;
  border-width: 10px;
  border-style: solid;
}

.epg-day--available {
  opacity: 1;
  pointer-events: auto;
}

.epg-day__month {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  font-size: 1rem;
  color: #262626;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.epg-day__number {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.14em;
  margin-bottom: 5px;
}

.epg-day__name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.epg-calendar {
  padding-left: 36px;
  padding-right: 36px;
}

.epg-calendar .epg-day-slide .epg-day__month {
  opacity: 0;
}

.epg-calendar .epg-day-slide .epg-day--firstofmonth .epg-day__month {
  opacity: 1;
}

.epg-calendar .epg-day-slide ~ .VueCarousel-slide-active .epg-day__month {
  opacity: 1;
  background-color: #f5f5f5;
  padding: 0 10px;
  left: -10px;
}

.epg-calendar .VueCarousel-slide-active + .epg-day-slide .epg-day--firstofmonth .epg-day__month {
  opacity: 0;
}

.epg-calendar .VueCarousel-wrapper {
  padding-top: 40px;
}

.epg-calendar .VueCarousel-navigation-prev,
.epg-calendar .VueCarousel-navigation-next {
  -webkit-transform: translateY(-10%) !important;
          transform: translateY(-10%) !important;
  color: transparent !important;
  position: relative;
}

.epg-calendar .VueCarousel-navigation-prev::before,
.epg-calendar .VueCarousel-navigation-next::before {
  content: '';
  display: block;
  width: 18px;
  height: 36px;
  position: absolute;
  top: 0;
}

.epg-calendar .VueCarousel-navigation-prev::before {
  background: transparent url("images/icons/slide-euro-arrow-left.svg") no-repeat center center;
  background-size: cover;
  left: 2px;
}

.epg-calendar .VueCarousel-navigation-next::before {
  background: transparent url("images/icons/slide-euro-arrow-right.svg") no-repeat center center;
  background-size: cover;
  right: 2px;
}

.fixed-calendar .epg-section--calendar {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: top .3s ease;
  transition: top .3s ease;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.fixed-calendar .epg-section--slider {
  padding-bottom: 138px;
}

.fixed-calendar.scrolled .epg-section--calendar {
  top: 54px;
}

.epg-tabs {
  font-size: 0;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 18px;
  margin-top: 40px;
}

.epg-tabs__item, .epg-tabs__more-link {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 8px 14px 6px;
  margin-right: 3px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.epg-tabs__item:hover, .epg-tabs__more-link:hover {
  border-color: silver;
}

.epg-tabs__item--active {
  background-color: #2b2b2b;
  color: #fff;
  position: relative;
}

.epg-tabs__item--active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-color: #2b2b2b transparent transparent;
  border-width: 10px;
  border-style: solid;
}

.epg-tabs__more-link {
  background-color: transparent;
  position: relative;
  cursor: pointer;
  display: none;
}

.epg-tabs__more-link::after {
  content: '';
  display: inline-block;
  vertical-align: top;
  background: transparent url("images/icons/slide-arrow-right.svg") no-repeat center center;
  width: 13px;
  height: 13px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-size: cover;
  margin-left: 3px;
}

.epg-tabs__more-wrapper {
  position: absolute;
  top: 100%;
  right: -1px;
  z-index: 3;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  padding: 5px;
  margin-top: 3px;
  opacity: 0;
  z-index: -1;
}

.epg-tabs__more-wrapper.show-dropdown {
  opacity: 1;
  z-index: 1;
}

.epg-tabs__more-wrapper .epg-tabs__item {
  border: 0;
}

.epg-tabs__more-wrapper a {
  display: block;
  color: inherit;
  padding: 6px 10px;
}

.epg-listing__item {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
}

.epg-listing__item.active {
  background-color: #e8e8e8;
}

@media (min-width: 768px) {
  .epg-listing__item {
    margin-bottom: 8px;
  }
}

.epg-day-set__date {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 27px;
}

.epg-day-set__date::before {
  content: '';
  display: block;
  position: relative;
  width: 103px;
  height: 3px;
  background-color: #c8c8d3;
  top: -7px;
}

.epg-day-set__grid {
  display: grid;
  grid-gap: 14px;
  grid-template-columns: auto;
}

@media (min-width: 768px) {
  .epg-day-set__grid {
    grid-template-columns: 103px auto;
  }
}

.epg-item {
  display: contents;
  color: #2b2b2b;
}

.epg-item__hour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e7e7ed;
  font-size: 1.313rem;
  font-weight: 800;
  padding: 10px;
}

@media (min-width: 768px) {
  .epg-item__hour {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
  }
}

.epg-item__content {
  display: grid;
  position: relative;
  grid-template-columns: auto;
  grid-gap: 20px;
  padding: 14px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .epg-item__content {
    grid-template-columns: 216px auto;
  }
}

@media (min-width: 1024px) {
  .epg-item__content {
    grid-template-columns: 297px auto -webkit-min-content;
    grid-template-columns: 297px auto min-content;
  }
}

@media (min-width: 1463px) {
  .epg-item__content {
    grid-template-columns: 297px auto 352px;
  }
}

.epg-item__content > * {
  z-index: 10;
}

.epg-item__progress {
  max-width: 100%;
  position: absolute;
  height: calc(100% - 1px);
  background-color: rgba(209, 77, 24, 0.1);
  border-bottom: 1px solid red;
}

.epg-item__wrapper {
  overflow: hidden;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.epg-item__category {
  background-color: #d9d9d9;
  height: 17px;
  font-weight: 800;
  font-size: 0.481rem;
  letter-spacing: 1.1px;
  padding: 4px 8px 3px;
  margin-top: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.epg-item__category__holder {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (min-width: 1024px) {
  .epg-item__category {
    font-size: 0.688rem;
    height: 22px;
  }
}

.epg-item__category--live {
  background-color: #eaff00;
  color: #2b2b2b;
}

.epg-item__title {
  display: inline;
  font-weight: bold;
  font-size: 1rem;
  margin-left: 14px;
}

@media (min-width: 1024px) {
  .epg-item__title {
    font-size: 1.313rem;
  }
}

.epg-item__subtitle {
  font-size: 0.75rem;
  line-height: 1.38;
  padding: 10px 0;
}

@media (min-width: 1024px) {
  .epg-item__subtitle {
    font-size: 1rem;
  }
}

.epg-item__pegi {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}

.epg-item__pegi img {
  width: 17px;
}

.epg-item__pegi__el {
  width: 15px;
  font-size: 0.722rem;
  font-weight: 900;
  text-align: center;
}

.epg-item__cto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-column: span 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

@media (min-width: 768px) {
  .epg-item__cto {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-column: span 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1024px) {
  .epg-item__cto {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-column: span 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.epg-item__cto .cto-btn {
  width: 100%;
  height: 50px;
  display: grid;
  grid-template-columns: 40px 115px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #f05a22;
  font-size: 0.897rem;
  font-weight: 800;
  border: 0;
  margin: 5px 0;
  cursor: pointer;
}

@media (min-width: 768px) {
  .epg-item__cto .cto-btn {
    width: 216px;
  }
}

@media (min-width: 1024px) {
  .epg-item__cto .cto-btn {
    width: 200px;
  }
}

.epg-item__cto .cto-btn svg, .epg-item__cto .cto-btn circle {
  fill: #f05a22;
}

.epg-item__cto .cto-btn--link {
  width: 100%;
}

@media (min-width: 1024px) {
  .epg-item__cto .cto-btn--link {
    width: auto;
  }
}

.epg-item__cto .cto-btn--online {
  background-color: #eaff00;
  color: #38324c;
}

.epg-item__cto .cto-btn--online:hover {
  background-color: #38324c;
  color: #eaff00;
}

.epg-item__cto .cto-btn--online:hover svg {
  fill: #eaff00;
}

.epg-item__cto .cto-btn--online:hover svg g {
  fill: #eaff00;
}

.epg-item__cto .cto-btn--online svg {
  fill: #38324c;
}

.epg-item .cto-additional {
  min-width: 100%;
}

.epg-item .cto-additional__title {
  font-size: 0.813rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 7px 0 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .epg-item .cto-additional__title {
    padding: 0px 0 3px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .epg-item .cto-additional__title {
    text-align: center;
  }
}

.epg-item .cto-additional__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (min-width: 768px) {
  .epg-item .cto-additional__icons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (min-width: 1024px) {
  .epg-item .cto-additional__icons {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    max-width: 200px;
    margin: 0 auto;
  }
}

.epg-item .cto-additional__element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #2b2b2b;
  font-size: 0.563rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .epg-item .cto-additional__element {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .epg-item .cto-additional__element {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.epg-item .cto-additional__icon {
  height: 50px;
  min-width: 50px;
}

.epg-item .cto-additional__icon-main {
  background: transparent url(images/icons/transmission-main.svg) no-repeat center center;
}

.epg-item .cto-additional__icon-combined {
  background: transparent url(images/icons/transmission-combined.svg) no-repeat center center;
}

.epg-item .cto-additional__icon-180 {
  background: transparent url(images/icons/transmission-180.svg) no-repeat center center;
}

.epg-item .cto-additional__icon-stadium {
  background: transparent url(images/icons/transmission-stadium.svg) no-repeat center center;
}

.epg-item .cto-additional__icon-alt {
  background: transparent url(images/icons/broad-comment.svg) no-repeat center center;
}

.epg-item .cto-additional__name {
  text-align: center;
}

.epg-filter__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.epg-filter__label {
  font-size: 0.813rem;
  color: #2b2b2b;
  margin-bottom: 7px;
}

.epg-filter__tag {
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.epg-filter__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.epg-filter__dropdown, .epg-filter__button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 9px;
  border-radius: 10px;
  border: solid 1px #bcbcbc;
  font-size: 0.688rem;
  font-weight: 800;
  white-space: nowrap;
  background-color: #fff;
  cursor: pointer;
  height: 41px;
}

@media (min-width: 768px) {
  .epg-filter__dropdown, .epg-filter__button {
    padding: 0 21px;
    font-size: 0.813rem;
    height: 48px;
  }
}

.epg-filter__dropdown:hover, .epg-filter__button:hover {
  border: solid 1px #bcbcbc;
}

.epg-filter__dropdown.active, .epg-filter__button.active {
  color: #fff;
  background-color: #009cb4;
  border-color: #009cb4;
}

.epg-filter__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.epg-filter__group a button {
  border-radius: 0;
}

.epg-filter__group a:first-child button {
  border-radius: 10px 0 0 10px;
}

.epg-filter__group a:last-child button {
  border-radius: 0 10px 10px 0;
}

.epg-filter__dropdown {
  width: 140px;
}

.epg-filter__dropdown-label {
  width: 100%;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.epg-filter__dropdown-label::after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8f8f8f;
  top: calc(50% - 2.5px);
  right: 0;
  position: absolute;
}

@media (min-width: 768px) {
  .epg-filter__dropdown-label::after {
    right: -10px;
  }
}

.epg-filter__dropdown-menu {
  overflow: hidden;
  background-color: #fff;
  display: block;
  position: absolute;
  left: -1px;
  width: calc(100% + 2px);
  padding: 15px 0 0 0;
  border: solid 1px #bcbcbc;
  border-radius: 0 0 10px 10px;
  border-top: none;
  z-index: 100;
  margin-top: -10px;
}

.epg-filter__dropdown-option {
  padding: 10px 9px;
  font-size: 0.688rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .epg-filter__dropdown-option {
    padding: 15px 21px;
    font-size: 0.813rem;
  }
}

.epg-filter__dropdown-option.active {
  background-color: #009cb4;
  color: #fff;
}

@media (min-width: 768px) {
  .epg-filter__dropdown {
    min-width: 160px;
  }
}

.epg-filter__desktop {
  display: none;
}

@media (min-width: 768px) {
  .epg-filter__desktop {
    display: block;
  }
}

@media (min-width: 768px) {
  .epg-filter__mobile {
    display: none;
  }
}

.epg {
  padding-bottom: 100px;
}

.epg-section--filters {
  margin-top: 10px;
}

.epg-section--tabs {
  position: relative;
  z-index: 11;
}

.epg-section__label {
  font-size: 1.5625rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.25;
  display: inline-block;
  margin-bottom: 20px;
}

.epg-section__label::before {
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: 3px;
  background-color: #2b2b2b;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .epg-section__label {
    position: absolute;
    width: 167px;
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0;
  }
  .epg-section__label::before {
    width: 100%;
    margin-bottom: 21px;
  }
}

.epg-section__anchor {
  position: relative;
  top: -150px;
  width: 1px;
  height: 1px;
}

.epg-section__anchor:target + .epg-section__label::before {
  background-color: #f05a22;
}

.epg-section--disciplinefilters {
  position: relative;
  z-index: 11;
}

.epg-item__channel {
  padding: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.epg-channel {
  height: 18px;
  width: 50px;
  margin: 2px;
  background-size: contain !important;
}

.epg-channel.tvp1 {
  background: transparent url("images/logotype/tvp-1.svg") no-repeat center center;
}

.epg-channel.tvp2 {
  background: transparent url("images/logotype/tvp-2.svg") no-repeat center center;
}

.epg-channel.tvp4k {
  background: transparent url("images/logotype/tvp4k.svg") no-repeat center center;
  width: 77px;
}

.epg-channel.tvp-sport {
  background: transparent url("images/logotype/tvp-sport-new.svg") no-repeat center center;
  width: 55px;
}

.epg-channel.you-tube {
  background: transparent url("images/logotype/you-tube.svg") no-repeat center center;
  width: 83px;
}

.epg-channel.tvp-sport-pl {
  background: transparent url("images/logotype/tvp-sport-pl.png") no-repeat center center;
  width: 109px;
}

.euro .epg-calendar__day-indicator.active {
  background-color: #009cb4;
  color: #fff;
}

.euro .epg-calendar__day-indicator.active::after {
  background-color: #009cb4;
}

.euro .epg-day--active {
  background-color: #009cb4;
}

.euro .epg-day--active::after {
  border-color: #009cb4 transparent transparent;
}

.euro .epg-item__hour {
  background-color: #e7e7ed;
}

.euro .epg-item__hour-combined {
  color: #fff;
  background-color: #009cb4;
}

.euro .cto-btn {
  background-color: #fff;
  color: #009cb4;
  border: 1px solid #009cb4;
}

.euro .cto-btn svg, .euro .cto-btn circle {
  fill: #009cb4;
}

.euro .cto-btn--online {
  background-color: #009cb4;
  color: #fff;
}

.euro .cto-btn--online svg {
  fill: #fff;
}

.discipline-filters {
  position: relative;
  z-index: 1;
}

.discipline-filters__label {
  display: block;
  font-size: 13px;
  color: #262626;
  font-weight: 400;
  margin-bottom: 5px;
}

.discipline-filters .controls-options {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .discipline-filters .controls-options {
    max-width: 315px;
  }
}

.discipline-filters .controls-options .multiselect__tags {
  width: 100%;
}

.discipline-filters .controls-options .multiselect__placeholder {
  color: #262626;
  padding-left: 5px;
}

.programtv-header {
  padding: 30px;
}

.programtv-header__title {
  font-size: 2.625rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 0.95em;
  text-align: center;
}

.station-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 1px solid #d9d9d9;
  z-index: 0;
}

.station-item__info {
  padding: 17px;
  width: calc(100% - 70px);
}

.station-item__progressbar {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.station-item__progressbar span {
  background: rgba(0, 108, 255, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  border-bottom: 1px solid #d60707;
  z-index: 3;
}

.station-item__hour {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 70px;
}

.station-item__hour span {
  position: absolute;
  top: 21px;
}

.station-item__photo {
  position: relative;
  margin: 12px 0;
  height: 116px;
  width: 212px;
  z-index: 9;
  overflow: hidden;
}

.station-item__photo a {
  display: block;
}

.station-item__continues {
  position: absolute;
  background: #d0021b;
  display: inline-block;
  padding: 0px 8px;
  border-radius: 2px;
  top: 3px;
  left: 18px;
}

.station-item__type {
  display: block;
  margin-bottom: 4px;
}

.station-item__title {
  margin-bottom: 4px;
  width: 100%;
}

.station-item__content {
  position: relative;
  z-index: 9;
  visibility: visible;
}

.station-item .legend-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.station-item .legend-icons span {
  margin-right: 7px;
  width: 14px;
  height: 14px;
}

.station-item .legend-icons img {
  display: block;
}

@media (min-width: 1024px) {
  .station-item__info {
    padding: 0 17px;
    width: calc(100% - 78px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .station-item__photo {
    width: 203px;
    height: 114px;
    margin: 0;
  }
  .station-item__hour {
    width: 78px;
  }
  .station-item__box {
    padding: 10px;
    width: calc(100% - 203px);
    position: relative;
    height: 114px;
  }
  .station-item__content {
    max-height: 70px;
    min-height: 70px;
    overflow: hidden;
  }
  .station-item .legend-icons span {
    width: 15px;
    height: 15px;
  }
  .station-item__continues {
    left: unset;
  }
  .station-item__desc {
    display: -webkit-box;
    max-height: 2.8rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
  .station-item__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 1280px) {
  .station-item {
    -webkit-transition: background-color 0.3s ease ease-in-out;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .station-item:hover {
    background-color: rgba(234, 255, 0, 0.05);
  }
}

@media (min-width: 1280px) {
  .station-item {
    height: 182px;
  }
  .station-item__info {
    padding: 0 17px;
    width: calc(100% - 230px);
  }
  .station-item__hour {
    width: 230px;
  }
  .station-item__photo {
    width: 324px;
    height: 181px;
  }
  .station-item__box {
    width: calc(100% - 324px);
    padding: 10px 28px;
    height: 100%;
  }
  .station-item .legend-icons span {
    width: 17px;
    height: 17px;
  }
  .station-item__content {
    max-height: 133px;
    min-height: 133px;
  }
}

.station-item__box:hover,
.category-item__box:hover {
  text-decoration: none;
}

.station-item__title,
.category-item__title {
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.1;
}

.station-item__title a,
.category-item__title a {
  color: inherit;
}

.station-item__title a:hover,
.category-item__title a:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .station-item__title,
  .category-item__title {
    font-size: 1.125rem;
    color: #2b2b2b;
    font-weight: 600;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
}

@media (min-width: 1280px) {
  .station-item__title,
  .category-item__title {
    font-size: 1.5rem;
    color: #2b2b2b;
    font-weight: 600;
    -webkit-line-clamp: 2;
  }
}

.station-item__hour,
.category-item__hour {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .station-item__hour,
  .category-item__hour {
    font-size: 1.125rem;
    color: #2b2b2b;
    font-weight: 400;
    line-height: 1;
  }
}

@media (min-width: 1280px) {
  .station-item__hour,
  .category-item__hour {
    font-size: 1.5rem;
    color: #2b2b2b;
    font-weight: 400;
    line-height: 1;
  }
}

.station-item__desc,
.category-item__desc {
  font-size: 0.75rem;
  color: #2b2b2b;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .station-item__desc,
  .category-item__desc {
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}

@media (min-width: 1280px) {
  .station-item__desc,
  .category-item__desc {
    font-size: 1rem;
    color: #2b2b2b;
    font-weight: 400;
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }
}

.station-item__type,
.category-item__type {
  font-size: 0.625rem;
  color: #747474;
  font-weight: 400;
}

@media (min-width: 1280px) {
  .station-item__type,
  .category-item__type {
    font-size: 0.875rem;
    color: #747474;
    font-weight: 400;
  }
}

.station-item__continues,
.category-item__continues {
  font-size: 0.625rem;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.programtv {
  padding-bottom: 100px;
}

.programtv-section--header {
  background-color: #fff;
  padding-top: 16px;
}

.program-controls {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.program-controls .label {
  height: 15px;
  margin-bottom: 0.5em;
  text-transform: none;
  background-color: transparent;
  padding: 0 0 0 5px;
}

.program-controls__filters-wrap {
  display: none;
}

.program-controls__filters {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 0%;
      flex-basis: 0%;
}

.program-controls__filters-button {
  height: 37px;
  background: #fff;
  border-radius: 10px;
  border: solid 1px #d9d9d9;
  padding: 0 15px;
  margin: 0 3px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 90px;
}

.program-controls__filters-button:first-child {
  margin-left: 0;
}

.program-controls__filters-button:last-child {
  margin-right: 0;
}

.program-controls__filters-button--active {
  background: #38324c;
  color: #eaff00;
}

.program-controls .columns {
  position: relative;
  z-index: 100;
}

.program-controls__options {
  margin-top: 18px;
}

.program-controls__options.fixed-on {
  margin-top: 0;
}

@media (min-width: 768px) {
  .program-controls__options {
    padding-top: 0.75rem;
  }
  .program-controls__filters {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .program-controls__filters-button {
    border-radius: 0;
    border-left: 0;
    margin: 0;
    min-width: auto;
    width: calc(100% / 7);
  }
  .program-controls__filters-button:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-left: solid 1px #d9d9d9;
  }
  .program-controls__filters-button:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

@media (min-width: 1024px) {
  .program-controls {
    z-index: unset;
    position: static;
    min-height: 73px;
  }
  .program-controls__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .program-controls__filters-button {
    padding: 0 7px;
    width: auto;
  }
  .program-controls__wrap.fixed-on {
    position: fixed;
    top: 62px;
    left: 0;
    width: 100%;
    z-index: 112;
  }
}

@media (min-width: 1280px) {
  .program-controls__filters-button {
    width: auto;
    height: 47px;
    padding: 0 13px;
  }
}

@media (min-width: 1920px) {
  .program-controls__filters-wrap {
    display: block;
  }
  .program-controls__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .program-controls__wrap.fixed-on {
    top: 87px;
  }
}

.controls-options {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 100;
  width: 100%;
}

.controls-options__options {
  padding-top: 0;
  position: relative;
  z-index: 100;
}

.controls-options__box {
  position: relative;
}

.controls-options__box-date, .controls-options__box-mode {
  margin-left: 0;
  width: 48%;
  margin-right: 4%;
}

.controls-options__box-hour, .controls-options__box-filters {
  width: 48%;
}

.controls-options__box-region {
  width: 100%;
  margin-bottom: 15px;
}

.controls-options__box-date, .controls-options__box-hour {
  margin-bottom: 15px;
}

.controls-options__box--flex {
  display: block;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .controls-options__box--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
}

.controls-options .multiselect__single .option__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 110px;
}

.controls-options .multiselect__content-wrapper {
  min-width: 100%;
}

.controls-options .multiselect__element {
  position: relative;
}

.controls-options .multiselect__element .option__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.controls-options .multiselect__element .icon {
  margin-right: 5px;
  color: #2a2a2a;
  display: inline-block;
}

.controls-options .multiselect__element a {
  color: #2a2a2a;
  text-decoration: none;
}

.controls-options .multiselect__element:after {
  content: '';
  position: absolute;
  width: calc(100% - 24px);
  left: 12px;
  bottom: 0;
  border-bottom: 1px solid #d9d9d9;
}

.controls-options .multiselect .option__title {
  margin-right: 5px;
  font-weight: 700;
}

.controls-options .multiselect .option__title a {
  font-weight: normal;
}

.controls-options .multiselect .option__title a:hover {
  text-decoration: none;
}

.controls-options .multiselect__tags {
  height: 37px;
  min-height: 37px;
  width: 110px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 8px 30px 0 8px;
}

.controls-options .multiselect__option {
  color: unset;
  padding: 12px;
}

.controls-options .multiselect__option--selected {
  background: none;
}

.controls-options .multiselect__option--disabled {
  background: none;
}

.controls-options .multiselect__option--disabled .icon {
  display: none;
}

.controls-options .multiselect__option--highlight,
.controls-options .multiselect__option--selected.controls-options .multiselect__option--highlight {
  background: #d9d9d9;
}

.controls-options .multiselect__input:-ms-input-placeholder {
  color: #fff;
}

.controls-options .multiselect__input::-webkit-input-placeholder {
  color: #fff;
}

.controls-options .multiselect__input::-ms-input-placeholder {
  color: #fff;
}

.controls-options .multiselect__input::placeholder {
  color: #fff;
}

.controls-options .multiselect__content-wrapper {
  width: auto;
  padding-bottom: 10px;
  border-radius: 0;
}

.controls-options .multiselect .multiselect__option--highlight,
.controls-options .multiselect .multiselect__option--selected.multiselect__option--highlight {
  background: #d9d9d9;
}

.controls-options .multiselect--active .multiselect__tags {
  background: #38324c;
}

.controls-options .multiselect--active .multiselect__tags input {
  background: transparent;
  color: #fff;
}

.controls-options .multiselect--active .multiselect__select:before {
  border-color: #fff transparent transparent;
}

.controls-options .multiselect__tags {
  width: 145px;
}

@media (min-width: 768px) {
  .controls-options {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .controls-options__box {
    margin-right: 18px;
  }
  .controls-options__box:nth-child(1) {
    width: auto;
    margin-right: 8px;
    margin-bottom: 0;
  }
  .controls-options__box:nth-child(2), .controls-options__box:nth-child(3), .controls-options__box:nth-child(4) {
    width: auto;
    margin-bottom: 0;
  }
  .controls-options__box:nth-child(5) {
    width: auto;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1280px) {
  .controls-options .multiselect__tags {
    height: 47px;
    min-height: 47px;
    padding-top: 13px;
  }
  .controls-options .multiselect--active .multiselect__select {
    top: 7px;
  }
  .controls-options .multiselect__select:before {
    top: 78%;
  }
}

@media (min-width: 1920px) {
  .controls-options {
    margin-bottom: 0;
  }
  .controls-options__box-filters {
    display: none;
  }
}

.program-controls .label {
  font-size: 0.8125rem;
  color: #5b5b5b;
  font-weight: 600;
}

.program-controls__filters-button {
  font-size: 0.75rem;
  color: #2a2a2a;
  font-weight: 700;
}

.program-controls__filters-button:hover, .program-controls__filters-button:focus {
  text-decoration: none;
  outline: 0;
}

.program-controls__filters-button--active {
  background: #38324c;
  color: #eaff00;
}

.program-controls__filters-button--active:hover, .program-controls__filters-button--active:active, .program-controls__filters-button--active:focus, .program-controls__filters-button--active:link, .program-controls__filters-button--active:visited {
  color: #fff;
  text-decoration: none;
}

.multiselect__single,
.multiselect input {
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 600;
}

.multiselect--active input ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.multiselect--active input ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

.multiselect--active input :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

.multiselect--active input :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.multiselect .option__title {
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 600;
}

.multiselect .option__title--region {
  text-transform: uppercase;
}

.multiselect .option__small {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 600;
}

.multiselect__option--disabled .option__title {
  font-size: 1.0625rem;
  color: #2a2a2a;
  font-weight: 600;
}

.controls-options__box-date .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .controls-options__box-date .multiselect__tags {
    width: 158px;
  }
}

@media (min-width: 1280px) {
  .controls-options__box-date .multiselect__tags {
    width: 180px;
  }
}

.controls-options__box-filters .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .controls-options__box-filters .multiselect__tags {
    width: 140px;
  }
}

.controls-options__box-hour .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .controls-options__box-hour .multiselect__tags {
    width: 112px;
  }
}

.station-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 1px solid #bcbcbc;
  z-index: 0;
}

.station-item__info {
  padding: 17px;
  width: calc(100% - 70px);
}

.station-item__progressbar {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.station-item__progressbar span {
  background: rgba(0, 108, 255, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  border-bottom: 1px solid #d60707;
  z-index: 3;
}

.station-item__hour {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 70px;
}

.station-item__hour span {
  position: absolute;
  top: 21px;
}

.station-item__photo {
  position: relative;
  margin: 12px 0;
  height: 116px;
  width: 212px;
  z-index: 9;
  overflow: hidden;
}

.station-item__photo a {
  display: block;
}

.station-item__continues {
  position: absolute;
  background: #d0021b;
  display: inline-block;
  padding: 0px 8px;
  border-radius: 2px;
  top: 3px;
  left: 18px;
}

.station-item__type {
  display: block;
  margin-bottom: 4px;
}

.station-item__title {
  margin-bottom: 4px;
  width: 100%;
}

.station-item__content {
  position: relative;
  z-index: 9;
  visibility: visible;
}

.station-item .legend-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.station-item .legend-icons span {
  margin-right: 7px;
  width: 14px;
  height: 14px;
}

.station-item .legend-icons img {
  display: block;
}

@media (min-width: 768px) {
  .station-item__info {
    padding: 0 17px;
    width: calc(100% - 78px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .station-item__photo {
    width: 203px;
    height: 114px;
    margin: 0;
  }
  .station-item__hour {
    width: 78px;
  }
  .station-item__box {
    padding: 10px;
    width: calc(100% - 203px);
    position: relative;
    height: 114px;
  }
  .station-item__content {
    max-height: 70px;
    min-height: 70px;
    overflow: hidden;
  }
  .station-item .legend-icons span {
    width: 15px;
    height: 15px;
  }
  .station-item__continues {
    left: unset;
  }
  .station-item__desc {
    display: -webkit-box;
    max-height: 2.8rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
  .station-item__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
  }
}

@media (min-width: 1024px) {
  .station-item {
    -webkit-transition: background-color 0.3s ease ease-in-out;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .station-item:hover {
    background-color: rgba(242, 233, 204, 0.8);
  }
}

@media (min-width: 1280px) {
  .station-item {
    height: 182px;
  }
  .station-item__info {
    padding: 0 17px;
    width: calc(100% - 230px);
  }
  .station-item__hour {
    width: 230px;
  }
  .station-item__photo {
    width: 324px;
    height: 181px;
  }
  .station-item__box {
    width: calc(100% - 324px);
    padding: 10px 28px;
    height: 100%;
  }
  .station-item .legend-icons span {
    width: 17px;
    height: 17px;
  }
  .station-item__content {
    max-height: 133px;
    min-height: 133px;
  }
}

@media (min-width: 1920px) {
  .station-item__hour {
    position: relative;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .station-item__hour span {
    position: absolute;
    right: 18px;
    top: 23px;
  }
  .station-item__continues {
    left: 240px;
    top: 9px;
    z-index: 10;
  }
}

.detail-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.detail-top__station {
  width: 60px;
  height: 38px;
  margin-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.detail-top__station img {
  max-width: 90%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.detail-top__title-box {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail-top__additional {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 11px;
}

.detail-top__short {
  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;
}

.detail-top__line {
  margin: 0 10px;
  color: #9b9b9b;
}

@media (min-width: 768px) {
  .detail-top__additional {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .detail-top__station {
    width: 162px;
    height: 108px;
  }
  .detail-top__station img {
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .detail-top__station {
    width: 171px;
  }
}

@media (min-width: 1920px) {
  .detail-top__station {
    width: 207px;
    margin-right: 21px;
  }
}

.detail-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 81px;
  margin-bottom: 20px;
}

.detail-nav__info {
  display: none;
  -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;
  width: calc(100% - 25px);
}

.detail-nav__info--right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.detail-nav__name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 90%;
}

.detail-nav__btn {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.detail-nav__before {
  background: #e6e6e6;
  height: inherit;
  width: 22px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.detail-nav__date {
  background: #e6e6e6;
  height: inherit;
  margin: 0 5px;
  width: calc(100% - 44px);
  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;
}

.detail-nav__after {
  background: #e6e6e6;
  height: inherit;
  width: 22px;
  padding: 5px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  position: relative;
}

.detail-nav__link {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .detail-nav__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .detail-nav__before, .detail-nav__after {
    width: 162px;
  }
  .detail-nav__date {
    width: calc(100% - 324px);
  }
  .detail-nav__btn {
    width: 30px;
  }
}

@media (min-width: 1920px) {
  .detail-nav {
    height: 93px;
  }
  .detail-nav__before, .detail-nav__after {
    width: 209px;
  }
  .detail-nav__date {
    width: calc(100% - 428px);
  }
  .detail-nav__btn {
    width: 36px;
  }
  .detail-nav__btn a {
    height: 20px;
    width: 11px;
  }
}

.detail-content__photo, .detail-content__videos-player {
  border-bottom: 1px solid #b7b7b7;
  margin-bottom: 25px;
}

.detail-content__caption {
  margin-bottom: 11px;
}

.detail-content__desc {
  padding-bottom: 28px;
}

.detail-content__connected {
  margin-bottom: 30px;
}

.detail-content__staff {
  margin: 40px 0;
}

.detail-content__staff:last-of-type {
  margin-bottom: 10px;
}

.detail-content__staff-content {
  background: #fff;
  padding: 10px 20px 10px 40px;
  position: relative;
}

.detail-content__staff-content:before {
  content: '';
  background: #d8d8d8;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.program-detail {
  padding-top: 15px;
}

.program-detail__breadcrumbs {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.program-detail .detail-top__title {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 768px) {
  .program-detail .detail-top__title {
    font-size: 2.375rem;
    color: #2b2b2b;
    font-weight: 600;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .program-detail .detail-top__title {
    font-size: 2.5rem;
    color: #2b2b2b;
    font-weight: 600;
    line-height: 1.1;
  }
}

@media (min-width: 1920px) {
  .program-detail .detail-top__title {
    font-size: 2.625rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1;
  }
}

.program-detail .detail-top__additional-item {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .program-detail .detail-top__additional-item {
    font-size: 0.6875rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.4;
  }
}

@media (min-width: 1920px) {
  .program-detail .detail-top__additional-item {
    font-size: 0.6875rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.6;
  }
}

.program-detail .detail-nav__time {
  font-size: 0.6875rem;
  color: #8e8e93;
  font-weight: 400;
  line-height: 1.26;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.program-detail .detail-nav__hour {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
}

.program-detail .detail-nav__date-string {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.program-detail .detail-nav__name {
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.41;
}

.program-detail .detail-nav__cat {
  font-size: 0.6875rem;
  color: #a0a0a0;
  font-weight: 400;
  line-height: 1.6;
  overflow: hidden;
  white-space: nowrap;
  display: inline;
  text-overflow: ellipsis;
}

.program-detail .detail-aside__link {
  font-size: 1.5rem;
  color: #f05a22;
  font-weight: 700;
  text-align: center;
}

.program-detail .detail-aside__emission-hour {
  font-size: 1rem;
  color: #2a2a2a;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .program-detail .detail-aside__emission-hour {
    font-size: 1.25rem;
    color: #2b2b2b;
    font-weight: 600;
  }
}

@media (min-width: 1920px) {
  .program-detail .detail-aside__emission-hour {
    font-size: 1.375rem;
    color: #2a2a2a;
    font-weight: 600;
  }
}

.program-detail .detail-aside__emission-date {
  font-size: 0.875rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.4;
}

@media (min-width: 1280px) {
  .program-detail .detail-aside__emission-date {
    font-size: 0.9375rem;
    color: #2a2a2a;
    font-weight: 400;
    line-height: 1.4;
  }
}

@media (min-width: 1920px) {
  .program-detail .detail-aside__emission-date {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 400;
    line-height: 1.5;
  }
}

.program-detail .detail-content__caption {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 400;
}

@media (min-width: 768px) {
  .program-detail .detail-content__caption {
    font-size: 0.875rem;
    color: #2b2b2b;
    font-weight: 400;
  }
}

.program-detail .detail-content__desc, .program-detail .detail-content__staff-content {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .program-detail .detail-content__desc, .program-detail .detail-content__staff-content {
    font-size: 1.375rem;
    color: #2a2a2a;
    font-weight: 400;
    line-height: 1.4;
  }
}

.program-detail .detail-content__staff-content .programtv-headline__title {
  margin-top: 15px;
}

.program-detail .detail-share-sm__title {
  font-size: 0.875rem;
  color: #444444;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.program-detail .detail-share-sm__text {
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 600;
  text-transform: uppercase;
}

.program-detail .detail-share-sm a:hover,
.program-detail .detail-share-sm a:visited,
.program-detail .detail-share-sm a:active {
  text-decoration: none;
}

.program-detail .detail-share-big__co {
  text-align: center;
}

.program-detail .detail-share-big__fb, .program-detail .detail-share-big__tw, .program-detail .detail-share-big__co {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .program-detail .detail-share-big__fb, .program-detail .detail-share-big__tw, .program-detail .detail-share-big__co {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
  }
}

@media (min-width: 1280px) {
  .program-detail .detail-share-big__fb, .program-detail .detail-share-big__tw, .program-detail .detail-share-big__co {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 700;
  }
}

.program-detail .detail-share-big__fb span, .program-detail .detail-share-big__tw span, .program-detail .detail-share-big__co span {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .program-detail .detail-share-big__fb span, .program-detail .detail-share-big__tw span, .program-detail .detail-share-big__co span {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
  }
}

@media (min-width: 1280px) {
  .program-detail .detail-share-big__fb span, .program-detail .detail-share-big__tw span, .program-detail .detail-share-big__co span {
    font-size: 1.125rem;
    color: #fff;
    font-weight: 700;
  }
}

.program-detail .news-tags {
  border-top: 0;
  border-bottom: 0;
  padding-top: 0;
  margin-top: 0;
}

@media (min-width: 1280px) {
  .program-detail .news-tags {
    padding-left: 275px;
  }
}

.program-detail .news-tags__button {
  margin-top: 0;
}

.programtv-headline {
  margin-bottom: 10px;
}

.programtv-headline__title {
  font-size: 2rem;
  font-weight: 700;
}

.programtv-box-box {
  display: block;
  color: inherit;
  margin-bottom: 20px;
}

.programtv-box-box__content {
  position: relative;
  min-height: 185px;
  max-height: 185px;
  padding: 11px 11px 22px 11px;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}

.programtv-box-box__content:after {
  content: '';
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 45px;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(#fff));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), #fff);
}

.programtv-box-box__category {
  text-transform: uppercase;
  position: absolute;
  bottom: 1px;
}

.programtv-box-box__labels {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 22px);
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
  padding: 5px 0 10px;
}

.programtv-box-box__time {
  margin-left: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.programtv-box-box__photo {
  position: relative;
}

.programtv-box-box__photo img {
  display: block;
  width: 100%;
}

.programtv-box-box__photo .img-placeholder {
  width: 100% !important;
}

.programtv-box-box__title {
  -webkit-transition: color 0.3s ease ease-in-out;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 700;
  line-height: 22px;
}

.programtv-box-box__text {
  font-size: 0.875rem;
  line-height: 20px;
}

.programtv-box-box__tags {
  position: absolute;
  top: 12px;
  left: 11px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.programtv-box-box__now, .programtv-box-box__live {
  background: #f05a22;
  padding: 2px 7px;
  margin-right: 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.programtv-box-box__tag {
  background-color: #0074ff;
  padding: 2px 7px;
  text-transform: uppercase;
  margin-right: 8px;
  border-radius: 4px;
}

.programtv-box-box:hover {
  text-decoration: none;
}

.programtv-box-box__timeline {
  height: 5px;
  width: calc(100% - 20px);
  background: #d8d8d8;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.programtv-box-box__progress {
  background: #d60707;
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.programtv-box-box__station {
  width: 53px;
  height: 30px;
  margin-right: 10px;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.programtv-box-box__station img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.programtv-box-box .play-small,
.programtv-box-box .gallery-small {
  position: absolute;
  width: 29px;
  height: 29px;
  bottom: 9px;
  left: 9px;
}

@media (min-width: 1280px) {
  .programtv-box-box .play-small,
  .programtv-box-box .gallery-small {
    width: 33px;
    height: 33px;
    bottom: 10px;
    left: 10px;
  }
}

@media (min-width: 1920px) {
  .programtv-box-box .play-small,
  .programtv-box-box .gallery-small {
    width: 40px;
    height: 40px;
    bottom: 13px;
    left: 13px;
  }
}

.program-block .sbViewportProgram {
  overflow: hidden;
}

.program-block .sbViewportProgram__wrapper {
  display: block;
  -ms-flex-preferred-size: 88%;
      flex-basis: 88%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.program-block .sbContentProgram {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 768px) {
  .program-block .sbContentProgram {
    display: block;
  }
}

.program-block .sbContentProgram,
.program-block .sbContentProgramPromo {
  padding: 0.75rem;
  padding-right: 0;
}

.program-block .sbViewportProgramPromo {
  overflow: hidden;
}

.program-block .sbViewportProgramPromo__wrapper {
  display: block;
  -ms-flex-preferred-size: 88%;
      flex-basis: 88%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 768px) {
  .program-block .sbViewportProgram__wrapper {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .program-block .sbViewportProgramPromo__wrapper {
    -ms-flex-preferred-size: 95%;
        flex-basis: 95%;
  }
}

.detail-aside__emission {
  margin-bottom: 25px;
}

.detail-aside__emission-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 119px);
  -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;
}

.detail-aside__emission-item {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.detail-aside__emission-item:hover, .detail-aside__emission-item:checked, .detail-aside__emission-item:active {
  text-decoration: none;
}

.detail-aside__emission-title {
  margin-bottom: 18px;
}

.detail-aside__emission-hour {
  display: block;
}

.detail-aside__emission-station {
  width: 119px;
  height: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 14px;
}

.detail-aside__emission-station img {
  max-width: 80%;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.detail-aside__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid #f05a22;
  margin-bottom: 18px;
  height: 55px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 12px 5px;
  background-position: right 20px center;
  background-image: url(images/icons/arrow-orange.svg);
}

.detail-aside__link:hover {
  background-color: #f05a22;
  color: #f5f5f5;
  background-image: url(images/icons/arrow_white.svg);
}

.detail-aside__link span {
  display: block;
  width: calc(100% - 60px);
}

.detail-aside__link:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .detail-aside__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;
  }
  .detail-aside__link {
    width: 49%;
  }
  .detail-aside__emission-station {
    width: 85px;
    height: 60px;
  }
  .detail-aside__emission-station img {
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .detail-aside__emission-info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail-aside__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail-aside__link {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .detail-aside__emission-station {
    width: 97px;
    height: 68px;
  }
}

@media (min-width: 1920px) {
  .detail-aside__emission-station {
    width: 119px;
    height: 81px;
  }
}

.programtv-old-header__title {
  font-size: 2.625rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 0.95em;
  text-align: center;
  margin-bottom: 10px;
}

.programtv-old-header__navigation {
  font-size: 1.125rem;
  color: #9b9b9b;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.programtv-old-header__navigation a {
  color: inherit;
  margin: 0 9px;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}

@media (min-width: 768px) {
  .programtv-old-header__navigation a:hover {
    color: #2b2b2b;
  }
  .programtv-old-header__navigation a:hover::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: #f05a22;
    position: absolute;
    bottom: -4px;
    bottom: -4px;
  }
}

.programtv-old-listing__item {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .programtv-old-listing {
    margin-bottom: 50px;
  }
}

.programtv-old-section--listing {
  margin-top: 55px;
}

.programtv-old-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 23px;
  padding-bottom: 3px;
}

@media (min-width: 1024px) {
  .programtv-old-item {
    padding-top: 4px;
    padding-right: 30%;
  }
}

.programtv-old-item__details {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 71px;
          flex: 0 0 71px;
}

@media (min-width: 1024px) {
  .programtv-old-item__details {
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 97px;
            flex: 0 0 97px;
  }
}

.programtv-old-item__hour {
  font-size: 1.375rem;
  color: #000;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .programtv-old-item__hour {
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
  }
}

.programtv-old-item__description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 22px 10px 5px;
}

.programtv-old-item__title {
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 4px;
}

.programtv-old-item__text {
  font-size: 0.8125rem;
  color: #262626;
  line-height: 1.46em;
  margin-bottom: 5px;
}

.programtv-old-item--last {
  margin-bottom: 70px;
}

@media (min-width: 768px) {
  .programtv-old-item--last {
    margin-bottom: 0;
  }
}

.programtv-old {
  padding-bottom: 100px;
}

.programtv-old-section--header {
  background-color: #fff;
  padding-top: 16px;
}

.programtv-old-section--tabs {
  margin-bottom: 20px;
}

.programtv-old-section__anchor {
  position: relative;
  top: -100px;
  height: 60px;
  width: 167px;
  border-bottom: 3px solid #2b2b2b;
}

.programtv-old-section__anchor:target {
  border-bottom-color: #f05a22;
}

.programtv-old-section__label {
  width: 167px;
  font-size: 1.5625rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.25rem;
}

@media (min-width: 768px) {
  .programtv-old-section__label {
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.25rem;
    position: absolute;
  }
}

@media (min-width: 768px) {
  .programtv-old-section__content {
    padding: 16px 0 50px 195px;
  }
}

.video-navigation {
  background-color: #fff;
  padding: 20px 0 8px;
}

@media (min-width: 1024px) {
  .video-navigation .container-fluid {
    width: 924px;
  }
}

@media (min-width: 1280px) {
  .video-navigation .container-fluid {
    width: 1244px;
  }
}

@media (min-width: 1921px) {
  .video-navigation .container-fluid {
    width: 1600px;
  }
}

.video-navigation__header {
  margin-bottom: 10px;
  font-size: 2.625rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-transform: capitalize;
}

@media (min-width: 1280px) {
  .video-navigation__header {
    margin-bottom: 15px;
  }
}

.video-navigation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1023px) {
  .video-navigation__wrapper {
    overflow-x: hidden;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 1024px) {
  .video-navigation__wrapper {
    overflow-x: hidden;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1280px) {
  .video-navigation__wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    overflow-y: hidden;
    width: 100%;
    overflow-x: auto;
    width: 100%;
    overflow-x: auto;
  }
  .video-navigation__wrapper::-webkit-scrollbar {
    width: 8px;
    height: 4px;
  }
  .video-navigation__wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .video-navigation__wrapper::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .video-navigation__wrapper::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.video-navigation__wrapper li,
.video-navigation__wrapper > a {
  display: inline-block;
  margin: 0 10px;
  white-space: nowrap;
  padding-bottom: 10px;
}

@media (min-width: 1280px) {
  .video-navigation__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.video-navigation__items {
  position: relative;
  font-size: 1.125rem;
  color: #9b9b9b;
  font-weight: 700;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.video-navigation__items:after {
  position: relative;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  bottom: -4px;
  margin: 0 auto;
  background-color: #eaff00;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
}

.video-navigation__items:hover {
  color: #2b2b2b;
}

.video-navigation__items:hover:after {
  width: 100%;
}

.video-navigation__items.active {
  color: #2b2b2b;
}

.video-navigation__items.active:after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 7px;
  background-color: #eaff00;
}

.video-navigation__specialLogo {
  height: 105px;
  background-color: #f5f5f5;
  background-image: url("images/logotype/tokyo2020.svg");
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 768px) {
  .video-navigation__specialLogo {
    background-color: #fff;
  }
}

@media (min-width: 1280px) {
  .video-navigation__specialLogo {
    height: 80px;
    background-position: right;
  }
}

.video .video-navigation {
  margin-bottom: 11px;
}

@media (min-width: 1280px) {
  .video .video-navigation {
    margin-bottom: 31px;
  }
}

@media (max-width: 768px) {
  .video-primary .boxes-four-box {
    padding: 0 5px;
  }
}

@media (min-width: 1024px) {
  .video-primary .boxes-four-box {
    padding: 0;
  }
}

.video-primary__box {
  width: 100%;
  position: relative;
  display: inline-block;
  max-height: 354px;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .video-primary__box:hover .box-small__content::before,
  .video-primary__box:hover .box-medium__content::before,
  .video-primary__box:hover .news-latest__content::before,
  .video-primary__box:hover .magazine__content::before,
  .video-primary__box:hover .video-primary__title--large::before,
  .video-primary__box:hover .video-primary__title--small::before,
  .video-primary__box:hover .video-primary__description::before,
  .video-primary__box:hover .boxes-list__content::before,
  .video-primary__box:hover .news-latest__desc::before,
  .video-primary__box:hover .magazine__desc::before,
  .video-primary__box:hover .news-seealso__desc::before,
  .video-primary__box:hover .home-opinion__cont::before,
  .video-primary__box:hover .home-opinion__small::before,
  .video-primary__box:hover .video-sidebar__content::before,
  .video-primary__box:hover .boxes-list-discipline__content::before,
  .video-primary__box:hover .epg-item__description::before {
    opacity: .06;
    -webkit-transform: scale(1);
            transform: scale(1);
    z-index: 1;
    border: 2px solid #2b2b2b;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
  }
  .video-primary__box:hover .banner-items__image::after,
  .video-primary__box:hover .box-small__image::after,
  .video-primary__box:hover .box-medium__image::after,
  .video-primary__box:hover .news-latest__image::after,
  .video-primary__box:hover .magazine__image::after,
  .video-primary__box:hover .video-primary__title--large::before,
  .video-primary__box:hover .video-primary__title--small::before,
  .video-primary__box:hover .video-primary__img::after,
  .video-primary__box:hover .boxes-list__img::after,
  .video-primary__box:hover .news-latest__photo::after,
  .video-primary__box:hover .magazine__photo::after,
  .video-primary__box:hover .news-seealso__image::after,
  .video-primary__box:hover .home-opinion__image::after,
  .video-primary__box:hover .boxes-list-discipline__img::after,
  .video-primary__box:hover .epg-item__image::after {
    opacity: 0.2;
  }
  .video-primary__box:hover .box-small__content,
  .video-primary__box:hover .box-medium__content,
  .video-primary__box:hover .news-latest__title,
  .video-primary__box:hover .boxes-list-discipline__title,
  .video-primary__box:hover .box-small__title {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #2b2b2b;
  }
  .video-primary__box:hover .box-small__content,
  .video-primary__box:hover .box-medium__content {
    background-color: #e0e0eb;
  }
}

.video-primary__box .video-primary__author {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.13;
}

.video-primary__box .video-primary__author .author__image {
  display: none;
}

@media (min-width: 1024px) {
  .video-primary__box .video-primary__author .author__image {
    display: block;
  }
}

.video-primary__box .video-primary__duration {
  position: static;
  margin-right: 5px;
}

.video-primary__large {
  position: relative;
}

.video-primary__large:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1f1e1e), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, #1f1e1e, rgba(22, 22, 22, 0));
  opacity: 0.5;
}

.video-primary__details {
  position: absolute;
  bottom: 0;
  padding: 20px;
}

.video-primary__details .video-primary__category {
  color: #fff;
}

.video-primary__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}

.video-primary__wrapper .box-small__content::before,
.video-primary__wrapper .box-medium__content::before,
.video-primary__wrapper .news-latest__content::before,
.video-primary__wrapper .magazine__content::before,
.video-primary__wrapper .video-primary__title--large::before,
.video-primary__wrapper .video-primary__title--small::before,
.video-primary__wrapper .video-primary__description::before,
.video-primary__wrapper .boxes-list__content::before,
.video-primary__wrapper .news-latest__desc::before,
.video-primary__wrapper .magazine__desc::before,
.video-primary__wrapper .news-seealso__desc::before,
.video-primary__wrapper .home-opinion__cont::before,
.video-primary__wrapper .home-opinion__small::before,
.video-primary__wrapper .video-sidebar__content::before,
.video-primary__wrapper .boxes-list-discipline__content::before,
.video-primary__wrapper .epg-item__description::before {
  opacity: .06;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  border: 2px solid #2b2b2b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.video-primary__wrapper .banner-items__image::after,
.video-primary__wrapper .box-small__image::after,
.video-primary__wrapper .box-medium__image::after,
.video-primary__wrapper .news-latest__image::after,
.video-primary__wrapper .magazine__image::after,
.video-primary__wrapper .video-primary__title--large::before,
.video-primary__wrapper .video-primary__title--small::before,
.video-primary__wrapper .video-primary__img::after,
.video-primary__wrapper .boxes-list__img::after,
.video-primary__wrapper .news-latest__photo::after,
.video-primary__wrapper .magazine__photo::after,
.video-primary__wrapper .news-seealso__image::after,
.video-primary__wrapper .home-opinion__image::after,
.video-primary__wrapper .boxes-list-discipline__img::after,
.video-primary__wrapper .epg-item__image::after {
  opacity: 0.2;
}

.video-primary__wrapper .box-small__content,
.video-primary__wrapper .box-medium__content,
.video-primary__wrapper .news-latest__title,
.video-primary__wrapper .boxes-list-discipline__title,
.video-primary__wrapper .box-small__title {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2b2b2b;
}

.video-primary__wrapper .box-small__content,
.video-primary__wrapper .box-medium__content {
  background-color: #e0e0eb;
}

@media (min-width: 1024px) {
  .video-primary__wrapper:first-of-type {
    margin-bottom: 8px;
  }
}

@media (min-width: 1280px) {
  .video-primary__wrapper:first-of-type {
    margin-bottom: 30px;
  }
}

@media (min-width: 1921px) {
  .video-primary__wrapper {
    height: 208px;
  }
}

.video-primary__wrapper .button-play {
  width: 24px;
  height: 24px;
  left: 10px;
  bottom: 6px;
  background-image: url(images/icons/play_S-lime.svg);
}

@media (min-width: 1280px) {
  .video-primary__wrapper .button-play {
    bottom: 12px;
  }
}

.video-primary__img {
  width: 144px;
}

@media (min-width: 1024px) {
  .video-primary__img {
    width: 71%;
  }
}

@media (min-width: 1280px) {
  .video-primary__img {
    width: 283px;
  }
}

@media (min-width: 1921px) {
  .video-primary__img {
    width: 487px;
  }
}

.video-primary__description {
  position: relative;
  width: calc(100% - 144px);
  background-color: #fff;
  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;
  padding: 10px 22px 10px 10px;
}

@media (min-width: 1280px) {
  .video-primary__description {
    width: 55%;
  }
}

@media (min-width: 1921px) {
  .video-primary__description {
    width: 69%;
  }
}

.video-primary__title {
  position: relative;
}

.video-primary__title--large {
  margin-bottom: 10px;
  font-size: 1.375rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.27;
}

@media (min-width: 1280px) {
  .video-primary__title--large {
    font-size: 2rem;
    color: #fff;
    line-height: 1.25;
    background-color: transparent;
    padding: 0;
  }
}

.video-primary__title--small {
  position: relative;
  max-height: 55px;
  overflow: hidden;
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.29;
}

@media (min-width: 1280px) {
  .video-primary__title--small {
    max-height: 84px;
    font-size: 1.3125rem;
    line-height: 1.33;
  }
}

@media (min-width: 1921px) {
  .video-primary__title--small {
    max-height: 110px;
  }
}

.video-primary__duration {
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  bottom: 5px;
  left: 40px;
}

@media (min-width: 1280px) {
  .video-primary__duration {
    bottom: 20px;
    left: 22px;
  }
  .video-primary__duration--small {
    left: 40px;
    bottom: 11px;
  }
}

.video-primary__author {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

.video-primary__category {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  z-index: 9;
  text-transform: uppercase;
}

.video-primary__category--small {
  display: none;
}

@media (min-width: 1024px) {
  .video-primary__category--small {
    position: absolute;
    bottom: 10px;
    display: block;
  }
}

@media (min-width: 1280px) {
  .video-primary__category--small {
    margin-top: auto;
  }
}

.video-primary__category span b {
  cursor: pointer;
  position: relative;
  z-index: 9;
}

.video-primary__category span b:hover {
  color: #9393a4;
}

.video-primary__category time {
  cursor: pointer;
}

.video-primary__category .button-play {
  width: 25px;
  height: 25px;
  position: static;
  display: inline-block;
  vertical-align: middle;
  background-image: url(images/icons/play_S-lime.svg);
}

.video-primary__imgcount {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #2b2b2b;
  font-size: 1.3125rem;
  color: #e8e8e8;
  font-weight: 700;
  padding: 1px 10px 3px;
  z-index: 2;
}

.video-primary__imgcount.big {
  top: 10px;
  bottom: auto;
}

.video-primary__imgcount.big span {
  font-size: 32px;
}

.video-primary__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.video-primary .variant--dark .video-primary__description {
  background-color: #2b2b2b;
}

.video-primary .variant--dark .video-primary__title--small {
  color: #e8e8e8;
}

.video-primary .variant--dark .video-primary__category--small {
  color: #e8e8e8;
}

.video-primary .author {
  color: #e8e8e8;
}

@media (max-width: 767px) {
  .video-primary .author {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .video-primary .author {
    margin: 0 0 10px;
    padding-bottom: 5px;
  }
}

@media (min-width: 1921px) {
  .video-primary .author {
    margin: 10px 0;
    padding-bottom: 0;
  }
}

.video {
  padding-bottom: 60px;
}

.video__heading {
  position: relative;
  display: inline-block;
  margin-bottom: 19px;
  padding-right: 5px;
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .video__heading {
    width: 100%;
    text-align: center;
    font-size: 1.875rem;
    border-top: 3px solid #2b2b2b;
    padding-top: 10px;
  }
}

@media (min-width: 1280px) {
  .video__heading {
    margin-bottom: 27px;
  }
  .video__heading:before {
    display: block;
    position: absolute;
    content: "";
    width: 160px;
    height: 3px;
    background-color: #2b2b2b;
  }
}

.video .button-more {
  width: 85%;
}

.video .news-latest__content {
  text-align: center;
}

.video .news__heading--line {
  margin-bottom: 25px;
}

.video .news__heading--line:before {
  margin-left: auto;
  margin-right: auto;
  top: -3px;
  left: 0;
  right: 0;
}

.video .news-latest__wrapper {
  display: block;
  margin: 0 auto 10px;
}

.video .news-latest__wrapper:hover .news-latest__category {
  background-color: transparent;
}

.video .home-opinion__heading {
  position: relative;
  display: block;
  padding-top: 7px;
  margin-bottom: 20px;
  text-align: center;
  border-top: 0;
  font-size: 1.875rem;
}

@media (min-width: 1280px) {
  .video .home-opinion__heading {
    display: inline-block;
    padding-top: 0;
    margin-bottom: 0;
    text-align: left;
  }
}

.video .home-opinion__heading::before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #2b2b2b;
}

.video .boxes-four-box .box-small__content {
  min-height: 140px;
}

.video .boxes-four-box .box-small__image .button-play {
  background-image: url(images/icons/play_S-lime.svg);
}

@media (max-width: 767px) {
  .video .boxes-four-box .boxes-4-container {
    white-space: inherit;
    overflow-x: hidden;
  }
  .video .boxes-four-box .boxes-4-container .box-small {
    margin-bottom: 5px;
  }
  .video .box-small {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    position: relative;
  }
  .video .box-small .box-small__image {
    width: 40%;
    height: 100%;
  }
  .video .box-small .box-small__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    min-height: auto;
    height: auto;
    overflow: hidden;
  }
  .video .box-small .box-small__content h3 {
    max-height: 60px;
    overflow: hidden;
    font-size: 0.8125rem;
    color: 600;
    height: auto;
    padding: 5px 10px;
  }
  .video .video__author,
  .video .box-small__category {
    display: none;
  }
}

.video__author {
  height: 36px;
  padding-top: 5px;
  margin-bottom: 10px;
}

.directory__top {
  margin-top: 23px;
}

.directory__tag-title {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.9;
  position: relative;
}

.directory__tag-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 200px;
  background: #2b2b2b;
}

@media (min-width: 768px) {
  .directory__tag-title {
    font-size: 1.3125rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.9;
  }
}

.directory__tag-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.5rem;
  color: #38324c;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .directory__tag-name {
    font-size: 2.625rem;
    color: #38324c;
    font-weight: 700;
  }
}

@media (max-width: 768px) {
  .directory__tag-name {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.directory__tag-counter {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-top: 30px;
  width: 305px;
  text-align: right;
}

.directory__tag-counter em {
  font-style: normal;
  color: #c8c8d3;
}

@media (max-width: 768px) {
  .directory__tag-counter {
    margin-top: 0;
  }
}

.directory__tag-empty {
  margin-top: 30px;
  padding-top: 30px;
  font-size: 1.5rem;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.directory__found {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.directory__found span {
  color: #c8c8d3;
}

.directory__content {
  padding-bottom: 30px;
}

.directory__content .news-latest__title {
  height: 100%;
  position: relative;
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .directory__content .news-latest__title {
    font-size: 1.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.directory__content .news-latest__category {
  display: block;
  padding-top: 18px;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.directory__content .news-latest__category time {
  cursor: pointer;
}

.directory__content .news-latest__category em {
  font-style: normal;
  display: inline-block;
}

.directory__content .news-latest__category span {
  display: inline-block;
  z-index: 100;
  position: relative;
  cursor: pointer;
}

@media (max-width: 768px) {
  .directory__content .news-latest__category {
    bottom: 0;
    font-size: 0.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
    padding-bottom: 5px;
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding-top: 0;
  }
}

.directory__content .news-latest__wrapper {
  width: 100%;
}

.directory__content .news-latest__wrapper:hover .news-latest__category {
  background-color: transparent;
}

.directory__content .news-latest__image {
  position: relative;
}

@media (max-width: 768px) {
  .directory__content .news-latest__image .button-play.medium {
    width: 24px;
    height: 24px;
    left: 5px;
    bottom: 5px;
  }
}

.directory__content .news-latest__content {
  height: 100%;
}

.directory__sidebar {
  margin-top: 25px;
}

.directory__sidebar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.directory__sidebar::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.directory__sidebar::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.directory__sidebar::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.directory__sidebar-title {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.9;
}

.directory__sidebar-list a, .directory__sidebar-list span {
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 15px;
  display: block;
  position: relative;
}

.directory__sidebar-list a::before, .directory__sidebar-list span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9b9b9b;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.directory__sidebar-list a.active, .directory__sidebar-list span.active {
  color: #2b2b2b;
}

.directory__sidebar-list a.active::before, .directory__sidebar-list span.active::before {
  background: #c8c8d3;
}

.directory__sidebar-list a:hover, .directory__sidebar-list span:hover {
  color: #2b2b2b;
  cursor: pointer;
}

.directory__sidebar-list a:hover::before, .directory__sidebar-list span:hover::before {
  background: #c8c8d3;
}

.gallery {
  background-color: #161616;
  min-width: 320px;
}

.gallery__header {
  padding: 10px 5px 14px;
  background-color: #2b2b2b;
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 1000;
}

.gallery__header:before, .gallery__header:after {
  content: " ";
  display: table;
}

.gallery__header:after {
  clear: both;
}

@media (min-width: 1024px) {
  .gallery__header {
    padding: 10px 20px 14px;
  }
}

.gallery__header-logo {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}

@media (min-width: 1280px) {
  .gallery__header-logo {
    position: relative;
    top: 20px;
    width: 140px;
  }
}

.gallery__header-desc {
  width: 100%;
  float: left;
}

@media (min-width: 1280px) {
  .gallery__header-desc {
    width: calc(100% - 140px);
  }
}

.gallery__header-count {
  font-size: 1.5rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 2.08;
  display: inline-block;
}

.gallery__header-count span {
  font-size: 16px;
}

.gallery__header-close {
  display: inline-block;
  margin-left: 30px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.gallery__header-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gallery__header-end {
  position: absolute;
  right: 20px;
  top: 10px;
}

.gallery__header-text {
  font-size: 1rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 1.38;
}

.gallery__header-text button {
  font-size: 0.6875rem;
  color: #f05a22;
  font-weight: 700;
  line-height: 1.38;
  text-transform: uppercase;
  margin-left: 20px;
  background-color: transparent;
  border: 0;
  float: left;
  margin-top: 7px;
  background-image: url(images/icons/arrow-down.svg);
  background-position: center right;
  background-size: 16px 7px;
  background-repeat: no-repeat;
  padding-right: 25px;
}

.gallery__header-text button i {
  padding-left: 10px;
}

.gallery__header-text button:hover {
  cursor: pointer;
}

.gallery__header-text button:focus {
  outline: none;
}

.gallery__header-text button.hidden {
  display: none;
}

.gallery__header-sneak {
  width: calc(100% - 120px);
  float: left;
  font-weight: 400;
  height: 20px;
  overflow: hidden;
  margin-top: 5px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.38;
  max-width: 850px;
}

.gallery__header-sneak.normal {
  height: auto;
}

.gallery__header-sneak.active {
  overflow: auto;
  height: auto;
}

@media (min-width: 1280px) {
  .gallery__header-sneak {
    margin-top: 0;
    height: 22px;
    font-size: 1rem;
    color: #e8e8e8;
    font-weight: 400;
    line-height: 1.38;
  }
}

.gallery__header-sneak a {
  color: #fff;
  text-decoration: underline;
}

.gallery__header-cat {
  text-transform: uppercase;
  font-size: 0.625rem;
  color: #e8e8e8;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery__header-cat a {
  color: #fff;
}

.gallery__header-cat a:hover {
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .gallery__header-cat {
    font-size: 0.6875rem;
    color: #e8e8e8;
    font-weight: 700;
    line-height: 1.1;
  }
}

.gallery__header-title {
  margin-top: 5px;
  font-size: 1rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 1280px) {
  .gallery__header-title {
    font-size: 1.5rem;
    color: #e8e8e8;
    font-weight: 700;
  }
}

.gallery__slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

.gallery__bottom {
  background-color: #161616;
  color: #fff;
  padding-bottom: 20px;
  position: absolute;
  bottom: 0;
  z-index: 999;
  width: 100%;
}

@media (max-width: 1024px) {
  .gallery__bottom {
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .gallery__bottom {
    padding-top: 15px;
    position: relative;
  }
}

.gallery__container {
  width: 1130px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5px;
}

@media (min-width: 1024px) {
  .gallery__container {
    padding: 0;
    width: 90%;
  }
}

@media (min-width: 1280px) {
  .gallery__container {
    width: 1140px;
  }
}

.gallery__description {
  padding: 0 0 15px;
  border-bottom: 1px solid #4a4a4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  width: calc(100% - 12px);
  margin-left: 6px;
}

.gallery__description-text {
  overflow: hidden;
  padding: 6px;
}

.gallery__description-text > div:first-child {
  margin-bottom: 10px;
}

.gallery__description-source {
  width: 30%;
  padding: 3px 0;
  max-width: 190px;
  text-align: center;
}

.gallery__description-source span {
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 0.6875rem;
  color: #e8e8e8;
  font-weight: 400;
  line-height: 1.38;
  padding: 5px 10px;
}

.gallery__miniatures {
  min-height: 95px;
  margin-left: 6px;
}

.gallery__miniatures-photo figure {
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: relative;
  border: 1px solid #161616;
  margin-right: 7px;
}

.gallery__miniatures-photo figure:after {
  display: block;
  content: "";
  background-image: linear-gradient(60deg, #17006e, #eaff00);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gallery__miniatures-photo img {
  display: block;
}

.gallery__miniatures-photo:hover {
  cursor: pointer;
}

.gallery__miniatures-photo:hover figure {
  border: 1px solid #eaff00;
}

.gallery__miniatures-photo:hover figure:after {
  opacity: 0.25;
}

.gallery__miniatures-photo.active-slide {
  cursor: pointer;
}

.gallery__miniatures-photo.active-slide figure {
  border: 1px solid #eaff00;
}

.gallery__miniatures-photo.active-slide figure:after {
  opacity: 0.25;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 18px;
  height: 34px;
}

.gallery__arrow i {
  width: 18px;
  height: 34px;
}

.gallery__arrow--prev {
  left: 30px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.gallery__arrow--prev.noactive {
  display: none;
}

.gallery__arrow--next {
  right: 15px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.gallery__arrow--next.noactive {
  opacity: 0;
  display: none;
}

@media (min-width: 1280px) {
  .gallery__arrow {
    width: 37px;
    height: 68px;
  }
  .gallery__arrow i {
    width: 37px;
    height: 68px;
  }
  .gallery__arrow--prev {
    left: 30px;
  }
  .gallery__arrow--prev:hover {
    left: 35px;
  }
  .gallery__arrow--next {
    right: 0px;
  }
  .gallery__arrow--next:hover {
    right: 5px;
  }
}

.gallery__content {
  min-height: 315px;
  max-height: 315px;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 100;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .gallery__content {
    top: calc(50% - 47px);
  }
}

@media (min-width: 1024px) {
  .gallery__content {
    min-height: auto;
    max-height: 470px;
  }
}

@media (min-width: 1280px) {
  .gallery__content {
    top: calc(50% - 62px);
  }
}

@media (min-width: 1280px) {
  .gallery__content {
    max-height: calc(100% - 315px);
  }
  .gallery__content .gallery__slide {
    max-width: 1366px;
    margin: 0 auto;
  }
}

.gallery__content .VueCarousel,
.gallery__content .VueCarousel-wrapper {
  height: inherit;
}

.gallery__content .VueCarousel-inner {
  height: 100% !important;
}

@media (max-width: 768px) and (orientation: landscape) {
  .gallery__content {
    position: relative;
    top: 0;
    left: 0;
    height: 300px;
    min-height: 300px;
    max-height: initial;
    -webkit-transform: none;
            transform: none;
  }
}

.gallery__miniatures .VueCarousel-navigation-prev {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15px;
  height: 30px;
  background-image: url(images/icons/arrow-grey-prev.svg);
  padding-right: 20px !important;
}

.gallery__miniatures .VueCarousel-navigation-prev:hover {
  cursor: pointer;
}

.gallery__miniatures .VueCarousel-navigation-next {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 15px;
  height: 30px;
  background-image: url(images/icons/arrow-grey-next.svg);
  padding-left: 20px !important;
}

.gallery__miniatures .VueCarousel-navigation-next:hover {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery__miniatures .VueCarousel-navigation-prev,
  .gallery__miniatures .VueCarousel-navigation-next {
    display: none;
  }
}

.gallery__miniatures .VueCarousel-navigation--disabled:hover {
  cursor: default;
}

.gallery__miniatures .VueCarousel-navigation-button {
  color: transparent !important;
}

.gallery__miniatures .VueCarousel-inner--center {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.discipline {
  position: relative;
}

@media (max-width: 767px) {
  .discipline .boxes-2-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  .discipline .boxes-2-container::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .discipline .boxes-2-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .discipline .boxes-2-container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .discipline .boxes-2-container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
  .discipline .boxes-2-container .box-medium {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: calc(50% - 10px);
    margin-right: 5px;
    margin-bottom: 0;
  }
  .discipline .boxes-2-container .box-medium__image {
    width: 100%;
    height: auto;
  }
  .discipline .boxes-2-container .box-medium__content {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 21px 7px 9px;
    min-height: 140px;
    background-color: #fff;
    text-align: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.38;
  }
}

.discipline .button-more {
  margin-top: 13px;
}

.event-disciplines-menu {
  padding: 50px 0 30px;
}

.disciplines-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.disciplines-menu__item {
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  color: inherit;
  width: 86px;
  padding: 10px;
  background-color: #fff;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.disciplines-menu__item:hover {
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}

.disciplines-menu__item:hover .disciplines-menu__icon {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.disciplines-menu__icon {
  margin-bottom: 10px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.disciplines-menu__label {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 11px;
}

.quiz__title {
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .quiz__title {
    font-size: 2rem;
    font-weight: 700;
  }
}

.quiz__content {
  background-color: #e8e8e8;
  padding: 22px 22px 30px;
}

.quiz-detal__header {
  min-height: 50px;
  background-color: #2b2b2b;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

@media (min-width: 1024px) {
  .quiz-detal__header {
    min-height: 75px;
  }
}

.quiz-detal__wrapp {
  background-color: #e8e8e8;
  max-width: 900px;
  margin: 20px auto 0;
}

.quiz-detal__wrapp--completed {
  background-color: transparent;
}

.quiz-detal__wrapper {
  margin: 0 auto;
  max-width: 722px;
}

.quiz-detal > .container {
  padding: 0;
}

.quiz-detal .quiz__item {
  margin-bottom: 60px;
}

.quiz-detal .quiz__content {
  background-color: transparent;
  padding-top: 50px;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .quiz-detal .quiz__content {
    padding-top: 25px;
    padding-right: 0;
    padding-left: 0;
  }
}

.quiz-detal .quiz-item__question-text {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .quiz-detal .quiz-item__question-text {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 42px;
  }
}

.quiz-detal .quiz-item__answer {
  font-size: 1rem;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .quiz-detal .quiz-item__answer {
    font-size: 1.3125rem;
  }
}

.quiz-detal .quiz-item__answer:hover {
  -webkit-box-shadow: inset 0 0 0 2px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 2px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.quiz-detal .quiz-item__answer::before {
  left: -33px;
}

@media (min-width: 768px) {
  .quiz-detal .quiz-item__answer::before {
    left: -48px;
  }
}

.quiz-detal .quiz-content {
  padding: 52px 22px 100px;
}

.quiz-detal .quiz-answers__item .quiz__content {
  padding-top: 10px;
}

.quiz-detal .quiz-answers .quiz-item__question-text {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .quiz-detal .quiz-answers .quiz-item__question-text {
    font-size: 1.5rem;
  }
}

.quiz-table-wrapper {
  min-height: 10px;
}

.quiz-answers__item {
  background-color: #e8e8e8;
  padding: 20px 40px;
  margin-bottom: 20px;
}

.quiz-answers__label {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .quiz-answers__label {
    font-size: 1.5625rem;
    font-weight: 900;
  }
}

@media (min-width: 1280px) {
  .quiz-answers__label {
    position: absolute;
    left: 0;
    margin-bottom: 0;
  }
}

.quiz-answers__label::before {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 2px;
  background-color: #38324c;
}

.quiz-item--resolved .quiz-item__counter {
  font-size: 1.125rem;
}

.quiz-item--resolved .quiz-item__counter--current {
  font-size: 1.5rem;
}

.quiz-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .quiz-item__header {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.quiz-item__counter {
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 700;
}

.quiz-item__counter--current {
  font-size: 1.5rem;
}

.quiz-item__question-image figure, .quiz-item__question-video figure {
  margin-bottom: 10px;
}

.quiz-item__question-video .home-video__wrapper {
  display: block;
}

.quiz-item__question-video .home-video__wrapper .button-play {
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.quiz-item__question-video .home-video__wrapper::after {
  display: none;
}

.quiz-item__question-video .vue-embed {
  width: 100%;
  height: 100%;
}

.quiz-item__question-caption {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.quiz-item__question-text {
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .quiz-item__question-text {
    margin-right: 110px;
    font-size: 1.5rem;
    font-weight: 700;
  }
}

.quiz-item__body {
  font-size: 1rem;
  padding: 10px 0 25px;
}

.quiz-item__body--image, .quiz-item__body--video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px;
}

@media (min-width: 561px) {
  .quiz-item__body--image, .quiz-item__body--video {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.quiz-item__body--image :checked ~ .quiz-item__answer, .quiz-item__body--video :checked ~ .quiz-item__answer {
  background-color: #38324c;
  color: #fff;
}

.quiz-item__body--image :checked ~ .quiz-item__answer .quiz-answer__image::before, .quiz-item__body--video :checked ~ .quiz-item__answer .quiz-answer__image::before {
  color: #38324c;
}

@media (min-width: 768px) {
  .quiz-item__body {
    font-size: 1.3125rem;
  }
}

.quiz-item__body input[type='radio'] {
  display: none;
}

.quiz-item__body :checked + label.quiz-item__answer {
  background-color: #38324c;
  color: #fff;
}

.quiz-item__body :checked + label.quiz-item__answer::before {
  color: #38324c;
}

.quiz-item__answer {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  margin-bottom: 9px;
  padding: 10px 20px;
  margin-left: 32px;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .quiz-item__answer {
    margin-left: 47px;
  }
}

.quiz-item__answer::before {
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  content: attr(data-answer-id);
  position: absolute;
  top: -6px;
  left: -48px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .quiz-item__answer::before {
    top: 0;
    left: -48px;
  }
}

.quiz-item__answer:hover {
  -webkit-box-shadow: inset 0 0 0 1px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 1px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.quiz-item__answer.user-answer {
  color: #fff;
  background-color: #ff7676;
  -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 2px #38324c, 0 4px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 2px #38324c, 0 4px 4px 0 rgba(0, 0, 0, 0.14);
}

.quiz-item__answer.user-answer::before {
  color: #38324c;
}

.quiz-item__answer.correct {
  color: #fff;
  background-color: #73fb95;
}

.quiz-item__footer {
  text-align: center;
}

.quiz-item__footer .next-button {
  display: inline-block;
  margin: 0;
  padding: 14px 20px;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: #fff;
  cursor: pointer;
  min-width: 8.5rem;
  background-color: #38324c;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.quiz-item__footer .next-button--wide {
  padding-left: 50px;
  padding-right: 50px;
}

.quiz-item__footer .next-button:hover {
  background-color: #fff;
  color: #38324c;
  text-decoration: none;
}

.quiz-item__footer .next-button:hover .arrow-shape {
  fill: #38324c;
}

.quiz-item__footer .next-button svg {
  position: relative;
  top: 4px;
}

.quiz-item__footer .next-button[disabled] {
  background-color: #bababa;
}

.quiz-item__footer .next-button[disabled]:hover {
  color: #fff;
}

.quiz-item__footer .next-button[disabled]:hover .arrow-shape {
  fill: #fff;
}

.quiz-answer--image, .quiz-answer--video {
  padding: 50px 10px 0;
  width: 100%;
}

@media (min-width: 561px) {
  .quiz-answer--image, .quiz-answer--video {
    width: 50%;
  }
}

.quiz-answer--image.user-answer .quiz-answer__image::before, .quiz-answer--video.user-answer .quiz-answer__image::before {
  color: #38324c;
}

.quiz-answer--image .quiz-item__answer, .quiz-answer--video .quiz-item__answer {
  margin: 0 auto 9px;
  font-size: 1.3125rem;
  padding: 5px;
  max-width: 360px;
}

.quiz-answer--image .quiz-item__answer::before, .quiz-answer--video .quiz-item__answer::before {
  display: none;
}

.quiz-answer--image .quiz-item__answer:hover, .quiz-answer--video .quiz-item__answer:hover {
  -webkit-box-shadow: inset 0 0 0 2px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 2px #38324c, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.quiz-answer--image .quiz-answer__image, .quiz-answer--video .quiz-answer__image {
  top: 50px;
}

.quiz-answer--image .quiz-answer__image::before, .quiz-answer--video .quiz-answer__image::before {
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  content: attr(data-answer-id);
  display: block;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-transform: uppercase;
}

.quiz-answer--image .quiz-answer__text, .quiz-answer--video .quiz-answer__text {
  padding: 16px 20px 11px;
  text-align: center;
}

.quiz-answer--image .home-video__wrapper, .quiz-answer--video .home-video__wrapper {
  display: block;
}

.quiz-answer--image .home-video__wrapper::after, .quiz-answer--video .home-video__wrapper::after {
  display: none;
}

.quiz-answer--image .home-video__wrapper .button-play, .quiz-answer--video .home-video__wrapper .button-play {
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.quiz-answer--image .vue-embed, .quiz-answer--video .vue-embed {
  height: 100%;
  width: 100%;
}

.quiz-answer__label {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 13px 30px;
  cursor: pointer;
}

.quiz-answer__label .icon-arrow-dropdown {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.quiz-answer__label.open .icon-arrow-dropdown {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.quiz-answer__table {
  background-color: #e8e8e8;
}

.quiz-answer__image .img-responsive {
  height: initial;
}

.quiz-answer__image img {
  display: block;
}

.quiz-summary {
  text-align: center;
}

.quiz-summary__title {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .quiz-summary__title {
    font-size: 1.75rem;
  }
}

.quiz-summary .news-tags__wrapper {
  margin: 0 auto;
}

.progress-circle {
  padding: 50px;
}

.progress-circle #progress-circle__wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  margin: auto;
}

.progress-circle #progress-circle__wrapper > svg {
  width: 100%;
  display: block;
}

.progress-circle #other-ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eaff00;
  position: absolute;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.progress-circle .progressbar-text {
  font-size: 2.5rem;
  color: #9b9b9b;
  font-weight: 700;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  padding: 0;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.progress-circle .progressbar-text big {
  font-size: 3.4375rem;
  color: #2b2b2b;
}

.slide-fade-enter-active {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.slide-fade-enter {
  opacity: 0;
}

.slide-fade-leave-to {
  opacity: 0;
}

.quiz-header {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
}

.quiz-header__counter {
  padding: 28px 0 10px;
}

.quiz-header__counter small {
  font-size: 1.125rem;
  padding: 25px 0;
}

.quiz-header__title {
  padding: 12px 30px 7px 10px;
  font-size: 1.0625rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .quiz-header__title {
    padding: 8px 0 0 15px;
    font-size: 1.5rem;
    max-width: 742px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .quiz-header__title {
    padding: 19px 0 10px 15px;
  }
}

.quiz-header__close {
  position: absolute;
  top: 8px;
  right: 20px;
}

@media (min-width: 768px) {
  .quiz-header__close {
    top: 10px;
    right: 26px;
  }
}

@media (min-width: 1024px) {
  .quiz-header__close {
    top: 21px;
  }
}

@media (min-width: 768px) {
  .quiz-header .header__logo {
    height: 55px;
  }
}

@media (min-width: 1024px) {
  .quiz-header .header__logo {
    height: 75px;
  }
}

.author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.author .img-placeholder,
.author .img-responsive {
  margin-right: 5px;
  width: auto;
  border-radius: 50%;
  min-width: 36px;
}

.author + .video-primary__category--small {
  color: #2b2b2b;
}

.opinion__small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
}

.opinion__small figure {
  width: 24px;
  margin-right: 6px;
}

.opinion__small img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
}

.opinion__small--name {
  font-size: 13px;
  font-weight: bold;
  line-height: 28px;
  color: #fff;
}

.buttons-tabs {
  display: block;
  height: 60px;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  font-size: 1.5rem;
  color: #9b9b9b;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .buttons-tabs {
    position: relative;
  }
}

@media (min-width: 1023px) {
  .buttons-tabs {
    display: none;
  }
}

.buttons-tabs-visibility {
  display: none;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .buttons-tabs-visibility {
    display: block;
  }
}

.buttons-tabs-container {
  overflow-y: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  width: 100%;
  overflow-x: auto;
}

.buttons-tabs-container::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.buttons-tabs-container::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.buttons-tabs-container::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.buttons-tabs-container::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 768px) {
  .buttons-tabs-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.buttons-tabs-item {
  vertical-align: middle;
  display: inline-block;
  width: auto;
  margin: 15px 15px 0 10px;
  height: 47px;
  border-top: 2px solid transparent;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 768px) {
  .buttons-tabs-item {
    padding-bottom: 10px;
  }
}

.buttons-tabs-item--active {
  border-top: 2px solid #2b2b2b;
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
}

.buttons-tabs-item:hover {
  border-top: 2px solid #2b2b2b;
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  cursor: pointer;
}

.buttons-tabs-item:last-child {
  margin-right: 15px;
}

@media (max-width: 1280px) {
  .buttons-tabs {
    position: relative;
    width: calc(100% + 15px);
    left: -10px;
    right: -10px;
  }
}

.directory-standard .grid-box {
  margin-bottom: 30px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
}

.directory-standard .grid-box__image {
  position: relative;
}

.directory-standard .grid-box__image .button-play {
  left: auto;
  bottom: auto;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .directory-standard .grid-box__image .button-play {
    width: 35px;
    height: 35px;
  }
}

.directory-standard .grid-box__url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.directory-standard .grid-box__content {
  position: relative;
  z-index: 2;
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
}

.directory-standard .grid-box__title {
  max-height: 85px;
  overflow: hidden;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (min-width: 1280px) {
  .directory-standard .grid-box__title {
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.directory-standard .grid-box__indicators {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

@media (min-width: 768px) {
  .directory-standard .grid-box__indicators {
    left: 16px;
    bottom: 16px;
  }
}

.directory-standard .grid-box__category {
  display: block;
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.directory-standard .grid-box__category::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.directory-standard .grid-box__category:hover {
  cursor: pointer;
}

.directory-standard .grid-box__label {
  position: absolute;
  top: -11px;
  text-transform: uppercase;
  left: 25px;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
  display: none;
}

@media (min-width: 767px) {
  .directory-standard .grid-box__label {
    display: block;
    font-size: 0.688rem;
  }
}

.directory-standard .grid-box__duration {
  position: absolute;
  bottom: 20px;
  left: 22px;
  background-color: #2b2b2b;
  padding: 4px 10px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  left: 60px;
  bottom: 19px;
}

.directory-standard .grid-box:hover .grid-box__content {
  background-color: #e0e0eb;
}

@media (max-width: 767px) {
  .directory-standard .grid-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    position: relative;
    margin-bottom: 5px;
  }
  .directory-standard .grid-box__category {
    display: none;
  }
  .directory-standard .grid-box__image {
    width: 40%;
    height: 100%;
  }
  .directory-standard .grid-box__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    min-height: auto;
    height: auto;
    overflow: hidden;
    padding: 10px;
  }
  .directory-standard .grid-box__title {
    max-height: 60px;
    overflow: hidden;
    font-size: 0.8125rem;
    font-weight: 600;
    height: auto;
    padding: 5px 10px;
  }
  .directory-standard .grid-box__duration {
    left: 35px;
    bottom: 7px;
  }
}

.directory-standard .box-big .button-play {
  position: static;
  padding: 0 5px;
}

.directory-standard .box-big .button-play__video {
  width: 175px;
  -webkit-transform: none;
          transform: none;
}

.directory-standard-header {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .directory-standard-header {
    margin-bottom: 26px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 1280px) {
  .directory-standard-header {
    font-size: 3.375rem;
    line-height: 1.15;
  }
}

.directory-standard .block-banner figure {
  margin-bottom: 20px;
}

.directory-standard .block-banner figure img {
  max-width: 320px;
}

.directory-submenu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #f05a22;
  margin-bottom: 27px;
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
}

.directory-submenu__wrapper::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.directory-submenu__wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.directory-submenu__wrapper::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.directory-submenu__wrapper::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.directory-submenu__tab {
  display: none;
}

.directory-submenu__tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.directory-submenu__item {
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1.33;
  border-bottom: 6px solid transparent;
  display: inline-block;
  -webkit-transition: all, .2s;
  transition: all, .2s;
  margin-right: 15px;
  cursor: pointer;
  white-space: nowrap;
}

.directory-submenu__item--active {
  color: #000;
  border-bottom-color: #f05a22;
}

@media (min-width: 768px) {
  .directory-submenu__item--active {
    font-size: 1.313em;
  }
}

.directory-submenu__item:hover {
  color: #000;
}

.directory-submenu__item:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .directory-submenu__item {
    font-size: 1.313rem;
    margin-right: 20px;
  }
}

/*--------- COMMON ---------*/
.progress-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.progress-time__time {
  font-size: 0.8125rem;
  color: #fff;
  letter-spacing: 1.3px;
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
  margin-bottom: 6px;
}

.progress-time__time--end {
  text-align: right;
}

.progress-time__progress {
  width: 100%;
  height: 1px;
  background-color: #dddddd;
}

.progress-time__bar {
  width: 1px;
  height: 1px;
  background-color: #38324c;
}

.player-video-container iframe.player-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2b2b2b;
  z-index: 11;
  background-image: url(images/loaders/tail-spin.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.vue-player {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #2b2b2b;
}

.vue-player > div,
.vue-player > iframe {
  width: 100%;
  height: 100%;
}

.player-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.player-video-container.player-video-container--on .news-video-large__time {
  display: none;
}

.tp2thm-icon-play.tp2thm-icon-play-custom {
  width: 50px !important;
  height: 50px !important;
}

@media (min-width: 1024px) {
  .tp2thm-icon-play.tp2thm-icon-play-custom {
    width: 80px !important;
    height: 80px !important;
  }
}

.miniplayer {
  height: 250px;
  width: 320px;
  position: fixed;
  top: 76px;
  right: 20px;
  z-index: 102;
  background-color: #2b2b2b;
  -webkit-box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(148px);
          transform: translateY(148px);
  -webkit-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
}

@media (min-width: 1024px) {
  .miniplayer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.scrolled .miniplayer {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.miniplayer.collapsed {
  width: 129px;
  height: 33px;
}

.miniplayer.collapsed .miniplayer__top {
  cursor: pointer;
}

.miniplayer.collapsed .miniplayer__middle,
.miniplayer.collapsed .miniplayer__bottom,
.miniplayer.collapsed .miniplayer-top__close {
  display: none;
}

.miniplayer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 33px;
  background-image: linear-gradient(84deg, #0b022b, #9e2b00);
  font-size: 0.75rem;
  color: #f5f5f5;
}

.miniplayer__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 37px;
  margin-top: auto;
}

.miniplayer__bottom i {
  position: relative;
  top: 0;
  left: auto;
  right: -10px;
  display: inline-block;
}

.miniplayer__link {
  font-size: 0.6875rem;
  color: #f5f5f5;
  font-weight: 700;
  text-transform: uppercase;
}

.miniplayer-top__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 5px;
}

.miniplayer-top__close {
  margin: 6px 9px 0px auto;
}

.miniplayer-top__close .icon-close-gallery {
  width: 16px;
  height: 16px;
}

.miniplayer-button {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 102;
}

@media (min-width: 1024px) {
  .miniplayer-button {
    display: none;
  }
}

.miniplayer-button a {
  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;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #f05a22;
  color: #fff;
  -webkit-box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
}

.miniplayer-button a i {
  margin-bottom: 6px;
}

.event-navbar-top {
  min-height: 137px;
  background-size: cover;
  position: relative;
  margin-bottom: 20px;
}

.event-navbar-top--slim {
  margin-bottom: 0;
  min-height: 44px;
}

.event-navbar-top--nomb {
  margin-bottom: 0;
}

.event-navbar-top__logo {
  padding-top: 12px;
  margin: 0 auto;
}

.event-navbar-top__logo svg {
  max-width: 120px;
}

@media (min-width: 1024px) {
  .event-navbar-top__logo svg {
    max-width: 100%;
  }
}

.event-navbar-top__broadcaster {
  padding-top: 9px;
  text-align: right;
  margin: 0 auto;
}

.event-navbar-top__broadcaster svg {
  max-width: 100px;
}

@media (min-width: 1024px) {
  .event-navbar-top__broadcaster svg {
    max-width: 100%;
  }
}

.event-navbar-menu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background-color: #2b2b2b;
}

.event-navbar-menu__slimWrapper {
  height: 44px;
}

.event-navbar-menu__slimWrapper svg {
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.event-navbar-menu__slimWrapper .navbar-menu-wrapper {
  padding-top: 1px;
}

.event-navbar-menu a {
  font-size: 1rem;
  color: #fff;
}

.navbar-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  height: 44px;
  width: 100%;
  overflow-x: auto;
}

.navbar-menu-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.navbar-menu-wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.navbar-menu-wrapper::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.navbar-menu-wrapper::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.navbar-menu-wrapper a {
  margin-right: 17px;
  position: relative;
  white-space: nowrap;
}

.navbar-menu-wrapper a:hover {
  color: #d9d9d9;
}

.navbar-menu-wrapper a.active {
  color: #d9d9d9;
}

.navbar-menu-wrapper a.active::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -12px;
  background-color: #d9d9d9;
}

/*--------- POPUP ---------*/
.popup {
  background-color: #f5f5f5;
  width: 100%;
  max-width: 768px;
  min-height: 300px;
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 300;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
  .popup {
    width: 768px;
  }
}

.popup__body {
  overflow-y: scroll;
  max-height: 55vh;
  padding-bottom: 50px;
  scrollbar-width: thin;
  scrollbar-color: #c7c7c7;
}

.popup__body::-webkit-scrollbar {
  width: 8px;
}

.popup__body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.popup__body::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.popup__body::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.popup .container {
  width: auto;
}

.popup .navigation__icon {
  left: auto;
  top: 13px;
  right: 11px;
  margin-right: 0;
}

.popup__results-link {
  text-align: center;
  padding: 20px 0;
}

.popup__results-link a {
  text-transform: uppercase;
  color: #2b2b2b;
  letter-spacing: 1.1px;
  font-weight: bold;
  font-size: 0.8125rem;
  position: relative;
  padding-right: 20px;
}

.popup__results-link a:after {
  content: '';
  position: absolute;
  background-image: url("images/icons/arrow_violet.svg");
  width: 12px;
  height: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0;
}

.popup-relation-button {
  background-color: #f5f5f5;
  padding: 20px 0 10px;
  text-align: center;
}

.popup-relation-button .next-button {
  line-height: 1rem;
}

.popup-relation-button .next-button--solid {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 14px 18px;
}

.popup-relation-button .next-button--solid:hover {
  color: #38324c;
}

.popup-relation-button .next-button--solid:hover i {
  background-image: url(images/icons/arrow_violet.svg);
}

.popup-relation-button .next-button--solid i {
  top: -3px;
  margin-left: 19px;
}

.popup-fade-enter-active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.popup-fade-enter {
  opacity: 0;
}

.popup-fade-leave-to {
  opacity: 0;
}

.popup-header {
  background-color: #2b2b2b;
}

.popup-header--football {
  background: #2b2b2b url("images/popup/pilkanozna_popup.jpg") no-repeat center top;
  background-size: cover;
}

.popup-header--basketball {
  background: #2b2b2b url("images/popup/koszykowka_popup.jpg") no-repeat center top;
  background-size: cover;
}

.popup-header--tenis {
  background: #2b2b2b url("images/popup/tenis_mezczyzni_popup.jpg") no-repeat center top;
  background-size: cover;
}

.popup-header--hockey {
  background: #2b2b2b url("images/popup/hokey_popup.jpg") no-repeat center top;
  background-size: cover;
}

.popup-header--volleyball {
  background: #2b2b2b url("images/popup/siatkowka_popup.jpg") no-repeat center top;
  background-size: cover;
}

.popup-header--handball {
  background: #2b2b2b url("images/popup/popup-football.jpg") no-repeat center top;
  background-size: cover;
}

.popup-header__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.6875rem;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #5a5a5a;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 300;
  padding: 3px 8px;
  cursor: pointer;
  background-color: rgba(22, 22, 22, 0.5);
}

.popup-header__close .popup-icon {
  width: 9px;
  height: 8px;
}

.popup-header__close .popup-icon--close {
  background: transparent url("images/icons/popup-close.svg");
  margin-left: 3px;
}

.popup-header .team__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  position: relative;
  top: -5px;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .popup-header .team__name {
    font-size: 1.3125rem;
  }
}

.popup-header .team__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33px;
          flex: 0 0 33px;
  width: 33px;
  height: 33px;
  min-width: 33px;
  background-position: center;
  position: relative;
  top: -5px;
  min-height: auto;
}

.popup-header .team--first {
  padding-top: 24px;
}

.popup-header .match__type {
  font-size: 0.75rem;
  color: #d9d9d9;
  font-weight: 600;
}

.popup-header .match__score {
  font-size: 1.3125rem;
}

@media (min-width: 1024px) {
  .popup-header .match__score {
    font-size: 1.5rem;
  }
}

.popup-header .match__time {
  font-size: 0.8125rem;
}

.popup-header .match-details {
  padding-bottom: 20px;
}

.popup-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 15px;
  position: relative;
}

.popup-header__wrapper::before {
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0.2)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 50%, black 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.popup-header__wrapper .team {
  width: 35%;
}

.popup-header__wrapper .team--left {
  padding-right: 15px;
}

.popup-header__wrapper .team--right {
  padding-left: 15px;
}

.popup-header__wrapper .match-details {
  width: 30%;
  position: relative;
}

.popup-navigation {
  padding-bottom: 10px;
  width: 100%;
}

.popup-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-navigation ul li {
  margin-right: 15px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .popup-navigation ul li {
    font-size: 1.125rem;
  }
}

.popup-navigation ul li a {
  color: #9b9b9b;
  display: inline-block;
  margin-left: 10px;
  position: relative;
}

.popup-navigation ul li a:hover {
  color: #fff;
  position: relative;
}

.popup-navigation ul li a:hover::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #eaff00;
  margin-top: 2px;
}

.popup-navigation ul li a:hover::before {
  background-color: #fff;
}

.popup-navigation ul li a::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: transparent;
  margin-top: 2px;
}

.popup-navigation ul li a.active {
  position: relative;
  color: #fff;
}

.popup-navigation ul li a.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #eaff00;
  margin-top: 2px;
}

.popup-navigation ul li a.active::before {
  background-color: #fff;
}

.popup-navigation ul li a::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background-color: #9b9b9b;
  position: absolute;
  left: -13px;
  top: 10px;
}

.popup-timeline {
  background-color: #f5f5f5;
  padding-top: 25px;
}

.popup-timeline__header {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

.popup-timeline__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #d9d9d9;
}

.popup-timeline__team-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2.31;
  font-size: 0.8125rem;
  color: black;
  font-weight: 600;
}

.popup-timeline__team-name img {
  margin-right: 10px;
  width: 33px;
  min-width: 33px;
}

.popup-timeline__team-points {
  margin-left: auto;
}

.popup-timeline__team-points--final {
  padding-left: 15px;
  line-height: 2.31;
  font-size: 0.8125rem;
  color: black;
  font-weight: 700;
}

.popup-timeline__team-points--quarters {
  padding-left: 15px;
  line-height: 2.31;
  position: relative;
  font-size: 0.8125rem;
  color: black;
}

.popup-timeline__team-points--quarters:after {
  position: absolute;
  content: attr(data-tiebreak);
  top: -10px;
  right: -6px;
  font-size: 0.6875rem;
  color: black;
}

.popup-timeline .team__timeline {
  padding-left: 0;
  color: #2b2b2b;
}

.popup-timeline-item {
  position: relative;
}

.popup-timeline-item__time {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.popup-timeline-item__content {
  font-size: 0.8125rem;
  margin-top: -20px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1024px) {
  .popup-timeline-item__content {
    font-size: 1rem;
  }
}

.popup-timeline-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
}

.popup-timeline-item__wrapper a {
  color: inherit;
}

.popup-timeline-item__wrapper a:hover {
  text-decoration: underline;
}

.popup-timeline-item__participant {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px;
}

.popup-timeline-item__participant.home .popup-timeline-item__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.popup-timeline-item__score {
  font-weight: 700;
}

.popup-row {
  margin-bottom: 20px;
}

.popup-timeline-team-wrapper {
  position: relative;
  padding: 30px 0 15px;
  background-image: linear-gradient(0deg, transparent 0, transparent 2px, #d9d9d9 3px, #d9d9d9 5px);
  background-repeat: repeat-y;
  background-position: center;
  background-size: 1px 5px;
}

.popup-timeline-team-wrapper::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #2b2b2b;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f7f7f7;
  -webkit-box-shadow: 0 0 0 3px #f7f7f7;
  box-shadow: 0 0 0 3px #f7f7f7;
}

.popup-timeline-team-wrapper::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #2b2b2b;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f7f7f7;
  -webkit-box-shadow: 0 0 0 3px #f7f7f7;
  box-shadow: 0 0 0 3px #f7f7f7;
}

.popup-squads {
  background-color: #f5f5f5;
  padding: 10px 0 20px;
}

.popup-squads__header {
  text-align: center;
  font-size: 1.3125rem;
  font-weight: 700;
}

.popup-squads__coaches .popup-squads__item {
  min-height: auto;
}

.popup-squads__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  min-height: 43px;
  border-bottom: 1px solid #d9d9d9;
}

.popup-squads__item .flex-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.popup-squads__item .img-responsive {
  max-width: 40px;
  height: auto;
}

.popup-squads__item .img-placeholder {
  height: 40px;
}

.popup-squads__item .popup-timeline-time {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-right: 5px;
}

.popup-squads__number {
  font-size: 1.3125rem;
  font-weight: 700;
  min-width: 35px;
}

.popup-squads__logo {
  max-width: 40px;
  margin-right: 10px;
}

.popup-squads__name {
  font-size: 0.8125rem;
  margin-right: 10px;
}

@media (min-width: 1024px) {
  .popup-squads__name {
    font-size: 1rem;
  }
}

.popup-squads__name a {
  color: inherit;
}

.popup-squads__name a:hover {
  color: #f05a22;
}

.popup-squads__item--opposite-side {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.popup-squads__item--opposite-side .flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.popup-squads__item--opposite-side .popup-timeline-item__participant {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 29px;
  padding-left: 0;
}

.popup-squads__item--opposite-side .popup-squads__number {
  text-align: right;
}

.popup-squads__item--opposite-side .popup-squads__name {
  margin-right: 0;
  text-align: right;
}

.popup-squads__item--opposite-side .popup-squads__logo {
  margin-left: 10px;
  margin-right: 0;
}

.popup-squads .info__icon {
  margin: 0;
  margin-right: 5px;
}

.popup-stats {
  overflow-x: hidden;
  padding-top: 20px;
  background-color: #f5f5f5;
}

.popup-stats .progress-circle {
  position: relative;
  padding: 0;
}

.popup-stats .stats-table__ball-posession {
  width: 60px;
}

@media (min-width: 1024px) {
  .popup-stats .stats-table__ball-posession {
    width: 90px;
  }
}

.popup-stats .stats-table__row.table-row:first-child {
  padding-top: 0;
}

.popup-stats .stats-table .table-row__left .table-row__item.table-row__item--possession::after {
  top: 28px;
}

@media (min-width: 1024px) {
  .popup-stats .stats-table .table-row__left .table-row__item.table-row__item--possession::after {
    top: 40px;
  }
}

.popup-stats .stats-table .table-row__left .table-row__item::after {
  top: 15px;
  font-size: 0.8125rem;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .popup-stats .stats-table .table-row__left .table-row__item::after {
    top: 17px;
    font-size: 1rem;
  }
}

.popup-stats .progress-circle .progressbar-text {
  font-size: 1.125rem;
  color: #2b2b2b;
}

@media (min-width: 1024px) {
  .popup-stats .progress-circle .progressbar-text {
    font-size: 2rem;
  }
}

.popup-stats .table-row__item {
  padding: 5px 0;
  min-height: 45px;
}

@media (min-width: 1024px) {
  .popup-stats .table-row__item {
    padding: 12px 0 13px;
    min-height: 56px;
  }
}

.table-row--empty {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 50px;
  padding: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.individual-stats-table {
  padding: 30px 0;
}

.individual-stats-table__teamname {
  font-size: 1rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.individual-stats-table__teamname figure {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}

.individual-stats-table__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 9px 0;
}

.individual-stats-table__header .individual-stats-table__col {
  font-size: 0.9375rem;
  color: #9b9b9b;
  font-weight: 600;
  text-align: center;
  width: 40px;
}

.individual-stats-table__header .individual-stats-table__col:nth-child(1) {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  width: 60%;
  text-align: left;
}

.individual-stats-table__header .individual-stats-table__col:nth-child(2) {
  margin-left: auto;
}

.individual-stats-table__row.table-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.individual-stats-table__row.table-row + .individual-stats-table__teamname {
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
}

.individual-stats-table__row.table-row:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.individual-stats-table__row .individual-stats-table__col {
  width: 40px;
  text-align: center;
  padding: 10px 0;
}

.individual-stats-table__row .individual-stats-table__col:nth-child(1) {
  width: 30px;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
}

.individual-stats-table__row .individual-stats-table__col:nth-child(2) {
  width: calc(60% - 30px);
  text-align: left;
  font-size: 0.8125rem;
}

.individual-stats-table__row .individual-stats-table__col:nth-child(3) {
  margin-left: auto;
}

/*--------- HACKS ---------*/
/*--------- SIDEBAR ---------*/
.table {
  margin-bottom: 60px;
  font-size: 0.8125rem;
  color: #000;
  font-weight: 400;
  position: relative;
}

.table__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ececf3;
  font-size: 0.75rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 2.17;
}

.table__header--warning {
  padding: 4px 20px;
  color: #2b2b2b;
}

.table__h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  width: 9%;
}

.table__hname {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  margin-left: 10px;
}

.table__hname.standing {
  margin-left: 30px;
}

.table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e1e1e1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table__lp {
  padding: 12px 0;
  margin-right: 7px;
}

.table__col {
  width: 11%;
  text-align: center;
}

.table__col.last {
  width: 15%;
  text-align: right;
}

.table__col.first {
  width: 18px;
  text-align: left;
  margin-right: 0;
}

.table__col img {
  height: auto;
}

.table__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table__team figure {
  width: 24px;
  margin-right: 7px;
}

.table__team a {
  color: inherit;
}

.table__team a:hover {
  text-decoration: underline;
}

.table__select {
  width: 100%;
  outline: none;
  border: 1px solid transparent;
  padding: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: calc(9% + 5px);
  font-size: 0.8125rem;
  color: #8c8c8c;
  font-weight: 700;
}

.table__select:hover {
  cursor: pointer;
}

.table__select.standing {
  padding-left: calc(9% + 25px);
}

.table__container.shorter {
  max-height: 455px;
  overflow: hidden;
  position: relative;
}

.table__container.shorter::after {
  content: '';
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #ffffff), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, #ffffff 10%, rgba(0, 0, 0, 0) 100%);
  height: 140px;
  width: 100%;
  width: 100%;
  bottom: -10px;
  left: 0;
}

.table__container--mb20 {
  margin-bottom: 20px;
}

.table__title {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  margin: 10px 0 5px;
}

.table__title-box {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
}

.table__title em {
  font-style: normal;
  margin-left: -4px;
}

.table__title .results__label {
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.table .results__load {
  position: absolute;
  margin-top: 20px;
  bottom: -40px;
}

.table .news-home__heading {
  margin-bottom: 5px;
}

.table .news-home__heading--mb20 {
  margin-bottom: 20px;
}

.video-sidebar {
  margin-bottom: 30px;
}

.video-sidebar__item {
  position: relative;
}

.video-sidebar__item:hover .box-small__content::before,
.video-sidebar__item:hover .box-medium__content::before,
.video-sidebar__item:hover .news-latest__content::before,
.video-sidebar__item:hover .magazine__content::before,
.video-sidebar__item:hover .video-primary__title--large::before,
.video-sidebar__item:hover .video-primary__title--small::before,
.video-sidebar__item:hover .video-primary__description::before,
.video-sidebar__item:hover .boxes-list__content::before,
.video-sidebar__item:hover .news-latest__desc::before,
.video-sidebar__item:hover .magazine__desc::before,
.video-sidebar__item:hover .news-seealso__desc::before,
.video-sidebar__item:hover .home-opinion__cont::before,
.video-sidebar__item:hover .home-opinion__small::before,
.video-sidebar__item:hover .video-sidebar__content::before,
.video-sidebar__item:hover .boxes-list-discipline__content::before,
.video-sidebar__item:hover .epg-item__description::before {
  opacity: .06;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  border: 2px solid #2b2b2b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.video-sidebar__item:hover .banner-items__image::after,
.video-sidebar__item:hover .box-small__image::after,
.video-sidebar__item:hover .box-medium__image::after,
.video-sidebar__item:hover .news-latest__image::after,
.video-sidebar__item:hover .magazine__image::after,
.video-sidebar__item:hover .video-primary__title--large::before,
.video-sidebar__item:hover .video-primary__title--small::before,
.video-sidebar__item:hover .video-primary__img::after,
.video-sidebar__item:hover .boxes-list__img::after,
.video-sidebar__item:hover .news-latest__photo::after,
.video-sidebar__item:hover .magazine__photo::after,
.video-sidebar__item:hover .news-seealso__image::after,
.video-sidebar__item:hover .home-opinion__image::after,
.video-sidebar__item:hover .boxes-list-discipline__img::after,
.video-sidebar__item:hover .epg-item__image::after {
  opacity: 0.2;
}

.video-sidebar__item:hover .box-small__content,
.video-sidebar__item:hover .box-medium__content,
.video-sidebar__item:hover .news-latest__title,
.video-sidebar__item:hover .boxes-list-discipline__title,
.video-sidebar__item:hover .box-small__title {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2b2b2b;
}

.video-sidebar__item:hover .box-small__content,
.video-sidebar__item:hover .box-medium__content {
  background-color: #e0e0eb;
}

.video-sidebar__item:hover .video-sidebar__content {
  color: #f05a22;
}

.video-sidebar--sg {
  display: block;
  padding-top: 0;
}

.video-sidebar__title {
  display: none;
}

@media (min-width: 1280px) {
  .video-sidebar__title {
    display: block;
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 10px;
  }
}

.video-sidebar__image {
  position: relative;
}

.video-sidebar__image img {
  display: block;
}

.video-sidebar__content {
  position: relative;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.44;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  padding: 10px 15px 15px;
  text-align: center;
  margin-bottom: 10px;
  z-index: 11;
  display: block;
}

.video-sidebar__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.video-sidebar__wrapper.shorter {
  overflow: hidden;
  position: relative;
}

.video-sidebar__wrapper.shorter::after {
  content: '';
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #f5f5f5), to(rgba(255, 255, 255, 0.001)));
  background-image: linear-gradient(to top, #f5f5f5 10%, rgba(255, 255, 255, 0.001) 100%);
  height: 40px;
  width: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.video-sidebar__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.transmis-sidebar {
  margin-bottom: 30px;
}

.transmis-sidebar--sg {
  display: block;
  padding-top: 0;
}

.transmis-sidebar__maintitle {
  display: none;
}

@media (min-width: 1280px) {
  .transmis-sidebar__maintitle {
    display: block;
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 10px;
  }
}

.transmis-sidebar__breadcrumbs {
  font-size: 0.6875rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.transmis-sidebar__breadcrumbs span {
  display: inline-block;
}

.transmis-sidebar__item {
  display: block;
  padding: 12px;
  background-color: #efefef;
  margin-bottom: 10px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.transmis-sidebar__item.first {
  padding: 0;
}

.transmis-sidebar__item.first .transmis-sidebar__photo {
  position: relative;
  width: 98px;
  height: 100px;
  float: left;
}

.transmis-sidebar__item.first .transmis-sidebar__content {
  padding: 12px;
  width: calc(100% - 100px);
  float: left;
}

.transmis-sidebar__item.first .transmis-sidebar__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.transmis-sidebar__item.first .transmis-sidebar__time {
  margin-top: 2px;
  background-color: #170f7d;
}

.transmis-sidebar__item.first .progress-time {
  margin-top: 5px;
}

.transmis-sidebar__item.first .progress-time__time {
  font-size: 0.6875rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 1.1px;
  color: #2b2b2b;
  font-weight: normal;
}

.transmis-sidebar__item.second {
  padding: 12px;
  position: relative;
}

.transmis-sidebar__item.second .transmis-sidebar__bg {
  padding: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.transmis-sidebar__item.second .transmis-sidebar__bg:after {
  display: block;
  content: "";
  background-color: #000000;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.transmis-sidebar__item.second .transmis-sidebar__time {
  background-color: #170f7d;
}

.transmis-sidebar__item.second .transmis-sidebar__title {
  width: 80%;
  color: #fff;
}

.transmis-sidebar__item.second .button-play {
  left: auto;
  right: 0;
  bottom: 0;
}

.transmis-sidebar__item.second .transmis-sidebar__content {
  position: relative;
  z-index: 1;
}

.transmis-sidebar__item:hover {
  background-color: #fff;
}

.transmis-sidebar__item:hover .transmis-sidebar__title {
  color: #f05a22;
}

.transmis-sidebar__item:hover.first {
  background-color: #efefef;
}

.transmis-sidebar__title {
  margin-top: 10px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.25;
}

.transmis-sidebar__time {
  background-color: #170f7d;
  padding: 2px 5px;
  color: #fff;
  margin-right: -3px;
}

.transmis-sidebar__time.label__color {
  background-color: #f05a22;
  color: #fff;
}

.transmis-sidebar__cat {
  background-color: #fff;
  padding: 2px 5px;
}

.transmis-sidebar__more {
  display: inline-block;
  position: relative;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-transform: uppercase;
}

.transmis-sidebar__more i {
  right: -25px;
  left: auto;
}

.transmis-sidebar__more:hover {
  color: #f05a22;
}

.liveblog {
  padding-right: 10px;
  background-color: #f5f5f5;
}

.liveblog__label {
  font-size: 2rem;
  font-weight: 700;
}

.liveblog__item {
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 0;
}

.liveblog__time {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 0.9px;
}

.liveblog__time-point {
  border: 2px solid #2b2b2b;
  height: 8px;
  width: 8px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 3px;
}

.first .liveblog__time-point {
  border: 2px solid #f05a22;
}

.liveblog__time.first {
  color: #f05a22;
}

.liveblog__time .icon-goal {
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
}

.liveblog__content {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.46;
  padding: 6px 0;
}

.liveblog__content b {
  font-weight: bold;
}

.liveblog__content iframe,
.liveblog__content blockquote {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}

.liveblog__embed iframe {
  width: 100%;
}

.liveblog figure {
  position: relative;
}

.liveblog__source {
  margin-top: 5px;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 600;
  letter-spacing: 1.1px;
}

.liveblog-news__title {
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 700;
  padding: 10px 0;
}

.liveblog-news__caption {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
}

.liveblog-video__image {
  position: relative;
}

.liveblog-video__image .button-play.medium {
  top: 50%;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.liveblog-video__title {
  font-size: 0.6875rem;
}

.liveblog-gallery {
  position: relative;
  line-height: 1em;
}

.liveblog-gallery__imgcount {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background-color: #2b2b2b;
  font-size: 1.3125rem;
  color: #e8e8e8;
  font-weight: 700;
  padding: 1px 10px 3px;
  z-index: 1;
}

.liveblog-gallery__imgcount.big {
  top: 10px;
  bottom: auto;
}

.liveblog-gallery__imgcount.big span {
  font-size: 32px;
}

.liveblog-gallery__caption {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.liveblog-citation {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.liveblog-citation .relation-citation {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: transparent url("images/icons/citation.svg") no-repeat left top 20px;
  background-size: 10%;
  padding: 10px 10px 10px 50px;
  margin-top: 10px;
}

.liveblog-citation .relation-citation__author {
  text-align: right;
  margin-top: 20px;
}

.sidebar-menu--title {
  text-align: center;
  font-size: 1.875rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .sidebar-menu--title {
    font-size: 2rem;
    text-align: left;
  }
}

.sidebar-menu--border {
  width: 100%;
  height: 3px;
  background-color: #7ed321;
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .sidebar-menu--border {
    width: 264px;
    margin: 0 auto 10px;
  }
}

@media (min-width: 1024px) {
  .sidebar-menu--border {
    width: calc(100% -  5px);
    margin-left: 0;
  }
}

.sidebar-menu--list {
  display: none;
  margin-left: 18px;
}

@media (min-width: 1024px) {
  .sidebar-menu--list {
    display: block;
  }
}

.sidebar-menu--list li {
  list-style: disc;
  color: #d9d9d9;
}

.sidebar-menu--list li a {
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.75;
}

.sidebar-menu--list li:hover {
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  color: #9393a4;
}

.sidebar-menu--list li:hover a {
  color: #9393a4;
}

.twitter {
  display: none;
  background-color: #f7f7f7;
}

@media (max-width: 768px) {
  .twitter {
    margin-bottom: 30px;
    display: none !important;
  }
}

.twitter::-webkit-scrollbar {
  width: 8px;
}

.twitter::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.twitter::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.twitter::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.news-home {
  display: none;
}

@media (min-width: 1024px) {
  .news-home {
    display: block;
    margin-bottom: 30px;
  }
}

.news-home--sg {
  display: block;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .news-home--sg {
    display: block;
  }
}

.news-home__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.news-home__heading {
  display: none;
}

@media (min-width: 1024px) {
  .news-home__heading {
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
  }
}

.news-home__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 17px;
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .news-home__tabs {
    padding-top: 0;
  }
}

.news-home__tab {
  background-color: #fff;
  font-size: 0.813rem;
  font-weight: 800;
  position: relative;
  border: 1px solid #d9d9d9;
  height: 39px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  cursor: pointer;
}

.news-home__tab.active {
  border-color: transparent;
  background-color: #c8c8d3;
}

.news-home__tab.active:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #c8c8d3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
  z-index: -1;
}

.news-home__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 10px 2px;
  border-bottom: 1px solid #d9d9d9;
}

.news-home__wrapper--first {
  padding: 5px 5px 5px 10px;
  width: 100%;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.news-home__wrapper--first span,
.news-home__wrapper--first time {
  font-size: 0.6875rem;
  color: #d60707;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .news-home__wrapper--first {
    background-color: #fff;
    margin-bottom: 5px;
  }
  .news-home__wrapper--first .news-home__time {
    display: none;
  }
  .news-home__wrapper--first h4 {
    padding: 25px 10px 20px 24px;
    text-align: left;
    font-size: 1.5rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.25;
  }
}

@media (max-width: 767px) {
  .news-home__wrapper--first h4 {
    text-align: center;
    padding: 25px 10px 20px 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .news-home__wrapper--first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .news-home__wrapper--first .news-home__title--image,
  .news-home__wrapper--first .news-home__img {
    width: 100%;
  }
  .news-home__wrapper--first .news-home__title--image {
    padding-top: 5px;
  }
}

@media (max-width: 1023px) {
  .news-home__wrapper {
    border-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .news-home__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.news-home__circle {
  width: 1px;
  height: 1px;
  background-color: #d60707;
  border-radius: 50%;
  padding: 2.5px;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .news-home__circle {
    display: none;
  }
}

.news-home__img {
  width: 48%;
}

@media (max-width: 767px) {
  .news-home__img {
    width: 100%;
  }
}

.news-home__title {
  width: 100%;
  font-size: 1rem;
  color: #2a2a2a;
  line-height: 1.38;
}

.news-home__title--image {
  width: 52%;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .news-home__title--image {
    width: 100%;
  }
}

.news-home__title--margin {
  margin-left: 10px;
}

@media (max-width: 1023px) {
  .news-home__title--margin {
    margin-left: 0px;
  }
}

@media (max-width: 1023px) {
  .news-home__title {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 600;
    line-height: 1.5;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .news-home__title {
    font-size: 0.8125rem;
    color: #2a2a2a;
    font-weight: 600;
    line-height: 1.38;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .news-home__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news-home__time {
  font-size: 0.6875rem;
  color: #2a2a2a;
  font-weight: 600;
  letter-spacing: 1.1px;
  padding-left: 3px;
}

@media (max-width: 1023px) {
  .news-home__time {
    margin-right: 20px;
    font-size: 0.8125rem;
    color: #2a2a2a;
    font-weight: 600;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .news-home__time {
    display: block;
    padding-left: 0;
    font-size: 0.6875rem;
    color: #2a2a2a;
    font-weight: 600;
  }
}

@media (min-width: 1024px) {
  .news-home__time {
    margin-top: 4px;
    margin-right: 5px;
  }
}

.news-home__more {
  margin-top: 15px;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.1;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  letter-spacing: 1.1px;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 25px;
}

.news-home__more i {
  display: block;
  right: 0;
  left: auto;
}

.news-home__more:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .news-home__more {
    display: none;
  }
}

@media (max-width: 1023px) {
  .news-home .button-more {
    margin: 30px auto 0;
  }
}

@media (max-width: 767px) {
  .news-home .button-more {
    margin: 15px auto 0;
  }
}

@media (min-width: 1024px) {
  .news-home .button-more {
    display: none;
  }
}

@media (min-width: 768px) {
  .news-home__small-title {
    display: inline;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .news-home__small-title {
    max-width: 464px;
    display: inline-block;
  }
}

.news-home__button {
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.news-home__button--first {
  color: #2b2b2b;
  position: relative;
}

.news-home__button:hover {
  background-color: #c8c8d3;
  color: #2b2b2b;
}

@media (max-width: 767px) {
  .news-home__button {
    padding: 6px 10px 12px;
  }
}

@media (max-width: 1023px) {
  .news-home__button {
    padding: 13px 10px;
    margin-bottom: 5px;
    background-color: #fff;
  }
}

@media (max-width: 1023px) {
  .right-sidebar .buttons-tabs {
    font-size: 2rem;
    background-color: transparent;
    margin-bottom: -10px;
  }
  .right-sidebar .buttons-tabs-item {
    margin-top: 0;
  }
  .right-sidebar .buttons-tabs-item--active {
    font-size: 2rem;
  }
  .right-sidebar .buttons-tabs-item:hover {
    font-size: 2rem;
  }
}

.home .news-home__heading::before {
  display: none;
}

.results--sg {
  display: block;
  padding-top: 0;
}

.results__heading {
  display: none;
}

@media (min-width: 1280px) {
  .results__heading {
    display: block;
    font-size: 2rem;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 10px;
  }
}

.results__day {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-top: 15px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .results__day {
    margin-top: 25px;
  }
}

.results__day + .results__sport-name {
  margin-top: 0;
}

.results__wrapper {
  margin-bottom: 10px;
}

.results__conference {
  margin-bottom: 20px;
}

.results__conference .results__title {
  margin-bottom: 10px;
}

.results__conference .table__col {
  padding: 10px 0;
}

.results__conference .table__col.table__team {
  padding-left: 10px;
}

.results__conference .table__select {
  padding-left: 6px;
}

.results__more {
  display: none;
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 1024px) {
  .results__more {
    display: inline-block;
  }
}

.results__more i {
  right: -25px;
  left: auto;
}

.results__more:hover {
  text-decoration: underline;
}

.results .button-more {
  margin: 15px auto 0;
}

@media (min-width: 1024px) {
  .results .button-more {
    display: none;
  }
}

.results__sport-name {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  max-height: 40px;
  background-color: #c8c8d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: centern;
      -ms-flex-align: centern;
          align-items: centern;
  padding: 6px 12px;
}

.results__title {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  padding: 8px 12px;
  background-color: #e0e0eb;
}

.results__title-box {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
}

.results__title em {
  font-style: normal;
  margin-left: -4px;
}

.results__title .results__label {
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.results__title a {
  color: inherit;
}

.results__title a:hover {
  text-decoration: underline;
}

.results__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d9d9d9;
  padding: 7px 0 7px;
  min-height: 50px;
}

.results__content--individual {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0 3px;
}

.results__content + .results__sport-name {
  margin-top: 20px;
}

.results__content:last-of-type {
  margin-bottom: 15px;
}

.results__individual {
  font-size: 0.8125rem;
  color: #000;
}

.results__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36%;
}

.results__team--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.results__team.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.results__team.flex-col.results__team--right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.results__team.winner {
  font-weight: bold;
}

.results__logo {
  width: 24px;
  overflow: hidden;
}

.results__logo--left {
  margin-right: 7px;
}

.results__logo--right {
  margin-left: 7px;
}

.results__logo .img-responsive {
  height: auto;
}

.results__name {
  display: inline-block;
  font-size: 0.8125rem;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.results__name .winner {
  font-weight: 700;
}

.results__name .loser {
  text-decoration: line-through;
}

.results__result {
  width: 28%;
  font-size: 1rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.results__result:after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  width: 14%;
  height: 2px;
  background-color: #d9d9d9;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  left: 50%;
}

.results__result--individual {
  position: relative;
  width: auto;
  min-width: 53px;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-align: right;
}

.results__result--individual:after {
  width: 100%;
  bottom: -13px;
}

.results__result--details {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.67px;
}

.results__result--link:hover {
  color: #c8c8d3;
}

.results__result--link:hover::after {
  background-color: #c8c8d3;
}

.results__link {
  cursor: pointer;
}

.results__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  color: #000;
  font-weight: 400;
  min-height: 22px;
}

.results__person span {
  min-width: 12px;
}

.results__person img {
  width: 24px;
  height: 17px;
  max-width: 100%;
  vertical-align: 1px;
  margin-left: 6px;
  margin-right: 6px;
  position: relative;
  border: 1px solid #c5c5c5;
}

.results__person a {
  color: inherit;
}

.results__person a:hover {
  color: #f05a22;
}

.results .img-placeholder {
  background: #f7f7f7;
}

.results .table {
  margin-bottom: 0;
}

.results__label {
  font-size: 0.6875rem;
  color: #38324c;
  font-weight: 700;
  background-color: #eaff00;
  padding: 1px 3px 1px 4px;
}

.results__label--blue {
  color: #eaff00;
  background-color: #38324c;
}

.results__label--blue:hover {
  cursor: pointer;
}

.results__label--grey {
  color: #2b2b2b;
  background-color: #d9d9d9;
}

.results__load {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  position: relative;
  width: 100%;
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: none;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.results__load span {
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1.3px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  display: block;
  width: 160px;
  z-index: 2;
  position: relative;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.results__load::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #d9d9d9;
  position: absolute;
  bottom: 16px;
  z-index: 1;
}

.results__load:hover {
  cursor: pointer;
}

.results__load:hover span {
  background-color: #f0f0f0;
}

.results__load.hidden {
  display: none;
}

.results__wrapper.shorter {
  max-height: 455px;
  overflow: hidden;
  position: relative;
}

.results__wrapper.shorter::after {
  content: "";
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(10%, #f5f5f5), to(rgba(255, 255, 255, 0.001)));
  background-image: linear-gradient(to top, #f5f5f5 10%, rgba(255, 255, 255, 0.001) 100%);
  height: 140px;
  width: 100%;
  width: 100%;
  bottom: -10px;
  left: 0;
}

a.results__name:hover {
  text-decoration: underline;
}

.results-content-wrapper {
  padding-bottom: 20px;
}

.sidebar-list--medals {
  margin-bottom: 40px;
}

.sidebar-list__title {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

.sidebar-list__content {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 1024px) {
  .sidebar-list__content {
    padding-top: 0;
  }
}

.sidebar-list__content .button-expand {
  margin: 30px auto 0;
}

.sidebar-list__content .button-expand::after {
  display: none;
}

.sidebar-list__content .button-expand > span,
.sidebar-list__content .button-expand > svg {
  display: inline-block;
  vertical-align: middle;
}

.sidebar-block {
  position: relative;
}

.sidebar-block__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.sidebar-block__image {
  position: relative;
}

.sidebar-block__content {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 0 20px;
  min-height: 108px;
  font-size: 1.313rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.sidebar-block__content .box-label {
  top: -20px;
}

.sidebar-block__content .label {
  font-size: 0.6875rem;
}

.sidebar-medals {
  width: 100%;
}

.sidebar-medals__position {
  margin-right: 8px;
  width: 26px;
  text-align: center;
}

.sidebar-medals__flag {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 30px;
  margin-right: 8px;
  width: 30px;
  height: 20px;
}

.sidebar-medals thead {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}

.sidebar-medals thead th {
  text-align: center;
}

.sidebar-medals tbody tr.highlight {
  background-color: #dddddd;
}

.sidebar-medals tbody td {
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 0;
}

.sidebar-medals tbody td:first-child {
  text-align: left;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-medals tbody td:last-child {
  position: relative;
  width: 24%;
}

.sidebar-medals tbody td:last-child::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d9d9d9;
}

/*--------- RESULTS ---------*/
.results-f1__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
}

.results-f1__header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  font-size: 0.625rem;
  color: #a9a9a9;
  font-weight: 700;
  padding: 4px 0;
  display: none;
}

.results-f1__header.rally {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .results-f1__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.results-f1__rname {
  width: 30%;
  padding-left: 20px;
}

.results-f1__rname.rally {
  padding-left: 5px;
}

@media (min-width: 768px) {
  .results-f1__rname.rally {
    padding-left: 20px;
  }
}

.results-f1__rcountry {
  width: 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.results-f1__rcountry.rally {
  width: auto;
  padding-left: 5px;
}

@media (min-width: 768px) {
  .results-f1__rcountry.rally {
    padding-left: 0;
    width: 20%;
  }
}

.results-f1__rbrands {
  width: 20%;
}

.results-f1__rlaps {
  width: 5%;
}

.results-f1__rtime {
  width: 17%;
  text-align: right;
  padding-right: 20px;
}

.results-f1__rpoints {
  width: 8%;
  padding-right: 5px;
  text-align: right;
}

.results-f1__content {
  font-size: 0.9375rem;
  color: #000;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0 8px;
}

@media (min-width: 768px) {
  .results-f1__content {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
  }
}

.results-f1__name {
  width: 42%;
  padding-left: 5px;
}

@media (min-width: 768px) {
  .results-f1__name {
    width: 30%;
    padding-left: 20px;
  }
}

.results-f1__country {
  width: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.results-f1__country small {
  display: none;
}

.results-f1__country img {
  width: 100%;
  height: 100%;
  margin-right: 0;
}

@media (min-width: 768px) {
  .results-f1__country {
    width: 20%;
  }
  .results-f1__country small {
    display: inline-block;
  }
  .results-f1__country img {
    margin-right: 9px;
  }
}

.results-f1__flag {
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.results-f1__flag figure {
  max-width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 6px;
}

.results-f1__brands {
  width: 20%;
  display: none;
}

@media (min-width: 768px) {
  .results-f1__brands {
    display: block;
  }
}

.results-f1__laps {
  width: 5%;
  color: #a6a6a6;
  letter-spacing: 1.4px;
  display: none;
}

@media (min-width: 768px) {
  .results-f1__laps {
    display: block;
  }
}

.results-f1__time {
  width: 27%;
  text-align: right;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .results-f1__time {
    width: 17%;
  }
}

.results-f1__points {
  width: 8%;
  font-weight: bold;
  text-align: right;
  position: relative;
  padding-right: 5px;
}

.results-f1__points:after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: -8px;
  border-bottom: 3px solid #d9d9d9;
  width: 41px;
}

@media (min-width: 768px) {
  .results-f1__points:after {
    width: 67px;
  }
}

.results-f1--qual .results-f1__name,
.results-f1--qual .results-f1__rname {
  width: 40%;
}

@media (min-width: 768px) {
  .results-f1--qual .results-f1__name,
  .results-f1--qual .results-f1__rname {
    width: 17%;
  }
}

.results-f1--qual .results-f1__country,
.results-f1--qual .results-f1__rcountry {
  width: 18%;
}

@media (min-width: 768px) {
  .results-f1--qual .results-f1__country,
  .results-f1--qual .results-f1__rcountry {
    width: 7%;
  }
}

.page-results__header {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  border-top: 3px solid #c8c8d3;
  text-align: center;
  padding: 10px;
}

@media (min-width: 1024px) {
  .page-results__header {
    display: block;
    text-align: left;
    padding: 0;
    padding-top: 3px;
    margin-bottom: 20px;
  }
}

.page-results__header--sport-id-1 {
  border-top-color: #7ed321;
}

.page-results__header--sport-id-17 {
  border-top-color: #7fe0ef;
}

.page-results__header--sport-id-22 {
  border-top-color: #cc3564;
}

.page-results__header--sport-id-2 {
  border-top-color: #0bd96e;
}

.page-results__header--sport-id-23 {
  border-top-color: #f5a023;
}

.page-results__header--sport-id-51 {
  border-top-color: #d0d02a;
}

.page-results__header--sport-id-5 {
  border-top-color: #7fe0ef;
}

.page-results__header a {
  color: inherit;
  position: relative;
  display: inline-block;
}

.page-results__header a::after {
  display: block;
  position: absolute;
  content: "";
  position: relative;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  width: 0;
  height: 1px;
  bottom: 0;
  background-color: #f05a22;
  margin: 0 auto;
}

.page-results__header a:hover::after {
  width: 100%;
}

.page-results__top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  position: relative;
}

.page-results__top > .container {
  position: relative;
  z-index: 3;
}

.page-results__top-title {
  width: 100%;
  text-align: center;
  padding-top: 80px;
  font-size: 2.625rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 0.95;
}

.page-results__top-calendar {
  width: 140px;
  height: 35px;
  background-color: #2b2b2b;
}

.page-results__top-calendar small {
  width: 20px;
  height: 20px;
  background-image: url(images/icons/kalendarzyk.svg);
  float: right;
  display: block;
  margin: 8px;
}

.page-results__top-calendar span {
  font-size: 0.6875rem;
  color: #e8e8e8;
  font-weight: 400;
  letter-spacing: 1.1px;
  float: left;
  text-align: center;
  line-height: 14px;
  margin-top: 2px;
}

.page-results__top-calendar span b {
  font-size: 13px;
  font-weight: bold;
}

.page-results__top-calendar .icon-arrow-white-next {
  float: right;
}

.page-results__top-calendar .icon-arrow-white-prev {
  float: left;
}

.page-results__top-calendar i {
  width: 7.5px;
  height: 15px;
  position: relative;
  left: auto;
  right: auto;
  margin-left: 12px;
  margin-right: 7px;
  display: inline-block;
}

.page-results__top-content {
  min-height: 200px;
  position: relative;
}

.page-results__content {
  padding: 24px 0 114px;
  position: relative;
}

.page-results__mobile-filter-switcher {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 199;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .page-results__mobile-filter-switcher {
    display: none;
  }
}

.page-results__beam {
  border-bottom: 1px solid #d9d9d9;
  padding: 10px;
}

.page-results__beam.poland {
  background-color: #efefef;
}

.page-results__beam--draw {
  margin-bottom: 15px;
}

.page-results__subbeam {
  border-bottom: 1px solid #d9d9d9;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.8125rem;
  color: #9b9b9b;
  font-weight: 700;
}

.page-results__subbeam span {
  margin-right: 15px;
  display: inline-block;
}

.page-results__subbeam .set {
  text-align: center;
}

.page-results__item {
  margin-bottom: 30px;
}

.page-results__tabs {
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: 15px;
  padding-left: 10px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 1280px) {
  .page-results__tabs {
    padding-left: 22px;
  }
}

.page-results__tab {
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1.11;
  cursor: pointer;
  margin-right: 20px;
  position: relative;
}

@media (min-width: 1024px) {
  .page-results__tab {
    font-size: 1.125rem;
  }
}

.page-results__tab.active, .page-results__tab:hover {
  color: #2b2b2b;
}

.page-results__tab.active:after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background-color: #eaff00;
}

.page-results__tabs-wrapper {
  display: none;
}

.page-results__tabs-wrapper.active {
  display: block;
}

.page-results .beam-bg {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  background-color: #fff;
  font-weight: bold;
  padding: 10px 13px 10px 13px;
  text-align: center;
  position: relative;
}

.page-results .beam-bg > span {
  display: block;
}

@media (min-width: 768px) {
  .page-results .beam-bg > span {
    display: inline;
  }
}

@media (min-width: 768px) {
  .page-results .beam-bg {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.page-results .beam-bg span {
  font-size: 0.8125rem;
  position: relative;
}

.page-results .beam-bg span i {
  display: none;
}

@media (min-width: 768px) {
  .page-results .beam-bg span i {
    display: block;
    right: -25px;
    left: auto;
  }
}

.page-results .beam-bg .page-results__label {
  font-size: 0.6875rem;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .page-results .beam-bg .page-results__label {
    margin-right: 8px;
  }
}

.page-results .beam-bg .page-results__label:empty {
  display: none;
}

.page-results .beam-bg--transparent {
  background-color: transparent;
}

.page-results .beam-bg--small {
  font-size: 1rem;
}

.page-results .beam-bg a {
  color: inherit;
  position: relative;
}

.page-results .beam-bg a:hover {
  color: #c8c8d3;
}

.page-results .beam-bg a .icon-arrow-orange,
.page-results .beam-bg a .icon-arrow-lime,
.page-results .beam-bg a .icon-arrow-violet,
.page-results .beam-bg a .icon-arrow-violet-dark {
  left: auto;
  right: -25px;
  top: 12px;
}

.page-results .beam-bg .page-results__play.next-button {
  color: #38324c;
  font-weight: 400;
  position: absolute;
  top: 6px;
  right: 10px;
}

.page-results .beam-bg .page-results__play.next-button:hover {
  color: #fff;
  background-color: #38324c;
}

@media (min-width: 768px) {
  .page-results .beam-bg .page-results__play.next-button {
    position: static;
  }
}

.page-results__label {
  display: inline-block;
  text-align: center;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  padding: 2px 5px;
  margin: 0 auto;
  max-width: 54px;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-results__label {
    max-width: initial;
    text-overflow: initial;
    overflow: initial;
  }
}

.page-results__label.label-orange, .page-results__label.label-blue, .page-results__label.label-grey {
  color: #fff;
  text-transform: uppercase;
}

.page-results__label-wrapper {
  margin: 0 auto;
  text-align: center;
}

.page-results__label--date {
  display: none;
}

@media (min-width: 768px) {
  .page-results__label--date {
    display: inline-block;
  }
}

.page-results__team {
  display: block;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.88;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .page-results__team {
    display: inline-block;
  }
}

.page-results__team .brand {
  width: 25px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  position: relative;
}

@media (min-width: 768px) {
  .page-results__team .brand {
    margin: 0 15px;
    top: -1px;
  }
}

.page-results__team .brand img {
  vertical-align: bottom;
  max-height: 25px;
  width: auto;
}

.page-results__team .brand .img-placeholder {
  background: #f5f5f5;
}

.page-results__team .loser {
  text-decoration: line-through;
}

.page-results__team .winner {
  font-weight: 700;
}

.page-results__team-double {
  line-height: 1.4;
}

.page-results__team-double--away {
  text-align: right;
}

.page-results__team a {
  color: inherit;
}

.page-results__team a:hover {
  color: #c8c8d3;
}

.page-results__link {
  display: block;
  font-size: 0.8125rem;
  color: #c8c8d3;
  font-weight: 700;
  line-height: 1.54;
  float: right;
  margin: 7px 0 0 20px;
}

.page-results__play {
  position: relative;
  display: inline-block;
  font-size: 0.6875rem;
  color: #fff;
}

.page-results__play.next-button {
  padding: 5px 9px;
  min-width: initial;
  line-height: 1em;
  color: #38324c;
  border: 1px solid #38324c;
}

.page-results__play.next-button:hover {
  background-color: #38324c;
  color: #fff;
}

.page-results .label-orange {
  color: #2b2b2b;
  background-color: #eaff00;
}

.page-results .label-blue {
  color: #eaff00;
  background-color: #38324c;
}

.page-results .label-grey {
  background-color: #d9d9d9;
}

.page-results__player {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.88;
}

.page-results__player span {
  min-width: 30px;
  max-width: 40px;
  display: inline-block;
}

.page-results__player i {
  width: 24px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
}

.page-results__set {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.88;
  text-align: center;
}

.page-results__set.points {
  font-weight: bold;
}

.page-results__set.points span {
  width: 100%;
  height: 3px;
  background-color: #d9d9d9;
  position: relative;
  bottom: -10px;
  display: block;
}

.page-results__table.table {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .page-results__table.table {
    font-size: 1rem;
  }
}

.page-results__table .table__item {
  padding: 10px 0;
}

.page-results__table .table__header .table__col {
  font-size: 0rem;
}

@media (min-width: 768px) {
  .page-results__table .table__header .table__col {
    font-size: 0.75rem;
  }
}

.page-results__table .table__header .table__col::before {
  content: attr(data-short-title);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .page-results__table .table__header .table__col::before {
    display: none;
  }
}

.page-results__table .table__col {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.page-results__table .table__col:nth-child(1) {
  max-width: 8%;
}

.page-results__table .table__col:nth-child(2) {
  min-width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.page-results__table .table__col:nth-child(2) a {
  color: inherit;
}

.page-results__table .table__col:nth-child(2) a:hover {
  color: #c8c8d3;
}

.page-results__table .table__col figure {
  margin-right: 10px;
  width: 25px;
}

.page-results__table .table__col figure.img-placeholder {
  background: #f5f5f5;
  max-height: 25px;
  padding-bottom: 0 !important;
}

.page-results__table .table__col figure img {
  max-height: 25px;
  width: auto;
  margin: 0 auto;
}

.page-results__table .table__hname {
  margin-left: 0;
}

.page-results__table--tennis .table__col figure.img-placeholder {
  display: none;
}

.page-results__table--speedway .table__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.page-results__table--speedway .table__col:nth-child(2) {
  min-width: 0;
  max-width: 25%;
}

.page-results__table--speedway .table__col:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 33%;
  text-align: left;
}

.page-results__table--speedway .table__col:nth-child(n+3):nth-child(-n+10) {
  max-width: 4%;
}

.page-results__table--speedway .table__col:last-child {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  margin-left: auto;
  padding-right: 10px;
}

.page-results__shortdate {
  letter-spacing: 1.1;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: fsemibold;
  margin-right: 8px;
}

.page-results__shortdate:empty {
  display: none;
}

.page-results__nodata {
  text-align: center;
  font-weight: 700;
  padding: 100px;
}

.page-results__whole .button-expand {
  margin-bottom: 20px;
}

.page-results__draw .VueCarousel-wrapper {
  padding-bottom: 200px;
}

.page-results__draw .VueCarousel-navigation {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 98%;
}

@media (min-width: 1024px) {
  .page-results__draw .VueCarousel-navigation {
    position: static;
    top: auto;
    -webkit-transform: none;
            transform: none;
    width: auto;
  }
}

.page-results__draw .VueCarousel-navigation-prev,
.page-results__draw .VueCarousel-navigation-next {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  color: transparent !important;
  position: relative;
}

@media (min-width: 1024px) {
  .page-results__draw .VueCarousel-navigation-prev,
  .page-results__draw .VueCarousel-navigation-next {
    display: block;
  }
  .page-results__draw .VueCarousel-navigation-prev:hover::before,
  .page-results__draw .VueCarousel-navigation-next:hover::before {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }
}

.page-results__draw .VueCarousel-navigation-prev::before,
.page-results__draw .VueCarousel-navigation-next::before {
  content: '';
  display: block;
  background-size: 50%;
  width: 30px;
  height: 47px;
  position: absolute;
  top: 0;
  background-color: #fff !important;
  padding: 10px !important;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .page-results__draw .VueCarousel-navigation-prev::before,
  .page-results__draw .VueCarousel-navigation-next::before {
    background-size: cover;
    width: 20px;
    height: 38px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent !important;
    padding: 0 !important;
  }
}

.page-results__draw .VueCarousel-navigation-prev.VueCarousel-navigation--disabled,
.page-results__draw .VueCarousel-navigation-next.VueCarousel-navigation--disabled {
  opacity: 1 !important;
  display: none;
}

.page-results__draw .VueCarousel-navigation-prev.VueCarousel-navigation--disabled::before,
.page-results__draw .VueCarousel-navigation-next.VueCarousel-navigation--disabled::before {
  background-color: #dddddd !important;
}

@media (min-width: 768px) {
  .page-results__draw .VueCarousel-navigation-prev.VueCarousel-navigation--disabled,
  .page-results__draw .VueCarousel-navigation-next.VueCarousel-navigation--disabled {
    opacity: 0.5 !important;
  }
  .page-results__draw .VueCarousel-navigation-prev.VueCarousel-navigation--disabled::before,
  .page-results__draw .VueCarousel-navigation-next.VueCarousel-navigation--disabled::before {
    background-color: transparent !important;
  }
}

.page-results__draw .VueCarousel-navigation-prev::before {
  background: transparent url("images/icons/slide-arrow-left.svg") no-repeat center center;
  left: 9px;
}

@media (min-width: 768px) {
  .page-results__draw .VueCarousel-navigation-prev::before {
    left: -25px;
  }
}

.page-results__draw .VueCarousel-navigation-next::before {
  background: transparent url("images/icons/slide-arrow-right.svg") no-repeat center center;
  right: 9px;
}

@media (min-width: 768px) {
  .page-results__draw .VueCarousel-navigation-next::before {
    right: -25px;
  }
}

.page-results__draw .VueCarousel-dot {
  margin-top: 1px !important;
}

.page-results__draw .VueCarousel-slide:first-child .draw-content__column .draw-content__item::before {
  display: none;
}

.page-results__draw .VueCarousel-slide:last-child .draw-content__column .draw-content__item::after {
  display: none;
}

.page-results__draw .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(1 * 100% + ((1 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.page-results__draw .VueCarousel-slide:nth-child(2) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(2 * 100% + ((2 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.page-results__draw .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(4 * 100% + ((4 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.page-results__draw .VueCarousel-slide:nth-child(4) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(8 * 100% + ((8 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.page-results__draw .VueCarousel-slide:nth-child(5) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(16 * 100% + ((16 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.page-results__draw .VueCarousel-slide:nth-child(6) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(32 * 100% + ((32 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.page-results__draw .VueCarousel-slide:nth-child(7) .draw-content__item:nth-child(2n + 1)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  height: calc(64 * 100% + ((64 - 1) * 15px));
  -webkit-transform: translate(15px, 46px);
          transform: translate(15px, 46px);
  z-index: -1;
  border-left: 0;
}

.draw-header__item {
  min-width: 33.33%;
  text-align: center;
}

.draw-title {
  height: 50px;
  padding: 15px 13px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 1024px) {
  .draw-title {
    font-size: 1.125rem;
    text-align: left;
  }
}

.draw-content {
  height: 100%;
}

.draw-content__column {
  min-width: 33.33%;
  height: 100%;
  padding: 0 15px 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.draw-content__item {
  background-color: #fff;
  margin-bottom: 13px;
  padding: 10px;
  position: relative;
  border: 1px solid #fff;
  cursor: pointer;
}

.draw-content__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 15px;
  background-color: #d9d9d9;
}

.draw-content__item:hover {
  background-color: #f0f0f0;
  border-color: #d9d9d9;
}

.draw-content__item:hover .draw-item__details {
  display: block;
}

.draw-content__item:hover .draw-item__brand {
  margin-right: 10px;
  max-width: 16px;
}

.draw-content__item:hover .draw-item__brand figure {
  width: 16px;
}

.draw-content__item:hover .draw-item__brand figure.img-placeholder {
  background: none;
  background-color: #f0f0f0;
}

.draw-content__eventdate {
  margin: -11px -11px 8px;
  padding: 6px 10px 8px;
  font-size: 0.688rem;
  font-weight: 700;
  background-color: #ececf3;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
}

.draw-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  position: relative;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.draw-item:not(:nth-child(2)) {
  margin-bottom: 15px;
}

.draw-item__brand {
  margin-right: 10px;
  max-width: 16px;
}

.draw-item__brand figure {
  width: 16px;
}

.draw-item__brand figure.img-placeholder {
  background: none;
  background-color: #fff;
}

.draw-item__name--won {
  font-weight: 700;
}

.draw-item__score {
  margin-left: auto;
  font-weight: 700;
  padding-left: 10px;
}

.draw-item__details {
  display: none;
  position: absolute;
  z-index: 3;
  left: -1px;
  right: -1px;
  top: 100%;
  background-color: #f0f0f0;
  border: 1px solid #d9d9d9;
  border-top: 0;
}

.draw-score__item {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.draw-score__item:first-child {
  margin-left: 0;
}

.draw-score__item:empty {
  display: none;
}

.draw-score__item--penalty {
  margin-left: 0px;
  font-size: 0.6875rem;
}

.draw-details--open .draw-details__link {
  border-top: 1px solid #d9d9d9;
}

.draw-details--open .draw-details__link svg {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.draw-details__link {
  text-align: center;
  color: #38324c;
  font-size: 0.8125rem;
  padding: 5px 0;
}

.draw-details__link svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.35s ease transform;
  transition: 0.35s ease transform;
  margin-left: 5px;
  position: relative;
  top: 1px;
}

.draw-details__content {
  display: block;
  background-color: #eaeaea;
  border-top: 1px solid #d9d9d9;
}

.draw-details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  position: relative;
}

.draw-details__item:not(:last-of-type)::after {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background-color: #d9d9d9;
}

.draw-details__date {
  font-size: 0.6875rem;
  letter-spacing: 1.1px;
  max-width: 50px;
}

.draw-details__participants {
  font-size: 0.8125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 15px;
}

.draw-details__participants a {
  color: inherit;
}

.draw-details__participants a:hover {
  text-decoration: underline;
}

.draw-details__score {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  white-space: nowrap;
}

.result-beam {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .result-beam {
    max-height: 50px;
  }
}

.result-beam--football .result-beam__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.result-beam--football .result-beam__item:nth-child(1) {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 68%;
}

@media (min-width: 768px) {
  .result-beam--football .result-beam__item:nth-child(1) {
    display: none;
    max-width: none;
  }
}

.result-beam--football .result-beam__item:nth-child(2) {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 85px;
}

@media (min-width: 768px) {
  .result-beam--football .result-beam__item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.result-beam--football .result-beam__item:nth-child(3) {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .result-beam--football .result-beam__item:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.result-beam--football .result-beam__item:nth-child(4) {
  max-width: 50px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  position: relative;
}

.result-beam--football .result-beam__item:nth-child(5) {
  display: none;
}

@media (min-width: 768px) {
  .result-beam--football .result-beam__item:nth-child(5) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.result-beam--football .result-beam__item:last-child {
  max-width: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .result-beam--football .result-beam__item:last-child .page-results__label {
    display: none;
  }
}

@media (min-width: 768px) {
  .result-beam--football .result-beam__item:last-child {
    max-width: 92px;
  }
}

.result-beam--football:hover {
  background-color: #fff;
  cursor: pointer;
}

.result-beam--football:hover .result-beam__score--link {
  color: #38324c;
}

.result-beam--football:hover .result-beam__score--link::after {
  background-color: #38324c;
}

.result-beam--skijump {
  padding-right: 0;
  max-height: 39px;
}

.result-beam--skijump .page-results__player {
  font-size: 0.8125rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .result-beam--skijump .page-results__player {
    font-size: 1rem;
    line-height: 1.88;
  }
}

.result-beam--skijump .page-results__player span {
  min-width: 14px;
}

.result-beam--skijump .page-results__set {
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .result-beam--skijump .page-results__set {
    font-size: 1rem;
  }
}

.result-beam--skijump .result-beam__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.result-beam--skijump .result-beam__item:nth-child(1) {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  min-width: 40%;
}

@media (min-width: 768px) {
  .result-beam--skijump .result-beam__item:nth-child(1) {
    min-width: 30%;
  }
}

.result-beam--skijump .result-beam__item:nth-child(2) {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  min-width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .result-beam--skijump .result-beam__item:nth-child(2) {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    min-width: 40%;
  }
}

.result-beam--skijump .result-beam__item:nth-child(2) i {
  height: 16px;
}

.result-beam--skijump .result-beam__item:nth-child(2) i img {
  display: block;
}

.result-beam--skijump .result-beam__item:nth-child(2) small {
  display: none;
}

@media (min-width: 768px) {
  .result-beam--skijump .result-beam__item:nth-child(2) small {
    display: block;
  }
}

.result-beam--skijump .result-beam__item a {
  color: inherit;
}

.result-beam--skijump .result-beam__item a:hover {
  color: #c8c8d3;
}

.result-beam--athlete {
  padding-right: 0;
}

.result-beam--athlete .result-beam__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.result-beam--athlete .result-beam__item:nth-child(1) {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  min-width: 29%;
}

.result-beam--athlete .result-beam__item:nth-child(2) {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  min-width: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.result-beam--athlete .result-beam__item:nth-child(2) i {
  height: 16px;
}

.result-beam--athlete .result-beam__item:nth-child(2) i img {
  display: block;
}

.result-beam__separator {
  margin: 0 9px;
}

.result-beam__score {
  text-align: center;
  font-size: 1.3125rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 1.3px;
  position: relative;
  height: 100%;
}

@media (min-width: 768px) {
  .result-beam__score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    min-height: 27px;
    white-space: nowrap;
  }
}

.result-beam__score::after {
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  background-color: #d9d9d9;
}

@media (min-width: 768px) {
  .result-beam__score::after {
    left: -10px;
    right: -10px;
    bottom: -13px;
  }
}

.result-beam__score::before {
  font-size: 0.6875rem;
  font-weight: 400;
  position: absolute;
  bottom: -9px;
  content: attr(data-extended-score);
  white-space: nowrap;
  display: none;
}

@media (min-width: 768px) {
  .result-beam__score::before {
    display: block;
  }
}

.result-beam__score--link {
  cursor: pointer;
  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;
}

@media (min-width: 768px) {
  .result-beam__score--link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.result-beam__score--link:hover {
  color: #f05a22;
}

.result-beam__score--link:hover::after {
  background-color: #f05a22;
}

.result-beam__score--total {
  display: none;
}

@media (min-width: 768px) {
  .result-beam__score--total {
    display: block;
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 0.6875rem;
    font-weight: 400;
  }
}

.result-beam__score--total::before, .result-beam__score--total::after {
  display: none;
}

.result-beam__score .icon-goal {
  position: relative;
  top: 5px;
}

.result-beam__score .icon-yellow-card {
  position: relative;
  top: 5px;
}

.result-beam__score .icon-red-card {
  position: relative;
  top: 5px;
}

.result-beam__score small {
  display: none;
}

@media (min-width: 768px) {
  .result-beam__score small {
    display: block;
    margin: 0 6px;
  }
}

.result-beam__score .page-results__score--left, .result-beam__score .page-results__score--right {
  position: relative;
}

@media (min-width: 768px) {
  .result-beam__score .page-results__score--left, .result-beam__score .page-results__score--right {
    min-width: 40px;
  }
}

.result-beam__score .page-results__score--left small, .result-beam__score .page-results__score--right small {
  display: block;
  position: absolute;
  top: 7px;
  right: 2px;
  font-size: 0.6875rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .result-beam__score .page-results__score--left small, .result-beam__score .page-results__score--right small {
    display: none;
  }
}

@media (min-width: 768px) {
  .result-beam__score .page-results__score--right {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .result-beam__score .page-results__score--left {
    text-align: right;
  }
}

.results-play__text {
  display: none;
}

@media (min-width: 768px) {
  .results-play__text {
    display: inline;
  }
}

.subbeam--skijump {
  padding-right: 0;
}

.subbeam--skijump .subbeam__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.subbeam--skijump .subbeam__item:nth-child(1) {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  min-width: 40%;
}

@media (min-width: 768px) {
  .subbeam--skijump .subbeam__item:nth-child(1) {
    min-width: 30%;
  }
}

.subbeam--skijump .subbeam__item:nth-child(2) {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  min-width: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .subbeam--skijump .subbeam__item:nth-child(2) {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    min-width: 40%;
  }
}

.subbeam__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.draw-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .draw-select {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.draw-select__label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .draw-select__label {
    margin-bottom: 0;
    margin-right: 28px;
  }
}

.draw-select__select {
  width: 100%;
}

@media (min-width: 768px) {
  .draw-select__select {
    width: 500px;
  }
}

.draw-select.controls-options .multiselect__tags {
  width: 370px;
}

.draw-select .controls-options__box:nth-child(2) {
  width: 370px;
}

.draw-select.controls-options .multiselect .option__title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.results-filters {
  display: none;
}

@media (min-width: 1024px) {
  .results-filters {
    display: block;
  }
}

.results-filters__close {
  display: none;
}

.results-filters__mobile {
  display: block;
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  z-index: 300;
  height: 100%;
  padding-top: 30px;
  background: #e8e8e8;
  overflow-y: scroll;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.results-filters__mobile .results-filters__wrapper {
  text-align: center;
}

.results-filters__mobile .results-filters__label,
.results-filters__mobile .results-filters__item {
  display: block;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.results-filters__mobile .results-filters__item {
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 400;
}

.results-filters__mobile .results-filters__item::before {
  display: none;
}

.results-filters__mobile .results-filters__close {
  display: block;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 26px;
  height: 26px;
  background-image: url(images/icons/x_orange.svg);
}

.results-filters__mobile .results-filters__close:hover {
  cursor: pointer;
}

.results-filters__mobile.active {
  top: 0;
}

@media (min-width: 1024px) {
  .results-filters__mobile {
    display: none;
  }
}

.results-filters__wrapper {
  padding-bottom: 20px;
}

.results-filters__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
}

.results-filters__item {
  font-size: 0.8125rem;
  color: #9b9b9b;
  line-height: 2em;
  display: block;
}

.results-filters__item::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background-color: #d9d9d9;
  border-radius: 50%;
  margin-right: 8px;
}

.results-filters__item.hidden {
  display: none;
}

.results-filters__item.active {
  font-weight: 700;
  color: #2b2b2b;
}

.results-filters__item.active::before {
  background-color: #2b2b2b;
}

.results-filters__item:hover {
  color: #38324c;
}

.results-filters__morelink {
  font-size: 0.8125rem;
  cursor: pointer;
  position: relative;
}

.results-filters__morelink:hover {
  color: #38324c;
}

.results-filters__morelink .icon-arrow-orange,
.results-filters__morelink .icon-arrow-violet {
  left: auto;
  right: -70%;
}

.results-navigation {
  padding: 77px 0 8px;
}

@media (min-width: 1024px) {
  .results-navigation .container-fluid {
    width: 924px;
  }
}

@media (min-width: 1280px) {
  .results-navigation .container-fluid {
    width: 1244px;
  }
}

@media (min-width: 1921px) {
  .results-navigation .container-fluid {
    width: 1600px;
  }
}

.results-navigation__header {
  margin-bottom: 10px;
  font-size: 2.625rem;
  color: #fff;
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-transform: capitalize;
}

@media (min-width: 1280px) {
  .results-navigation__header {
    margin-bottom: 44px;
  }
}

.results-navigation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
  width: 100%;
  overflow-x: auto;
}

.results-navigation__wrapper::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.results-navigation__wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.results-navigation__wrapper::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.results-navigation__wrapper::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 1024px) {
  .results-navigation__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.results-navigation__wrapper li,
.results-navigation__wrapper > a {
  display: inline-block;
  margin: 0 10px;
  white-space: nowrap;
  padding-bottom: 10px;
  font-size: 1.125rem;
  color: #dbdbdb;
  font-weight: 700;
}

.results-navigation__wrapper a:hover {
  color: #fff;
}

.results-navigation__items {
  position: relative;
  font-size: 1.125rem;
  color: #9b9b9b;
  font-weight: 700;
  text-transform: capitalize;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.results-navigation__items:after {
  position: relative;
  display: block;
  content: '';
  width: 0;
  height: 1px;
  bottom: -4px;
  margin: 0 auto;
  background-color: #f05a22;
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
}

.results-navigation__items:hover {
  color: #2b2b2b;
}

.results-navigation__items:hover:after {
  width: 100%;
}

.results-navigation__items.active {
  color: #2b2b2b;
}

.results-navigation__items.active:after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 7px;
  background-color: #f05a22;
}

.results-navigation .video-navigation__items.active,
.results-navigation .video-navigation__items:hover {
  color: #fff;
}

.discipline-results-label {
  font-size: 1.625rem;
  color: #2b2b2b;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .discipline-results-label {
    font-size: 2rem;
  }
}

.discipline-results-label::before {
  content: '';
  display: block;
  height: 3px;
  max-width: 206px;
  background-color: #2b2b2b;
}

.discipline-results-label > div::first-letter {
  text-transform: uppercase;
}

.results-table {
  margin-bottom: 36px;
}

.results-table__beam {
  padding: 14px 10px;
  background-color: #303542;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .results-table__beam {
    font-size: 1.125rem;
    padding: 14px 25px;
  }
}

.results-table__link {
  font-size: 0.75rem;
  color: #f05a22;
  text-transform: none;
  display: inline-block;
  border: 1px solid #f05a22;
  background-color: #fff;
  padding: 4px 11px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.results-table__link:hover {
  background-color: #f05a22;
  color: #fff;
}

.results-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.results-table__row.highlighted {
  background-color: #e2eefa;
}

.results-table__row--cancelled {
  background-color: #fff;
}

.results-table__col--toRight {
  margin-left: auto;
}

.results-table__col--textRight {
  text-align: right;
}

.results-table__col--country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.results-table__header .results-table__row, .results-table__content .results-table__row {
  border-bottom: 1px solid #d7d7d7;
}

.results-table__header .results-table__row--h2h, .results-table__content .results-table__row--h2h {
  display: block;
  border-bottom: 0;
  padding: 0 !important;
}

.results-table__header .results-table__col:nth-child(1), .results-table__content .results-table__col:nth-child(1) {
  width: 35px;
  padding-right: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .results-table__header .results-table__col:nth-child(1), .results-table__content .results-table__col:nth-child(1) {
    width: 60px;
  }
}

@media (max-width: 767px) {
  .results-table__header .results-table__col:nth-child(1) .icon-medal, .results-table__content .results-table__col:nth-child(1) .icon-medal {
    width: 21px;
    height: 21px;
  }
}

.results-table__header .results-table__col:nth-child(2), .results-table__content .results-table__col:nth-child(2) {
  width: 60%;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .results-table__header .results-table__col:nth-child(2), .results-table__content .results-table__col:nth-child(2) {
    width: 30%;
  }
}

.results-table__header .results-table__col:nth-child(3), .results-table__content .results-table__col:nth-child(3) {
  width: 15%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .results-table__header .results-table__col:nth-child(3), .results-table__content .results-table__col:nth-child(3) {
    width: 40%;
  }
}

.results-table__header .results-table__col:nth-child(4), .results-table__content .results-table__col:nth-child(4) {
  width: 20%;
}

@media (min-width: 768px) {
  .results-table__header .results-table__col:nth-child(4), .results-table__content .results-table__col:nth-child(4) {
    width: 10%;
  }
}

.results-table__header .results-table__col--country > figure, .results-table__content .results-table__col--country > figure {
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 7px;
}

.results-table__header .results-table__col--country .img-placeholder, .results-table__content .results-table__col--country .img-placeholder {
  padding-bottom: 25px !important;
}

@media (min-width: 768px) {
  .results-table__header .results-table__col--country, .results-table__content .results-table__col--country {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.results-table__header {
  font-size: 0.875rem;
  color: #656565;
}

.results-table__header .results-table__row {
  padding: 12px 10px;
  max-height: 43px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .results-table__header .results-table__row {
    padding: 12px 25px;
  }
}

.results-table__content {
  font-size: 1rem;
}

.results-table__content .results-table__row {
  padding: 15px 10px;
}

@media (min-width: 768px) {
  .results-table__content .results-table__row {
    smax-height: 57px;
    padding: 18px 25px;
  }
}

.results-table__content a.results-table__name {
  color: inherit;
}

.results-table__content a.results-table__name:hover {
  color: #f05a22;
}

.results-table__countryname {
  display: none;
}

@media (min-width: 768px) {
  .results-table__countryname {
    display: inline;
  }
}

.results-table__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 27px;
}

.results-table__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  color: inherit;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #d7d7d7;
  padding: 4px 11px;
  background-color: #fff;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

.results-table__more:hover {
  background-color: transparent;
}

.results-table__more svg {
  margin-left: 7px;
}

/*--------- BRANDS ---------*/
.brands {
  margin-bottom: 80px;
}

.brands__top {
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.brands__top-container {
  min-height: 200px;
  position: relative;
}

.brands__top-title {
  font-size: 2.625rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 0.95;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -80%);
          transform: translate(-50%, -80%);
}

.brands__top-title img {
  position: relative;
  top: 15px;
}

.brands__top-menu {
  font-size: 2.625rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 0.95;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}

.brands__top-menu ul li {
  display: inline-block;
}

.brands__top-menu ul li a {
  display: block;
  font-size: 1.125rem;
  color: #9b9b9b;
  font-weight: 700;
  margin: 0 10px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-bottom: 1px solid transparent;
  padding-bottom: 7px;
}

.brands__top-menu ul li a:hover {
  color: #fff;
  border-bottom: 1px solid #f05a22;
}

.brands__top-menu ul li a.active {
  color: #fff;
  border-bottom: 1px solid #f05a22;
}

.brands__photo {
  background-color: #161616;
  padding: 31px 0;
}

.brands__photo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.brands__content {
  padding: 37px 0;
}

.brands__content-info {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.57;
}

.brands__content-item {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.33;
  padding: 16px 0;
  border-bottom: 1px solid #d9d9d9;
}

.brands__content-item i {
  display: inline-block;
  margin-right: 60px;
  position: relative;
  top: 5px;
}

.brands__content-item:nth-child(1) {
  border-top: 1px solid #d9d9d9;
}

.brands__content-item span {
  font-weight: bold;
  float: right;
}

.brands__players-player {
  border-bottom: 1px solid #d9d9d9;
}

.brands__players-player:before, .brands__players-player:after {
  content: " ";
  display: table;
}

.brands__players-player:after {
  clear: both;
}

.brands__players-player:nth-child(1) {
  border-top: 1px solid #d9d9d9;
}

.brands__players-column {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  border-top: 3px solid #2b2b2b;
  padding-top: 5px;
}

.brands__players-photo {
  width: 100px;
  height: 100px;
  float: left;
}

.brands__players-photo img {
  width: 100%;
  height: auto;
}

.brands__players-info {
  float: left;
  padding-left: 32px;
  width: calc(100% - 100px);
}

.brands__players-name {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.9;
  padding-top: 20px;
}

.brands__players-name span {
  position: relative;
  top: -15px;
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 2.5;
}

.brands__players-name small {
  float: right;
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.25;
  margin-top: -25px;
  margin-right: 65px;
}

.brands__players-score {
  width: 20%;
  float: right;
}

.brands__button-container {
  margin-top: 30px;
  width: 100%;
  position: relative;
  height: 32px;
}

.brands__button-container span {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-bottom: 1px solid #d9d9d9;
}

.brands__button-content {
  font-size: 0.8125rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 5px 12px;
  border: 1px solid #d9d9d9;
  display: block;
  width: 180px;
  text-transform: uppercase;
  text-align: center;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*--------- MAGAZINE ---------*/
.magazine {
  margin-top: 20px;
  position: relative;
}

.magazine__heading {
  position: relative;
  display: inline-block;
  margin-bottom: 19px;
  padding-right: 5px;
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1280px) {
  .magazine__heading {
    width: 100%;
    text-align: center;
    font-size: 1.875rem;
    border-top: 3px solid #2b2b2b;
    padding-top: 10px;
  }
}

@media (min-width: 1024px) {
  .magazine__heading {
    margin-bottom: 27px;
    border-top: 0;
    text-align: left;
  }
  .magazine__heading:before {
    display: block;
    position: absolute;
    content: "";
    width: 160px;
    height: 3px;
    background-color: #2b2b2b;
  }
}

.magazine__wrapper {
  max-width: 945px;
  width: 100%;
  height: 74px;
  display: inline-block;
  background-color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.magazine__wrapper:hover .box-small__content::before,
.magazine__wrapper:hover .box-medium__content::before,
.magazine__wrapper:hover .news-latest__content::before,
.magazine__wrapper:hover .magazine__content::before,
.magazine__wrapper:hover .video-primary__title--large::before,
.magazine__wrapper:hover .video-primary__title--small::before,
.magazine__wrapper:hover .video-primary__description::before,
.magazine__wrapper:hover .boxes-list__content::before,
.magazine__wrapper:hover .news-latest__desc::before,
.magazine__wrapper:hover .magazine__desc::before,
.magazine__wrapper:hover .news-seealso__desc::before,
.magazine__wrapper:hover .home-opinion__cont::before,
.magazine__wrapper:hover .home-opinion__small::before,
.magazine__wrapper:hover .video-sidebar__content::before,
.magazine__wrapper:hover .boxes-list-discipline__content::before,
.magazine__wrapper:hover .epg-item__description::before {
  opacity: .06;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
  border: 2px solid #2b2b2b;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}

.magazine__wrapper:hover .banner-items__image::after,
.magazine__wrapper:hover .box-small__image::after,
.magazine__wrapper:hover .box-medium__image::after,
.magazine__wrapper:hover .news-latest__image::after,
.magazine__wrapper:hover .magazine__image::after,
.magazine__wrapper:hover .video-primary__title--large::before,
.magazine__wrapper:hover .video-primary__title--small::before,
.magazine__wrapper:hover .video-primary__img::after,
.magazine__wrapper:hover .boxes-list__img::after,
.magazine__wrapper:hover .news-latest__photo::after,
.magazine__wrapper:hover .magazine__photo::after,
.magazine__wrapper:hover .news-seealso__image::after,
.magazine__wrapper:hover .home-opinion__image::after,
.magazine__wrapper:hover .boxes-list-discipline__img::after,
.magazine__wrapper:hover .epg-item__image::after {
  opacity: 0.2;
}

.magazine__wrapper:hover .box-small__content,
.magazine__wrapper:hover .box-medium__content,
.magazine__wrapper:hover .news-latest__title,
.magazine__wrapper:hover .boxes-list-discipline__title,
.magazine__wrapper:hover .box-small__title {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #2b2b2b;
}

.magazine__wrapper:hover .box-small__content,
.magazine__wrapper:hover .box-medium__content {
  background-color: #e0e0eb;
}

@media (min-width: 768px) {
  .magazine__wrapper {
    height: 152px;
  }
}

.magazine__image {
  position: relative;
  width: 130px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}

.magazine__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 768px) {
  .magazine__image {
    width: 265px;
    margin-right: 33px;
  }
}

.magazine__content {
  height: 100%;
}

.magazine__content::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.magazine__desc {
  position: relative;
  background-color: #fff;
  padding: 10px 10px 30px 10px;
  text-align: center;
}

.magazine__desc::before {
  content: '';
  display: block;
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: #e0e0eb;
  border-radius: 4px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
}

.magazine__desc h3 {
  font-size: 1.3125rem;
  color: #000;
  font-weight: 700;
  line-height: 1.38;
}

.magazine__desc h3 span {
  margin-top: 10px;
  display: block;
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.54;
}

@media (min-width: 768px) {
  .magazine__desc {
    width: 43%;
    padding: 20px 26px 27px 21px;
    text-align: left;
  }
  .magazine__desc h3 {
    font-size: 1.5rem;
    line-height: 1.33;
  }
  .magazine__desc h3 span {
    font-size: 1rem;
    line-height: 1.54;
  }
}

@media (min-width: 1024px) {
  .magazine__desc {
    width: 43%;
    padding: 20px 26px 27px 21px;
    text-align: left;
  }
  .magazine__desc h3 {
    font-size: 2rem;
    line-height: 1.25;
  }
  .magazine__desc h3 span {
    font-size: 1rem;
    line-height: 1.63;
  }
}

@media (min-width: 1280px) {
  .magazine__desc h3 {
    font-size: 2.625rem;
    line-height: 1.19;
  }
  .magazine__desc h3 span {
    font-size: 1.3125rem;
    line-height: 1.57;
  }
}

.magazine__category {
  display: block;
  padding-top: 18px;
  position: absolute;
  bottom: 10px;
  left: 0;
  text-transform: uppercase;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  width: 100%;
  text-align: left;
}

.magazine__category em {
  font-style: normal;
  display: inline-block;
}

@media (max-width: 768px) {
  .magazine__category {
    bottom: 0;
    font-size: 0.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
    padding-bottom: 5px;
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding-top: 0;
  }
}

.magazine__category span b:hover {
  color: #ff5d21;
  text-decoration: underline;
  z-index: 100;
  position: relative;
  cursor: pointer;
}

@media (min-width: 768px) {
  .magazine__description {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-right: 10px;
  }
}

.magazine__photo {
  position: relative;
}

.magazine__photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

@media (min-width: 768px) {
  .magazine__photo {
    width: 57%;
  }
}

.magazine__title {
  position: relative;
  width: calc(100% - 150px);
  height: 100%;
  overflow: hidden;
  display: inline-block;
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 400;
  line-height: 1.38;
  padding: 5px 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .magazine__title {
    font-size: 1.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
    padding: 33px 0 26px;
    width: calc(100% - 320px);
  }
}

.magazine__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 5px;
}

.magazine__box .magazine-heading__tag {
  position: absolute;
  bottom: 27px;
  margin-bottom: 0;
}

.magazine__box .box-small__category {
  bottom: 17px;
}

@media (min-width: 768px) {
  .magazine__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 13px;
  }
  .magazine__box .box-label {
    top: -30px;
    left: 32px;
  }
  .magazine__box .box-small__category {
    left: 23px;
  }
}

@media (min-width: 1280px) {
  .magazine__box {
    margin-bottom: 30px;
  }
  .magazine__box .box-label {
    top: -35px;
  }
  .magazine__box .box-small__category {
    bottom: 27px;
  }
}

.magazine-elem {
  position: relative;
  display: block;
  height: 180px;
  margin-bottom: 10px;
  background-clip: #2b2b2b;
}

.magazine-elem__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
}

.magazine-elem__bg:after {
  background: linear-gradient(60deg, #0b022b, rgba(158, 43, 0, 0.1));
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: 1;
}

.magazine-elem__title {
  position: absolute;
  bottom: 20px;
  font-size: 1.3125rem;
  color: #e8e8e8;
  font-weight: 700;
  line-height: 1.33;
  z-index: 100;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .magazine-elem {
    margin-bottom: 30px;
  }
}

.magazine-elem:hover .magazine-elem__bg:after {
  background: linear-gradient(60deg, #0b022b, rgba(234, 255, 0, 0.4));
}

.magazine-elem__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.magazine__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

/*--------- WEBVIEW ---------*/
.webview-nodata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
}

.webview .button-expand {
  margin-bottom: 16px;
}

.webview-news {
  overflow-x: hidden;
}

.webview-news .news__wrapper {
  padding-left: 0;
  max-width: 71.6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .webview-news .news__wrapper {
    max-width: 550px;
  }
}

.webview-news .news-text__image {
  display: none;
}

.webview-news .news-heading {
  padding: 25px 0 0;
}

.webview-news .news-heading__title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 22.2pt;
}

.webview-news .news-heading__title::after {
  content: '';
  display: block;
  margin: 20px auto 0;
  height: 1px;
  width: 50px;
  background-color: #eaff00;
}

.webview-news .news-heading__tag {
  text-align: center;
  margin-top: 0;
  color: rgba(83, 83, 83, 0.5);
  font-size: 0.625rem;
}

.webview-news .news-heading__tag a {
  color: rgba(0, 0, 0, 0.87);
}

.webview-news .news-image {
  padding: 0 10px;
}

.webview-news .news-image__img {
  padding-top: 10px;
}

.webview-news .news-image__description {
  font-size: 0.625rem;
  border-bottom: 0;
  padding: 5px 0;
}

.webview-news .news-author {
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.webview-news .news-author--more {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 10px 10px 0;
}

.webview-news .news-author--more .news-author__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.webview-news .news-author--more .news-author__name {
  margin-top: 0;
}

.webview-news .news-author--more .news-author__description {
  margin-left: 0;
}

.webview-news .news-author__name,
.webview-news .news-author a:first-of-type {
  font-size: 0.75rem;
}

.webview-news .news-lead {
  padding: 0 10px;
  font-size: 16.2pt;
}

.webview-news .news-text__paragraph {
  padding: 0 10px;
}

.webview-news .news-tags {
  margin-top: 20px;
  padding-bottom: 10px;
}

.webview-news .news-tags__wrapper {
  text-align: left;
}

.webview-news .news-tags__tag {
  border-radius: 1rem;
}

.webview-news .news-video-small .news-video-large__single {
  padding-left: 10px;
}

.webview-news .home-video__img {
  display: block;
}

.webview-news .transmission-tablescore.speedway .transmission-tablescore__table .tr .td:first-child,
.webview-news .transmission-tablescore.speedway .transmission-tablescore__table .tr .th:first-child {
  min-width: 44%;
}

.webview-news .transmission-tablescore.speedway .transmission-tablescore__table .tr .td,
.webview-news .transmission-tablescore.speedway .transmission-tablescore__table .tr .th {
  max-width: 6%;
}

.webview-news .popup-timeline > .container {
  max-width: 71.6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .webview-news .popup-timeline > .container {
    max-width: 550px;
  }
}

.news-commentator {
  font-size: 0.75rem;
  background-color: #fff;
  padding: 7px 15px;
  margin: 0 8px;
}

.news-commentator__label {
  margin-bottom: 1px;
}

.news-commentator__value {
  font-weight: 700;
}

.webview-transmission-header-wrapper {
  background-color: #000;
}

.webview-transmission-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 20px;
  max-width: 71.6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .webview-transmission-header {
    max-width: 550px;
  }
}

.webview-transmission-header__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 5px;
  text-align: center;
}

.webview-transmission-header__item .match__type {
  font-size: 0.625rem;
  color: #9b9b9b;
  letter-spacing: normal;
}

.webview-transmission-header__item .match__time {
  font-size: 0.5625rem;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1em;
  letter-spacing: normal;
  background-color: #d8d8d8;
  padding: 3px 6px;
  display: inline-block;
}

.webview-transmission-header__item .match__part {
  font-size: 0.75rem;
  margin-bottom: 3px;
}

.webview-transmission-header__item .match__part-score {
  font-size: 0.6875rem;
}

.webview-transmission-header__item .match__score {
  margin-bottom: 0;
}

.webview-transmission-header__item .match__score--details {
  font-size: 0.6875rem;
}

.webview-transmission-header__item .match__data {
  font-size: 0.625rem;
  color: #9b9b9b;
}

.webview-transmission-header__item .team__logo {
  margin: 0 auto 10px;
}

.webview-transmission-header__item .team__name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.87);
}

.webview-transmission-header__item.tennis-debel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.webview-transmission-header__item.tennis-debel.webview-transmission-header__item--right .tennis-debel__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.webview-transmission-header__item.tennis-debel.webview-transmission-header__item--right .tennis-debel__row .team__logo {
  margin-right: 0;
  margin-left: 5px;
}

.webview-transmission-header__item.tennis-debel.webview-transmission-header__item--right .tennis-debel__row .team__name {
  text-align: right;
}

.webview-transmission-header__item.tennis-debel .tennis-debel__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webview-transmission-header__item.tennis-debel .tennis-debel__row .team__logo {
  margin: 0;
  margin-right: 5px;
  height: 30px;
}

.webview-transmission-header__item.tennis-debel .tennis-debel__row .team__name {
  text-align: left;
}

.webview-transmission-tabs {
  padding: 16px 15px 0;
  white-space: nowrap;
  overflow-x: scroll;
  background-color: #000;
}

.webview-transmission-tabs > .container {
  max-width: 71.6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .webview-transmission-tabs > .container {
    max-width: 550px;
  }
}

.webview-transmission-tabs__item {
  color: #fff;
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 900;
  margin-right: 18px;
  display: inline-block;
}

.webview-transmission-tabs__item.active {
  color: #f5f5f5;
}

.webview-transmission-tabs__item.active::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  margin-top: 6px;
  background-color: #f05a22;
}

.webview-transmission-container .table-row__detail {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  margin-right: 5px;
}

.webview-transmission-container .table-row__name {
  font-size: 0.75rem;
}

.webview-transmission-container .squads-table__header {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.webview-transmission-container .squads-table__header::before {
  content: '';
  display: block;
  margin: 0 auto 5px;
  height: 1px;
  width: 30px;
  background-color: #f05a22;
}

.webview-transmission-container .transmission-section {
  padding-top: 30px;
  max-width: 71.6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .webview-transmission-container .transmission-section {
    max-width: 550px;
  }
}

.webview-transmission-container .transmission-section--gameplan {
  display: block;
}

.webview-transmission-container .transmission-section--squads .popup-squads__item .popup-squads__logo {
  max-width: 29px;
  max-height: 29px;
}

.webview-transmission-container .transmission-section--squads .popup-squads__header {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.webview-transmission-container .transmission-section--squads .popup-squads__header::before {
  content: '';
  display: block;
  margin: 0 auto 5px;
  height: 1px;
  width: 30px;
  background-color: #f05a22;
}

.webview-transmission-container .transmission-section--squads .popup-squads__number {
  font-size: 0.875rem;
  min-width: 28px;
  text-align: center;
}

.webview-transmission-container .stats-table__row.table-row:first-child {
  padding-top: 20px;
}

.webview-transmission-container .stats-table__possession {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-size: 1.125rem;
  font-weight: 700;
}

.webview-transmission-container .stats-table__number {
  font-size: 1.0625rem;
}

.webview-transmission-container .stats-table .donut-chart {
  height: 110px;
  width: 110px;
  position: relative;
  margin: 0 auto 30px;
}

.webview-transmission-container .stats-table .donut-chart.active circle {
  stroke-dasharray: 50 100;
}

.webview-transmission-container .stats-table .donut-chart svg {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background: #666;
  border-radius: 50%;
}

.webview-transmission-container .stats-table .donut-chart circle {
  fill: #170f7d;
  stroke: #f05a22;
  stroke-width: 32;
  stroke-dasharray: 0 100;
  -webkit-transition: stroke-dasharray 0.5s ease;
  transition: stroke-dasharray 0.5s ease;
}

.webview-transmission-container .stats-table .donut-center {
  background: #fff;
  border-radius: 50%;
  position: absolute;
  height: 80%;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1em;
}

.webview-transmission-container .stats-table .table-row__left .table-row__item::after {
  font-size: 0.8125rem;
  top: 18px;
}

.webview-transmission-container .stats-table .table-row__item {
  min-height: 54px;
}

.webview-transmission-container .gameplan {
  background-size: cover, 100% 160px;
}

.webview-transmission-container .gameplan-players__item {
  background-size: 26%;
}

.webview-transmission-container .gameplan-player__number {
  font-size: 0.75rem;
}

.webview-transmission-container .gameplan-player__name {
  font-size: 0.75rem;
}

.webview-transmission-container .gameplan-player__name > span {
  display: block;
}

.webview-transmission-container .gameplan-label__name {
  font-size: 1rem;
}

.webview-transmission-container .popup-timeline-item__time {
  font-size: 0.75rem;
  border: 1px solid #9b9b9b;
  background-color: #f5f5f5;
  max-width: 30px;
  margin: 0 auto;
  border-radius: 4px;
  padding: 5px 1px;
}

.webview-transmission-container .transmission-gameplan {
  padding: 50px 0;
}

.webview-transmission-container .transmission-gameplan .gameplan-home .gameplan-label {
  margin-top: -48px;
}

.webview-transmission-container .transmission-gameplan .gameplan-away .gameplan-label {
  margin-bottom: -48px;
}

.webview-transmission-container .news-video-small .news-video-large__single .home-video__slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.webview-transmission-container .home-video__slides .VueCarousel,
.webview-transmission-container .home-video__slides .VueCarousel-slide {
  width: 100%;
}

.webview-transmission-container .home-video__slides-wrapper .home-video__slides-content .home-video__slides-title {
  height: auto;
}

.webview-transmission-container .home-video__slides-title {
  position: static;
  background: #fff;
  padding: 15px 8px 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2b2b2b;
  text-align: center;
}

.webview-transmission-container .transmission-tablescore .transmission-tablescore__table .tr .td:nth-child(3),
.webview-transmission-container .transmission-tablescore .transmission-tablescore__table .tr .th:nth-child(3) {
  padding-right: 10px;
  white-space: nowrap;
}

.webview-transmission-container .transmission-tablescore .transmission-tablescore__table .tr .td:nth-child(4) {
  white-space: nowrap;
}

.webview-transmission-container .transmission-tablescore.speedway .transmission-tablescore__table .tr {
  border-bottom: 1px solid #252525;
}

.webview-timeline .popup-timeline-item {
  top: -2px;
}

.webview-timeline .popup-timeline-item__content {
  margin-top: -25px;
}

.webview-timeline .popup-timeline-item__participant.home .popup-timeline-item__wrapper {
  text-align: right;
}

.webview-transmission-section--gameplan {
  display: block;
}

.webview .transmission-section--tablescore .transmission-tablescore__table .tr--featured {
  background-color: #e6e6e6;
}

@media (prefers-color-scheme: dark) {
  .webview .transmission-section--tablescore .transmission-tablescore__table .tr--featured {
    background-color: #252525;
  }
}

.webview-results {
  padding-top: 20px;
  padding-bottom: 30px;
  max-width: 71.6%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .webview-results {
    max-width: 550px;
  }
}

.webview-results-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 18px auto 25px;
}

.webview-results-tabs__item {
  background-color: transparent;
  font-size: 0.625rem;
  color: #f05a22;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #f05a22;
  border-left: 0;
  width: 45%;
  padding: 5px 20px;
}

.webview-results-tabs__item:first-child {
  border-radius: 3px 0 0 3px;
  border-left: 1px solid #f05a22;
}

.webview-results-tabs__item:last-child {
  border-radius: 0 3px 3px 0;
}

.webview-results-tabs__item:hover {
  cursor: pointer;
}

.webview-results-tabs__item.active {
  background-color: #f05a22;
  color: #f5f5f5;
}

.webview-results-discipline {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #f5f5f5;
  padding-top: 35px;
  padding-bottom: 22px;
}

.webview-results-discipline::before {
  content: '';
  display: block;
  width: 66px;
  height: 2px;
  margin: 0 auto 7px;
  background-color: #f05a22;
}

.webview-results-event {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  padding: 11px 0;
}

.webview-results-event::after {
  content: '';
  display: block;
  width: 150px;
  height: 1px;
  background-color: #d9d9d9;
  margin: 8px auto 0;
}

.webview-results-event a {
  color: inherit;
}

.webview-results-event i {
  position: relative;
  top: 2px;
  left: 3px;
}

.webview-results-round {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  padding-bottom: 6px;
}

.webview-results-round .page-results__play.next-button {
  margin-left: 10px;
}

.webview-results-round.webview-results-date {
  text-align: left;
  padding: 4px 10px;
}

.webview-results-date {
  font-size: 0.75rem;
  text-align: center;
  background-color: #ebebeb;
  border-top: 1px solid #d9d9d9;
  padding: 2px 0;
}

.webview-results-item {
  padding: 0 5px;
  position: relative;
}

.webview-results-item-eventname {
  text-align: center;
  font-size: 12px;
  padding: 8px;
}

.webview-results-item--notstarted::after {
  display: none;
}

.webview-results-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 4px 0;
}

.webview-results-item__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.webview-results-item::after {
  content: '';
  display: block;
  height: 1px;
  background-color: #d9d9d9;
}

.webview-results-item__participants {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.webview-results-item__participant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 5px;
}

.webview-results-item__participant-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.webview-results-item__participant-inner .icon-medal {
  width: 17px;
  height: 18px;
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.webview-results-item__participant-inner .winner {
  font-weight: bold;
}

.webview-results-item__participant-inner .loser {
  text-decoration: line-through;
}

.webview-results-item__image {
  margin-right: 5px;
  max-width: 28px;
}

.webview-results-item__image figure {
  width: 28px;
}

.webview-results-item__image figure .img-responsive {
  margin: 0 auto;
  width: auto;
  height: auto;
}

.webview-results-item__score {
  font-weight: 700;
  margin-left: auto;
}

.webview-results-item__details {
  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;
  padding: 5px;
  min-width: 70px;
}

.webview-results-item__date {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  text-align: center;
}

.webview-results-item__label {
  text-align: center;
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  padding: 2px 5px;
  margin: 0 auto;
  max-width: 54px;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (min-width: 768px) {
  .webview-results-item__label {
    max-width: initial;
    text-overflow: initial;
    overflow: initial;
  }
}

.webview-results-item__label.label-orange, .webview-results-item__label.label-blue, .webview-results-item__label.label-grey {
  color: #fff;
  text-transform: uppercase;
}

.webview-results-item__label-wrapper {
  margin: 0 auto;
  text-align: center;
}

.webview-results-item__label--date {
  display: none;
}

@media (min-width: 768px) {
  .webview-results-item__label--date {
    display: inline-block;
  }
}

.webview-results-item__label.label-orange {
  background-color: #f05a22;
}

.webview-results-item__label.label-blue {
  background-color: #170f7d;
}

.webview-results-item__label.label-grey {
  background-color: #d9d9d9;
}

.webview-results-item__play {
  position: relative;
  display: inline-block;
  font-size: 0.6875rem;
  color: #fff;
}

.webview-results-item__play.next-button {
  padding: 5px 9px;
  margin: 5px auto 0;
  min-width: initial;
  max-width: 54px;
  line-height: 1em;
  color: #f05a22;
  border: 1px solid #f05a22;
  display: block;
}

.webview-results-item__play.next-button:hover {
  background-color: #f05a22;
  color: #fff;
}

.webview-results-item .results-f1__content {
  font-size: 0.8125rem;
}

.webview-results-item .button-expand {
  margin-bottom: 20px;
}

.webview-results-accordion {
  margin: 0 auto;
  padding: 0 20px;
}

.webview-results-accordion__item {
  font-size: 0.875rem;
  font-weight: 700;
}

.webview-results-accordion__item-wrap {
  background-color: #fff;
  border-bottom: 1px solid #eeeeee;
}

.webview-results-accordion__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px;
  width: 100%;
  color: inherit;
  font-weight: 400;
}

.webview-results-accordion__item a.webview-results-accordion__item-wrap.expanded i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.webview-results-accordion__item i {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.webview-results-accordion__subitem {
  font-size: 0.875rem;
  font-weight: 400;
  border-bottom: 1px solid #d6d6d6;
  background-color: #ebebeb;
}

.webview-results-accordion__subitem .webview-results-accordion__subitem-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.webview-results-accordion__subitem .webview-results-accordion__subitem-wrap i {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.webview-results-calendar {
  margin-bottom: 13px;
  padding: 0 30px;
  position: relative;
  scroll-behavior: smooth;
}

.webview-results-calendar__scrollbtn {
  position: absolute;
  top: 0;
  height: 40px;
  width: 22px;
  background-color: #f5f5f5;
}

.webview-results-calendar__scrollbtn--prev {
  left: 13px;
}

.webview-results-calendar__scrollbtn--next {
  right: 13px;
}

.webview-results-calendar__timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  margin-bottom: 14px;
}

.webview-results-calendar__day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  border-bottom: 3px solid transparent;
  margin: 0 7px;
  padding-bottom: 6px;
  text-align: center;
  cursor: pointer;
  pointer-events: none;
}

.webview-results-calendar__day.selected {
  border-bottom-color: #f05a22;
}

.webview-results-calendar__day.active {
  pointer-events: auto;
}

.webview-results-calendar__currentdate {
  font-size: 0.75rem;
  color: #9b9b9b;
  text-align: center;
}

.webview-calendar-day {
  color: #9b9b9b;
}

.webview-calendar-day.active {
  color: #2b2b2b;
}

.webview-calendar-day.selected {
  color: #f05a22;
}

.webview-calendar-day__name {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.webview-calendar-day__number {
  font-size: 1rem;
  font-weight: 700;
}

.webview-results-list--nodata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50vh;
}

.webview-results-list__subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin: 0 25px 20px;
  overflow-x: auto;
}

.webview-results-list__subnav span {
  cursor: pointer;
  font-size: 1rem;
  color: #9b9b9b;
  font-weight: 700;
  margin: 0 10px 20px;
  white-space: nowrap;
  position: relative;
}

.webview-results-list__subnav span::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background-color: transparent;
}

.webview-results-list__subnav span.active {
  color: #f05a22;
}

.webview-results-list__subnav span.active::after {
  background-color: #f05a22;
}

.webview-results-list__content {
  position: relative;
  padding: 0 10px;
}

.webview-results-list__content.loading {
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.webview-results-list__content.loading::before {
  opacity: 1;
  padding-top: 100px;
  text-align: center;
  background-color: #fff;
  z-index: 2;
}

.webview-results-list__content::before {
  content: '\141  aduj\119...';
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.webview-results-list__content--empty {
  height: calc(100vh - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webview-results-list__content .transmission-navigation__arrow {
  display: block;
  background-color: transparent;
  top: -19px;
}

.webview-results-list__content .transmission-navigation__arrow:hover {
  background-color: transparent;
}

.webview-results-list__content .transmission-navigation__arrow--prev {
  left: -6px;
}

.webview-results-list__content .transmission-navigation__arrow--next {
  right: -6px;
}

.webview-results-list .page-results__beam {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.webview-results-list .page-results__table.table {
  margin-bottom: 30px;
}

.webview-results-list .button-expand {
  margin-bottom: 20px;
}

.webview-results-list .result-beam--skijump .result-beam__item:nth-child(1) {
  text-align: left;
}

.webview .quiz-header {
  position: relative;
  z-index: 1;
}

.webview .quiz-header::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(#9e2b00));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #9e2b00);
}

.webview .quiz-header__title {
  text-align: center;
  padding: 12px 10px 7px;
  position: relative;
  z-index: 3;
}

.webview .quiz-header__close {
  display: none;
}

.webview .quiz-item__footer {
  padding-bottom: 30px;
}

.webview .quiz-detal__wrapp--completed .quiz-item__answer {
  pointer-events: none;
}

.webview .quiz-detal__wrapp--completed .quiz-item__footer {
  display: none;
}

.participant-stats-wrapper--webview {
  padding: 10px;
}

.participant-stats-wrapper--webview .participant-module__title {
  display: none;
}

.participant-stats-wrapper--webview .participant-stats {
  margin-bottom: 0;
}

.participant-stats-wrapper--webview .participant-stats__table {
  margin-bottom: 0;
}

.participant-stats-wrapper--webview .participant-stats .stats-section {
  position: relative;
}

.participant-stats-wrapper--webview .participant-stats .stats-section::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 75px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

.webview .teams__header {
  display: none;
}

.webview .teams-item {
  width: 33%;
  margin-bottom: 33px;
}

@media (max-width: 768px) {
  .webview .teams-item {
    width: 33%;
  }
}

.webview .teams-item:first-child .teams-item__inner {
  background: none;
}

.webview .teams-item:first-child .teams-item__name {
  color: #fff;
  border-color: #108ea1;
  background: transparent url("images/euro/transmission-extend.png") no-repeat center center;
}

.webview .teams-item__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: transparent;
}

.webview .teams-item__image {
  margin-right: 0;
  margin-bottom: 11px;
}

.webview .teams-item__name {
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  font-size: 0.625rem;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9px;
}

.webview .disciplines__header {
  display: none;
}

.webview .disciplines-item {
  width: 33%;
  margin-bottom: 33px;
}

@media (max-width: 768px) {
  .webview .disciplines-item {
    width: 33%;
  }
}

.webview .disciplines-item__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.webview .disciplines-item__image {
  margin-right: 0;
  margin-bottom: 11px;
}

.webview .disciplines-item__image .img-placeholder {
  border-radius: 50%;
}

.webview .disciplines-item__name {
  color: #2b2b2b;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  font-size: 0.625rem;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9px;
}

.webview .disciplines-item.pekin2022 .disciplines-item__name {
  font-size: 0.5625rem;
}

.webview .disciplines-item.pekin2022 .disciplines-item__image {
  margin-right: 0;
  margin-bottom: 11px;
  height: 80px;
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webview .disciplines-item.pekin2022 .disciplines-item__image .img-responsive {
  height: auto;
  width: auto;
  border-radius: 4px;
}

.webview .disciplines-item.pekin2022 .disciplines-item__image .img-placeholder {
  width: 80px !important;
  height: 80px;
  padding-bottom: 0 !important;
}

/*--------- PARTICIPANT ---------*/
.participant-header {
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 288px;
  padding: 12px 10px 0;
  background-color: #161616;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media (min-width: 1024px) {
  .participant-header {
    background-size: auto;
    padding: 12px 15px 0;
  }
}

.participant-header--team .participant-header__image {
  max-width: 80px;
}

@media (min-width: 1024px) {
  .participant-header--team .participant-header__image {
    max-width: 100px;
  }
}

.participant-header::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(22, 22, 22, 0) 0%, rgba(0, 0, 0, 0.5) 110px, black 200px);
}

.participant-header::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  width: 1920px;
  background-image: -webkit-gradient(linear, left top, right top, from(#161616), color-stop(5%, rgba(22, 22, 22, 0)), color-stop(95%, rgba(22, 22, 22, 0)), to(#161616));
  background-image: linear-gradient(to right, #161616 0%, rgba(22, 22, 22, 0) 5%, rgba(22, 22, 22, 0) 95%, #161616 100%);
}

.participant-header > .container {
  position: relative;
  z-index: 1;
}

.participant-header__image {
  max-width: 80px;
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 1024px) {
  .participant-header__image {
    max-width: none;
    margin-bottom: 30px;
  }
}

.participant-header__image > figure {
  border: 5px solid #fff;
}

.participant-header .button-expand-wrapper {
  height: 70px;
  text-align: center;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(50%, black), color-stop(80%, rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(0deg, black 50%, rgba(0, 0, 0, 0.5) 80%, transparent);
}

.participant-header .button-expand {
  color: #fff;
  margin: auto;
  background-color: #000;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.participant-header__description .participant-description__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1024px) {
  .participant-header__description .participant-description__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .participant-header__description {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.participant-header__image + .participant-description {
  padding-left: 10px;
}

@media (min-width: 1024px) {
  .participant-header__image + .participant-description {
    padding-left: 20px;
  }
}

.participant-description {
  padding-left: 10px;
}

@media (min-width: 1280px) {
  .participant-description {
    padding-left: 0;
  }
}

.participant-description__wrapper {
  height: 66px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .participant-description__wrapper {
    height: 136px;
  }
}

.participant-description__wrapper .participant-description__desc {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .participant-description__wrapper .participant-description__desc {
    margin-bottom: 0;
  }
  .participant-description__wrapper .participant-description__desc .participant-description__bio {
    display: block;
  }
}

.participant-description__wrapper .participant-description__desc .participant-description__bio {
  display: none;
}

.participant-description__wrapper.expanded {
  height: auto;
}

.participant-description__wrapper.expanded .participant-description__bio {
  display: block;
}

.participant-description__discipline {
  font-size: 0.6875rem;
  color: #fff;
  text-transform: uppercase;
}

.participant-description__discipline a {
  color: inherit;
}

.participant-description__discipline a:hover {
  color: #eaff00;
}

.participant-description__name {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .participant-description__name {
    font-size: 2.625rem;
  }
}

.participant-description__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .participant-description__details {
    font-size: 1rem;
  }
}

.participant-description__desc {
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.77;
  padding-right: 20px;
  width: 100%;
}

.participant-description__desc ol {
  list-style-position: inside;
}

.participant-description__item {
  padding-right: 12px;
  margin-right: 11px;
  position: relative;
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .participant-description__item {
    margin-bottom: 0;
    padding-right: 16px;
    margin-right: 15px;
  }
}

.participant-description__item:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #9b9b9b;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.participant-description__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.participant-description__team a {
  color: inherit;
}

.participant-description__team a:hover {
  color: #c8c8d3;
}

.participant-description__logo {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.participant-description__bio {
  font-size: 0.8125rem;
  color: #fff;
  min-width: 23%;
  border-left: 1px solid #9b9b9b;
  padding-left: 20px;
}

.participant-description__country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.participant-description__flag {
  display: inline-block;
  width: 21px;
  height: 21px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  margin-right: 8px;
}

.participant-bio__item {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.participant-bio__item figure {
  max-width: 16px;
  max-height: 13px;
}

.participant-bio__subitem {
  margin-right: 5px;
}

.participant-bio__subitem a {
  color: inherit;
}

.participant-bio__label {
  margin-right: 5px;
}

.participant-body {
  padding: 50px 0 0;
}

@media (min-width: 1024px) {
  .participant-body {
    padding: 50px 15px 0;
  }
}

.participant-body > .container > .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1024px) {
  .participant-body > .container > .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.participant-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .participant-content {
    padding-right: 15px;
    width: 75%;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

.participant-module {
  margin-bottom: 30px;
}

.participant-module--webview .participant-module__title {
  font-size: 1rem;
  text-transform: uppercase;
  text-align: left;
}

.participant-module--webview .participant-module__title::before {
  background-color: #f05a22;
  width: 33px;
  height: 2px;
}

.participant-module--webview a {
  color: inherit;
}

.participant-module--twitter {
  display: none;
}

@media (min-width: 768px) {
  .participant-module--twitter {
    display: block;
  }
}

.participant-module__title {
  font-size: 1.5rem;
  color: #2a2a2a;
  font-weight: 700;
  margin-bottom: 30px;
}

.participant-module__title::first-letter {
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .participant-module__title {
    font-size: 2rem;
  }
}

.participant-module__title::before {
  content: "";
  display: block;
  width: 166px;
  height: 3px;
  background-color: #2a2a2a;
}

.participant-module__content .button-more {
  margin-top: 40px;
}

.participant-module__content .boxes-two-box .boxes-2-container {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .participant-module__content .boxes-two-box .boxes-2-container {
    margin-bottom: 10px;
  }
}

.participant-module__content .boxes-two-box .box-medium {
  width: calc(50% - 5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.participant-module__content .boxes-two-box .box-medium__content {
  font-size: 1rem;
  height: 100%;
}

@media (min-width: 768px) {
  .participant-module__content .boxes-two-box .box-medium__content {
    font-size: 1.5rem;
  }
}

.participant-module .twitter {
  display: block;
}

.next-event--webview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  padding: 5px 20px 15px;
}

.next-event--webview .next-event__date {
  margin-bottom: 0;
}

.next-event--webview .next-event__hour {
  margin-bottom: 5px;
}

.next-event--webview .next-event__type small {
  display: block;
}

.next-event__type {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.next-event__type small {
  font-size: 0.8125rem;
}

.next-event__logo {
  max-width: 40px;
  max-height: 40px;
  margin: 0 auto 6px;
}

.next-event__name {
  font-size: 0.8125rem;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.next-event__name:last-of-type {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.next-event__name a {
  color: inherit;
}

.next-event__details {
  text-align: center;
}

.next-event__date {
  font-size: 0.6875rem;
  color: #2b2b2b;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
}

.next-event__hour {
  margin-bottom: 14px;
}

.next-event__hour span {
  font-size: 0.6875rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.1px;
  background-color: #170f7d;
  padding: 1px 6px 2px;
}

.next-event__location {
  font-size: 0.8125rem;
  color: #a9a9a9;
  font-weight: 600;
}

.next-event .results__content {
  width: 100%;
}

.others-table {
  margin-bottom: 40px;
}

.others-table__header {
  font-size: 0.75rem;
  color: #989898;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .others-table__header {
    font-size: 0.75rem;
  }
}

.others-table__row {
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0;
}

.others-table__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.others-table__order {
  max-height: 43px;
  max-width: 34px;
  min-width: 34px;
}

@media (min-width: 1024px) {
  .others-table__order {
    max-height: 57px;
    max-width: 46px;
  }
}

.others-table__player {
  padding-left: 20px;
  min-width: 160px;
}

@media (min-width: 1024px) {
  .others-table__player {
    min-width: 200px;
  }
}

.others-table__player-placeholder {
  display: block;
  max-width: 34px;
  height: 42px;
  background: white url("images/icons/player-placeholder.svg") no-repeat center center;
  background-size: contain;
}

@media (min-width: 1024px) {
  .others-table__player-placeholder {
    max-width: 46px;
    height: 57px;
  }
}

.others-table__position {
  font-size: 0.8125rem;
  color: #9b9b9b;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .others-table__position {
    font-size: 1rem;
  }
}

.others-table__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .others-table__number {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: left;
  }
}

.others-table__number .others-player__tshirt {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .others-table__number .others-player__tshirt {
    margin: 0;
    margin-right: 15px;
  }
}

.others-player__name {
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .others-player__name {
    font-size: 1.3125rem;
  }
}

.others-player__name a {
  color: inherit;
}

.others-player__name a:hover {
  color: #c8c8d3;
}

.others-player__country {
  font-size: 0.6875rem;
  color: #989898;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .others-player__country {
    font-size: 1rem;
  }
}

.others-player__country figure {
  max-width: 23px;
  max-height: 16px;
  margin-right: 10px;
}

.others-player__tshirt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent url("images/icons/koszulka.svg") no-repeat center center;
  width: 54px;
  height: 43px;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
}

.participant-others__expand-button {
  text-align: center;
}

.participant-others-tabs {
  margin-bottom: 30px;
}

.participant-others-tabs__item {
  font-size: 20px;
  color: #b6b6b6;
  font-weight: 700;
  margin-right: 20px;
  cursor: pointer;
}

.participant-others-tabs__item.active {
  color: #2b2b2b;
  position: relative;
}

.participant-others-tabs__item.active::after {
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  background-color: #b6b6b6;
}

.last-event--webview .last-event__type small {
  display: block;
}

.last-event__type {
  font-size: 0.6875rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 5px 9px;
  background-color: #ececf3;
  border-bottom: 1px solid #c8c8d3;
}

.last-event__type small {
  font-size: 0.625rem;
}

.last-event__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 9px 0;
  position: relative;
  cursor: pointer;
}

.last-event__row:hover {
  background-color: #fff;
}

.last-event__row::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background-color: #d9d9d9;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.last-event__row--mobile::after {
  display: none;
}

.last-event__row--mobile .last-event__name-wrapper {
  width: 63%;
}

.last-event__row--mobile .last-event__name-wrapper .last-event__name {
  width: auto;
  padding: 4px 0;
}

.last-event__row--mobile .last-event__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.last-event__row--mobile .last-event__details .last-event__date {
  width: auto;
  padding-left: 0;
  margin-bottom: 4px;
}

.last-event__row--mobile .last-event__details .last-event__link {
  width: auto;
  padding-left: 0;
}

.last-event__row--mobile .last-event__score {
  width: 40px;
  text-align: center;
  position: relative;
}

.last-event__row--mobile .last-event__score::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #d9d9d9;
  position: absolute;
  bottom: -12px;
  left: 0;
}

.last-event__row--desktop {
  display: none;
}

.last-event__date {
  width: 9%;
  padding-left: 17px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.last-event__logo {
  max-width: 25px;
  max-height: 25px;
  margin-right: 15px;
}

.last-event__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38%;
  font-size: 0.8125rem;
}

.last-event__name:nth-of-type(4) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.last-event__name:nth-of-type(4) .last-event__logo {
  margin-left: 15px;
  margin-right: 0;
}

.last-event__name a {
  color: inherit;
}

.last-event__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.last-event__score {
  font-size: 1.125rem;
  font-weight: 700;
}

.last-event__link {
  width: 9%;
  position: relative;
  display: inline-block;
  font-size: 0.6875rem;
  padding-left: 30px;
}

.last-event__link .next-button {
  padding: 5px 9px;
  min-width: initial;
  line-height: 1em;
  color: #f05a22;
  border: 1px solid #f05a22;
}

.last-event__link .next-button:hover {
  color: #fff;
  background-color: #f05a22;
}

.participant-last-events__item {
  margin-bottom: 28px;
}

.participant-sidebar {
  width: 100%;
}

@media (min-width: 1024px) {
  .participant-sidebar {
    padding-left: 15px;
    width: 25%;
    display: block;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

.participant-sidebar .results__team .img-placeholder {
  background: none;
  background-color: #f5f5f5;
}

.participant-stats {
  margin-bottom: 50px;
}

.participant-stats__section {
  padding: 20px;
  margin-bottom: 32px;
}

.participant-stats .stats-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
}

.participant-stats .stats-section--playerbg {
  background: #fff url(images/icons/participant_bg.svg) center no-repeat;
  background-size: 90% 90%;
}

.participant-stats .stats-section__box {
  height: 160px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 5px;
}

@media (min-width: 768px) {
  .participant-stats .stats-section__box {
    width: 20%;
    padding: 15px;
  }
}

.participant-stats .stats-section__icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.participant-stats .stats-section__icon-goalsfor, .participant-stats .stats-section__icon-goal_conceded, .participant-stats .stats-section__icon-goals {
  background-image: url(images/icons/stats-goals.svg);
  width: 25px;
  height: 25px;
}

.participant-stats .stats-section__icon-assists {
  background-image: url(images/icons/stats-assist.svg);
  width: 25px;
  height: 24px;
}

.participant-stats .stats-section__icon-total_shots {
  background-image: url(images/icons/stats-all-shots.svg);
  width: 39px;
  height: 22px;
}

.participant-stats .stats-section__icon-shotson, .participant-stats .stats-section__icon-shoton {
  background-image: url(images/icons/stats-shots-on-target.svg);
  width: 52px;
  height: 30px;
}

.participant-stats .stats-section__icon-kp {
  background-image: url(images/icons/stats-passes.svg);
  width: 59px;
  height: 32px;
}

.participant-stats .stats-section__icon-ycards {
  background-image: url(images/icons/stats-yellow-card.svg);
  width: 21px;
  height: 31px;
}

.participant-stats .stats-section__icon-rcards {
  background-image: url(images/icons/stats-red-card.svg);
  width: 21px;
  height: 31px;
}

.participant-stats .stats-section__icon-defence {
  background-image: url(images/icons/stats-shots-defence.svg);
  width: 39px;
  height: 22px;
}

.participant-stats .stats-section__icon-saves {
  background-image: url(images/icons/stats-interventions.svg);
  width: 42px;
  height: 22px;
}

.participant-stats .stats-section__icon-cleansheets {
  background-image: url(images/icons/stats-clean.svg);
  width: 39px;
  height: 23px;
}

.participant-stats .stats-section__icon-penalty_save {
  background-image: url(images/icons/stats-penalty.svg);
  width: 25px;
  height: 24px;
}

.participant-stats .stats-section__icon-min {
  background-image: url(images/icons/stats-min.svg);
  width: 24px;
  height: 28px;
}

.participant-stats .stats-section__icon-played {
  background-image: url(images/icons/stats-played.svg);
  width: 28px;
  height: 34px;
}

.participant-stats .stats-section__icon-foulcommit {
  background-image: url(images/icons/stats-foul.svg);
  width: 37px;
  height: 34px;
}

.participant-stats .stats-section__icon-goalsagainst {
  background-image: url(images/icons/stats-goals-missed.svg);
  width: 37px;
  height: 34px;
}

.participant-stats .stats-section__label {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.375;
  text-align: center;
}

.participant-stats .stats-section__value {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
}

.participant-stats__table {
  margin-bottom: 25px;
}

.participant-stats__table-header {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #009bb4;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.375;
}

.participant-stats__table-row {
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 400 1.36;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  background-color: #fff;
  padding: 12px;
}

.participant-stats__table-col-label {
  width: 90%;
}

.participant-stats__table-col-value {
  color: #000;
  font-weight: 700;
}

.participant-stats__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.participant-stats .button-more {
  margin-top: 0px;
}

/*--------- TEAM ---------*/
.team-main .participant-header__image > figure {
  border: 0;
  border-radius: 50%;
}

.team-table {
  border-top: 1px solid #d9d9d9;
  margin-bottom: 50px;
  display: none;
}

.team-table.active {
  display: block;
}

.team-table__header {
  font-size: 0.75rem;
  color: #989898;
  font-weight: 700;
  border-bottom: 1px solid #d9d9d9;
  padding: 4px 0;
}

.team-table__header .team-table__row {
  border-bottom: 0;
  padding: 0;
}

.team-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 0;
}

.team-table__row--currentteam .team-table__col--name {
  font-weight: 700;
}

.team-table__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.team-table__col--order {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 40px;
}

.team-table__col--name {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  min-width: 175px;
  width: 20%;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .team-table__col--name {
    min-width: 275px;
    max-width: 275px;
  }
}

.team-table__col--name figure {
  min-width: 40px;
}

.team-table__col--name figure .img-responsive {
  max-width: 22px;
}

.team-table__col--name figure.img-placeholder {
  min-width: unset;
  max-width: 22px;
  margin-right: 18px;
}

.team-table__col--name a {
  color: inherit;
}

.team-table__col--name a:hover {
  color: #c8c8d3;
}

.team-table__col--logo {
  max-height: 22px;
  overflow: hidden;
}

.team-table__col:nth-child(4), .team-table__col:nth-child(5), .team-table__col:nth-child(6) {
  display: none;
}

@media (min-width: 1024px) {
  .team-table__col:nth-child(4), .team-table__col:nth-child(5), .team-table__col:nth-child(6) {
    display: block;
  }
}

.team-table__col--points {
  font-weight: 700;
}

.table-tabs {
  margin-bottom: 23px;
  color: #989898;
  font-weight: 700;
}

.table-tabs__label {
  margin-right: 20px;
  margin-bottom: 10px;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .table-tabs__label {
    display: inline;
    margin-bottom: 0;
    font-size: 1rem;
  }
}

.table-tabs__item {
  margin-right: 20px;
  cursor: pointer;
  font-size: 0.8125rem;
}

@media (min-width: 1024px) {
  .table-tabs__item {
    font-size: 1rem;
  }
}

.table-tabs__item:hover {
  color: #2b2b2b;
}

.table-tabs__item.active {
  color: #2b2b2b;
  position: relative;
}

.table-tabs__item.active::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -4px;
  background-color: #eaff00;
}

/*--------- TEAMs ---------*/
.teams .flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.teams__header {
  padding: 25px;
  font-size: 2.625rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.teams__header::before {
  display: block;
  position: absolute;
  content: '';
  width: 160px;
  height: 3px;
  background-color: #2b2b2b;
}

.teams__header a {
  color: #f05a22;
}

.teams.euro .teams__header {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .teams.euro .teams__header {
    margin-bottom: 26px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 1280px) {
  .teams.euro .teams__header {
    font-size: 3.375rem;
    line-height: 1.15;
  }
}

.teams.euro .teams__header::before {
  display: none;
}

.teams.euro .teams-item:first-child .teams-item__inner {
  background: transparent url("images/euro/transmission-extend.png") no-repeat center center;
  background-size: cover;
  color: #fff;
}

.teams-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 11px;
  cursor: default;
  color: inherit;
}

@media (min-width: 768px) {
  .teams-item {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .teams-item {
    width: 25%;
  }
}

.teams-item[href]:not([href='']) {
  color: inherit;
  cursor: pointer;
}

.teams-item__inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 5px;
  height: 110px;
}

.teams-item__image {
  margin-right: 30px;
  width: 90px;
}

.teams-item__image .img-responsive {
  height: 100%;
  width: auto;
  margin: auto;
}

.euro .teams-item__image .img-responsive {
  height: auto;
}

.teams-item__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.3;
}

/*--------- LIGHTBOX ---------*/
.lightbox {
  width: 100%;
  max-width: 85%;
  position: fixed;
  top: 5%;
  left: 50%;
  z-index: 300;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.lightbox__body {
  overflow-y: auto;
  max-height: 88vh;
  scrollbar-width: thin;
  scrollbar-color: #c7c7c7;
}

.lightbox__body::-webkit-scrollbar {
  width: 8px;
}

.lightbox__body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.lightbox__body::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.lightbox__body::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.lightbox__body .img-responsive {
  height: auto;
  width: auto;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1024px) {
  .lightbox__body .img-responsive {
    height: 88vh;
  }
}

.lightbox .container {
  width: auto;
}

.lightbox .navigation__icon {
  left: auto;
  top: 13px;
  right: 11px;
  margin-right: 0;
}

.lightbox__results-link {
  text-align: center;
  padding: 20px 0;
}

.lightbox__results-link a {
  text-transform: uppercase;
  color: #2b2b2b;
  letter-spacing: 1.1px;
  font-weight: bold;
  font-size: 0.8125rem;
  position: relative;
  padding-right: 20px;
}

.lightbox__results-link a:after {
  content: '';
  position: absolute;
  background-image: url("images/icons/arrow-orange.svg");
  width: 12px;
  height: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -0;
}

.lightbox-header {
  background-color: #2b2b2b;
}

.lightbox-header__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.6875rem;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #5a5a5a;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 300;
  padding: 3px 8px;
  cursor: pointer;
  background-color: rgba(22, 22, 22, 0.5);
}

.lightbox-header__close .popup-icon {
  width: 9px;
  height: 8px;
}

.lightbox-header__close .popup-icon--close {
  background: transparent url("images/icons/popup-close.svg");
  margin-left: 3px;
}

/*--------- MOBILE APP LANDING PAGE ---------*/
.mobile-app-landing-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2b2b2b;
  padding-top: 30px;
  padding-bottom: 30px;
}

.mobile-app-landing-section--1 {
  background-image: url("images/landing/1.jpg?v=1");
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section--1 {
    margin-top: 100px;
  }
}

.mobile-app-landing-section--1 .mobile-app-section-flex .mobile-app-landing-section__image {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section--1 .mobile-app-section-flex .mobile-app-landing-section__wrapper {
    width: 50%;
  }
  .mobile-app-landing-section--1 .mobile-app-section-flex .mobile-app-landing-section__image {
    margin-top: -150px;
  }
}

.mobile-app-landing-section--2 .mobile-app-section-flex .mobile-app-landing-section__wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mobile-app-landing-section--2 .mobile-app-section-flex .mobile-app-landing-section__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.mobile-app-landing-section--3 {
  background-image: url("images/landing/2.jpg?v=1");
}

@media (min-width: 1024px) {
  .mobile-app-landing-section--3 .mobile-app-section-flex .mobile-app-landing-section__wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.mobile-app-landing-section--4 .mobile-app-section-flex .mobile-app-landing-section__wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mobile-app-landing-section--4 .mobile-app-section-flex .mobile-app-landing-section__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section--4 .mobile-app-section-flex .mobile-app-landing-section__wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .mobile-app-landing-section--4 .mobile-app-section-flex .mobile-app-landing-section__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.mobile-app-landing-section--5 {
  background-image: url("images/landing/3.jpg?v=1");
}

.mobile-app-landing-section--5 .mobile-app-section-flex .mobile-app-landing-section__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mobile-app-landing-section--9 {
  background-color: #000;
}

.mobile-app-landing-section--9 .mobile-app-section-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section--9 .mobile-app-section-flex .mobile-app-landing-section__wrapper {
    text-align: center;
  }
  .mobile-app-landing-section--9 .mobile-app-section-flex .mobile-app-landing-section__image {
    margin-bottom: -100px;
  }
}

.mobile-app-landing-section--10 {
  background-color: #fff;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section--10 {
    padding-top: 110px;
  }
}

.mobile-app-landing-section--10 .mobile-app-section-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mobile-app-landing-section--10 .mobile-app-landing-buttons {
  margin-left: auto;
  margin-right: auto;
}

.mobile-app-landing-section--10 .mobile-app-landing-section__title {
  color: #000;
  text-align: center;
}

.mobile-app-landing-section__wrapper {
  max-width: 570px;
  width: 100%;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section__wrapper {
    max-width: none;
  }
}

.mobile-app-landing-section__title {
  font-size: 1.75rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 0 10px;
}

@media (min-width: 1024px) {
  .mobile-app-landing-section__title {
    font-size: 2.5625rem;
  }
}

.mobile-app-landing-section__content {
  font-size: 1rem;
  color: #fff;
  padding: 0 10px;
  margin-bottom: 20px;
}

.mobile-app-landing-section__list {
  font-size: 1rem;
  color: #fff;
  padding: 0 10px 20px;
}

.mobile-app-landing-section__listitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 11px;
}

.mobile-app-landing-section__listitem::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #eaff00;
  margin-top: 7px;
  margin-right: 8px;
}

.mobile-app-landing-section__image {
  max-width: 100%;
  height: auto;
  margin: 0 0 20px;
  padding: 0 15px;
}

.mobile-app-landing-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
  margin: 0 auto 20px;
  max-width: 350px;
}

@media (min-width: 1024px) {
  .mobile-app-landing-buttons {
    margin: 0 0 20px;
    max-width: 470px;
  }
}

.mobile-app-landing-buttons__item {
  max-width: 129px;
  margin: 0 3px;
}

.mobile-app-landing-buttons__item--google {
  max-width: 147px;
}

.mobile-app-landing-buttons__item img {
  max-width: 100%;
  height: auto;
}

.mobile-app-section-flex {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-app-section-flex--inline {
  position: relative;
}

.mobile-app-section-flex--inline:not(:last-child)::after {
  content: '';
  display: block;
  height: 1px;
  width: 90%;
  background-color: #616161;
  margin: 40px auto 30px;
}

@media (min-width: 1024px) {
  .mobile-app-section-flex--inline:not(:last-child)::after {
    margin: 0;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (min-width: 1024px) {
  .mobile-app-section-flex--inline .mobile-app-landing-section__title,
  .mobile-app-section-flex--inline .mobile-app-landing-section__content {
    padding: 0 44px;
  }
}

.mobile-app-section-flex--inline .mobile-app-landing-section__image {
  margin-bottom: 0;
}

.mobile-app-section-flex--inline .mobile-app-landing-section__title {
  text-align: center;
}

.mobile-app-section-flex--inline .mobile-app-landing-section__content {
  max-width: 570px;
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .mobile-app-section-flex__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-app-section-flex__wrapper .mobile-app-section-flex--inline {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mobile-app-section-flex__wrapper .mobile-app-section-flex--inline .mobile-app-landing-section__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: auto;
  }
}

@media (min-width: 1024px) {
  .mobile-app-section-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/*--------- ASSETS ---------*/
.bg-white {
  background-color: #ffffff;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.no-padding-r {
  padding-right: 0 !important;
}

.no-padding-l {
  padding-left: 0 !important;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
  position: relative;
  bottom: 0;
  display: block;
  font-size: 0;
}

.img-resp-100 {
  width: 100%;
  max-width: 100%;
  display: block;
}

.img-placeholder {
  max-width: 100%;
  background-color: #d9d9d9;
  background: linear-gradient(115deg, #d9d9d9 0%, #d9d9d9 40%, #e0e0e0 50%, #d9d9d9 60%, #d9d9d9 100%);
  background-position: -100% 0;
  background-size: 200%;
  -webkit-animation: loading 3s infinite;
          animation: loading 3s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.phone-visible {
  display: block;
}

@media (min-width: 1024px) {
  .phone-visible {
    display: none;
  }
}

.desktop-visible {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-visible {
    display: block;
  }
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row--vertical-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-row--vertical-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-row--vertical-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (min-width: 1280px) {
  .flex-row--nopadding {
    margin: 0 -15px;
  }
}

.flex-row--stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

textarea,
input[type='text'],
input[type='button'],
input[type='submit'] {
  -webkit-appearance: none;
  border-radius: 0;
}

input:not([type='radio']):not([type='checkbox']) {
  -webkit-appearance: none;
  border-radius: 0;
}

@-webkit-keyframes loading {
  to {
    background-position: 100% 0;
  }
}

@keyframes loading {
  to {
    background-position: 100% 0;
  }
}

@media (min-width: 1280px) {
  .set-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .set-flex--flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.flex-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (min-width: 1280px) {
  .pos-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
  .pos-sticky--bottom {
    bottom: 0;
  }
}

.row {
  margin-left: -5px;
  margin-right: -5px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-left: 13.33px;
  padding-right: 13.33px;
}

.empty-data-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100px;
}

.relative {
  position: relative;
}

.no-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 200px;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #eaeaea;
}

.skijump-iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  margin-bottom: 25px;
}

/*--------- EURO MODULES ---------*/
.event-navbar-top.euro2020 {
  background-color: #009bb4;
  background-image: url("images/euro/news-navbar-background.jpg");
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 768px) {
  .event-navbar-top.euro2020 {
    background-image: url("images/euro/news-navbar-mobile-background.jpg");
  }
}

.event-navbar-top.euro2020 .event-navbar-top__logo {
  padding-top: 12px;
  margin: 0 auto;
}

.event-navbar-top.euro2020 .event-navbar-top__logo svg {
  max-width: 120px;
}

@media (min-width: 1024px) {
  .event-navbar-top.euro2020 .event-navbar-top__logo svg {
    max-width: 100%;
  }
}

.event-navbar-top.euro2020 .event-navbar-menu {
  background-color: #126a78;
}

.event-navbar-top.euro2020 .navbar-menu-wrapper a:hover {
  color: #fccb8d;
}

.event-navbar-top.euro2020 .navbar-menu-wrapper a.active {
  color: #fccb8d;
}

.event-navbar-top.euro2020 .navbar-menu-wrapper a.active::after {
  background-color: #fccb8d;
}

.event-navbar-top--slim.event-navbar-top.tokyo2020 {
  min-height: 44px;
}

.results--euro2020 .results__wrapper--euro2020 .results__sport-name {
  color: #fff;
  background-color: #009bb4;
}

.results--euro2020 .results__sport-name--euro2020 {
  color: #fff;
  background-color: #009bb4;
}

.results--euro2020 .results__label--blue {
  background-color: #4c9d2f;
}

.results--euro2020 .results__logo {
  border-radius: 50%;
}

.results--euro2020 .table__team figure {
  border-radius: 50%;
  overflow: hidden;
}

.news-seealso__wrapper.euro .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #009bb4;
  margin-bottom: 6px;
}

.news-seealso__wrapper.euro .news-seealso__image {
  position: relative;
}

.news-seealso__wrapper.euro .news-seealso__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-seealso__wrapper.euro .news-seealso__image::before {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .news-seealso__wrapper.euro .news-seealso__image::before {
    width: 78px;
    height: 65px;
  }
}

.news-seealso__wrapper.euro .news-seealso__image::after {
  content: '';
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

@media (min-width: 1280px) {
  .news-seealso__title {
    padding-bottom: 27px;
  }
}

.news-latest__box.euro .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #009bb4;
  margin-bottom: 6px;
}

.news-latest__box.euro .button-play {
  background-image: url(images/euro/play-euro.svg);
}

.news-latest__box.euro .news-latest__photo {
  position: relative;
}

.news-latest__box.euro .news-latest__photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-latest__box.euro .news-latest__photo::before {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .news-latest__box.euro .news-latest__photo::before {
    width: 206px;
    height: 172px;
    background-image: url(images/euro/badge-right-bottom.png);
  }
}

.news-latest__box.euro .news-latest__photo::after {
  content: '';
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.news-latest .boxes-3-container .box-small.euro .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #009bb4;
  margin-bottom: 6px;
}

.page-results__draw--euro .draw-content {
  padding-top: 20px;
}

.page-results__draw--euro .draw-content__item {
  padding-bottom: 0;
  border: 1px solid #d9d9d9;
  position: relative;
  z-index: 1;
}

.page-results__draw--euro .draw-content__item:hover {
  background-color: #fff;
  border-color: #d9d9d9;
}

.page-results__draw--euro .draw-content__item .draw-item__brand {
  margin-right: 10px;
  max-width: 24px;
}

.page-results__draw--euro .draw-content__item .draw-item__brand figure {
  width: 24px;
}

.page-results__draw--euro .draw-content__item .draw-item__brand figure.img-placeholder {
  background: transparent url("images/icons/draw-placeholder.svg") no-repeat center center;
  background-size: contain;
}

.page-results__draw--euro .draw-content__item::before {
  background-color: #2b2b2b;
}

.page-results__draw--euro .draw-content__item .draw-item {
  font-size: 0.813rem;
  margin: 0 -10px 5px;
  padding: 0 10px 5px;
  border-bottom: 1px solid #d9d9d9;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.page-results__draw--euro .draw-content__item .draw-item:not(:nth-child(2)) {
  margin-bottom: 0;
  border-bottom: 0;
}

.page-results__draw--euro .draw-content__item .draw-item__brand {
  max-width: 24px;
  margin-right: 10px;
}

.page-results__draw--euro .draw-item__brand {
  margin-right: 15px;
}

.page-results__draw--euro .draw-item__brand figure {
  width: 24px;
}

.page-results__draw--euro .page-results__beam {
  background-color: #009cb4;
  color: #fff;
  font-weight: 700;
  margin-right: 1px;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .page-results__draw--euro .page-results__beam .draw-header__item {
    text-align: left;
  }
}

.page-results__draw--euro .VueCarousel-inner .VueCarousel-slide:nth-child(2n-1) .draw-content {
  background-color: #efefef;
}

.page-results__draw--euro .VueCarousel-slide:nth-child(2) .draw-content__item:nth-child(2n + 1)::after {
  border: 1px solid #2b2b2b;
  border-left: 0;
  z-index: 0;
}

.page-results__draw--euro .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after,
.page-results__draw--euro .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after {
  border-color: #2b2b2b;
}

.page-results__draw--euro .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after {
  z-index: 1;
}

.page-results__draw--euro .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after {
  height: calc(4 * 100% + ((4 - 1) * 25px));
}

.euro2020 .news__heading--line::before {
  background-color: #f7a600;
}

.euro2020 .news-lead a,
.euro2020 .news-lead a:visited,
.euro2020 .news-text__paragraph p a b,
.euro2020 .news-text__paragraph p a,
.euro2020 .news-text__paragraph p b a,
.euro2020 .news-text center a,
.euro2020 .news-text p b a,
.euro2020 .news-text p big a {
  color: #007a8c;
}

.euro2020 .news-text center a,
.euro2020 .news-text p b a,
.euro2020 .news-text p big a {
  background-image: url("images/icons/arrow-euro.svg");
}

.euro2020 .news-image__img {
  position: relative;
}

.euro2020 .news-image__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.euro2020 .news-image__img::before {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .euro2020 .news-image__img::before {
    width: 207px;
    height: 172px;
    background-image: url(images/euro/badge-right-bottom.png);
  }
}

.euro2020 .news-image__img::after {
  content: '';
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.euro2020 .news-image__description {
  border-bottom-color: #8facb0;
}

.euro2020 .transmission-section {
  padding-top: 20px;
}

.euro2020 .transmission-section__label::before {
  background-color: #f7a600;
  margin-bottom: 16px;
}

.euro2020 .transmission-section__content.transmission-gameplan {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.euro2020 .transmission-section--timeline .expanding-penalty {
  padding: 0 30px 20px;
}

.euro2020 .transmission-header {
  background-image: url("images/euro/transmission-background.jpg");
  background-size: cover;
}

.euro2020 .transmission-header::before, .euro2020 .transmission-header::after {
  display: none;
}

.euro2020 .transmission-header__parent {
  background-color: #006473;
}

.euro2020 .transmission-header--euro {
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
}

.euro2020 .transmission-header--euro .transmission-header > .container {
  position: absolute;
  bottom: 0;
}

.euro2020 .transmission-header--euro .transmission-navigation__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 45px;
  background-color: #09363e;
}

@media (min-width: 1024px) {
  .euro2020 .transmission-header--euro .transmission-navigation__wrapper {
    height: 57px;
    font-size: 1.125rem;
  }
}

.euro2020 .transmission-header--euro .transmission-navigation li {
  margin-right: 15px;
  pointer-events: none;
}

.euro2020 .transmission-header--euro .transmission-navigation li:hover::before {
  background-color: #fccb8d;
}

.euro2020 .transmission-header--euro .transmission-navigation li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 14px;
  background-color: #6ea8b1;
}

.euro2020 .transmission-header--euro .transmission-navigation li::after {
  display: none;
}

.euro2020 .transmission-header--euro .transmission-navigation li a {
  color: #fff;
  pointer-events: auto;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .euro2020 .transmission-header--euro .transmission-navigation li a {
    font-size: 1.313rem;
  }
}

.euro2020 .transmission-header--euro .transmission-navigation li a::after {
  background-color: transparent;
}

@media (min-width: 1024px) {
  .euro2020 .transmission-header--euro .transmission-navigation li a::after {
    margin-top: 12px;
  }
}

.euro2020 .transmission-header--euro .transmission-navigation li a:hover {
  color: #fccb8d;
}

.euro2020 .transmission-header--euro .transmission-navigation li a:hover::after {
  background-color: #fccb8d;
}

.euro2020 .transmission-header--euro.fixed {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 0;
  max-height: 144px;
}

.euro2020 .transmission-header--euro.fixed .match__type, .euro2020 .transmission-header--euro.fixed .match__time, .euro2020 .transmission-header--euro.fixed .match__data {
  display: none;
}

.euro2020 .transmission-header--euro.fixed .team__timeline {
  display: none;
}

.euro2020 .transmission-header--euro.fixed .match-details {
  padding-top: 31px;
}

.euro2020 .transmission-header--euro.fixed .match__overtime {
  display: none;
}

.euro2020 .transmission-header--euro.fixed .team--first {
  padding-top: 19px;
}

.euro2020 .match-details {
  padding-top: 44px;
}

.euro2020 .match__overtime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: 1.6px;
}

@media (min-width: 480px) {
  .euro2020 .match__overtime {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.euro2020 .match__overtime--first {
  margin-top: 10px;
}

@media (min-width: 480px) {
  .euro2020 .match__part {
    margin-right: 10px;
  }
}

.euro2020 .timeline__item a:hover {
  color: #fccb8d;
}

.euro2020 .transmission-navigation {
  position: static;
  max-width: 1406px;
  margin: 0 auto;
  padding-top: 11px;
}

@media (min-width: 1024px) {
  .euro2020 .transmission-navigation {
    padding-top: 15px;
  }
}

.euro2020 .transmission-navigation__arrow {
  background-color: #0a3a42;
}

.euro2020 .transmission-navigation__arrow:hover {
  background-color: #0b424b;
}

.euro2020 .transmission-navigation ul {
  width: 100%;
  overflow-x: auto;
}

.euro2020 .transmission-navigation ul::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.euro2020 .transmission-navigation ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #1f9cb0;
}

.euro2020 .transmission-navigation ul::-webkit-scrollbar-thumb {
  background: #068ba0;
  border-radius: 10px;
}

.euro2020 .transmission-navigation ul::-webkit-scrollbar-thumb:hover {
  background: #068ba0;
}

.euro2020 .transmission-navigation ul:hover {
  cursor: pointer;
}

.euro2020 .transmission-title {
  background-color: #006473;
}

.euro2020 .transmission-title__item {
  padding-top: 0;
}

.euro2020 .transmission-player {
  background-color: #006473;
}

.euro2020 .transmission-player__content::after {
  background-image: none;
  background-color: rgba(10, 70, 80, 0.42);
}

.euro2020 .squads-table__header {
  background-color: #009bb4;
  font-size: 1rem;
  color: #fff;
  line-height: 1.375;
  height: 41px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 13px;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .squads-table__body {
  padding: 14px 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .table-row__item {
  min-height: 56px;
  padding: 8px 0;
}

.euro2020 .table-row__name {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .euro2020 .table-row__name {
    font-size: 1rem;
  }
}

.euro2020 .table-row__detail {
  font-size: 0.875rem;
  font-weight: 700;
  height: 25px;
  width: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
}

@media (min-width: 768px) {
  .euro2020 .table-row__detail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55px;
            flex: 0 0 55px;
    height: 45px;
    width: 55px;
  }
}

.euro2020 .table-row__detail--home, .euro2020 .table-row__detail--away {
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (min-width: 768px) {
  .euro2020 .table-row__detail--home, .euro2020 .table-row__detail--away {
    font-size: 1rem;
    color: #fff;
  }
}

@media (min-width: 768px) {
  .euro2020 .table-row__detail--home {
    background-image: url("images/icons/player-home.svg");
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .euro2020 .table-row__detail--away {
    background-image: url("images/icons/player-away.svg");
    margin-left: 10px;
  }
}

.euro2020 .gameplan {
  background-color: #f5f5f5;
  max-width: 905px;
  height: 530px;
  background-image: url("images/gameplan-pitch-mobile.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .euro2020 .gameplan {
    background-size: 100%;
    height: 680px;
    margin: 0 auto;
  }
}

@media (min-width: 640px) {
  .euro2020 .gameplan {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 329px;
    background-image: url("images/gameplan-pitch.svg");
  }
}

@media (min-width: 768px) {
  .euro2020 .gameplan {
    background-size: 100%;
    height: 384px;
    margin: 0 auto;
  }
}

@media (min-width: 920px) {
  .euro2020 .gameplan {
    height: 471px;
  }
}

@media (min-width: 1024px) {
  .euro2020 .gameplan {
    height: 302px;
  }
}

@media (min-width: 1280px) {
  .euro2020 .gameplan {
    height: 468px;
  }
}

@media (min-width: 1463px) {
  .euro2020 .gameplan {
    height: 468px;
  }
}

.euro2020 .gameplan__label {
  height: 50px;
  background-color: #2b2b2b;
}

.euro2020 .gameplan__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin: 20px 0;
}

.euro2020 .gameplan__half {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 1280px) {
  .euro2020 .screening__wrapper.active-yes .gameplan {
    height: 406px;
  }
}

@media (min-width: 1463px) {
  .euro2020 .screening__wrapper.active-yes .gameplan {
    height: 406px;
  }
}

.euro2020 .transmission-gameplan__logo {
  display: inline-block;
  vertical-align: middle;
  max-width: 50px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .euro2020 .transmission-gameplan__logo {
    margin: 0 5px;
  }
}

.euro2020 .transmission-gameplan__logo .img-responsive {
  max-height: 50px;
  width: auto;
}

.euro2020 .transmission-gameplan__name {
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .euro2020 .transmission-gameplan__name {
    margin: 0 5px;
  }
}

.euro2020 .transmission-gameplan__label {
  padding: 15px 20px;
}

.euro2020 .transmission-gameplan__label .col-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.euro2020 .transmission-gameplan__label .col-flex--col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .euro2020 .transmission-gameplan__label .col-flex {
    display: block;
  }
}

@media (min-width: 640px) {
  .euro2020 .transmission-gameplan__label--mobile-only {
    display: none;
  }
}

.euro2020 .gameplan-players__item {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: transparent url("images/icons/player-away.svg") no-repeat center top;
  width: 45px;
  height: 45px;
  background-size: 80%;
}

@media (min-width: 768px) {
  .euro2020 .gameplan-players__item {
    background-size: auto;
    width: 150px;
  }
}

@media (min-width: 1024px) {
  .euro2020 .gameplan-players__item {
    background-size: 80%;
    width: 45px;
  }
}

@media (min-width: 1280px) {
  .euro2020 .gameplan-players__item {
    background-size: auto;
    width: 150px;
  }
}

.euro2020 .gameplan-home .gameplan-players__item {
  background-image: url("images/icons/player-home.svg");
}

.euro2020 .gameplan-player__number {
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 0 5px;
}

@media (min-width: 768px) {
  .euro2020 .gameplan-player__number {
    font-size: 1rem;
    padding-bottom: 12px;
  }
}

@media (min-width: 1024px) {
  .euro2020 .gameplan-player__number {
    font-size: 0.75rem;
  }
}

@media (min-width: 1280px) {
  .euro2020 .gameplan-player__number {
    font-size: 1rem;
  }
}

.euro2020 .gameplan-player__name {
  text-align: center;
  font-size: 0.75rem;
  color: #000;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .euro2020 .gameplan-player__name {
    font-size: 0.875rem;
  }
}

.euro2020 .gameplan-player__name .info__icon {
  margin: 0 2px;
  vertical-align: middle;
  display: inline-block;
}

.euro2020 .gameplan-player__name a,
.euro2020 .gameplan-player__name span {
  font-size: 0.6875rem;
  color: inherit;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 1px 3px;
}

@media (min-width: 640px) {
  .euro2020 .gameplan-player__name a,
  .euro2020 .gameplan-player__name span {
    background-color: #fff;
  }
}

.euro2020 .gameplan-player__name a:hover,
.euro2020 .gameplan-player__name span:hover {
  color: #f7a600;
}

.euro2020 .gameplan-player__incidents {
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.euro2020 .transmission-gameplan .gameplan-away .gameplan-label {
  margin-top: 0;
  margin-bottom: -48px;
}

@media (min-width: 768px) {
  .euro2020 .transmission-gameplan .gameplan-away .gameplan-label {
    margin-bottom: 0;
  }
}

.euro2020 .gameplan-label-display-mobile {
  display: block !important;
  width: 100% !important;
  text-align: center;
}

@media (min-width: 640px) {
  .euro2020 .gameplan-label-display-mobile {
    width: 50% !important;
    text-align: left;
  }
}

.euro2020 .gameplan-label-display-mobile--none {
  display: none !important;
}

@media (min-width: 640px) {
  .euro2020 .gameplan-label-display-mobile--none {
    display: block !important;
  }
}

.euro2020 .transmission-prematch {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .transmission-prematch__header {
  background-color: #009bb4;
  color: #fff;
}

.euro2020 .condition-event__date {
  background-color: #ececf3;
}

.euro2020 .prematch-table__group {
  background-color: #e0e0eb;
}

.euro2020 .prematch-table__header {
  background-color: #adadbd;
}

.euro2020 .event-history-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -4px 14px;
}

.euro2020 .event-history-tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
  height: 39px;
  border: solid 1px #d9d9d9;
  background-color: #fff;
  margin: 0 4px;
  position: relative;
  cursor: pointer;
}

.euro2020 .event-history-tabs__item.active {
  background-color: #009bb4;
  color: #fff;
}

.euro2020 .event-history-tabs__item.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #009bb4;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.euro2020 .event-history-content {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .event-history-content__header {
  background-color: #009bb4;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.375;
  height: 41px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 13px;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .event-history-content__item {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}

.euro2020 .event-history-content__item::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #d9d9d9;
}

.euro2020 .event-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 8px 11px;
}

@media (min-width: 768px) {
  .euro2020 .event-history-item {
    padding: 8px 28px 11px;
  }
}

.euro2020 .event-history-item__team {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.813rem;
}

@media (min-width: 768px) {
  .euro2020 .event-history-item__team {
    font-size: 1rem;
  }
}

.euro2020 .event-history-item__team--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.euro2020 .event-history-item__logo {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.euro2020 .event-history-item__logo--left {
  margin-right: 20px;
}

.euro2020 .event-history-item__logo--right {
  margin-left: 20px;
}

.euro2020 .event-history-item__logo .img-placeholder {
  height: 100%;
  border-radius: 50%;
}

.euro2020 .event-history-item__details {
  text-align: center;
}

.euro2020 .event-history-details__stage {
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 600;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 768px) {
  .euro2020 .event-history-details__stage {
    display: block;
  }
}

.euro2020 .event-history-details__score {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 5px;
}

@media (min-width: 768px) {
  .euro2020 .event-history-details__score {
    font-size: 1.5rem;
  }
}

.euro2020 .event-history-details__status {
  font-size: 0.688rem;
  color: #fff;
  font-weight: 700;
  line-height: 0.688rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: none;
}

@media (min-width: 768px) {
  .euro2020 .event-history-details__status {
    display: block;
  }
}

.euro2020 .event-history-details__status span {
  display: inline-block;
  padding: 2px 5px 3px;
  background-color: #8f8f8f;
}

.euro2020 .event-history-details__location {
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 0.688rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 768px) {
  .euro2020 .event-history-details__location {
    display: block;
  }
}

.euro2020 .transmission-stats-module {
  margin-bottom: 27px;
}

.euro2020 .transmission-stats-module__header {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  background-color: #009bb4;
  height: 41px;
  padding: 10px;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .transmission-stats-module__content {
  padding: 30px 17px 27px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.euro2020 .transmission-stats-module .stats-module-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.euro2020 .donut-chart {
  height: 140px;
  width: 140px;
  position: relative;
  margin: 0 auto 30px;
}

@media (min-width: 768px) {
  .euro2020 .donut-chart {
    height: 207px;
    width: 207px;
  }
}

.euro2020 .donut-chart.active circle {
  stroke-dasharray: 50 100;
}

.euro2020 .donut-chart svg {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background: #666;
  border-radius: 50%;
}

.euro2020 .donut-chart circle {
  fill: #170f7d;
  stroke: #f05a22;
  stroke-width: 32;
  stroke-dasharray: 0 100;
  -webkit-transition: stroke-dasharray 0.5s ease;
  transition: stroke-dasharray 0.5s ease;
}

.euro2020 .donut-center {
  background: #fff;
  border-radius: 50%;
  position: absolute;
  height: 82%;
  width: 82%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1em;
}

.euro2020 .stats-general-possession {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.euro2020 .stats-general-possession__value {
  font-size: 1.875rem;
  font-weight: 700;
}

.euro2020 .stats-module-row {
  margin-bottom: 30px;
}

.euro2020 .stats-module-row__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  margin-bottom: 8px;
}

.euro2020 .stats-module-row__top--big.stats-module-row__value {
  font-size: 2rem;
}

.euro2020 .stats-module-row__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.euro2020 .stats-module-row__value {
  font-size: 1.313rem;
  font-weight: 700;
}

.euro2020 .stats-module-row__inner {
  position: relative;
}

.euro2020 .stats-module-row__inner.inside {
  max-width: 70%;
  margin: 0 auto;
  margin-top: -235px;
  border: 9px solid #fff;
}

.euro2020 .stats-module-row__text {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
}

.euro2020 .stats-module-row__text .stats-module-row__value, .euro2020 .stats-module-row__text .stats-module-row__label {
  color: #fff;
}

.euro2020 .stats-module-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px;
}

.euro2020 .transmission-alternate {
  background-color: #006473;
}

.euro2020 .transmission-alternate__label {
  color: #fccb8d;
  text-align: center;
}

.euro2020 .highlights-tab__item.active {
  background-color: #009bb4;
}

.webview.euro2020-webview .webview-transmission-header-wrapper,
.webview.euro2020-webview .webview-transmission-tabs {
  background-color: #006473;
}

.webview.euro2020-webview .webview-transmission-tabs__item {
  color: #fff;
}

.webview.euro2020-webview .webview-transmission-tabs__item.active {
  color: #fccb8d;
}

.webview.euro2020-webview .webview-transmission-tabs__item.active::after {
  background-color: #fccb8d;
}

.webview.euro2020-webview .webview-transmission-header__item .team__logo {
  border-radius: 50%;
  overflow: hidden;
}

.webview.euro2020-webview .webview-transmission-container .transmission-section--gameplan {
  padding-top: 80px;
  margin-bottom: 40px;
}

.webview.euro2020-webview .webview-transmission-container .gameplan-players__item {
  background-size: 22%;
}

.webview.euro2020-webview .webview-transmission-container .gameplan-player__number {
  font-size: 10px;
}

.webview.euro2020-webview .webview-transmission-container .gameplan-player__name {
  font-size: 10px;
}

.webview.euro2020-webview .match-details {
  padding-top: 24px;
}

.webview.euro2020-webview .match__part {
  margin-right: 0;
}

.webview.euro2020-webview .transmission-section__content {
  padding: 0 10px;
}

.webview.euro2020-webview .transmission-section__content.transmission-gameplan {
  padding: 0;
}

.webview.euro2020-webview .gameplan {
  height: 532px;
  background-image: url("images/gameplan-pitch-mobile.svg"), -webkit-gradient(linear, left top, left bottom, from(white));
  background-image: url("images/gameplan-pitch-mobile.svg"), linear-gradient(white);
  background-size: cover;
}

.webview.euro2020-webview .gameplan__label {
  background-color: transparent;
}

.webview.euro2020-webview .gameplan-label__name {
  color: #000;
}

.webview.euro2020-webview .gameplan-player__name a, .webview.euro2020-webview .gameplan-player__name > span:first-child {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 1px 3px;
  display: inline-block;
}

.webview.euro2020-webview .highlights-tab__item {
  margin-right: 5px;
  border-radius: 16px;
  padding: 4px 9px;
  height: 27px;
}

.webview.euro2020-webview .highlights-content {
  padding: 0;
}

.webview.euro2020-webview .highlights-content .box-small {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  max-width: 50%;
  margin: 0;
  padding: 10px;
}

.webview.euro2020-webview .highlights-content .box-small__title {
  font-size: 12px;
  height: 50px;
}

.webview.euro2020-webview .highlights-content .box-small__image .button-play {
  background-image: url(images/euro/play-euro.svg);
}

.webview.euro2020-webview .popup-squads__coaches .popup-squads__item .flex-row {
  -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;
}

.webview.euro2020-webview .popup-squads__coaches .popup-squads__item--opposite-side .flex-row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.webview.euro2020-webview .webview-results-list__subnav span.active {
  color: #009bb4;
}

.webview.euro2020-webview .webview-results-list__subnav span.active::after {
  background-color: #009bb4;
}

.webview.euro2020-webview .transmission-prematch {
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.webview.euro2020-webview .transmission-prematch__header {
  background-color: #009bb4;
  color: #fff;
}

.webview.euro2020-webview .condition-event__date {
  background-color: #ececf3;
}

.webview.euro2020-webview .prematch-table__group {
  background-color: #e0e0eb;
}

.webview.euro2020-webview .prematch-table__header {
  background-color: #adadbd;
}

.webview.euro2020-webview .event-history-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -4px 14px;
}

.webview.euro2020-webview .event-history-tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
  height: 39px;
  border: solid 1px #d9d9d9;
  background-color: #fff;
  margin: 0 4px;
  position: relative;
  cursor: pointer;
}

.webview.euro2020-webview .event-history-tabs__item.active {
  background-color: #009bb4;
  color: #fff;
}

.webview.euro2020-webview .event-history-tabs__item.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #009bb4;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.webview.euro2020-webview .event-history-content {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.webview.euro2020-webview .event-history-content__header {
  background-color: #009bb4;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.375;
  height: 41px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 13px;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.webview.euro2020-webview .event-history-content__item {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}

.webview.euro2020-webview .event-history-content__item::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #d9d9d9;
}

.webview.euro2020-webview .event-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 8px 11px;
}

@media (min-width: 768px) {
  .webview.euro2020-webview .event-history-item {
    padding: 8px 28px 11px;
  }
}

.webview.euro2020-webview .event-history-item__team {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.813rem;
}

@media (min-width: 768px) {
  .webview.euro2020-webview .event-history-item__team {
    font-size: 1rem;
  }
}

.webview.euro2020-webview .event-history-item__team--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.webview.euro2020-webview .event-history-item__logo {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.webview.euro2020-webview .event-history-item__logo--left {
  margin-right: 20px;
}

.webview.euro2020-webview .event-history-item__logo--right {
  margin-left: 20px;
}

.webview.euro2020-webview .event-history-item__logo .img-placeholder {
  height: 100%;
  border-radius: 50%;
}

.webview.euro2020-webview .event-history-item__details {
  text-align: center;
}

.webview.euro2020-webview .event-history-details__stage {
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 600;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 768px) {
  .webview.euro2020-webview .event-history-details__stage {
    display: block;
  }
}

.webview.euro2020-webview .event-history-details__score {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 5px;
}

@media (min-width: 768px) {
  .webview.euro2020-webview .event-history-details__score {
    font-size: 1.5rem;
  }
}

.webview.euro2020-webview .event-history-details__status {
  font-size: 0.688rem;
  color: #fff;
  font-weight: 700;
  line-height: 0.688rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: none;
}

@media (min-width: 768px) {
  .webview.euro2020-webview .event-history-details__status {
    display: block;
  }
}

.webview.euro2020-webview .event-history-details__status span {
  display: inline-block;
  padding: 2px 5px 3px;
  background-color: #8f8f8f;
}

.webview.euro2020-webview .event-history-details__location {
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 0.688rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 768px) {
  .webview.euro2020-webview .event-history-details__location {
    display: block;
  }
}

.webview.euro2020-webview .transmission-alternate {
  background-color: #006473;
}

.webview.euro2020-webview .transmission-alternate__label {
  color: #fccb8d;
  text-align: center;
}

.webview.euro2020-webview .highlights-tab__item.active {
  background-color: #009bb4;
}

.boxes-one-three-box.euro .button-play,
.boxes-section.euro .button-play,
.home-special.euro .button-play,
.home-discipline.euro .button-play,
.home-video.euro .button-play,
.home-photo.euro .button-play,
.home-boxes.euro .button-play,
.home-multi.euro .button-play,
.home-review.euro .button-play,
.primary.euro .button-play,
.grid-box.euro .button-play,
.box-big.euro .button-play,
.box-medium.euro .button-play,
.video .box-small.euro .button-play,
.boxes-list-discipline__wrapper.euro .button-play,
.news-latest__content.euro .button-play,
.section-grid.euro .button-play,
.nts__slide.euro .button-play,
.grid-three.euro .button-play,
.liveblog-video.euro .button-play {
  background-image: url(images/euro/play-euro.svg);
}

.boxes-one-three-box.euro .button-more__elem,
.boxes-section.euro .button-more__elem,
.home-special.euro .button-more__elem,
.home-discipline.euro .button-more__elem,
.home-video.euro .button-more__elem,
.home-photo.euro .button-more__elem,
.home-boxes.euro .button-more__elem,
.home-multi.euro .button-more__elem,
.home-review.euro .button-more__elem,
.primary.euro .button-more__elem,
.grid-box.euro .button-more__elem,
.box-big.euro .button-more__elem,
.box-medium.euro .button-more__elem,
.video .box-small.euro .button-more__elem,
.boxes-list-discipline__wrapper.euro .button-more__elem,
.news-latest__content.euro .button-more__elem,
.section-grid.euro .button-more__elem,
.nts__slide.euro .button-more__elem,
.grid-three.euro .button-more__elem,
.liveblog-video.euro .button-more__elem {
  background: #009bb4;
  border-color: #009bb4;
  color: #fff;
}

.boxes-one-three-box.euro .button-more__elem::before,
.boxes-section.euro .button-more__elem::before,
.home-special.euro .button-more__elem::before,
.home-discipline.euro .button-more__elem::before,
.home-video.euro .button-more__elem::before,
.home-photo.euro .button-more__elem::before,
.home-boxes.euro .button-more__elem::before,
.home-multi.euro .button-more__elem::before,
.home-review.euro .button-more__elem::before,
.primary.euro .button-more__elem::before,
.grid-box.euro .button-more__elem::before,
.box-big.euro .button-more__elem::before,
.box-medium.euro .button-more__elem::before,
.video .box-small.euro .button-more__elem::before,
.boxes-list-discipline__wrapper.euro .button-more__elem::before,
.news-latest__content.euro .button-more__elem::before,
.section-grid.euro .button-more__elem::before,
.nts__slide.euro .button-more__elem::before,
.grid-three.euro .button-more__elem::before,
.liveblog-video.euro .button-more__elem::before {
  background: #009bb4;
}

.boxes-one-three-box.euro .button-more__elem:hover,
.boxes-section.euro .button-more__elem:hover,
.home-special.euro .button-more__elem:hover,
.home-discipline.euro .button-more__elem:hover,
.home-video.euro .button-more__elem:hover,
.home-photo.euro .button-more__elem:hover,
.home-boxes.euro .button-more__elem:hover,
.home-multi.euro .button-more__elem:hover,
.home-review.euro .button-more__elem:hover,
.primary.euro .button-more__elem:hover,
.grid-box.euro .button-more__elem:hover,
.box-big.euro .button-more__elem:hover,
.box-medium.euro .button-more__elem:hover,
.video .box-small.euro .button-more__elem:hover,
.boxes-list-discipline__wrapper.euro .button-more__elem:hover,
.news-latest__content.euro .button-more__elem:hover,
.section-grid.euro .button-more__elem:hover,
.nts__slide.euro .button-more__elem:hover,
.grid-three.euro .button-more__elem:hover,
.liveblog-video.euro .button-more__elem:hover {
  background-color: #fff;
  border: 1px solid #009bb4;
  color: #009bb4;
}

.boxes-one-three-box.euro .gallery-mark,
.boxes-section.euro .gallery-mark,
.home-special.euro .gallery-mark,
.home-discipline.euro .gallery-mark,
.home-video.euro .gallery-mark,
.home-photo.euro .gallery-mark,
.home-boxes.euro .gallery-mark,
.home-multi.euro .gallery-mark,
.home-review.euro .gallery-mark,
.primary.euro .gallery-mark,
.grid-box.euro .gallery-mark,
.box-big.euro .gallery-mark,
.box-medium.euro .gallery-mark,
.video .box-small.euro .gallery-mark,
.boxes-list-discipline__wrapper.euro .gallery-mark,
.news-latest__content.euro .gallery-mark,
.section-grid.euro .gallery-mark,
.nts__slide.euro .gallery-mark,
.grid-three.euro .gallery-mark,
.liveblog-video.euro .gallery-mark {
  background-image: url(images/euro/gall-icon.svg);
}

.home-special.euro .home-special__title::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-video.euro .home-video__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-boxes.euro .home-boxes__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-photo.euro .home-photo__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-multi.euro .home-multi__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-review.euro .home-review__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.stats-progressbar {
  background-color: #d8d8d8;
  height: 11px;
  position: relative;
}

.stats-progressbar__inner {
  background-color: #f7a600;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1%;
}

.stats-progressbar__inner--left {
  background-color: #170f7d;
  left: auto;
  right: 0;
}

.stats-progressbar__inner--right {
  background-color: #f05a22;
}

.stats-progressbar-common {
  position: relative;
  background-color: #f05a22;
  margin-top: -35px;
}

.stats-progressbar-common.outside {
  height: 269px;
}

.stats-progressbar-common.inside {
  height: 196px;
  margin-top: -27px;
}

.stats-progressbar-common__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1%;
  background-color: #170f7d;
}

.condition-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.313;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f7a600;
  margin-right: 10px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .condition-icon {
    width: 49px;
    height: 49px;
    margin-right: 12px;
  }
}

@media (min-width: 1024px) {
  .condition-icon {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1280px) {
  .condition-icon {
    width: 49px;
    height: 49px;
  }
}

.condition-icon.active {
  position: relative;
}

.condition-icon.active::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  border-width: 10px;
  border-style: solid;
  border-color: #adadbd transparent transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.condition-icon--z {
  background-color: #7ed321;
}

.condition-icon--p {
  background-color: #d60707;
}

.home-special.euro .box-small__image,
.grid-three.euro .box-small__image {
  position: relative;
}

.home-special.euro .box-small__image::after,
.grid-three.euro .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-special.euro .box-small__image::before,
.grid-three.euro .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-special.euro .box-small__image::before,
  .grid-three.euro .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-special.euro .box-small__image::after,
.grid-three.euro .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.home-special.euro .box-small .label__ver-1,
.home-special.euro .box-small .label__ver-2,
.home-special.euro .box-small .label__ver-3,
.home-special.euro .box-small .label__ver-4,
.grid-three.euro .box-small .label__ver-1,
.grid-three.euro .box-small .label__ver-2,
.grid-three.euro .box-small .label__ver-3,
.grid-three.euro .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.primary.euro .primary__box-image {
  position: relative;
}

.primary.euro .primary__box-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.euro .primary__box-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

.primary.euro .primary__box-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.primary.euro .primary__box .label__ver-1,
.primary.euro .primary__box .label__ver-2,
.primary.euro .primary__box .label__ver-3,
.primary.euro .primary__box .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.primary.euro .primary__box-category::after {
  background-color: #009bb4;
}

.primary.euro .primary__twin-photo {
  position: relative;
}

.primary.euro .primary__twin-photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.euro .primary__twin-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 5px;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .primary.euro .primary__twin-photo::before {
    width: 78px;
    height: 65px;
  }
}

.primary.euro .primary__twin-photo::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

@media (min-width: 1280px) {
  .primary.euro .primary__twin-photo::before {
    right: 0;
  }
}

.primary.euro .primary__twin .label__ver-1,
.primary.euro .primary__twin .label__ver-2,
.primary.euro .primary__twin .label__ver-3,
.primary.euro .primary__twin .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.primary.euro .primary__twin-category::after {
  background-color: #009bb4;
}

.primary.euro .primary__large-title::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.primary.euro .primary__large-image {
  position: relative;
}

.primary.euro .primary__large-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.euro .primary__large-image figure {
  position: relative;
}

.primary.euro .primary__large-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.euro .primary__large-image figure::before {
    bottom: -1px;
    background-image: url(images/euro/badge-right-bottom.png);
    width: 157px;
    height: 131px;
  }
}

.primary.euro .primary__large-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(70, 148, 164, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(70, 148, 164, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.euro .primary__large-image::before {
    bottom: 0;
  }
}

.primary.euro .primary__large .label__ver-1,
.primary.euro .primary__large .label__ver-2,
.primary.euro .primary__large .label__ver-3,
.primary.euro .primary__large .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.primary.euro .primary__large-category::after {
  background-color: #009bb4;
}

.primary.euro .primary__wide-title::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.primary.euro .primary__wide .label__ver-1,
.primary.euro .primary__wide .label__ver-2,
.primary.euro .primary__wide .label__ver-3,
.primary.euro .primary__wide .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.primary.euro .primary__double .label__ver-1,
.primary.euro .primary__double .label__ver-2,
.primary.euro .primary__double .label__ver-3,
.primary.euro .primary__double .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.grid-box.euro .grid-box__image {
  position: relative;
}

.grid-box.euro .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.grid-box.euro .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .grid-box.euro .grid-box__image::before {
    width: 78px;
    height: 65px;
  }
}

.grid-box.euro .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.grid-box.euro .grid-box__category::after {
  background-color: #009bb4;
}

.grid-box.euro .label__ver-1,
.grid-box.euro .label__ver-2,
.grid-box.euro .label__ver-3,
.grid-box.euro .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.box-big.euro .box-big__image {
  position: relative;
}

.box-big.euro .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-big.euro .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom.png);
}

@media (min-width: 768px) {
  .box-big.euro .box-big__image::before {
    width: 157px;
    height: 131px;
  }
}

.box-big.euro .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.box-big.euro .box-big__paramtitle, .box-big.euro .box-big__paramtitle--content {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
  color: #fff;
}

.box-big.euro .label__ver-1,
.box-big.euro .label__ver-2,
.box-big.euro .label__ver-3,
.box-big.euro .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.box-medium.euro .box-medium__image {
  position: relative;
}

.box-medium.euro .box-medium__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-medium.euro .box-medium__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

.box-medium.euro .box-medium__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.box-medium.euro .label__ver-1,
.box-medium.euro .label__ver-2,
.box-medium.euro .label__ver-3,
.box-medium.euro .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-list-discipline__wrapper.euro .boxes-list-discipline__img {
  position: relative;
}

.boxes-list-discipline__wrapper.euro .boxes-list-discipline__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-list-discipline__wrapper.euro .boxes-list-discipline__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-list-discipline__wrapper.euro .boxes-list-discipline__img::before {
    width: 78px;
    height: 65px;
  }
}

.boxes-list-discipline__wrapper.euro .boxes-list-discipline__img::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.boxes-list-discipline__wrapper.euro .news-latest__category::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #009bb4;
}

.section-grid.euro .grid-box__image {
  position: relative;
}

.section-grid.euro .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.section-grid.euro .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .section-grid.euro .grid-box__image::before {
    width: 78px;
    height: 65px;
  }
}

.section-grid.euro .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.section-grid.euro .grid-box__category::after {
  background-color: #009bb4;
}

.section-grid.euro .grid-box .label__ver-1,
.section-grid.euro .grid-box .label__ver-2,
.section-grid.euro .grid-box .label__ver-3,
.section-grid.euro .grid-box .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.section-grid.euro h3::before {
  background-color: #fccb8d;
}

.pagination.euro .pagination__number:hover, .pagination.euro .pagination__number.active {
  border-bottom: 3px solid #009bb4;
}

.directory-submenu.euro .directory-submenu__wrapper {
  border-bottom: 1px solid #007a8c;
}

.directory-submenu.euro .directory-submenu__item--active {
  border-bottom-color: #007a8c;
}

.stats-section--playerbg.euro {
  position: relative;
}

.stats-section--playerbg.euro::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .stats-section--playerbg.euro::before {
    width: 91px;
    height: 76px;
  }
}

.nts--main .nts__slide.euro {
  border: 0;
}

.nts--main .nts__slide.euro:hover {
  border: 0;
}

.nts--main .nts__slide.euro .nts__slide-desc,
.nts--main .nts__slide.euro:hover .nts__slide-desc {
  background: url(images/euro/ns_slide_euro_bg.jpg);
  background-position: right;
  background-size: cover;
}

.nts--main .nts__slide.euro .nts__slide-title,
.nts--main .nts__slide.euro .progress-time__time {
  color: #fff;
}

.nts--main .nts__slide.euro .progress-time__progress {
  background-color: #fff;
}

.grid-three.euro .grid-three__header {
  color: #fff;
  background-color: #009bb4;
}

.box-small.euro .box-small__image {
  position: relative;
}

.box-small.euro .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-small.euro .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .box-small.euro .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.box-small.euro .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.box-small.euro .box-small__image .button-play {
  background-image: url(images/euro/play-euro.svg);
}

.box-small.euro .box-small__category::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #009bb4;
}

.box-small.euro .box-small .label__ver-1,
.box-small.euro .box-small .label__ver-2,
.box-small.euro .box-small .label__ver-3,
.box-small.euro .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.news-latest__content.euro .news-latest__image {
  position: relative;
}

.news-latest__content.euro .news-latest__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-latest__content.euro .news-latest__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .news-latest__content.euro .news-latest__image::before {
    width: 78px;
    height: 65px;
  }
}

.news-latest__content.euro .news-latest__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.news-latest__content.euro .news-latest__category::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #009bb4;
}

@media (min-width: 768px) {
  .news-latest__content.euro .news-latest__category::after {
    top: 6px;
  }
}

.liveblog.euro a {
  color: #009bb4;
}

.liveblog.euro .liveblog__label::before {
  background-color: transparent;
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.liveblog.euro .liveblog__time.first {
  color: #2b2b2b;
}

.liveblog.euro .liveblog__time.first .liveblog__time-point {
  border: 2px solid #2b2b2b;
}

.liveblog.euro .liveblog__time.first.event {
  color: #009bb4;
}

.liveblog.euro .liveblog__time.first.event .liveblog__time-point {
  border: 2px solid #009bb4;
}

.directory-standard-list .box-big.euro .box-big__image {
  position: relative;
}

.directory-standard-list .box-big.euro .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.directory-standard-list .box-big.euro .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom.png);
}

@media (min-width: 768px) {
  .directory-standard-list .box-big.euro .box-big__image::before {
    width: 157px;
    height: 131px;
  }
}

.directory-standard-list .box-big.euro .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.directory-standard-list .box-big.euro .box-big .label__ver-1,
.directory-standard-list .box-big.euro .box-big .label__ver-2,
.directory-standard-list .box-big.euro .box-big .label__ver-3,
.directory-standard-list .box-big.euro .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.home-quiz.euro {
  margin-bottom: 30px;
}

.home-quiz.euro .home-quiz__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-quiz.euro .home-quiz__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 329px;
  height: 100%;
}

@media (max-width: 1023px) {
  .home-quiz.euro .home-quiz__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .home-quiz.euro .home-quiz__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 20px;
  }
}

.home-quiz.euro .home-quiz__content {
  background-color: #c8c8d3;
  background-image: url(images/euro/quiz-module-background.jpg);
  background-size: cover;
  background-position: left center;
  padding: 21px 0 23px 30px;
  width: 67%;
}

@media (max-width: 1023px) {
  .home-quiz.euro .home-quiz__content {
    padding: 12px 22px 20px;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .home-quiz.euro .home-quiz__content {
    padding: 12px 12px 20px;
    width: 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .home-quiz.euro .home-quiz__content {
    height: auto;
    width: 50%;
    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;
  }
}

@media (min-width: 1024px) {
  .home-quiz.euro .home-quiz__content {
    padding-left: 117px;
  }
}

.home-quiz.euro .home-quiz__content:hover {
  background-color: #fff;
}

.home-quiz.euro .home-quiz__img {
  width: 33%;
}

@media (max-width: 767px) {
  .home-quiz.euro .home-quiz__img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .home-quiz.euro .home-quiz__img {
    width: 50%;
  }
}

.home-quiz.euro .home-quiz__img figure {
  width: 100% !important;
}

@media (min-width: 768px) {
  .home-quiz.euro .home-quiz__img figure {
    overflow: hidden;
    height: 329px;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1279px) {
  .home-quiz.euro .home-quiz__img img {
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .home-quiz.euro .home-quiz__title {
    font-size: 2rem;
    color: #000;
    font-weight: 900;
    max-width: 558px;
  }
}

@media (min-width: 1024px) {
  .home-quiz.euro .home-quiz__title {
    max-height: 40px;
  }
}

.home-quiz.euro .home-quiz__title a:hover {
  color: #2b2b2b;
}

.home-quiz.euro .home-quiz__desc {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .home-quiz.euro .home-quiz__desc {
    overflow: hidden;
    max-height: 45px;
    padding-right: 20px;
    max-width: 421px;
  }
}

.home-quiz.euro .home-quiz__more {
  display: inline-block;
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.11;
  text-transform: uppercase;
  padding: 10px 12px 10px 22px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 768px) {
  .home-quiz.euro .home-quiz__more {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    max-width: 110px;
  }
}

.home-quiz.euro .home-quiz__more i {
  background-image: url(images/icons/arrow_white.svg);
  width: 12px;
  height: 5px;
  display: inline-block;
  margin-left: 7px;
  position: relative;
  top: -1px;
}

.home-quiz.euro .home-quiz__more:hover {
  color: #fff;
}

.home-quiz.euro .home-quiz__more:hover i {
  background-image: url(images/icons/arrow_white.svg);
}

.home-quiz.euro .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-quiz.euro .VueCarousel-navigation-prev {
    left: 15px !important;
  }
}

.home-quiz.euro .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-quiz.euro .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-quiz.euro .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-quiz.euro .VueCarousel-navigation-next {
    right: 15px !important;
  }
}

.home-quiz.euro .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-quiz.euro .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-special.euro .home-special__background {
  background-image: url(images/euro/reccomend-module-background.jpg) !important;
}

.home-discipline.euro .box-big__paramtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.home-discipline.euro .box-big::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .home-discipline.euro .box-big::before {
    background-image: url(images/euro/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.home-discipline.euro .box-big::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.home-discipline.euro .box-big .label__ver-1,
.home-discipline.euro .box-big .label__ver-2,
.home-discipline.euro .box-big .label__ver-3,
.home-discipline.euro .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.home-discipline.euro .box-small__image {
  position: relative;
}

.home-discipline.euro .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-discipline.euro .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-discipline.euro .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-discipline.euro .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.home-discipline.euro .box-small .label__ver-1,
.home-discipline.euro .box-small .label__ver-2,
.home-discipline.euro .box-small .label__ver-3,
.home-discipline.euro .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.home-video.euro .home-video__frame {
  background-color: #005f6d;
}

.home-video.euro .home-video__subtitle {
  color: #fff;
}

.home-video.euro .home-video__content:hover {
  background-color: #008295;
}

@media (min-width: 1280px) {
  .home-video.euro .home-video__lists:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 26, 31, 0)), to(#005f6d));
    background-image: linear-gradient(to bottom, rgba(23, 26, 31, 0), #005f6d);
  }
}

.home-boxes {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-boxes {
    margin-bottom: 20px;
  }
}

.home-boxes__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-boxes__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (min-width: 1280px) {
  .home-boxes__heading {
    padding-left: 0;
  }
}

.home-boxes__slider {
  position: relative;
  left: 0;
  width: 100%;
}

@media (min-width: 1280px) {
  .home-boxes__slider {
    width: calc(100% + 26px);
    left: -13px;
  }
}

.home-boxes__box {
  position: relative;
  margin: 0 3px;
}

@media (min-width: 1280px) {
  .home-boxes__box {
    margin: 0 13px;
  }
}

.home-boxes__box:hover .home-boxes__content {
  background-color: #e0e0eb;
}

.home-boxes__url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-boxes__content {
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
}

.home-boxes__title {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .home-boxes__title {
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (max-width: 767px) {
  .home-boxes__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.home-boxes__image {
  position: relative;
}

.home-boxes__image .button-play {
  left: auto;
  bottom: auto;
  width: 35px;
  height: 35px;
  position: relative;
  margin-right: 10px;
}

.home-boxes__indicators {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.home-boxes__duration {
  font-size: 0.688rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  padding: 4px 7px;
  background-color: #2a2a2a;
}

.home-boxes__category {
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-boxes__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-boxes__category:hover {
  cursor: pointer;
}

.home-boxes .VueCarousel-dot {
  padding: 0 5px 0 5px !important;
}

.home-boxes .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  width: 6px !important;
  height: 6px !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-boxes .VueCarousel-navigation {
  display: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation {
    display: block;
  }
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-pagination {
    display: none;
  }
}

.home-boxes .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-prev {
    left: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-boxes .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-next {
    right: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-boxes .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-button {
  top: 53% !important;
  color: transparent !important;
}

.home-boxes .VueCarousel-navigation--disabled {
  opacity: 0 !important;
  cursor: default !important;
}

.home-boxes .button-more {
  margin: 20px auto 0;
}

.home-boxes.euro .home-boxes__image {
  position: relative;
}

.home-boxes.euro .home-boxes__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .home-boxes.euro .home-boxes__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-boxes.euro .home-boxes__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.home-boxes.euro .home-boxes__category::after {
  background-color: #009bb4;
}

.home-multi__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-multi__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-multi__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-multi__heading {
    padding-left: 0;
  }
}

.home-multi__category {
  display: none;
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-multi__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-multi__category:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .home-multi__category {
    display: block;
  }
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small {
    width: calc(33.3% - 3px);
  }
}

@media (min-width: 1280px) {
  .home-multi .boxes-three-box .box-small {
    width: calc(33.3% - 20px);
  }
}

.home-multi .boxes-three-box .box-small__content {
  position: relative;
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 180px;
  }
}

@media (min-width: 1280px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 210px;
    padding: 22px 19px;
    font-size: 1.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (min-width: 1921px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 277px;
  }
}

.home-multi .boxes-three-box .box-small .label__ver-1,
.home-multi .boxes-three-box .box-small .label__ver-2,
.home-multi .boxes-three-box .box-small .label__ver-3,
.home-multi .boxes-three-box .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small-hor {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 25%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1921px) {
  .home-multi .boxes-three-box .box-small-hor {
    height: 105px;
    margin-bottom: 23px;
  }
  .home-multi .boxes-three-box .box-small-hor .box-small-hor__image {
    height: 105px;
  }
  .home-multi .boxes-three-box .box-small-hor:last-of-type {
    margin-bottom: 0;
  }
}

.home-multi .boxes-three-box .box-small-hor:first-of-type {
  border-top: 0;
}

.home-multi .boxes-three-box .box-small-hor img {
  max-width: none;
}

@media (min-width: 1024px) {
  .home-multi .boxes-three-box .box-small-hor__content {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.5;
  }
}

.home-multi .boxes-three-box .box-small-hor__category {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-multi .boxes-three-box .box-small-hor__category:hover {
  cursor: pointer;
}

@media (min-width: 1463px) {
  .home-multi .boxes-three-box .box-small-hor__category {
    display: block;
  }
}

.home-multi.euro .box-small__image {
  position: relative;
}

.home-multi.euro .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-multi.euro .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-multi.euro .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.home-multi.euro .home-multi__category::after {
  background-color: #009bb4;
}

.home-discipline .home-multi .boxes-three-box .box-small:nth-child(3) {
  display: block;
  padding-left: 14px;
}

@media (min-width: 1280px) {
  .home-discipline .home-multi .boxes-three-box .box-small:nth-child(3) {
    padding-left: 0;
  }
}

.home-review {
  position: relative;
}

@media (min-width: 1280px) {
  .home-review {
    margin-bottom: 30px;
  }
}

@media (max-width: 1023px) {
  .home-review {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .home-review {
    margin-bottom: 0px;
    padding-bottom: 20px;
  }
  .home-review .boxes-three-box .box-small {
    width: 33.3%;
  }
}

.home-review__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-review__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-review__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-review__heading {
    padding-left: 0;
  }
}

.home-review .box-small__opinion {
  position: absolute;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-review .box-small__opinion span {
  letter-spacing: 1.1px;
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
}

.home-review .box-small__opinion img {
  width: 43px;
  border-radius: 50%;
  margin-right: 16px;
}

.home-review .box-small__opinion--content {
  text-align: center;
  padding: 20px 35px 20px;
}

.home-review .boxes-3-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .home-review .boxes-3-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }
  .home-review .boxes-3-container::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .home-review .boxes-3-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .home-review .boxes-3-container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .home-review .boxes-3-container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.home-review .boxes-3-container .box-small {
  margin-right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media (max-width: 1023px) {
  .home-review .boxes-3-container .box-small {
    min-width: 334px;
    margin-right: 6px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small {
    min-width: 240px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.home-review .boxes-3-container .box-small:last-child {
  margin-right: 0;
}

.home-review .boxes-3-container .box-small .button-play.medium {
  left: 20px;
  bottom: 25px;
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small__content {
    font-size: 1rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .home-review .boxes-3-container .box-small__content {
    min-height: 180px;
  }
}

.home-review .boxes-3-container .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-review .boxes-3-container .box-small--special {
  height: 100%;
  padding: 25px 20px 20px;
  min-height: 166px;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small--special {
    padding: 15px 5px 20px;
    font-size: 1rem;
    text-align: center;
    min-height: 80px;
    line-height: 1.25;
  }
}

@media (min-width: 1280px) {
  .home-review .boxes-3-container .box-small--special {
    font-size: 2rem;
    color: #2b2b2b;
    font-weight: 700;
  }
}

.home-review__big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  .home-review__big {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.home-review__big-photo {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-review__big-photo {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-height: 444px;
    overflow: hidden;
  }
}

.home-review__big-content {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 172px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .home-review__big-content {
    padding: 26px;
  }
}

@media (min-width: 1024px) {
  .home-review__big-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 587px;
  }
}

:hover > .home-review__big-content {
  background-color: #e0e0eb;
}

.home-review__big-title {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 1280px) {
  .home-review__big-title {
    font-size: 2.625rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.19;
  }
}

@media (max-width: 767px) {
  .home-review__big-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 98px;
  }
}

.home-review__big-opinion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 15px;
  bottom: 7px;
}

.home-review__big-opinion figure {
  margin-right: 16px;
}

.home-review__big-opinion figure img {
  border-radius: 50%;
  max-width: 43px;
}

.home-review__big-opinion span {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .home-review__big-opinion {
    bottom: 22px;
    left: 26px;
  }
}

@media (min-width: 1024px) {
  .home-review__big-opinion figure img {
    max-width: 64px;
  }
}

.home-review__big.euro .home-review__big-content {
  background-image: url(images/euro/opinion-module-background.jpg);
}

.home-review__big.euro .home-review__big-title {
  color: #fff;
}

@media (min-width: 1280px) {
  .home-review__big.euro .home-review__big-title {
    color: #fff;
  }
}

.home-review__big.euro .home-review__big-opinion span {
  color: #fff;
}

.home-review__big.euro .home-review__big-photo {
  position: relative;
}

.home-review__big.euro .home-review__big-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .home-review__big.euro .home-review__big-photo::after {
    background-image: url(images/euro/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.home-review__big.euro:hover .home-review__big-content {
  background-color: transparent;
}

.home-review .button-more {
  margin: 20px auto 0;
}

.home-slider.euro {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-slider.euro {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .home-slider.euro__wrapper::after {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(32.76%, #0602025e), to(#4692a2d4));
    background-image: linear-gradient(to left, #0602025e 32.76%, #4692a2d4);
  }
}

.home-slider.euro__category::after {
  background-color: #c8c8d3;
}

.home-slider.euro__category.euro::after {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.home-slider.euro.euro .home-slider__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-slider.euro.euro .home-slider__text.euro {
  background-color: #007a8c;
}

@media (min-width: 768px) {
  .home-slider.euro.euro .home-slider__text.euro {
    background-color: transparent;
  }
}

.home-slider.euro.euro .home-slider__text.euro .home-slider__category,
.home-slider.euro.euro .home-slider__text.euro .home-slider__title,
.home-slider.euro.euro .home-slider__text.euro .home-slider__description {
  color: #fff;
}

.boxes-one-three-box.euro .box-big__paramtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-one-three-box.euro .box-big__paramtitle--content {
  color: #fff;
  background-color: unset;
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-one-three-box.euro .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-one-three-box.euro .box-big__image::before {
    background-image: url(images/euro/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.boxes-one-three-box.euro .box-big::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

@media (min-width: 1280px) {
  .boxes-one-three-box.euro .box-big__content {
    max-width: 690px;
  }
}

.boxes-one-three-box.euro .box-big .label__ver-1,
.boxes-one-three-box.euro .box-big .label__ver-2,
.boxes-one-three-box.euro .box-big .label__ver-3,
.boxes-one-three-box.euro .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-one-three-box.euro .box-small__image {
  position: relative;
}

.boxes-one-three-box.euro .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-one-three-box.euro .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-one-three-box.euro .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.boxes-one-three-box.euro .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.boxes-one-three-box.euro .box-small .label__ver-1,
.boxes-one-three-box.euro .box-small .label__ver-2,
.boxes-one-three-box.euro .box-small .label__ver-3,
.boxes-one-three-box.euro .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-section {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .boxes-section {
    margin-bottom: 20px;
  }
}

.boxes-section .big-button .button-play {
  position: static;
}

@media (max-width: 767px) {
  .boxes-section .box-big__image > .button-play {
    display: block;
    position: absolute;
  }
}

@media (min-width: 768px) {
  .boxes-section .box-big__image > .button-play {
    display: none;
  }
}

@media (max-width: 767px) {
  .boxes-section .box-big__content .button-play {
    display: none;
  }
}

.boxes-section.euro .box-big__paramtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-section.euro .box-big__paramtitle--content {
  color: #fff;
  background-color: unset;
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-section.euro .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-section.euro .box-big__image::before {
    background-image: url(images/euro/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.boxes-section.euro .box-big::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.boxes-section.euro .box-big .label__ver-1,
.boxes-section.euro .box-big .label__ver-2,
.boxes-section.euro .box-big .label__ver-3,
.boxes-section.euro .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.boxes-section.euro .box-medium__image {
  position: relative;
}

.boxes-section.euro .box-medium__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-section.euro .box-medium__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/euro/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-section.euro .box-medium__image::before {
    width: 78px;
    height: 65px;
  }
}

.boxes-section.euro .box-medium__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#4692a2));
  background: linear-gradient(transparent 40.76%, #4692a2);
}

.boxes-section.euro .box-medium .label__ver-1,
.boxes-section.euro .box-medium .label__ver-2,
.boxes-section.euro .box-medium .label__ver-3,
.boxes-section.euro .box-medium .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

@media (min-width: 1024px) {
  .boxes-section .button-more {
    margin-top: 13px;
  }
}

.boxes-section.hot-topic .boxes-2-container {
  margin-bottom: 0;
}

.boxes-section.hot-topic .box-medium:hover .box-medium__content,
.boxes-section.hot-topic .box-medium__content,
.boxes-section.hot-topic .opinion__small--name {
  color: #fff;
}

.boxes-section.hot-topic .button-more {
  margin: 20px auto 0;
}

@media (max-width: 767px) {
  .boxes-section.hot-topic .box-big__content {
    background-color: transparent;
  }
  .boxes-section.hot-topic .box-big__title {
    color: #fff;
  }
  .boxes-section.hot-topic .boxes-1-container {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.group-table__table {
  margin-bottom: 36px;
}

.group-table__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 41px;
  padding: 10px 13px;
  background-color: #009bb4;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .group-table__name {
    font-size: 1rem;
  }
}

.group-table__header {
  background-color: #adadbd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 26px;
}

.group-table__header-title {
  font-size: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
}

.group-table__header-title:before {
  content: attr(data-short-title);
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
}

@media (min-width: 768px) {
  .group-table__header-title:before {
    display: none;
  }
}

@media (min-width: 768px) {
  .group-table__header-title {
    font-size: 0.813rem;
  }
}

.group-table__item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}

@media (min-width: 768px) {
  .group-table__item {
    height: 60px;
  }
}

.group-table__col {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.group-table__col:nth-child(1) {
  width: 8%;
  max-width: 50px;
}

.group-table__col:nth-child(2) {
  min-width: 45%;
  text-align: left;
}

.group-table__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.group-table__team img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  display: block;
}

@media (min-width: 768px) {
  .group-table__team img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
}

.group-table__team-name {
  font-size: 0.9rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .group-table__team-name {
    font-size: 1rem;
  }
}

.group-table__value {
  font-size: 0.813rem;
  color: #000;
  font-weight: 400;
}

@media (min-width: 768px) {
  .group-table__value {
    font-size: 1rem;
  }
}

.group-events {
  margin-bottom: 42px;
}

.group-events__spacer {
  height: 41px;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  background-color: #fff;
  position: relative;
}

.group-events__btn {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  display: inline-block;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
  padding: 8px 16px;
}

.group-events__btn:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 10px;
  position: relative;
  top: -1px;
  margin-left: 4px;
  background: transparent url(images/icons/arrow-down-expand-dark.svg) no-repeat center center;
}

.group-events__btn--up:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.events-single {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  background-color: #fff;
  position: relative;
  -webkit-transition: all, .3s;
  transition: all, .3s;
}

@media (min-width: 768px) {
  .events-single {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 90px;
  }
}

.events-single:after {
  content: '';
  height: 4px;
  width: 60px;
  background-color: #d9d9d9;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.events-single:hover {
  background-color: #ececf3;
}

.events-single__team {
  padding: 0 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 33%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .events-single__team {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 28px;
    width: 260px;
    min-width: unset;
  }
}

.events-single__team img,
.events-single__team .img-placeholder {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) {
  .events-single__team img,
  .events-single__team .img-placeholder {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
  }
}

@media (min-width: 768px) {
  .events-single__team--right .events-single__team-name {
    margin-right: 20px;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .events-single__team--right {
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.events-single__team-name {
  font-size: 0.85rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

@media (min-width: 768px) {
  .events-single__team-name {
    font-size: 1rem;
    margin-left: 20px;
    margin-top: 0;
  }
}

.events-single__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: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-width: 34%;
}

@media (min-width: 768px) {
  .events-single__info {
    width: auto;
  }
}

.events-single__info--link {
  cursor: pointer;
}

.events-single__info-group {
  font-size: 0.6rem;
  color: #9b9b9b;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .events-single__info-group {
    font-size: 0.688rem;
  }
}

.events-single__info-result {
  font-size: 1.2rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  margin: 3px 0 5px;
}

@media (min-width: 768px) {
  .events-single__info-result {
    font-size: 1.5rem;
  }
}

.events-single__info-result small {
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
}

@media (min-width: 768px) {
  .events-single__info-result small {
    font-size: 0.9rem;
  }
}

.events-single__info-place {
  font-size: 0.6rem;
  color: #9b9b9b;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .events-single__info-place {
    font-size: 0.688rem;
  }
}

.events-single__info-data {
  font-size: 0.75rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.46;
}

.events-single__info-data--hour {
  position: relative;
}

.events-single__info-data--hour:before {
  content: '';
  width: 84px;
  height: 1px;
  background-color: #242934;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .events-single__info-data {
    font-size: 0.813rem;
  }
}

.events-single__info-status {
  font-size: 0.6rem;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 1px 9px;
  margin-bottom: 3px;
}

.events-single__info-status--inprogress {
  background-color: #ff0000;
}

.events-single__info-status--finished {
  background-color: #8f8f8f;
}

@media (min-width: 768px) {
  .events-single__info-status {
    font-size: 0.688rem;
    line-height: 1;
    padding: 2px 9px;
    margin-bottom: 4px;
  }
}

.group-single {
  margin-bottom: 37px;
}

.section-navigation {
  margin-bottom: 38px;
  height: 60px;
}

.section-navigation__block {
  background-color: #f5f5f5;
}

.section-navigation__block--fixed {
  position: fixed;
  width: 100%;
  top: 54px;
  z-index: 9;
  padding-right: 26.66px;
}

@media (min-width: 768px) {
  .section-navigation__block--fixed {
    padding-right: 36.66px;
  }
}

@media (min-width: 1280px) {
  .section-navigation__block--fixed {
    padding-right: 46.66px;
  }
}

@media (min-width: 1463px) {
  .section-navigation__block--fixed .section-navigation__wrapper {
    max-width: 1360px;
  }
}

.section-navigation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
}

.section-navigation__wrapper::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.section-navigation__wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.section-navigation__wrapper::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.section-navigation__wrapper::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.section-navigation__title {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.3;
}

.section-navigation__subtitle {
  font-size: 0.688rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
}

.section-navigation__tab {
  height: 50px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 48px - 250px) / 5);
  min-width: 174px;
  cursor: pointer;
  margin-right: 8px;
  padding: 0 10px;
}

.section-navigation__tab:last-child {
  margin-right: 0;
}

.section-navigation__tab--active {
  background-color: #007a8c;
  width: 250px;
}

.section-navigation__tab--active.section-navigation__tab--ver2 {
  width: 210px;
}

.section-navigation__tab--active .section-navigation__title {
  color: #fff;
}

.section-navigation__tab--active .section-navigation__subtitle {
  color: #fff;
}

.section-navigation__tab--active::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #007a8c transparent transparent transparent;
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.section-navigation__tab--ver2 {
  width: calc((100% - 48px - 210px) / 6);
}

@media (min-width: 1250px) {
  .screening__wrapper.active-yes .section-navigation__tab {
    width: calc((100% - 40px) / 6);
    min-width: 150px;
  }
  .screening__wrapper.active-yes .section-navigation__tab--active {
    width: calc((100% - 40px) / 6);
  }
  .screening__wrapper.active-yes .section-navigation__block--fixed {
    width: 1194px;
    padding-right: 0;
  }
}

@media (min-width: 1463px) {
  .screening__wrapper.active-yes .section-navigation__block--fixed {
    width: 1193px;
    padding-right: 0;
  }
}

.euro-pages-header__title {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .euro-pages-header__title {
    margin-bottom: 26px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 1280px) {
  .euro-pages-header__title {
    font-size: 3.375rem;
    line-height: 1.15;
  }
}

.euro-pages-section-header__title {
  font-size: 1.2rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  margin-bottom: 10px;
}

.euro-pages-section-header__title:before {
  content: '';
  width: 103px;
  height: 3px;
  background-color: #fccb8d;
  position: absolute;
  top: -10px;
  left: 0;
}

@media (min-width: 768px) {
  .euro-pages-section-header__title {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.numbers-box {
  background-color: #fff;
  padding: 18px;
  height: auto;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  width: 100%;
}

@media (min-width: 768px) {
  .numbers-box {
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .numbers-box {
    height: 172px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.numbers-box__progressbar {
  width: 248px;
  height: 16px;
  background-color: #d8d8d8;
  position: relative;
  margin-bottom: 10px;
}

.numbers-box__progressbar span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #009bb4;
}

@media (min-width: 768px) {
  .numbers-box__progressbar {
    width: 380px;
    margin-bottom: 13px;
  }
}

.numbers-box__value {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

.numbers-box__label {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.38;
  margin-bottom: 12px;
  display: inline-block;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .numbers-box__label {
    margin-bottom: 15px;
  }
}

.numbers-box__footnote {
  font-size: 0.75rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 0.92;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .numbers-box__footnote {
    margin-top: 8px;
  }
}

.numbers-box__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .numbers-box__stats {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.numbers-box__stat {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 5px;
  text-align: center;
  width: 50%;
}

@media (min-width: 768px) {
  .numbers-box__stat {
    padding: 0 15px;
    width: unset;
  }
  .numbers-box__stat:first-child {
    padding-left: 18px;
  }
}

@media (min-width: 1280px) {
  .numbers-box__stat {
    min-width: auto;
  }
}

.numbers-box__number {
  font-size: 0.75rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 0.92;
}

.numbers-box__icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
}

.numbers-box__icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.numbers-box__icon-goals {
  background-image: url(images/icons/stats-goals.svg);
  width: 25px;
  height: 25px;
}

.numbers-box__icon-yellow-cards {
  background-image: url(images/icons/stats-yellow-card.svg);
  width: 21px;
  height: 31px;
}

.numbers-box__icon-red-cards {
  background-image: url(images/icons/stats-red-card.svg);
  width: 21px;
  height: 31px;
}

.numbers-box__icon-shots {
  background-image: url(images/icons/stats-all-shots.svg);
  width: 39px;
  height: 22px;
}

.numbers-box__icon-target-shots {
  background-image: url(images/icons/stats-shots-on-target.svg);
  width: 52px;
  height: 30px;
}

.short-table {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .short-table {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .short-table {
    margin-bottom: 35px;
  }
}

.short-table__item {
  margin-bottom: 5px;
}

.short-table__title {
  height: 33px;
  background-color: #009bb4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 13px;
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.69;
}

@media (min-width: 768px) {
  .short-table__title {
    height: 41px;
    font-size: 1rem;
    line-height: 1.38;
  }
}

.short-table__row {
  height: 45px;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}

@media (min-width: 768px) {
  .short-table__row {
    height: 68px;
  }
}

@media (min-width: 1024px) {
  .short-table__row {
    height: 71px;
  }
}

.short-table__td {
  font-size: 0.813rem;
  color: #000000;
  font-weight: 400;
}

.short-table__td:first-child {
  padding: 0 10px 0 6px;
}

@media (min-width: 768px) {
  .short-table__td:first-child {
    padding: 0 16px 0 10px;
  }
}

.short-table__td:nth-child(3) {
  width: 70%;
}

@media (min-width: 768px) {
  .short-table__td:nth-child(3) {
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .short-table__td:nth-child(3) {
    width: 55%;
  }
}

.short-table__td:last-child {
  padding-right: 10px;
}

.short-table__td--footballer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.short-table__td--footballer a {
  font-size: 0.813rem;
  color: #000000;
  font-weight: 400;
  line-height: 1;
}

@media (min-width: 768px) {
  .short-table__td--footballer a {
    font-size: 1rem;
  }
}

.short-table__td--team a {
  color: #000000;
}

@media (min-width: 768px) {
  .short-table__td {
    font-size: 1rem;
  }
}

.short-table__photo {
  display: block;
}

.short-table__photo img,
.short-table__photo .img-placeholder {
  margin-right: 10px;
  width: 25px !important;
  min-width: 25px !important;
  height: 25px !important;
  padding-bottom: 0 !important;
}

.short-table__photo--rounded img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .short-table__photo img,
  .short-table__photo .img-placeholder {
    margin-right: 15px;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
  }
}

.short-table__footballer-team {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.short-table__footballer-team-name,
.short-table__footballer-team a {
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 768px) {
  .short-table__footballer-team {
    margin-top: 2px;
  }
}

.short-table__flag {
  display: inline-block;
}

.short-table__flag img,
.short-table__flag .img-placeholder {
  width: 10px !important;
  min-width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  margin-right: 5px;
  display: block;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) {
  .short-table__flag img,
  .short-table__flag .img-placeholder {
    margin-right: 8px;
    min-width: 18px !important;
    height: 18px !important;
  }
}

.short-table__more {
  font-size: 0.688rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  position: relative;
}

.short-table__more:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 5px;
  position: relative;
  top: -1px;
  margin-left: 6px;
  background: transparent url(images/euro/arrow-blue.svg) no-repeat center center;
}

.short-table__more:hover {
  color: #009bb4;
}

.short-table__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 225px;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  background-color: #fff;
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
}

@media (min-width: 768px) {
  .short-table__empty {
    height: 340px;
  }
}

@media (min-width: 1024px) {
  .short-table__empty {
    height: 355px;
  }
}

.detailed-table {
  margin-bottom: 25px;
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
}

.detailed-table::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.detailed-table::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.detailed-table::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.detailed-table::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 768px) {
  .detailed-table {
    margin-bottom: 35px;
  }
}

@media (min-width: 1024px) {
  .detailed-table {
    overflow: unset;
  }
}

.detailed-table__row {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 100%;
  border-left: 1px solid #e1e1e1;
}

@media (min-width: 768px) {
  .detailed-table__row {
    height: 68px;
  }
}

@media (min-width: 1024px) {
  .detailed-table__row {
    height: 71px;
  }
}

.detailed-table__col {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.detailed-table__col:nth-child(1) {
  width: 8%;
  max-width: 58px;
  min-width: 22px;
}

.detailed-table__col:nth-child(2) {
  min-width: 150px;
  text-align: left;
}

.detailed-table__col:nth-child(n+3) {
  min-width: 60px;
  max-width: 96px;
}

.detailed-table__body {
  width: 100%;
}

.detailed-table__body .detailed-table__col {
  border-bottom: 1px solid #e1e1e1;
}

.detailed-table__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #009bb4;
}

@media (min-width: 1024px) {
  .detailed-table__header .detailed-table__th:nth-child(n+3) {
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.detailed-table__th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 33px;
  white-space: nowrap;
  position: relative;
  background-color: #009bb4;
  font-size: 0;
  color: #fff;
  font-weight: 400;
  line-height: 1.46;
}

.detailed-table__th:before {
  content: attr(data-short-title);
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.46;
}

@media (min-width: 768px) {
  .detailed-table__th:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .detailed-table__th {
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .detailed-table__th {
    height: 41px;
    font-size: 0.813rem;
  }
}

.detailed-table__th.active {
  color: #fff;
  font-weight: 700;
}

.detailed-table__th:nth-child(n+3) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 3px;
}

.detailed-table__th:nth-child(n+3) .detailed-table__th-label {
  max-width: 62px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .detailed-table__th:nth-child(n+3) {
    padding-left: 7px;
  }
}

@media (min-width: 1024px) {
  .detailed-table__th:hover .detailed-table__tooltip {
    display: block;
  }
}

.detailed-table__td {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-right: 1px solid #e1e1e1;
  font-size: 0.813rem;
  color: #000000;
  font-weight: 400;
}

.detailed-table__td:nth-child(1) {
  border-right: 0;
}

.detailed-table__td:nth-child(2) {
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.detailed-table__td.active {
  background-color: #e6f6f8;
  font-weight: 700;
}

.detailed-table__td--footballer a, .detailed-table__td--team a {
  font-size: 0.8rem;
  color: #000000;
  font-weight: 400;
}

@media (min-width: 768px) {
  .detailed-table__td--footballer a, .detailed-table__td--team a {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .detailed-table__td--footballer {
    position: relative;
    top: -2px;
  }
}

@media (min-width: 768px) {
  .detailed-table__td {
    font-size: 1rem;
  }
}

.detailed-table__tooltip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -20px;
  width: auto;
  padding: 5px 10px;
  background-color: #4e4e4e;
  font-size: 0.813rem;
  color: #fff;
  font-weight: 400;
  line-height: 1;
  border-radius: 5px;
  z-index: 9;
  display: none;
}

.detailed-table__tooltip:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #4e4e4e transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -5px;
}

.detailed-table__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detailed-table__team-name {
  font-size: 0.9rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .detailed-table__team-name {
    font-size: 1rem;
  }
}

.detailed-table__photo {
  display: block;
}

.detailed-table__photo img,
.detailed-table__photo .img-placeholder {
  width: 25px !important;
  min-width: 25px !important;
  height: 25px !important;
  margin-right: 10px;
  padding-bottom: 0 !important;
}

.detailed-table__photo--rounded img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .detailed-table__photo img,
  .detailed-table__photo .img-placeholder {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    margin-right: 15px;
  }
}

.detailed-table__footballer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.detailed-table__footballer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.813rem;
  color: #000000;
  font-weight: 400;
}

@media (min-width: 768px) {
  .detailed-table__footballer-info {
    font-size: 1rem;
  }
}

.detailed-table__footballer-team {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detailed-table__footballer-team-name {
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1;
}

.detailed-table__flag img {
  width: 10px;
  min-width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
  display: block;
}

@media (min-width: 768px) {
  .detailed-table__flag img {
    min-width: 18px;
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
}

.detailed-table__more {
  font-size: 0.688rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  position: relative;
}

.detailed-table__more:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 5px;
  position: relative;
  top: -1px;
  margin-left: 6px;
  background: transparent url(images/euro/arrow-blue.svg) no-repeat center center;
}

.detailed-table__more:hover {
  color: #009bb4;
}

.detailed-table__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.detailed-table__icon {
  display: inline-block;
  cursor: pointer;
}

.detailed-table__icon-asc {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
  margin-bottom: 3px;
}

.detailed-table__icon-asc.active {
  border-color: transparent transparent #fccb8d transparent;
  cursor: default;
}

.detailed-table__icon-desc {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}

.detailed-table__icon-desc.active {
  border-color: #fccb8d transparent transparent transparent;
  cursor: default;
}

.detailed-table__empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 190px;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  background-color: #fff;
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
}

.detailed-main__breadcrumbs {
  margin-bottom: 20px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.detailed-main__breadcrumbs a {
  font-size: 0.688rem;
  color: #000000;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .detailed-main__breadcrumbs a {
    margin-bottom: 0;
  }
}

.detailed-main__breadcrumbs a:after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: transparent url(images/euro/breadcrumbs_arrow.svg) no-repeat center center;
  margin: 0 5px;
}

.detailed-main__breadcrumbs span {
  font-size: 0.688rem;
  color: #000000;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

@media (min-width: 768px) {
  .detailed-main__breadcrumbs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.detailed-main .pagination__number:hover, .detailed-main .pagination__number.active {
  border-color: #009bb4;
}

.primary.euro {
  margin-top: 30px;
}

.primary.euro .primary__background {
  background-color: #0f97ab;
  padding-bottom: 32px;
  padding-top: 13px;
  background-image: url(images/euro/spcial-module-background.jpg);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.primary.euro .primary__background .primary__broad {
  background: transparent;
}

.primary.euro .second {
  width: auto;
  margin: 0;
  padding: 0;
}

.primary.euro .container-fluid {
  padding-left: 3px;
  padding-right: 3px;
}

@media (min-width: 1280px) {
  .primary.euro .container-fluid {
    padding-left: 13px;
    padding-right: 13px;
  }
}

.primary.euro .primary__wide-image {
  position: relative;
}

.primary.euro .primary__wide-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.euro .primary__wide-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.euro .primary__wide-image::before {
    bottom: -1px;
    background-image: url(images/euro/badge-right-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.euro .primary__wide-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(70, 148, 164, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(70, 148, 164, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

.primary.euro .primary__double-image {
  position: relative;
}

.primary.euro .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.euro .primary__double-image figure {
  position: relative;
}

.primary.euro .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/euro/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.euro .primary__double-image figure::before {
    background-image: url(images/euro/badge-right-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.euro .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(70, 148, 164, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(70, 148, 164, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.euro .primary__double-image::before {
    bottom: -1px;
  }
}

.primary.euro .invert .primary__double-image {
  position: relative;
}

.primary.euro .invert .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.euro .invert .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/euro/euro-badge-left-bottom.png);
}

@media (min-width: 768px) {
  .primary.euro .invert .primary__double-image figure::before {
    background-image: url(images/euro/euro-badge-left-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.euro .invert .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(70, 148, 164, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(70, 148, 164, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.euro .invert .primary__double-image::before {
    bottom: -1px;
  }
}

.primary.euro .home-outcome {
  background-color: #036473;
}

.primary.euro .home-outcome__result {
  background-color: #f7a600;
  color: #fff;
}

.primary.euro .primary__double-title::before {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#d14d18), color-stop(#f7a600), to(#fccb8d));
  background-image: linear-gradient(to right, #d14d18, #f7a600, #fccb8d);
}

.participant-header--euro {
  background-image: url("images/euro/team-background.jpg");
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
}

.participant-header--euro .participant-header__image {
  max-width: 80px;
  margin-bottom: 0;
  margin-left: 0;
}

.participant-header--euro .participant-header__image img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  max-width: unset;
}

@media (min-width: 1280px) {
  .participant-header--euro .participant-header__image {
    max-width: 200px;
  }
  .participant-header--euro .participant-header__image img {
    width: 200px;
    height: 200px;
  }
}

.participant-header--euro .participant-description__discipline {
  display: none;
}

.participant-header--euro .participant-description__bio {
  border-left-color: #fff;
}

.participant-header--euro .participant-bio__item:last-child {
  margin-bottom: 0;
}

.participant-header--euro::before, .participant-header--euro::after {
  display: none;
}

.participant-header--euro .button-expand-wrapper {
  background-image: none;
}

.participant-header--euro .button-expand {
  background-color: transparent;
}

@media (min-width: 1280px) {
  .participant-header--euro {
    padding: 10px;
  }
}

.participant-content--euro .participant-module__title::before,
.participant-body--euro .participant-module__title::before {
  background-color: #f7a600;
  margin-bottom: 10px;
}

.participant-module--euro .others-table__header .others-table__row {
  background-color: #009bb4;
  padding: 11px;
  font-size: 0.875rem;
  color: #fff;
}

.participant-module--euro .others-table__header .others-table__position {
  font-size: 0.875rem;
  color: #fff;
}

.participant-module--euro .others-table__header .others-table__order {
  width: 34px;
  max-width: 34px;
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__header .others-table__order {
    width: 67px;
    max-width: 67px;
  }
}

.participant-module--euro .others-table__header .others-table__player {
  padding-left: 10px;
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__header .others-table__player {
    padding-left: 40px;
  }
}

.participant-module--euro .others-table__header .others-table__player {
  min-width: unset;
  padding-right: 10px;
}

.participant-module--euro .others-table__body .others-table__row {
  background-color: #fff;
  padding: 6px 9px;
}

.participant-module--euro .others-table__body .others-table__player-placeholder, .participant-module--euro .others-table__body .others-table__order {
  width: 34px;
  max-width: 34px;
  max-height: 60px;
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__body .others-table__player-placeholder, .participant-module--euro .others-table__body .others-table__order {
    width: 67px;
    max-width: 67px;
    height: 80px;
    max-height: 80px;
  }
}

.participant-module--euro .others-table__body .others-table__player {
  padding-left: 10px;
  width: calc((100% / 2) - 84px);
  min-width: unset;
  padding-right: 10px;
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__body .others-table__player {
    padding-left: 40px;
    width: calc((100% / 2) - 167px);
  }
}

.participant-module--euro .others-table__body .others-table__position {
  width: calc((100% / 2) - 84px);
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__body .others-table__position {
    width: calc((100% / 2) - 167px);
  }
}

.participant-module--euro .others-table__body .others-table__number {
  width: 50px;
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__body .others-table__number {
    width: 100px;
  }
}

.participant-module--euro .others-table__body .others-table__row {
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}

.participant-module--euro .others-player__country {
  display: none;
}

@media (min-width: 1280px) {
  .participant-module--euro .others-table__player {
    min-width: 400px;
  }
  .participant-module--euro .others-table__position {
    min-width: 300px;
  }
}

.participant-module--euro .others-player__tshirt {
  font-size: 1rem;
  color: #2b2b2b;
}

.participant-module--euro .events-single:first-child {
  border-top: 1px solid #d9d9d9;
}

.participant-module--euro .events-single__team {
  padding: 0 11px;
}

@media (min-width: 1250px) {
  .screening__wrapper.active-yes #app .participant-header--euro .container {
    width: 1240px;
  }
}

.icon-ceremonia {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/ceremonia-otwarcia.svg);
}

.icon-ceremonia.white {
  background-image: url(images/tokyo/discipline/ceremonia-otwarcia_white.svg);
}

.icon-badminton {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/badminton.svg);
}

.icon-badminton.white {
  background-image: url(images/tokyo/discipline/badminton_white.svg);
}

.icon-baseball {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/baseball.svg);
}

.icon-baseball.white {
  background-image: url(images/tokyo/discipline/baseball_white.svg);
}

.icon-boks {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/box.svg);
}

.icon-boks.white {
  background-image: url(images/tokyo/discipline/boks_white.svg);
}

.icon-zeglarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/zeglarstwo.svg);
}

.icon-zeglarstwo.white {
  background-image: url(images/tokyo/discipline/zeglarstwo_white.svg);
}

.icon-zapasy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/zapasy.svg);
}

.icon-zapasy.white {
  background-image: url(images/tokyo/discipline/zapasy_white.svg);
}

.icon-wioslarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/wioslarstwo.svg);
}

.icon-wioslarstwo.white {
  background-image: url(images/tokyo/discipline/wioslarstwo_white.svg);
}

.icon-ujezdzanie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/ujezdzanie.svg);
}

.icon-ujezdzanie.white {
  background-image: url(images/tokyo/discipline/ujezdzanie_white.svg);
}

.icon-wspinaczka-sportowa,
.icon-wspinaczka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/wspinaczka-sportowa.svg);
}

.icon-wspinaczka-sportowa.white,
.icon-wspinaczka.white {
  background-image: url(images/tokyo/discipline/wspinaczka-sportowa_white.svg);
}

.icon-kon-wierzchowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kon-wierzchowy.svg);
}

.icon-kon-wierzchowy.white {
  background-image: url(images/tokyo/discipline/kon-wierzchowy_white.svg);
}

.icon-surfing {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/surfing.svg);
}

.icon-surfing.white {
  background-image: url(images/tokyo/discipline/surfing_white.svg);
}

.icon-szermierka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/szermierka.svg);
}

.icon-szermierka.white {
  background-image: url(images/tokyo/discipline/szermierka_white.svg);
}

.icon-teakwondo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/taekwondo.svg);
}

.icon-teakwondo.white {
  background-image: url(images/tokyo/discipline/taekwondo_white.svg);
}

.icon-triathlon {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/triathlon.svg);
}

.icon-triathlon.white {
  background-image: url(images/tokyo/discipline/triathlon_white.svg);
}

.icon-tenis-stolowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/tenis-stolowy.svg);
}

.icon-tenis-stolowy.white {
  background-image: url(images/tokyo/discipline/tenis-stolowy_white.svg);
}

.icon-tenis-ziemny {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/tenis-ziemny.svg);
}

.icon-tenis-ziemny.white {
  background-image: url(images/tokyo/discipline/tenis-ziemny_white.svg);
}

.icon-strzelectwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/strzelectwo.svg);
}

.icon-strzelectwo.white {
  background-image: url(images/tokyo/discipline/strzelectwo_white.svg);
}

.icon-sprint-kajakowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/sprint-kajakowy.svg);
}

.icon-sprint-kajakowy.white {
  background-image: url(images/tokyo/discipline/sprint-kajakowy_white.svg);
}

.icon-softball {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/softball.svg);
}

.icon-softball.white {
  background-image: url(images/tokyo/discipline/softball_white.svg);
}

.icon-skoki-do-wody {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/skoki-do-wody.svg);
}

.icon-skoki-do-wody.white {
  background-image: url(images/tokyo/discipline/skoki-do-wody_white.svg);
}

.icon-skoki-trampolina {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/skoki-trampolina.svg);
}

.icon-skoki-trampolina.white {
  background-image: url(images/tokyo/discipline/skoki-trampolina_white.svg);
}

.icon-slalom-kajakowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/slalom-kajakowy.svg);
}

.icon-slalom-kajakowy.white {
  background-image: url(images/tokyo/discipline/slalom-kajakowy_white.svg);
}

.icon-skatebording {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/skateboarding.svg);
}

.icon-skatebording.white {
  background-image: url(images/tokyo/discipline/skateboarding_white.svg);
}

.icon-siatkowka-plazowa {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/siatkowka-plazowa.svg);
}

.icon-siatkowka-plazowa.white {
  background-image: url(images/tokyo/discipline/siatkowka-plazowa_white.svg);
}

.icon-siatkowka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/siatkowka.svg);
}

.icon-siatkowka.white {
  background-image: url(images/tokyo/discipline/siatkowka_white.svg);
}

.icon-rugby {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/rugby.svg);
}

.icon-rugby.white {
  background-image: url(images/tokyo/discipline/rugby_white.svg);
}

.icon-podnoszenie-ciezarow {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/podnoszenie-ciezarow.svg);
}

.icon-podnoszenie-ciezarow.white {
  background-image: url(images/tokyo/discipline/podnoszenie-ciezarow_white.svg);
}

.icon-plywanie-synchroniczne,
.icon-plywanie-artystyczne {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/plywanie-synchroniczne.svg);
}

.icon-plywanie-synchroniczne.white,
.icon-plywanie-artystyczne.white {
  background-image: url(images/tokyo/discipline/plywanie-synchroniczne_white.svg);
}

.icon-plywanie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/plywanie.svg);
}

.icon-plywanie.white {
  background-image: url(images/tokyo/discipline/plywanie_white.svg);
}

.icon-pilka-wodna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-wodna.svg);
}

.icon-pilka-wodna.white {
  background-image: url(images/tokyo/discipline/pilka-wodna_white.svg);
}

.icon-pilka-reczna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-reczna.svg);
}

.icon-pilka-reczna.white {
  background-image: url(images/tokyo/discipline/pilka-reczna_white.svg);
}

.icon-plywanie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/plywanie.svg);
}

.icon-plywanie.white {
  background-image: url(images/tokyo/discipline/plywanie_white.svg);
}

.icon-pilka-wodna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-wodna.svg);
}

.icon-pilka-wodna.white {
  background-image: url(images/tokyo/discipline/pilka-wodna_white.svg);
}

.icon-kolarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo.svg);
}

.icon-kolarstwo.white {
  background-image: url(images/tokyo/discipline/kolarstwo_white.svg);
}

.icon-pilka-reczna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-reczna.svg);
}

.icon-pilka-reczna.white {
  background-image: url(images/tokyo/discipline/pilka-reczna_white.svg);
}

.icon-pilka-nozna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-nozna.svg);
}

.icon-pilka-nozna.white {
  background-image: url(images/tokyo/discipline/pilka-nozna_white.svg);
}

.icon-piecioboj-nowoczesny {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/piecioboj-nowoczesny.svg);
}

.icon-piecioboj-nowoczesny.white {
  background-image: url(images/tokyo/discipline/piecioboj-nowoczesny_white.svg);
}

.icon-maraton-plywacki {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/maraton-plywacki.svg);
}

.icon-maraton-plywacki.white {
  background-image: url(images/tokyo/discipline/maraton-plywacki_white.svg);
}

.icon-lucznictwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/lucznictwo.svg);
}

.icon-lucznictwo.white {
  background-image: url(images/tokyo/discipline/lucznictwo_white.svg);
}

.icon-lekkoatletka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/lekkoatletka.svg);
}

.icon-lekkoatletka.white {
  background-image: url(images/tokyo/discipline/lekkoatletka_white.svg);
}

.icon-koszykowka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/koszykowka.svg);
}

.icon-koszykowka.white {
  background-image: url(images/tokyo/discipline/koszykowka_white.svg);
}

.icon-koszykowka-3-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/koszykowka-3-3.svg);
}

.icon-koszykowka-3-3.white {
  background-image: url(images/tokyo/discipline/koszykowka-3-3_white.svg);
}

.icon-kolarstwo-gorskie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-gorskie.svg);
}

.icon-kolarstwo-gorskie.white {
  background-image: url(images/tokyo/discipline/kolarstwo-gorskie_white.svg);
}

.icon-kolarstwo-bmx-freestyle {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-freestyle.svg);
}

.icon-kolarstwo-bmx-freestyle.white {
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-freestyle_white.svg);
}

.icon-bmx,
.icon-kolarstwo-bmx-racing {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-racing.svg);
}

.icon-bmx.white,
.icon-kolarstwo-bmx-racing.white {
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-racing_white.svg);
}

.icon-lekkoatletyka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/lekkoatletyka.svg);
}

.icon-lekkoatletyka.white {
  background-image: url(images/tokyo/discipline/lekkoatletyka_white.svg);
}

.icon-gimnastyka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/gimnastyka.svg);
}

.icon-gimnastyka.white {
  background-image: url(images/tokyo/discipline/gimnastyka_white.svg);
}

.icon-gimnastyka-artystyczna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/gimnastyka-artystyczna.svg);
}

.icon-gimnastyka-artystyczna.white {
  background-image: url(images/tokyo/discipline/gimnastyka-artystyczna_white.svg);
}

.icon-golf {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/golf.svg);
}

.icon-golf.white {
  background-image: url(images/tokyo/discipline/golf_white.svg);
}

.icon-hokej-na-trawie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/hokej-na-trawie.svg);
}

.icon-hokej-na-trawie.white {
  background-image: url(images/tokyo/discipline/hokej-na-trawie_white.svg);
}

.icon-jezdziectwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/jezdziectwo.svg);
}

.icon-jezdziectwo.white {
  background-image: url(images/tokyo/discipline/jezdziectwo_white.svg);
}

.icon-judo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/judo.svg);
}

.icon-judo.white {
  background-image: url(images/tokyo/discipline/judo_white.svg);
}

.icon-kolarstwo-torowe {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-na-torze.svg);
}

.icon-kolarstwo-torowe.white {
  background-image: url(images/tokyo/discipline/kolarstwo-na-torze_white.svg);
}

.icon-karate-kata,
.icon-karate {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/karate-kata.svg);
}

.icon-karate-kata.white,
.icon-karate.white {
  background-image: url(images/tokyo/discipline/karate-kata_white.svg);
}

.icon-karate-kumite {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/karate-kumite.svg);
}

.icon-karate-kumite.white {
  background-image: url(images/tokyo/discipline/karate-kumite_white.svg);
}

.icon-default {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/default_icon.png);
}

.timetable__table {
  width: 100%;
}

.timetable__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timetable__container {
  overflow-x: auto;
  width: 100%;
  overflow-x: auto;
}

.timetable__container::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

.timetable__container::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.timetable__container::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.timetable__container::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.timetable__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.38;
}

.timetable__name i {
  width: 57px;
  min-width: 57px;
  height: 57px;
  margin-left: 16px;
  margin-right: 8px;
  display: none;
}

@media (min-width: 768px) {
  .timetable__name i {
    display: inline-block;
  }
}

.timetable__head .timetable__name {
  width: 150px;
  min-width: 150px;
  border: 1px solid #fff;
  background-color: #c8c8d3;
  padding: 5px;
}

.timetable__head .timetable__name i {
  display: none;
}

@media (min-width: 768px) {
  .timetable__head .timetable__name {
    width: 234px;
    min-width: 234px;
  }
}

.timetable__head .timetable__month {
  overflow: hidden;
}

.timetable__head .timetable__month th {
  background-color: transparent;
  border-color: transparent;
  min-height: 50px;
  max-height: 50px;
}

.timetable__head .timetable__month span {
  opacity: 0;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (min-width: 768px) {
  .timetable__head .timetable__month span {
    font-size: 1.3125rem;
  }
}

.timetable__head .timetable__month span.firstDayMonth {
  opacity: 1;
  text-transform: uppercase;
}

.timetable__head th {
  width: 100%;
  min-width: 59px;
  max-width: 59px;
  text-align: center;
  background-color: #c8c8d3;
}

.timetable__head th span {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.14;
  margin-top: 15px;
  display: block;
}

.timetable__head th:first-child {
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 2.08;
}

@media (min-width: 768px) {
  .timetable__head th:first-child {
    font-size: 1.5rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 2.08;
  }
}

.timetable__content .timetable__name {
  width: 150px;
  min-width: 150px;
  border: 1px solid #fff;
  background-color: #c8c8d3;
  padding: 5px;
}

@media (min-width: 768px) {
  .timetable__content .timetable__name {
    width: 234px;
    min-width: 234px;
    padding-right: 10px;
  }
}

.timetable__content .timetable__name a {
  color: inherit;
}

.timetable__content .timetable__name a:hover {
  color: #611422;
}

.timetable__content td {
  background-color: #e6e6ea;
  width: 100%;
  min-width: 59px;
  max-width: 59px;
}

.timetable__content td.active {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.timetable__content td.active:hover {
  background-color: #c8c8d3;
  cursor: pointer;
}

.timetable th,
.timetable td {
  position: relative;
  min-height: 78px;
  border: 2px solid #fff;
}

.timetable__yellow {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(images/tokyo/timetable/yellow.svg);
}

.timetable__gray {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(images/tokyo/timetable/gray.svg);
}

.timetable__flag {
  width: 22px;
  height: 13px;
  position: absolute;
  top: 2px;
  right: 2px;
  background-image: url(images/tokyo/timetable/flag.png);
}

.timetable__popup {
  position: fixed;
  width: 300px;
  background-color: #fff;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .timetable__popup {
    width: 440px;
  }
}

.timetable__popup.show {
  display: block;
}

.timetable__popup-content {
  margin-top: 10px;
  max-height: 240px;
  width: 100%;
  overflow-x: auto;
}

.timetable__popup-content::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.timetable__popup-content::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.timetable__popup-content::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.timetable__popup-content::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.timetable__popup-header {
  padding: 15px;
  background-color: #b11e33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.timetable__popup-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timetable__popup-text {
  margin-left: 10px;
  font-style: normal;
}

.timetable__popup-text h4 {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.22;
}

.timetable__popup-text span {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 300;
  line-height: 1.22;
  margin: 3px 0;
  display: block;
}

.timetable__popup-text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f05a22;
  padding: 4px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timetable__popup-text a i {
  display: inline-block;
  background-image: url(images/tokyo/timetable/small-arrow-white.svg);
  width: 10px;
  height: 4px;
  margin-left: 5px;
}

.timetable__popup-text a:hover {
  background-color: #fff;
  color: #b11e33;
}

.timetable__popup-text a:hover i {
  background-image: url(images/tokyo/timetable/small-arrow-red.svg);
}

.timetable__popup-icon span {
  display: block;
  width: 57px;
  min-width: 57px;
  height: 57px;
}

.timetable__popup-close {
  width: 23px;
  height: 23px;
  display: block;
  background-image: url(images/tokyo/timetable/close-white.svg);
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.timetable__popup-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.timetable__popup-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
}

.timetable__popup-left {
  padding-right: 20px;
  font-size: 1rem;
  color: #838383;
  font-weight: 700;
}

.timetable__popup-right {
  padding-right: 20px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
}

.timetable__popup-right h6 {
  font-weight: bold;
}

.timetable__popup-right span {
  font-weight: normal;
  display: inline-block;
  margin: 5px 0;
}

.timetable__popup-right a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 6px 14px;
  color: #2b2b2b;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 5px;
  border: 1px solid #d7d7d7;
  font-weight: bold;
  letter-spacing: 1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 150px;
}

.timetable__popup-right a i {
  display: inline-block;
  background-image: url(images/tokyo/timetable/small-arrow-red.svg);
  width: 10px;
  height: 4px;
  margin-left: 10px;
}

.timetable__popup-right a:hover {
  color: #b11e33;
}

.timetable__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .timetable__legend {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.timetable__legend .timetable__gray,
.timetable__legend .timetable__yellow,
.timetable__legend .timetable__flag {
  position: relative;
  left: auto;
  top: auto;
  -webkit-transform: none;
          transform: none;
  margin-left: 10px;
}

.timetable__legend-info {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 15px;
  margin-top: 3px;
}

.timetable__legend-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}

.timetable__wrapper {
  position: relative;
}

.timetable__mobile {
  position: absolute;
  left: -1px;
  top: 50px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .timetable__mobile {
    display: none;
  }
}

.directory-submenu.tokyo .directory-submenu__wrapper {
  border-bottom: 1px solid #a22d37;
}

.directory-submenu.tokyo .directory-submenu__item--active {
  border-bottom-color: #a22d37;
}

.discipline-results-filters {
  margin-bottom: 40px;
}

.discipline-results-filters__label {
  font-size: 1rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
  .discipline-results-filters__label {
    padding-bottom: 0;
  }
}

.discipline-results-filters .controls-options {
  display: block;
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options__box {
    margin-right: 35px;
  }
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options .multiselect {
    margin-left: 15px;
  }
}

.discipline-results-filters .controls-options .multiselect--active .multiselect__tags {
  background: #a22d37;
}

.discipline-results-filters .controls-options .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options .multiselect__tags {
    width: 210px;
  }
}

.discipline-results-main.tokyo .results-table__beam {
  background-color: #d1b087;
}

.tokyo2020 .icon-camera {
  background-image: url(images/icons/camera-tokyo.svg);
}

.news-latest__box.tokyo .box-small__category::before,
.news-latest .boxes-3-container .box-small.tokyo .box-small__category::before,
.news-seealso__wrapper.tokyo .box-small__category::before {
  background-color: #95754d;
}

.tokyo .button-play {
  background-image: url(images/icons/play-tokyo.svg);
}

.home-special.tokio .box-small__image,
.grid-three.tokio .box-small__image {
  position: relative;
}

.home-special.tokio .box-small__image::after,
.grid-three.tokio .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-special.tokio .box-small__image::before,
.grid-three.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-special.tokio .box-small__image::before,
  .grid-three.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-special.tokio .box-small__image::after,
.grid-three.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-special.tokio .box-small .label__ver-1,
.home-special.tokio .box-small .label__ver-2,
.home-special.tokio .box-small .label__ver-3,
.home-special.tokio .box-small .label__ver-4,
.grid-three.tokio .box-small .label__ver-1,
.grid-three.tokio .box-small .label__ver-2,
.grid-three.tokio .box-small .label__ver-3,
.grid-three.tokio .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__box-image {
  position: relative;
}

.primary.tokio .primary__box-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__box-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

.primary.tokio .primary__box-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.primary.tokio .primary__box .label__ver-1,
.primary.tokio .primary__box .label__ver-2,
.primary.tokio .primary__box .label__ver-3,
.primary.tokio .primary__box .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__box-category::after {
  background-color: #b49e81;
}

.primary.tokio .primary__twin-photo {
  position: relative;
}

.primary.tokio .primary__twin-photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__twin-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 5px;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-photo::before {
    width: 78px;
    height: 65px;
  }
}

.primary.tokio .primary__twin-photo::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

@media (min-width: 1280px) {
  .primary.tokio .primary__twin-photo::before {
    right: 0;
  }
}

.primary.tokio .primary__twin .label__ver-1,
.primary.tokio .primary__twin .label__ver-2,
.primary.tokio .primary__twin .label__ver-3,
.primary.tokio .primary__twin .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__twin-category::after {
  background-color: #b49e81;
}

.primary.tokio .primary__large-title::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.primary.tokio .primary__large-image {
  position: relative;
}

.primary.tokio .primary__large-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__large-image figure {
  position: relative;
}

.primary.tokio .primary__large-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.tokio .primary__large-image figure::before {
    bottom: -1px;
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 157px;
    height: 131px;
  }
}

.primary.tokio .primary__large-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.tokio .primary__large-image::before {
    bottom: 0;
  }
}

.primary.tokio .primary__large .label__ver-1,
.primary.tokio .primary__large .label__ver-2,
.primary.tokio .primary__large .label__ver-3,
.primary.tokio .primary__large .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__large-category::after {
  background-color: #b49e81;
}

.primary.tokio .primary__wide-title::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.primary.tokio .primary__wide .label__ver-1,
.primary.tokio .primary__wide .label__ver-2,
.primary.tokio .primary__wide .label__ver-3,
.primary.tokio .primary__wide .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__double .label__ver-1,
.primary.tokio .primary__double .label__ver-2,
.primary.tokio .primary__double .label__ver-3,
.primary.tokio .primary__double .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__extended-combined {
  background-image: none;
}

.grid-box.tokio .grid-box__image {
  position: relative;
}

.grid-box.tokio .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.grid-box.tokio .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .grid-box.tokio .grid-box__image::before {
    width: 78px;
    height: 65px;
  }
}

.grid-box.tokio .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.grid-box.tokio .grid-box__category::after {
  background-color: #b49e81;
}

.grid-box.tokio .label__ver-1,
.grid-box.tokio .label__ver-2,
.grid-box.tokio .label__ver-3,
.grid-box.tokio .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.box-big.tokio .box-big__image {
  position: relative;
}

.box-big.tokio .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-big.tokio .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom.png);
}

@media (min-width: 768px) {
  .box-big.tokio .box-big__image::before {
    width: 157px;
    height: 131px;
  }
}

.box-big.tokio .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.box-big.tokio .box-big__paramtitle, .box-big.tokio .box-big__paramtitle--content {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
  color: #fff;
}

.box-big.tokio .label__ver-1,
.box-big.tokio .label__ver-2,
.box-big.tokio .label__ver-3,
.box-big.tokio .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.box-medium.tokio .box-medium__image {
  position: relative;
}

.box-medium.tokio .box-medium__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-medium.tokio .box-medium__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

.box-medium.tokio .box-medium__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.box-medium.tokio .label__ver-1,
.box-medium.tokio .label__ver-2,
.box-medium.tokio .label__ver-3,
.box-medium.tokio .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img {
  position: relative;
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::before {
    width: 78px;
    height: 65px;
  }
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.boxes-list-discipline__wrapper.tokio .news-latest__category::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #b49e81;
}

.section-grid.tokio .grid-box__image {
  position: relative;
}

.section-grid.tokio .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.section-grid.tokio .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .section-grid.tokio .grid-box__image::before {
    width: 78px;
    height: 65px;
  }
}

.section-grid.tokio .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.section-grid.tokio .grid-box__category::after {
  background-color: #b49e81;
}

.section-grid.tokio .grid-box .label__ver-1,
.section-grid.tokio .grid-box .label__ver-2,
.section-grid.tokio .grid-box .label__ver-3,
.section-grid.tokio .grid-box .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.section-grid.tokio h3::before {
  background-color: #95754d;
}

.pagination.tokio .pagination__number:hover, .pagination.tokio .pagination__number.active {
  border-bottom: 3px solid #b49e81;
}

.directory-submenu.tokio .directory-submenu__wrapper {
  border-bottom: 1px solid #b49e81;
}

.directory-submenu.tokio .directory-submenu__item--active {
  border-bottom-color: #b49e81;
}

.stats-section--playerbg.tokio {
  position: relative;
}

.stats-section--playerbg.tokio::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .stats-section--playerbg.tokio::before {
    width: 91px;
    height: 76px;
  }
}

.nts--main .nts__slide.tokio {
  border: 0;
}

.nts--main .nts__slide.tokio:hover {
  border: 0;
}

.nts--main .nts__slide.tokio .nts__slide-desc,
.nts--main .nts__slide.tokio:hover .nts__slide-desc {
  background: url(images/euro/ns_slide_euro_bg.jpg);
  background-position: right;
  background-size: cover;
}

.nts--main .nts__slide.tokio .nts__slide-title,
.nts--main .nts__slide.tokio .progress-time__time {
  color: #fff;
}

.nts--main .nts__slide.tokio .progress-time__progress {
  background-color: #fff;
}

.grid-three.tokio .grid-three__header {
  color: #fff;
  background-color: #a22d37;
}

.box-small.tokio .box-small__image {
  position: relative;
}

.box-small.tokio .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-small.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .box-small.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.box-small.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.box-small.tokio .box-small__image .button-play {
  background-image: url(images/tokyo/play-tokyo.svg);
}

.box-small.tokio .box-small__category::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #b49e81;
}

.box-small.tokio .box-small .label__ver-1,
.box-small.tokio .box-small .label__ver-2,
.box-small.tokio .box-small .label__ver-3,
.box-small.tokio .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.news-latest__content.tokio .news-latest__image {
  position: relative;
}

.news-latest__content.tokio .news-latest__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-latest__content.tokio .news-latest__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .news-latest__content.tokio .news-latest__image::before {
    width: 78px;
    height: 65px;
  }
}

.news-latest__content.tokio .news-latest__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.news-latest__content.tokio .news-latest__category::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #b49e81;
}

@media (min-width: 768px) {
  .news-latest__content.tokio .news-latest__category::after {
    top: 6px;
  }
}

.liveblog.tokio a {
  color: #b49e81;
}

.liveblog.tokio .liveblog__label::before {
  background-color: transparent;
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.liveblog.tokio .liveblog__time.first {
  color: #2b2b2b;
}

.liveblog.tokio .liveblog__time.first .liveblog__time-point {
  border: 2px solid #2b2b2b;
}

.liveblog.tokio .liveblog__time.first.event {
  color: #b49e81;
}

.liveblog.tokio .liveblog__time.first.event .liveblog__time-point {
  border: 2px solid #b49e81;
}

.directory-standard-list .box-big.tokio .box-big__image {
  position: relative;
}

.directory-standard-list .box-big.tokio .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.directory-standard-list .box-big.tokio .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom.png);
}

@media (min-width: 768px) {
  .directory-standard-list .box-big.tokio .box-big__image::before {
    width: 157px;
    height: 131px;
  }
}

.directory-standard-list .box-big.tokio .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.directory-standard-list .box-big.tokio .box-big .label__ver-1,
.directory-standard-list .box-big.tokio .box-big .label__ver-2,
.directory-standard-list .box-big.tokio .box-big .label__ver-3,
.directory-standard-list .box-big.tokio .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.boxes-one-three-box.tokio .button-play,
.boxes-section.tokio .button-play,
.home-special.tokio .button-play,
.home-discipline.tokio .button-play,
.home-video.tokio .button-play,
.home-photo.tokio .button-play,
.home-boxes.tokio .button-play,
.home-multi.tokio .button-play,
.home-review.tokio .button-play,
.primary.tokio .button-play,
.grid-box.tokio .button-play,
.box-big.tokio .button-play,
.box-medium.tokio .button-play,
.video .box-small.tokio .button-play,
.boxes-list-discipline__wrapper.tokio .button-play,
.news-latest__content.tokio .button-play,
.section-grid.tokio .button-play,
.nts__slide.tokio .button-play,
.grid-three.tokio .button-play,
.liveblog-video.tokio .button-play {
  background-image: url(images/tokyo/play-tokyo.svg);
}

.boxes-one-three-box.tokio .button-more__elem,
.boxes-section.tokio .button-more__elem,
.home-special.tokio .button-more__elem,
.home-discipline.tokio .button-more__elem,
.home-video.tokio .button-more__elem,
.home-photo.tokio .button-more__elem,
.home-boxes.tokio .button-more__elem,
.home-multi.tokio .button-more__elem,
.home-review.tokio .button-more__elem,
.primary.tokio .button-more__elem,
.grid-box.tokio .button-more__elem,
.box-big.tokio .button-more__elem,
.box-medium.tokio .button-more__elem,
.video .box-small.tokio .button-more__elem,
.boxes-list-discipline__wrapper.tokio .button-more__elem,
.news-latest__content.tokio .button-more__elem,
.section-grid.tokio .button-more__elem,
.nts__slide.tokio .button-more__elem,
.grid-three.tokio .button-more__elem,
.liveblog-video.tokio .button-more__elem {
  background: #d1b087;
  border-color: #d1b087;
  color: #fff;
}

.boxes-one-three-box.tokio .button-more__elem::before,
.boxes-section.tokio .button-more__elem::before,
.home-special.tokio .button-more__elem::before,
.home-discipline.tokio .button-more__elem::before,
.home-video.tokio .button-more__elem::before,
.home-photo.tokio .button-more__elem::before,
.home-boxes.tokio .button-more__elem::before,
.home-multi.tokio .button-more__elem::before,
.home-review.tokio .button-more__elem::before,
.primary.tokio .button-more__elem::before,
.grid-box.tokio .button-more__elem::before,
.box-big.tokio .button-more__elem::before,
.box-medium.tokio .button-more__elem::before,
.video .box-small.tokio .button-more__elem::before,
.boxes-list-discipline__wrapper.tokio .button-more__elem::before,
.news-latest__content.tokio .button-more__elem::before,
.section-grid.tokio .button-more__elem::before,
.nts__slide.tokio .button-more__elem::before,
.grid-three.tokio .button-more__elem::before,
.liveblog-video.tokio .button-more__elem::before {
  background: #d1b087;
}

.boxes-one-three-box.tokio .button-more__elem:hover,
.boxes-section.tokio .button-more__elem:hover,
.home-special.tokio .button-more__elem:hover,
.home-discipline.tokio .button-more__elem:hover,
.home-video.tokio .button-more__elem:hover,
.home-photo.tokio .button-more__elem:hover,
.home-boxes.tokio .button-more__elem:hover,
.home-multi.tokio .button-more__elem:hover,
.home-review.tokio .button-more__elem:hover,
.primary.tokio .button-more__elem:hover,
.grid-box.tokio .button-more__elem:hover,
.box-big.tokio .button-more__elem:hover,
.box-medium.tokio .button-more__elem:hover,
.video .box-small.tokio .button-more__elem:hover,
.boxes-list-discipline__wrapper.tokio .button-more__elem:hover,
.news-latest__content.tokio .button-more__elem:hover,
.section-grid.tokio .button-more__elem:hover,
.nts__slide.tokio .button-more__elem:hover,
.grid-three.tokio .button-more__elem:hover,
.liveblog-video.tokio .button-more__elem:hover {
  background-color: #fff;
  border: 1px solid #d1b087;
  color: #d1b087;
}

.boxes-one-three-box.tokio .gallery-mark,
.boxes-section.tokio .gallery-mark,
.home-special.tokio .gallery-mark,
.home-discipline.tokio .gallery-mark,
.home-video.tokio .gallery-mark,
.home-photo.tokio .gallery-mark,
.home-boxes.tokio .gallery-mark,
.home-multi.tokio .gallery-mark,
.home-review.tokio .gallery-mark,
.primary.tokio .gallery-mark,
.grid-box.tokio .gallery-mark,
.box-big.tokio .gallery-mark,
.box-medium.tokio .gallery-mark,
.video .box-small.tokio .gallery-mark,
.boxes-list-discipline__wrapper.tokio .gallery-mark,
.news-latest__content.tokio .gallery-mark,
.section-grid.tokio .gallery-mark,
.nts__slide.tokio .gallery-mark,
.grid-three.tokio .gallery-mark,
.liveblog-video.tokio .gallery-mark {
  background-image: url(images/tokyo/gall-icon.svg);
}

.medal-standing__table {
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
}

.medal-standing__table::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.medal-standing__table::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.medal-standing__table::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.medal-standing__table::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.medal-standing__header {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-width: 436px;
}

.medal-standing__tr {
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.medal-standing__tr:first-child {
  min-width: 30px;
}

@media (min-width: 1024px) {
  .medal-standing__tr:first-child {
    width: 5%;
    max-width: 50px;
  }
}

.medal-standing__tr:nth-child(2) {
  display: none;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(2) {
    display: block;
    width: 5%;
    min-width: 50px;
  }
}

.medal-standing__tr:nth-child(3) {
  min-width: 50px;
  width: 15%;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(3) {
    margin-right: 0;
    width: 30%;
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__tr:nth-child(3) {
    margin-right: 0;
    width: 56%;
  }
}

.medal-standing__tr:nth-child(4), .medal-standing__tr:nth-child(5), .medal-standing__tr:nth-child(6) {
  min-width: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(4), .medal-standing__tr:nth-child(5), .medal-standing__tr:nth-child(6) {
    min-width: 70px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__tr:nth-child(4), .medal-standing__tr:nth-child(5), .medal-standing__tr:nth-child(6) {
    width: 8%;
  }
}

.medal-standing__tr:nth-child(7) {
  min-width: 50px;
  margin-left: 5%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(7) {
    min-width: 80px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__tr:nth-child(7) {
    width: 5%;
  }
}

.medal-standing__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #efefef;
  border-bottom: 1px solid #d9d9d9;
  min-width: 436px;
}

.medal-standing__row:nth-child(even) {
  background-color: #fff;
}

.medal-standing__td {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

@media (min-width: 768px) {
  .medal-standing__td {
    height: 67px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td {
    height: 77px;
  }
}

.medal-standing__td:first-child {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 30px;
}

@media (min-width: 1024px) {
  .medal-standing__td:first-child {
    width: 5%;
    max-width: 50px;
  }
}

.medal-standing__td:nth-child(2) {
  min-width: 50px;
  width: 15%;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(2) {
    min-width: 50px;
    width: 30%;
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td:nth-child(2) {
    width: 5%;
    margin-right: 0;
  }
}

.medal-standing__td:nth-child(3) {
  display: none;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 56%;
  }
}

.medal-standing__td:nth-child(4), .medal-standing__td:nth-child(5), .medal-standing__td:nth-child(6) {
  min-width: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(4), .medal-standing__td:nth-child(5), .medal-standing__td:nth-child(6) {
    min-width: 70px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td:nth-child(4), .medal-standing__td:nth-child(5), .medal-standing__td:nth-child(6) {
    width: 8%;
  }
}

.medal-standing__td:nth-child(7) {
  min-width: 80px;
  margin-left: 5%;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.medal-standing__td:nth-child(7)::after {
  content: '';
  height: 3px;
  width: 80%;
  position: absolute;
  bottom: 0;
  background-color: #d9d9d9;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(7) {
    width: 5%;
  }
}

.medal-standing__td img {
  width: 40px;
  height: auto;
  border: 1px solid #dddddd;
}

.medal-standing__icon {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.medal-standing__icon--gold {
  background-image: url(images/icons/medal-gold.svg);
}

.medal-standing__icon--silver {
  background-image: url(images/icons/medal-silver.svg);
}

.medal-standing__icon--bronze {
  background-image: url(images/icons/medal-bronze.svg);
}

.disciplines .flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.disciplines__header {
  padding: 25px;
  font-size: 2.625rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.disciplines__header a {
  color: #f05a22;
}

.disciplines.tokyo .disciplines__header {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .disciplines.tokyo .disciplines__header {
    margin-bottom: 26px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 1280px) {
  .disciplines.tokyo .disciplines__header {
    font-size: 3.375rem;
    line-height: 1.15;
  }
}

.disciplines.tokyo .disciplines__header::before {
  display: none;
}

.disciplines-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 11px;
  cursor: default;
  color: inherit;
}

@media (min-width: 768px) {
  .disciplines-item {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .disciplines-item {
    width: 25%;
  }
}

.disciplines-item[href]:not([href='']) {
  color: inherit;
  cursor: pointer;
}

.disciplines-item__inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px;
  height: 110px;
  -webkit-box-shadow: 0 0 0 0.1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 0.1px rgba(0, 0, 0, 0.5);
}

.disciplines-item__image {
  margin-right: 30px;
  width: 90px;
}

.disciplines-item__image .img-responsive {
  height: 100%;
  width: 90px;
  margin: auto;
  border-radius: 50px;
}

.tokio .disciplines-item__image .img-responsive {
  height: auto;
}

.disciplines-item__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.3;
}

.primary.tokio {
  margin-top: 30px;
}

.primary.tokio .primary__background {
  background-color: #0f97ab;
  padding-bottom: 32px;
  padding-top: 13px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#691c27), color-stop(99%, #b11e33));
  background-image: linear-gradient(to bottom, #691c27 0%, #b11e33 99%);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.primary.tokio .primary__background .primary__broad {
  background: transparent;
}

.primary.tokio .second {
  width: auto;
  margin: 0;
  padding: 0;
}

.primary.tokio .container-fluid {
  padding-left: 3px;
  padding-right: 3px;
}

@media (min-width: 1280px) {
  .primary.tokio .container-fluid {
    padding-left: 13px;
    padding-right: 13px;
  }
}

.primary.tokio .primary__wide-image {
  position: relative;
}

.primary.tokio .primary__wide-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__wide-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.tokio .primary__wide-image::before {
    bottom: -1px;
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.tokio .primary__wide-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

.primary.tokio .primary__double-image {
  position: relative;
}

.primary.tokio .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__double-image figure {
  position: relative;
}

.primary.tokio .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.tokio .primary__double-image figure::before {
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.tokio .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.tokio .primary__double-image::before {
    bottom: -1px;
  }
}

.primary.tokio .invert .primary__double-image {
  position: relative;
}

.primary.tokio .invert .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .invert .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-left-bottom.png);
}

@media (min-width: 768px) {
  .primary.tokio .invert .primary__double-image figure::before {
    background-image: url(images/tokyo/badge-left-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.tokio .invert .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.tokio .invert .primary__double-image::before {
    bottom: -1px;
  }
}

.primary.tokio .home-outcome {
  background-color: #036473;
}

.primary.tokio .home-outcome__result {
  background-color: #f7a600;
  color: #fff;
}

.primary.tokio .primary__double-title::before {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__extended-logo {
  width: 139px;
  min-width: 139px;
  height: 19px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/tokyo-logo.svg);
  margin-right: 0;
}

@media (min-width: 768px) {
  .primary.tokio .primary__extended-logo {
    width: 180px;
    min-width: 180px;
    height: 25px;
    margin-right: 20px;
  }
}

.primary.tokio .primary__extended-combined {
  width: auto;
  height: 40px;
}

@media (min-width: 768px) {
  .primary.tokio .primary__extended-combined {
    width: auto;
    height: 61px;
  }
}

@media (min-width: 1024px) {
  .primary.tokio .primary__extended-combined {
    width: auto;
    height: 68px;
  }
}

.primary.tokio .primary__extended-nav ul {
  width: 100%;
  overflow-x: auto;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #b11e33;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 10px;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar-thumb:hover {
  background: #d9d9d9;
}

.primary.tokio .primary__extended-nav ul:hover {
  cursor: pointer;
}

.primary.tokio .primary__button {
  background-color: #d1b087;
  text-transform: uppercase;
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary.tokio .primary__button-content {
  text-align: center;
}

.primary.tokio .primary__button:hover {
  background-color: #6b1c27;
  border: 1px solid #6b1c27;
  color: #fff;
}

.primary.tokio .primary__twin-label {
  top: 10px;
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-label {
    top: 15px;
  }
}

.primary.tokio .primary__twin-content {
  padding: 30px 15px 15px 15px;
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-content {
    padding: 34px 15px 15px 15px;
  }
}

.primary.tokio .primary__twin-title {
  -webkit-line-clamp: 2;
  max-height: calc(1.1rem * 2);
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-title {
    -webkit-line-clamp: 3;
    max-height: calc(1.4rem * 3);
  }
}

.home-quiz.tokio {
  margin-bottom: 30px;
}

.home-quiz.tokio .home-quiz__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-quiz.tokio .home-quiz__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 329px;
  height: 100%;
}

@media (max-width: 1023px) {
  .home-quiz.tokio .home-quiz__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .home-quiz.tokio .home-quiz__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 20px;
  }
}

.home-quiz.tokio .home-quiz__content {
  background-color: #c8c8d3;
  background-image: url(images/euro/quiz-module-background.jpg);
  background-size: cover;
  background-position: left center;
  padding: 21px 0 23px 30px;
  width: 67%;
}

@media (max-width: 1023px) {
  .home-quiz.tokio .home-quiz__content {
    padding: 12px 22px 20px;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .home-quiz.tokio .home-quiz__content {
    padding: 12px 12px 20px;
    width: 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__content {
    height: auto;
    width: 50%;
    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;
  }
}

@media (min-width: 1024px) {
  .home-quiz.tokio .home-quiz__content {
    padding-left: 117px;
  }
}

.home-quiz.tokio .home-quiz__content:hover {
  background-color: #fff;
}

.home-quiz.tokio .home-quiz__img {
  width: 33%;
}

@media (max-width: 767px) {
  .home-quiz.tokio .home-quiz__img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__img {
    width: 50%;
  }
}

.home-quiz.tokio .home-quiz__img figure {
  width: 100% !important;
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__img figure {
    overflow: hidden;
    height: 329px;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1279px) {
  .home-quiz.tokio .home-quiz__img img {
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__title {
    font-size: 2rem;
    color: #000;
    font-weight: 900;
    max-width: 558px;
  }
}

@media (min-width: 1024px) {
  .home-quiz.tokio .home-quiz__title {
    max-height: 40px;
  }
}

.home-quiz.tokio .home-quiz__title a:hover {
  color: #2b2b2b;
}

.home-quiz.tokio .home-quiz__desc {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__desc {
    overflow: hidden;
    max-height: 45px;
    padding-right: 20px;
    max-width: 421px;
  }
}

.home-quiz.tokio .home-quiz__more {
  display: inline-block;
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.11;
  text-transform: uppercase;
  padding: 10px 12px 10px 22px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__more {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    max-width: 110px;
  }
}

.home-quiz.tokio .home-quiz__more i {
  background-image: url(images/icons/arrow_white.svg);
  width: 12px;
  height: 5px;
  display: inline-block;
  margin-left: 7px;
  position: relative;
  top: -1px;
}

.home-quiz.tokio .home-quiz__more:hover {
  color: #fff;
}

.home-quiz.tokio .home-quiz__more:hover i {
  background-image: url(images/icons/arrow_white.svg);
}

.home-quiz.tokio .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-quiz.tokio .VueCarousel-navigation-prev {
    left: 15px !important;
  }
}

.home-quiz.tokio .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-quiz.tokio .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-quiz.tokio .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-quiz.tokio .VueCarousel-navigation-next {
    right: 15px !important;
  }
}

.home-quiz.tokio .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-quiz.tokio .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-special.tokio .home-special__background {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#691c27), to(#b11e33)) !important;
  background-image: linear-gradient(to bottom, #691c27 0%, #b11e33) !important;
}

.home-discipline.tokio .box-big__paramtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-discipline.tokio .box-big::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .home-discipline.tokio .box-big::before {
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.home-discipline.tokio .box-big::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-discipline.tokio .box-big .label__ver-1,
.home-discipline.tokio .box-big .label__ver-2,
.home-discipline.tokio .box-big .label__ver-3,
.home-discipline.tokio .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-discipline.tokio .box-small__image {
  position: relative;
}

.home-discipline.tokio .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-discipline.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-discipline.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-discipline.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-discipline.tokio .box-small .label__ver-1,
.home-discipline.tokio .box-small .label__ver-2,
.home-discipline.tokio .box-small .label__ver-3,
.home-discipline.tokio .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-video.tokio .home-video__frame {
  background-color: #171a1f;
}

.home-video.tokio .home-video__subtitle {
  color: #fff;
}

.home-video.tokio .home-video__content:hover {
  background-color: #171a1f;
}

@media (min-width: 1280px) {
  .home-video.tokio .home-video__lists:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 26, 31, 0)), to(#171a1f));
    background-image: linear-gradient(to bottom, rgba(23, 26, 31, 0), #171a1f);
  }
}

.home-video.tokio .home-video__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-boxes {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-boxes {
    margin-bottom: 20px;
  }
}

.home-boxes__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-boxes__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (min-width: 1280px) {
  .home-boxes__heading {
    padding-left: 0;
  }
}

.home-boxes__slider {
  position: relative;
  left: 0;
  width: 100%;
}

@media (min-width: 1280px) {
  .home-boxes__slider {
    width: calc(100% + 26px);
    left: -13px;
  }
}

.home-boxes__box {
  position: relative;
  margin: 0 3px;
}

@media (min-width: 1280px) {
  .home-boxes__box {
    margin: 0 13px;
  }
}

.home-boxes__box:hover .home-boxes__content {
  background-color: #e0e0eb;
}

.home-boxes__url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-boxes__content {
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
}

.home-boxes__title {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .home-boxes__title {
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (max-width: 767px) {
  .home-boxes__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.home-boxes__image {
  position: relative;
}

.home-boxes__image .button-play {
  left: auto;
  bottom: auto;
  width: 35px;
  height: 35px;
  position: relative;
  margin-right: 10px;
}

.home-boxes__indicators {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.home-boxes__duration {
  font-size: 0.688rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  padding: 4px 7px;
  background-color: #2a2a2a;
}

.home-boxes__category {
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-boxes__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-boxes__category:hover {
  cursor: pointer;
}

.home-boxes .VueCarousel-dot {
  padding: 0 5px 0 5px !important;
}

.home-boxes .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  width: 6px !important;
  height: 6px !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-boxes .VueCarousel-navigation {
  display: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation {
    display: block;
  }
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-pagination {
    display: none;
  }
}

.home-boxes .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-prev {
    left: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-boxes .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-next {
    right: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-boxes .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-button {
  top: 53% !important;
  color: transparent !important;
}

.home-boxes .VueCarousel-navigation--disabled {
  opacity: 0 !important;
  cursor: default !important;
}

.home-boxes .button-more {
  margin: 20px auto 0;
}

.home-boxes.tokio .home-boxes__image {
  position: relative;
}

.home-boxes.tokio .home-boxes__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .home-boxes.tokio .home-boxes__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-boxes.tokio .home-boxes__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-boxes.tokio .home-boxes__category::after {
  background-color: #b49e81;
}

.home-boxes.tokio .home-boxes__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-multi__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-multi__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-multi__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-multi__heading {
    padding-left: 0;
  }
}

.home-multi__category {
  display: none;
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-multi__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-multi__category:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .home-multi__category {
    display: block;
  }
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small {
    width: calc(33.3% - 3px);
  }
}

@media (min-width: 1280px) {
  .home-multi .boxes-three-box .box-small {
    width: calc(33.3% - 20px);
  }
}

.home-multi .boxes-three-box .box-small__content {
  position: relative;
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 180px;
  }
}

@media (min-width: 1280px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 210px;
    padding: 22px 19px;
    font-size: 1.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (min-width: 1921px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 277px;
  }
}

.home-multi .boxes-three-box .box-small .label__ver-1,
.home-multi .boxes-three-box .box-small .label__ver-2,
.home-multi .boxes-three-box .box-small .label__ver-3,
.home-multi .boxes-three-box .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small-hor {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 25%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1921px) {
  .home-multi .boxes-three-box .box-small-hor {
    height: 105px;
    margin-bottom: 23px;
  }
  .home-multi .boxes-three-box .box-small-hor .box-small-hor__image {
    height: 105px;
  }
  .home-multi .boxes-three-box .box-small-hor:last-of-type {
    margin-bottom: 0;
  }
}

.home-multi .boxes-three-box .box-small-hor:first-of-type {
  border-top: 0;
}

.home-multi .boxes-three-box .box-small-hor img {
  max-width: none;
}

@media (min-width: 1024px) {
  .home-multi .boxes-three-box .box-small-hor__content {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.5;
  }
}

.home-multi .boxes-three-box .box-small-hor__category {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-multi .boxes-three-box .box-small-hor__category:hover {
  cursor: pointer;
}

@media (min-width: 1463px) {
  .home-multi .boxes-three-box .box-small-hor__category {
    display: block;
  }
}

.home-multi.tokio .box-small__image {
  position: relative;
}

.home-multi.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-multi.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-multi.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-multi.tokio .home-multi__category::after {
  background-color: #b49e81;
}

.home-discipline .home-multi .boxes-three-box .box-small:nth-child(3) {
  display: block;
  padding-left: 14px;
}

@media (min-width: 1280px) {
  .home-discipline .home-multi .boxes-three-box .box-small:nth-child(3) {
    padding-left: 0;
  }
}

.home-review {
  position: relative;
}

@media (min-width: 1280px) {
  .home-review {
    margin-bottom: 30px;
  }
}

@media (max-width: 1023px) {
  .home-review {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .home-review {
    margin-bottom: 0px;
    padding-bottom: 20px;
  }
  .home-review .boxes-three-box .box-small {
    width: 33.3%;
  }
}

.home-review__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-review__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-review__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-review__heading {
    padding-left: 0;
  }
}

.home-review .box-small__opinion {
  position: absolute;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-review .box-small__opinion span {
  letter-spacing: 1.1px;
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
}

.home-review .box-small__opinion img {
  width: 43px;
  border-radius: 50%;
  margin-right: 16px;
}

.home-review .box-small__opinion--content {
  text-align: center;
  padding: 20px 35px 20px;
}

.home-review .boxes-3-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .home-review .boxes-3-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }
  .home-review .boxes-3-container::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .home-review .boxes-3-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .home-review .boxes-3-container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .home-review .boxes-3-container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.home-review .boxes-3-container .box-small {
  margin-right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media (max-width: 1023px) {
  .home-review .boxes-3-container .box-small {
    min-width: 334px;
    margin-right: 6px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small {
    min-width: 240px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.home-review .boxes-3-container .box-small:last-child {
  margin-right: 0;
}

.home-review .boxes-3-container .box-small .button-play.medium {
  left: 20px;
  bottom: 25px;
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small__content {
    font-size: 1rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .home-review .boxes-3-container .box-small__content {
    min-height: 180px;
  }
}

.home-review .boxes-3-container .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-review .boxes-3-container .box-small--special {
  height: 100%;
  padding: 25px 20px 20px;
  min-height: 166px;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small--special {
    padding: 15px 5px 20px;
    font-size: 1rem;
    text-align: center;
    min-height: 80px;
    line-height: 1.25;
  }
}

@media (min-width: 1280px) {
  .home-review .boxes-3-container .box-small--special {
    font-size: 2rem;
    color: #2b2b2b;
    font-weight: 700;
  }
}

.home-review__big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  .home-review__big {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.home-review__big-photo {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-review__big-photo {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-height: 444px;
    overflow: hidden;
  }
}

.home-review__big-content {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 172px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .home-review__big-content {
    padding: 26px;
  }
}

@media (min-width: 1024px) {
  .home-review__big-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 587px;
  }
}

:hover > .home-review__big-content {
  background-color: #e0e0eb;
}

.home-review__big-title {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 1280px) {
  .home-review__big-title {
    font-size: 2.625rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.19;
  }
}

@media (max-width: 767px) {
  .home-review__big-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 98px;
  }
}

.home-review__big-opinion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 15px;
  bottom: 7px;
}

.home-review__big-opinion figure {
  margin-right: 16px;
}

.home-review__big-opinion figure img {
  border-radius: 50%;
  max-width: 43px;
}

.home-review__big-opinion span {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .home-review__big-opinion {
    bottom: 22px;
    left: 26px;
  }
}

@media (min-width: 1024px) {
  .home-review__big-opinion figure img {
    max-width: 64px;
  }
}

.home-review__big.tokio .home-review__big-content {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#691c27), to(#b11e33));
  background-image: linear-gradient(to bottom, #691c27, #b11e33);
}

.home-review__big.tokio .home-review__big-title {
  color: #fff;
}

@media (min-width: 1280px) {
  .home-review__big.tokio .home-review__big-title {
    color: #fff;
  }
}

.home-review__big.tokio .home-review__big-opinion span {
  color: #fff;
}

.home-review__big.tokio .home-review__big-photo {
  position: relative;
}

.home-review__big.tokio .home-review__big-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .home-review__big.tokio .home-review__big-photo::after {
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.home-review__big.tokio:hover .home-review__big-content {
  background-color: transparent;
}

.home-review .button-more {
  margin: 20px auto 0;
}

.home-review.tokio .home-review__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

@media (min-width: 768px) {
  .home-slider.tokyo__wrapper::after {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(32.76%, #0602025e), to(#b01e33));
    background-image: linear-gradient(to left, #0602025e 32.76%, #b01e33);
  }
}

.home-slider.tokyo__category::after {
  background-color: #c8c8d3;
}

.home-slider.tokyo__category.tokio::after {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-slider.tokyo.tokio .home-slider__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-slider.tokyo.tokio .home-slider__text.tokio {
  background-color: #b49e81;
}

@media (min-width: 768px) {
  .home-slider.tokyo.tokio .home-slider__text.tokio {
    background-color: transparent;
  }
}

.home-slider.tokyo.tokio .home-slider__text.tokio .home-slider__category,
.home-slider.tokyo.tokio .home-slider__text.tokio .home-slider__title,
.home-slider.tokyo.tokio .home-slider__text.tokio .home-slider__description {
  color: #fff;
}

.epg.tokyo .epg-calendar__day-indicator.active {
  background-color: #b11e33;
}

.epg.tokyo .epg-calendar__day-indicator.active::after {
  background-color: #b11e33;
}

.epg.tokyo .epg-day--weekend {
  background-color: #f6e0e3;
}

.epg.tokyo .epg-tabs__item--active,
.epg.tokyo .epg-day--active {
  background-color: #b11e33;
}

.epg.tokyo .epg-tabs__item--active::after,
.epg.tokyo .epg-day--active::after {
  border-color: #b11e33 transparent transparent;
}

.epg.tokyo .epg-item__hour {
  background-color: #f6e0e3;
}

.epg.tokyo .epg-item__hour-combined {
  color: #fff;
  background-color: #b11e33;
}

.epg.tokyo .epg-item__cto .cto-btn--online {
  background-color: #b11e33;
  border-color: #b11e33;
}

.epg.tokyo .discipline-filters .controls-options .multiselect--active .multiselect__tags {
  background-color: #b11e33;
}

.epg.tokyo .discipline-filters .controls-options .multiselect .multiselect__option--highlight,
.epg.tokyo .discipline-filters .controls-options .multiselect .multiselect__option--selected.multiselect__option--highlight {
  background-color: #f6e0e3;
}

.epg.tokyo .epg-day-set__date {
  color: #2b2b2b;
}

.kadra-main .controls-options {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .kadra-main .controls-options .multiselect {
    max-width: 215px;
  }
}

.kadra-main .controls-options .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .kadra-main .controls-options .multiselect__tags {
    max-width: 215px;
  }
}

.kadra-main .controls-options .multiselect__placeholder {
  color: #262626;
  padding-left: 5px;
}

.kadra-main .controls-options .multiselect--active .multiselect__tags {
  background-color: #b11e33;
  color: #fff;
}

.kadra-main .controls-options .multiselect__option--highlight,
.kadra-main .controls-options .multiselect__option--selected.multiselect__option--highlight {
  background-color: #f6e0e3;
}

.kadra-main__label {
  min-width: 160px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .kadra-main__label {
    margin-bottom: 10px;
  }
}

.kadra-main__button {
  width: 100%;
  max-width: 1026px;
  margin-bottom: 20px;
}

.kadra-main__button .button-expand {
  background-color: #fff;
  margin-top: 0;
}

.kadra-main .twitter {
  display: none;
}

@media (min-width: 1280px) {
  .kadra-main .twitter {
    display: block;
  }
}

.kadra-discipline {
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .kadra-discipline {
    margin-bottom: 46px;
  }
}

.kadra-discipline__label {
  margin-bottom: 20px;
  font-size: 1.625rem;
  color: #2b2b2b;
  font-weight: 700;
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .kadra-discipline__label {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .kadra-discipline__label {
    font-size: 2rem;
  }
}

.kadra-discipline__label::before {
  content: "";
  display: block;
  height: 3px;
  max-width: 206px;
  background-color: #c38b34;
}

.kadra-discipline__table {
  width: 100%;
}

.kadra-discipline__header {
  background-color: #b11e33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.kadra-discipline__tr {
  height: 42px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.kadra-discipline__tr:first-child {
  width: 78px;
}

@media (min-width: 768px) {
  .kadra-discipline__tr:first-child {
    width: 118px;
  }
}

.kadra-discipline__tr:last-child {
  width: calc(100% - 78px);
}

@media (min-width: 768px) {
  .kadra-discipline__tr:last-child {
    width: calc(100% - 118px);
  }
}

.kadra-discipline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}

.kadra-discipline__td {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 400;
  min-height: 93px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .kadra-discipline__td {
    font-size: 21px;
  }
}

.kadra-discipline__td:first-child {
  width: 78px;
}

@media (min-width: 768px) {
  .kadra-discipline__td:first-child {
    width: 118px;
  }
}

.kadra-discipline__td:last-child {
  width: calc(100% - 78px);
}

@media (min-width: 768px) {
  .kadra-discipline__td:last-child {
    width: calc(100% - 118px);
  }
}

.kadra-discipline__td a {
  color: #2b2b2b;
}

.kadra-discipline__td img {
  max-width: 47px;
  height: auto;
}

@media (min-width: 768px) {
  .kadra-discipline__td img {
    max-width: 67px;
  }
}

.kadra-discipline__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 27px);
  margin-left: -13.5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.kadra-discipline__box {
  position: relative;
  margin-bottom: 26px;
}

.kadra-discipline__box-content {
  position: relative;
  min-height: 105px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.kadra-discipline__box-title {
  max-height: 90px;
  overflow: hidden;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .kadra-discipline__box-title {
    max-height: 85px;
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.kadra-discipline__box-photo {
  position: relative;
}

.kadra-discipline__box-photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.kadra-discipline__box-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

.kadra-discipline__box-photo::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.kadra-discipline__box-photo img {
  height: auto;
}

@media (max-width: 768px) {
  .kadra-discipline__box {
    width: 33.3%;
  }
}

@media (max-width: 600px) {
  .kadra-discipline__box {
    width: 50%;
  }
}

.event-navbar-top--slim.event-navbar-top.tokyo2020 {
  min-height: 44px;
}

.event-navbar-top.tokyo2020 {
  background-color: #611422;
  background-image: url("images/tokyo/news-navbar-background.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 125% 69%;
  min-height: 142px;
}

@media (min-width: 1920px) {
  .event-navbar-top.tokyo2020 {
    background-size: 100% 69%;
  }
}

.event-navbar-top.tokyo2020 .event-navbar-top__logo {
  padding-top: 15px;
}

.event-navbar-top.tokyo2020 .event-navbar-top__broadcaster {
  padding-top: 13px;
  height: 85px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-navbar-top.tokyo2020 .event-navbar-top__logo svg {
  width: 139px;
  min-width: 139px;
  max-width: 139px;
}

@media (min-width: 768px) {
  .event-navbar-top.tokyo2020 .event-navbar-top__logo svg {
    width: 232px;
    min-width: 232px;
    max-width: 232px;
  }
}

.event-navbar-top.tokyo2020 .event-navbar-menu {
  background-color: #611422;
}

.event-navbar-top.tokyo2020 .event-navbar-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-navbar-top.tokyo2020 .navbar-menu-wrapper a.active {
  color: #d1b087;
  font-weight: bold;
}

.event-navbar-top.tokyo2020 .navbar-menu-wrapper a.active::after {
  background-color: #d1b087;
}

.tokyo2020 .page-results__draw--tokyo .draw-content {
  padding-top: 20px;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item {
  padding-bottom: 0;
  border: 1px solid #d9d9d9;
  position: relative;
  z-index: 1;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item:hover {
  background-color: #fff;
  border-color: #d9d9d9;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand {
  margin-right: 10px;
  max-width: 24px;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand figure {
  width: 24px;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand figure.img-placeholder {
  background: transparent url("images/icons/draw-placeholder.svg") no-repeat center center;
  background-size: contain;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item::before {
  background-color: #2b2b2b;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item {
  font-size: 0.813rem;
  margin: 0 -10px 5px;
  padding: 0 10px 5px;
  border-bottom: 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item:not(:nth-child(2)) {
  margin-bottom: 0;
  border-bottom: 0;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand {
  max-width: 24px;
  margin-right: 10px;
}

.tokyo2020 .page-results__draw--tokyo .draw-item__brand {
  margin-right: 15px;
}

.tokyo2020 .page-results__draw--tokyo .draw-item__brand figure {
  width: 24px;
}

.tokyo2020 .page-results__draw--tokyo .draw-item__brand figure.img-placeholder {
  height: 16px;
}

.tokyo2020 .page-results__draw--tokyo .page-results__beam {
  background-color: #b11e33;
  color: #fff;
  font-weight: 700;
  margin-right: 1px;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .tokyo2020 .page-results__draw--tokyo .page-results__beam .draw-header__item {
    text-align: left;
  }
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-inner .VueCarousel-slide:nth-child(2n-1) .draw-content {
  background-color: #efefef;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(2) .draw-content__item:nth-child(2n + 1)::after {
  border: 1px solid #2b2b2b;
  border-left: 0;
  z-index: 0;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after,
.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after,
.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(4) .draw-content__item:nth-child(2n + 1)::after,
.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(5) .draw-content__item:nth-child(2n + 1)::after {
  border-color: #2b2b2b;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after {
  z-index: 1;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after {
  height: calc(4 * 100% + ((4 - 1) * 25px));
}

.tokyo2020 .draw-title {
  background-color: #611422;
  color: #fff;
}

.tokyo2020 .draw-content__eventdate {
  color: #fff;
  background-color: #d1b087;
}

.tokyo2020 .draw-select.controls-options .multiselect--active .multiselect__tags {
  background: #a22d37;
}

.tokyo2020 .draw-select.controls-options .multiselect__tags {
  width: 100%;
}

.tokyo2020 .news__heading--line::before {
  background-color: #c38b34;
}

.tokyo2020 .news .results__heading,
.tokyo2020 .news .news-home__heading {
  position: relative;
}

.tokyo2020 .news .results__heading::before,
.tokyo2020 .news .news-home__heading::before {
  display: block;
  position: absolute;
  content: "";
  top: -3px;
  width: 206px;
  height: 3px;
  background-color: #c38b34;
}

.tokyo2020 .news-lead a,
.tokyo2020 .news-lead a:visited,
.tokyo2020 .news-text__paragraph p a b,
.tokyo2020 .news-text__paragraph p a,
.tokyo2020 .news-text__paragraph p b a,
.tokyo2020 .news-text center a,
.tokyo2020 .news-text p b a,
.tokyo2020 .news-text p big a {
  color: #b01e33;
}

.tokyo2020 .news-text center a,
.tokyo2020 .news-text p b a,
.tokyo2020 .news-text p big a {
  background-image: url("images/icons/arrow-tokyo.svg");
}

.tokyo2020 .news-gallery-large__counter:hover {
  color: #c38b34;
}

.tokyo2020 .icon-pdf {
  background-image: url(images/icons/PDF-tokyo.svg);
}

.tokyo2020 .news-downloads__link {
  color: #b01e33;
}

.tokyo2020 .quiz-item__footer .next-button {
  background-color: #b01e33;
}

.tokyo2020 .news-quiz .quiz__content {
  background-color: #fff;
}

.tokyo2020 .news-quiz .quiz-item__answer {
  background-color: #f7f7f7;
}

.tokyo2020 .news-quiz .quiz-item__answer::before {
  color: #dddddd;
}

.tokyo2020 .news-quiz .quiz-item__answer:hover {
  -webkit-box-shadow: inset 0 0 0 2px #b01e33, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 2px #b01e33, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.tokyo2020 .news-quiz .quiz-item__body :checked + label.quiz-item__answer {
  background-color: #b01e33;
}

.tokyo2020 .news-quiz .quiz-item__body :checked + label.quiz-item__answer::before {
  color: #b01e33;
}

.tokyo2020 .news-quiz .quiz-item__footer .next-button:hover {
  color: #fff;
}

.tokyo2020 .news-seealso__wrapper.tokyo .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #b49e81;
  margin-bottom: 6px;
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image {
  position: relative;
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::before {
    width: 78px;
    height: 65px;
  }
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

@media (min-width: 1280px) {
  .tokyo2020 .news-seealso__title {
    padding-bottom: 27px;
  }
}

.tokyo2020 .news-latest__box.tokyo .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #b49e81;
  margin-bottom: 6px;
}

.tokyo2020 .news-latest__box.tokyo .button-play {
  background-image: url(images/icons/play-tokio.svg);
}

.tokyo2020 .news-latest .boxes-3-container .box-small.tokyo .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #b49e81;
  margin-bottom: 6px;
}

.tokyo2020 .transmission-section {
  padding-top: 20px;
}

.tokyo2020 .transmission-section__label::before {
  background-color: #c38b34;
  margin-bottom: 16px;
}

.tokyo2020 .transmission-header {
  background-image: url("images/tokyo/transmission-background.svg");
  background-size: cover;
}

.tokyo2020 .transmission-header::before, .tokyo2020 .transmission-header::after {
  display: none;
}

.tokyo2020 .transmission-header__parent {
  background-color: #4d121a;
}

.tokyo2020 .transmission-header--tokyo {
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  padding-top: 20px;
}

.tokyo2020 .transmission-header--tokyo .transmission-header > .container {
  position: absolute;
  bottom: 0;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 45px;
  background-color: #611422;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .transmission-navigation__wrapper {
    height: 57px;
    font-size: 1.125rem;
  }
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li {
  margin-right: 15px;
  pointer-events: none;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li:hover::before {
  background-color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 14px;
  background-color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li::after {
  display: none;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a {
  color: #fff;
  pointer-events: auto;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .transmission-navigation li a {
    font-size: 1.313rem;
  }
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a::after {
  background-color: transparent;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .transmission-navigation li a::after {
    margin-top: 12px;
  }
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a:hover {
  color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a:hover::after {
  background-color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .discipline {
  width: 72px;
  min-width: 72px;
  height: 72px;
  margin-right: 8px;
  background-size: contain;
  justify-self: flex-start;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .discipline {
    width: 114px;
    min-width: 114px;
    height: 114px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .discipline {
    width: 170px;
    min-width: 170px;
    height: 170px;
    position: relative;
    top: -10px;
  }
}

.tokyo2020 .transmission-header--tokyo .discipline.icon-plywanie, .tokyo2020 .transmission-header--tokyo .discipline.icon-wioslarstwo, .tokyo2020 .transmission-header--tokyo .discipline.icon-strzelectwo {
  height: 50px;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .discipline.icon-plywanie, .tokyo2020 .transmission-header--tokyo .discipline.icon-wioslarstwo, .tokyo2020 .transmission-header--tokyo .discipline.icon-strzelectwo {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .discipline.icon-plywanie, .tokyo2020 .transmission-header--tokyo .discipline.icon-wioslarstwo, .tokyo2020 .transmission-header--tokyo .discipline.icon-strzelectwo {
    height: 120px;
  }
}

.tokyo2020 .transmission-header--tokyo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 71px;
  min-width: 71px;
  height: 34px;
  justify-self: flex-end;
  margin-left: auto;
  background-size: contain;
  background-image: url(images/tokyo/tokyo-nadawca.svg);
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .logo {
    width: 114px;
    min-width: 114px;
    height: 54px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .logo {
    width: 143px;
    min-width: 143px;
    height: 68px;
  }
}

.tokyo2020 .transmission-header--tokyo .team--first {
  padding-top: 0;
}

.tokyo2020 .transmission-header--tokyo .team > .flex-row {
  margin-bottom: 0;
}

.tokyo2020 .transmission-header--tokyo .team--right .team__logo {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .team__name {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.tokyo2020 .transmission-header--tokyo .mobile-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.tokyo2020 .transmission-header--tokyo .mobile-icons .discipline {
  margin-left: auto;
  margin-right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
}

.tokyo2020 .transmission-header--tokyo .mobile-icons .logo {
  margin-right: auto;
  margin-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 79px;
  height: 38px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .mobile-icons {
    display: none;
  }
}

.tokyo2020 .transmission-header--tokyo .match__overtime {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.tokyo2020 .transmission-header--tokyo .match__overtime--first {
  margin-bottom: 5px;
}

.tokyo2020 .transmission-header--tokyo .match__part {
  font-size: 0.625rem;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .match__part {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .match__part {
    font-size: 1rem;
  }
}

.tokyo2020 .transmission-header--tokyo .match__part-score {
  font-size: 0.625rem;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .match__part-score {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .match__part-score {
    font-size: 1rem;
  }
}

.tokyo2020 .transmission-header--tokyo.teams .hide-on-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.teams .hide-on-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 0;
  max-height: 200px;
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed {
    max-height: 144px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .match__type, .tokyo2020 .transmission-header--tokyo.fixed .match__time, .tokyo2020 .transmission-header--tokyo.fixed .match__data {
  display: none;
}

.tokyo2020 .transmission-header--tokyo.fixed .team__timeline {
  display: none;
}

.tokyo2020 .transmission-header--tokyo.fixed .match-details {
  padding-top: 20px;
}

@media (min-width: 480px) {
  .tokyo2020 .transmission-header--tokyo.fixed .match-details {
    padding-top: 0px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .match-details {
    padding-top: 31px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .match__overtime {
  display: none;
}

.tokyo2020 .transmission-header--tokyo.fixed .team--first {
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .team--first {
    padding-top: 19px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .discipline {
  margin-top: 10px;
  height: 50px;
  top: 0;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .discipline {
    margin-top: 19px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .logo {
  height: 50px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .logo {
    margin-top: 19px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .mobile-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .mobile-icons {
    display: none;
  }
}

.tokyo2020 .transmission-header--tokyo .team--right,
.tokyo2020 .transmission-header--tokyo .team--left {
  padding-bottom: 10px;
}

.tokyo2020 .transmission-header--tokyo .team.loser .team__name {
  text-decoration: line-through;
  font-weight: normal;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo {
    padding-top: 30px;
  }
}

.tokyo2020 .match-details {
  padding-top: 0;
}

.tokyo2020 .match__overtime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: 1.6px;
}

@media (min-width: 480px) {
  .tokyo2020 .match__overtime {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokyo2020 .match__overtime--first {
  margin-top: 10px;
}

@media (min-width: 480px) {
  .tokyo2020 .match__part {
    margin-right: 10px;
  }
}

.tokyo2020 .timeline__item a:hover {
  color: #fccb8d;
}

.tokyo2020 .relation-item:first-of-type .relation-item__time {
  color: #b01e33;
}

.tokyo2020 .relation-item:first-of-type .relation-item__time::after {
  border-color: #b01e33;
}

.tokyo2020 .transmission-navigation {
  position: static;
  max-width: 1406px;
  margin: 0 auto;
  padding-top: 11px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-navigation {
    padding-top: 15px;
  }
}

.tokyo2020 .transmission-navigation__arrow {
  background-color: #3a0d13;
}

.tokyo2020 .transmission-navigation__arrow:hover {
  background-color: #430f16;
}

.tokyo2020 .transmission-navigation ul {
  width: 100%;
  overflow-x: auto;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #b11e33;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 10px;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar-thumb:hover {
  background: #d9d9d9;
}

.tokyo2020 .transmission-navigation ul:hover {
  cursor: pointer;
}

.tokyo2020 .transmission-title {
  background-color: #4d121a;
}

.tokyo2020 .transmission-title__item {
  padding-top: 0;
}

.tokyo2020 .transmission-player {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4d121a), to(rgba(0, 0, 0, 0.5))), -webkit-gradient(linear, left top, left bottom, from(#2b2b2b), to(#2b2b2b));
  background-image: linear-gradient(to bottom, #4d121a, rgba(0, 0, 0, 0.5)), linear-gradient(to bottom, #2b2b2b, #2b2b2b);
}

.tokyo2020 .transmission-player__content::after {
  background-image: none;
  background-color: rgba(10, 70, 80, 0.42);
}

.tokyo2020 .olympic-details {
  text-align: center;
}

@media (min-width: 1024px) {
  .tokyo2020 .olympic-details {
    min-height: 150px;
  }
}

.tokyo2020 .olympic-details__type {
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__type {
    font-size: 13px;
    letter-spacing: 1.3px;
    margin-bottom: 0px;
  }
}

.tokyo2020 .olympic-details__discipline {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__discipline {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .olympic-details__discipline {
    font-size: 32px;
    line-height: 1.75;
    margin-bottom: 0px;
  }
}

.tokyo2020 .olympic-details__status {
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__status {
    font-size: 16px;
    line-height: 1.6;
  }
}

.tokyo2020 .olympic-details__data {
  font-size: 11px;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__data {
    font-size: 13px;
    line-height: 1.62;
  }
}

.tokyo2020 .classification .thead {
  background-color: #8b2130;
}

.tokyo2020 .classification .th {
  color: #fff;
  height: 41px;
  width: 20%;
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2;
          flex: 0.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
}

.tokyo2020 .classification .th:first-child {
  width: 4%;
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
  padding-left: 10px;
  padding-right: 5px;
  min-width: 20px;
}

@media (min-width: 768px) {
  .tokyo2020 .classification .th:first-child {
    padding-right: 0;
  }
}

.tokyo2020 .classification .th:nth-child(2) {
  width: 30%;
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
}

.tokyo2020 .classification .th:nth-child(3) {
  width: 45%;
  -webkit-box-flex: 0.45;
      -ms-flex: 0.45;
          flex: 0.45;
}

.tokyo2020 .classification .tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tokyo2020 .classification .tbody {
  background-color: #fff;
}

.tokyo2020 .classification .tbody .tr {
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.tokyo2020 .classification .td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 71px;
  padding: 5px;
  width: 20%;
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2;
          flex: 0.2;
}

.tokyo2020 .classification .td:first-child {
  width: 4%;
  min-width: 20px;
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
  padding-left: 10px;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .classification .td:first-child {
    padding-right: 0;
  }
}

.tokyo2020 .classification .td:nth-child(2) {
  font-weight: bold;
  width: 30%;
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tokyo2020 .classification .td:nth-child(3) {
  width: 45%;
  -webkit-box-flex: 0.45;
      -ms-flex: 0.45;
          flex: 0.45;
}

.tokyo2020 .classification .td:last-child {
  font-weight: bold;
}

.tokyo2020 .classification .td .flag img {
  margin-right: 6px;
  width: 20px;
  height: auto;
}

@media (min-width: 768px) {
  .tokyo2020 .classification .td .flag img {
    width: 40px;
    margin-right: 16px;
  }
}

.tokyo2020 .classification .td span {
  display: block;
}

.tokyo2020 .classification .td a {
  color: #2b2b2b;
}

.tokyo2020 .transmission-prematch__header {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  background-color: #c8c8d3;
  height: 41px;
  padding: 10px;
}

.tokyo2020 .transmission-prematch__content {
  padding: 30px 0 27px;
  background-color: #fff;
}

.tokyo2020 .transmission-prematch__content.prematch-table {
  padding-top: 0;
}

.tokyo2020 .prematch-lastevents__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 13px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .tokyo2020 .prematch-lastevents__column {
    margin-bottom: 0;
  }
}

.tokyo2020 .prematch-lastevents__logo {
  max-width: 50px;
  min-height: 50px;
  text-align: center;
  margin: 0 auto;
  border-radius: 0%;
  overflow: hidden;
}

.tokyo2020 .prematch-lastevents__teamname {
  text-align: center;
  margin-bottom: 9px;
}

.tokyo2020 .prematch-lastevents__label {
  margin-bottom: 6px;
}

.tokyo2020 .prematch-lastevents__value {
  font-size: 1.313;
  font-weight: 700;
}

.tokyo2020 .prematch-lastevents__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 269px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-lastevents__details {
    margin-top: auto;
  }
}

.tokyo2020 .prematch-lastevents__details .flex-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tokyo2020 .prematch-lastevents__progressbar {
  max-width: 269px;
}

.tokyo2020 .prematch-lastevents .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-lastevents .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokyo2020 .prematch-condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-condition {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokyo2020 .prematch-condition__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.tokyo2020 .prematch-condition__column {
  padding: 0 18px;
  margin-bottom: 50px;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-condition__column {
    margin-bottom: 0;
    padding: 0 9px 0 9px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .prematch-condition__column {
    padding: 0 18px;
  }
}

.tokyo2020 .prematch-condition__column--last {
  margin-bottom: 20px;
}

.tokyo2020 .prematch-condition__column--last .prematch-condition {
  margin-right: 0;
  margin-left: 10px;
}

.tokyo2020 .prematch-condition__column--last .prematch-condition__icons {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.tokyo2020 .prematch-condition__column--last .d-flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.tokyo2020 .prematch-condition__column--last .condition-icon {
  margin-right: 0;
  margin-left: 12px;
}

.tokyo2020 .prematch-condition__column .d-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tokyo2020 .condition-event {
  min-width: 260px;
  max-width: 296px;
}

@media (min-width: 480px) {
  .tokyo2020 .condition-event {
    min-width: 210px;
  }
}

@media (min-width: 768px) {
  .tokyo2020 .condition-event {
    min-width: 296px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .condition-event {
    min-width: 240px;
  }
}

@media (min-width: 1280px) {
  .tokyo2020 .condition-event {
    min-width: 296px;
  }
}

.tokyo2020 .condition-event__logo {
  max-width: 24px;
  margin-right: 8px;
  border-radius: 0%;
  overflow: hidden;
}

.tokyo2020 .condition-event__date {
  background-color: #ececf3;
  font-size: 0.688rem;
  font-weight: 600;
  height: 24px;
  padding: 4px;
}

.tokyo2020 .condition-event__participant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.813rem;
  padding: 4px 14px;
  -webkit-box-shadow: inset 0 0 1px 0 #e1e1e1;
          box-shadow: inset 0 0 1px 0 #e1e1e1;
  margin-top: -1px;
}

.tokyo2020 .condition-event__score {
  margin-left: auto;
  font-weight: 600;
}

.tokyo2020 .prematch-table__group {
  background-color: #d1b087;
  padding: 10px 13px;
  height: auto;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.tokyo2020 .prematch-table__header {
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  background-color: #c3c3c3;
  height: 26px;
  padding-top: 4px;
}

.tokyo2020 .prematch-table__header .prematch-table__row {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tokyo2020 .prematch-table__header .prematch-table__col {
  color: #fff;
}

.tokyo2020 .prematch-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: inset 0 -1px 0 0 #e1e1e1;
          box-shadow: inset 0 -1px 0 0 #e1e1e1;
}

.tokyo2020 .prematch-table__body .prematch-table__row {
  padding: 10px 0;
}

.tokyo2020 .prematch-table__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.813rem;
  color: #2b2b2b;
}

.tokyo2020 .prematch-table__col:nth-child(1) {
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
}

.tokyo2020 .prematch-table__col:nth-child(2) {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
}

.tokyo2020 .prematch-table__col:nth-child(3) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(4) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(5) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(6) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(7) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(8) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(2) {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.tokyo2020 .prematch-table__col:last-child {
  font-weight: bold;
}

.tokyo2020 .prematch-table__col figure {
  width: 20px;
  border-radius: 0%;
  margin-right: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .tokyo2020 .prematch-table__col figure {
    width: 40px;
    height: 40px;
  }
}

.primary {
  margin-bottom: 6px;
  margin-top: 6px;
  position: relative;
}

@media (min-width: 1280px) {
  .primary {
    margin-top: 12px;
    margin-bottom: 26px;
  }
}

.primary__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .primary__top {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media (min-width: 1280px) {
  .primary__top {
    margin-bottom: 26px;
  }
}

.primary__large {
  position: relative;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin: 3px;
}

@media (min-width: 1024px) {
  .primary__large {
    margin: 0 3px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 1280px) {
  .primary__large {
    margin: 0 13px;
  }
}

.primary__large-title {
  position: relative;
  z-index: 2;
  background-color: #fff;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
  padding: 25px 15px 40px 15px;
  min-height: 113px;
}

.primary__large-title::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  width: 63px;
  height: 2px;
  background-color: #c8c8d3;
}

@media (min-width: 768px) {
  .primary__large-title {
    padding: 0;
    background: transparent;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 21px;
    max-width: 80%;
  }
  .primary__large-title::before {
    top: -13px;
    left: 0;
  }
}

.primary__large-title .primary__small {
  margin-top: 10px;
}

.primary__large-title .primary__small-name {
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
}

@media (min-width: 768px) {
  .primary__large-title .primary__small-name {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
  }
}

.primary__large-url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.primary__large-image {
  position: relative;
}

.primary__large-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(27, 27, 27, 0.74)), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, rgba(27, 27, 27, 0.74), rgba(22, 22, 22, 0));
}

.primary__large:hover .primary__large-name {
  text-decoration: underline;
}

.primary__large .home-outcome {
  padding: 0 10px;
}

.primary__large .home-outcome__wrapper {
  height: 42.5px;
}

.primary__large-label {
  position: absolute;
  top: 8px;
  left: 20px;
  z-index: 100;
  text-transform: uppercase;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .primary__large-label {
    top: -31px;
    left: 4px;
    margin-bottom: 10px;
    font-size: 0.688rem;
  }
}

.primary__large-label .label {
  display: inline-block;
}

.primary__large-play {
  position: absolute;
  top: 8px;
  left: -5px;
  z-index: 100;
}

@media (min-width: 768px) {
  .primary__large-play {
    top: -27px;
    left: -20px;
  }
}

.primary__large.labeled .primary__large-title::before {
  display: none;
}

.primary__twins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  margin: 0 3px;
}

@media (min-width: 1024px) {
  .primary__twins {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 1280px) {
  .primary__twins {
    margin: 0 13px;
  }
}

.primary__twin {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: calc(50% - 3px);
  overflow: hidden;
}

@media (min-width: 1280px) {
  .primary__twin {
    height: calc(50% - 13px);
  }
}

.primary__twin-photo {
  min-width: 50.5%;
  max-width: 50.5%;
}

@media (min-width: 1280px) {
  .primary__twin-photo {
    min-width: 48.5%;
    max-width: 50.5%;
  }
}

.primary__twin-photo .button-play {
  left: 0;
  bottom: 0;
}

.primary__twin-content {
  position: relative;
  background-color: #fff;
  padding: 34px 15px 15px 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: -5px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 1280px) {
  .primary__twin-content {
    margin-left: 0;
  }
}

.primary__twin-url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.primary__twin-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(1.1rem * 3);
  overflow: hidden;
  font-size: 0.8125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.1rem;
  position: relative;
}

@media (min-width: 768px) {
  .primary__twin-title {
    max-height: calc(1.4rem * 3);
    font-size: 1.2rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .primary__twin-title {
    max-height: calc(1.3rem * 3);
    font-size: 1.1rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.3rem;
  }
}

@media (min-width: 1280px) {
  .primary__twin-title {
    max-height: calc(1.4rem * 3);
    font-size: 1.2rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.4rem;
  }
}

.primary__twin-category {
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 6px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
  display: none;
}

.primary__twin-category::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.primary__twin-category:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .primary__twin-category {
    display: block;
    bottom: 16px;
  }
  .primary__twin-category::after {
    top: -16px;
  }
}

.primary__twin-category.author {
  z-index: 1;
}

.primary__twin-category.author::after {
  display: none;
}

.primary__twin-label {
  position: absolute;
  top: 15px;
  text-transform: uppercase;
  left: 20px;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.1px;
}

@media (min-width: 768px) {
  .primary__twin-label {
    top: 11px;
    font-size: 0.688rem;
  }
}

.primary__twin:hover .primary__twin-content {
  background-color: #e0e0eb;
}

.primary__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  width: 100%;
  overflow-x: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-bottom: 5px;
}

.primary__items::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.primary__items::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.primary__items::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.primary__items::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

@media (min-width: 1024px) {
  .primary__items {
    padding-bottom: 0;
    overflow-x: initial;
  }
}

.primary__box {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
  margin: 0 3px;
  min-width: 240px;
}

@media (min-width: 1280px) {
  .primary__box {
    margin: 0 13px;
  }
}

.primary__box-url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.primary__box-content {
  position: relative;
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary__box-title {
  max-height: 90px;
  overflow: hidden;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .primary__box-title {
    max-height: 85px;
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.primary__box-image {
  position: relative;
}

.primary__box-image .button-play {
  left: auto;
  bottom: auto;
  width: 35px;
  height: 35px;
  position: relative;
  margin-right: 10px;
}

.primary__box-indicators {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.primary__box-category {
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.primary__box-category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.primary__box-category:hover {
  cursor: pointer;
}

.primary__box-category.author {
  z-index: 1;
}

.primary__box-category.author::after {
  display: none;
}

.primary__box-label {
  position: absolute;
  top: -11px;
  text-transform: uppercase;
  left: 25px;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
}

@media (min-width: 767px) {
  .primary__box-label {
    font-size: 0.688rem;
  }
}

.primary__box:hover .primary__box-content {
  background-color: #e0e0eb;
}

.primary__wide {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: 6px;
}

@media (min-width: 1280px) {
  .primary__wide {
    margin-bottom: 26px;
  }
}

.primary__wide-url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.primary__wide .container {
  background-color: #fff;
  display: block;
}

@media (min-width: 768px) {
  .primary__wide .container {
    background-color: transparent;
    position: relative;
    left: 16px;
  }
}

.primary__wide-title {
  position: relative;
  z-index: 10;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
  padding: 25px 15px 40px 15px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .primary__wide-title {
    max-width: 80%;
    font-size: 2.625rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.19;
  }
}

@media (min-width: 768px) {
  .primary__wide-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
    background-color: transparent;
    position: absolute;
    z-index: 10;
    bottom: 0;
  }
}

@media (min-width: 1024px) {
  .primary__wide-title {
    font-size: 3.375rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.15;
  }
}

.primary__wide-title::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 15px;
  width: 63px;
  height: 2px;
  background-color: #c8c8d3;
}

@media (min-width: 768px) {
  .primary__wide-title::before {
    top: 13px;
  }
}

.primary__wide-title.active .primary__wide-name {
  text-decoration: underline;
}

.primary__wide-title .primary__small {
  margin-top: 10px;
}

.primary__wide-title .primary__small-name {
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
}

@media (min-width: 768px) {
  .primary__wide-title .primary__small-name {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
  }
}

.primary__wide-wide {
  position: relative;
}

.primary__wide-wide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(27, 27, 27, 0.74)), to(rgba(22, 22, 22, 0)));
  background-image: linear-gradient(to top, rgba(27, 27, 27, 0.74), rgba(22, 22, 22, 0));
}

.primary__wide-label {
  position: absolute;
  top: 8px;
  left: 19px;
  z-index: 100;
  text-transform: uppercase;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .primary__wide-label {
    top: -4px;
    left: 19px;
    margin-bottom: 10px;
    font-size: 0.688rem;
  }
}

.primary__wide-label .label {
  display: inline-block;
}

.primary__wide-play {
  position: absolute;
  top: 8px;
  left: -5px;
  z-index: 100;
}

@media (min-width: 768px) {
  .primary__wide-play {
    top: -1px;
    left: -5px;
  }
}

.primary__wide .home-outcome {
  padding: 0 10px;
}

.primary__wide .home-outcome__wrapper {
  height: 43.5px;
}

.primary__broad {
  position: relative;
  z-index: 100;
  width: 100%;
  text-align: center;
  padding-bottom: 13px;
  background-image: url(images/euro/extra-boxes.jpg);
}

.primary__broad-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .primary__broad-boxes {
    padding-bottom: 5px;
    width: 100%;
    overflow-x: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .primary__broad-boxes::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .primary__broad-boxes::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .primary__broad-boxes::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .primary__broad-boxes::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.primary__broad-title {
  font-size: 0.813rem;
  color: #fccb8d;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.5px;
  padding: 7px;
}

.primary__broad-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.38;
  margin: 0 3px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  background-image: url(images/euro/transmission-extend.png);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  text-align: center;
  height: 100px;
  max-width: 110px;
}

@media (min-width: 768px) {
  .primary__broad-box {
    width: 100%;
    padding-right: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-right: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.38;
    margin: 0 6.5px;
    max-width: 207px;
    height: 116px;
    text-align: left;
  }
}

.primary__broad-box:hover {
  background-color: black;
}

.primary__broad-box span {
  position: relative;
  z-index: 1;
  max-width: 100px;
  text-shadow: 1px 0 0 #000000;
}

.primary__broad-box::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary__broad-box:hover::before {
  background-color: rgba(0, 0, 0, 0.6);
}

.primary__broad-icon {
  margin-left: 13px;
  margin-right: 13px;
  position: relative;
  z-index: 1;
}

.primary__broad-icon.one {
  width: 45px;
  min-width: 45px;
  height: 45px;
  background-size: contain;
  background-image: url(images/icons/broad-180.svg);
}

@media (min-width: 768px) {
  .primary__broad-icon.one {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}

.primary__broad-icon.two {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-size: contain;
  background-image: url(images/icons/broad-stadium.svg);
}

@media (min-width: 768px) {
  .primary__broad-icon.two {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}

.primary__broad-icon.three {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-size: contain;
  background-image: url(images/icons/broad-comment.svg);
}

@media (min-width: 768px) {
  .primary__broad-icon.three {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}

.primary__broad-icon.four {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-size: contain;
  background-image: url(images/icons/broad-main.svg);
}

@media (min-width: 768px) {
  .primary__broad-icon.four {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}

.primary__broad-icon.fifth {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 10px;
  background-size: contain;
  background-image: url(images/icons/transmission-combined.svg);
}

@media (min-width: 768px) {
  .primary__broad-icon.fifth {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
}

@media (min-width: 1024px) {
  .primary__broad-icon {
    margin-left: 7px;
    margin-right: 7px;
  }
}

@media (min-width: 1280px) {
  .primary__broad-icon {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.primary__extended {
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 6.5px;
  padding: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .primary__extended {
    margin: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.primary__extended-logo {
  width: 145px;
  min-width: 145px;
  height: 45px;
  margin-right: 40px;
  background-image: url(images/euro/euro2020.svg);
}

.primary__extended-combined {
  width: 83px;
  min-width: 83px;
  height: 50px;
  justify-self: flex-end;
  margin-left: auto;
  background-size: contain;
  background-image: url(images/euro/euro-combined.svg);
}

@media (min-width: 1024px) {
  .primary__extended-combined {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.primary__extended-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .primary__extended-nav {
    padding-right: 40px;
    margin-top: 0;
  }
}

.primary__extended-nav ul {
  width: 100%;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 10px;
}

.primary__extended-nav ul::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.primary__extended-nav ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #1f9cb0;
}

.primary__extended-nav ul::-webkit-scrollbar-thumb {
  background: #068ba0;
  border-radius: 10px;
}

.primary__extended-nav ul::-webkit-scrollbar-thumb:hover {
  background: #068ba0;
}

.primary__extended-nav ul:hover {
  cursor: pointer;
}

@media (min-width: 1280px) {
  .primary__extended-nav ul {
    padding-bottom: 0;
  }
}

.primary__extended-nav ul li {
  margin-right: 20px;
}

.primary__extended-nav ul li a {
  white-space: nowrap;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.38;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary__extended-nav ul li a:hover {
  color: #f8d193;
  text-shadow: 1px 0 0 #f7a600;
}

.primary__button {
  position: relative;
  top: -13px;
  padding: 6px 20px;
  letter-spacing: 1.1px;
  background-color: #009bb4;
  text-transform: uppercase;
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary__button-content {
  text-align: center;
}

.primary__button:hover {
  background-color: #fff;
  border: 1px solid #009bb4;
  color: #009bb4;
}

.primary__half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 6.5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .primary__half {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 6.5px;
  }
}

@media (min-width: 1280px) {
  .primary__half {
    gap: 26px;
    margin-bottom: 26px;
  }
}

.primary__connected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .primary__connected {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.primary__connected-spacing {
  padding-bottom: 6.5px;
}

@media (min-width: 1280px) {
  .primary__connected-spacing {
    padding-bottom: 26px;
  }
}

.primary__double {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .primary__double {
    min-width: 50%;
  }
}

@media (min-width: 1280px) {
  .primary__double {
    min-width: 240px;
  }
}

.primary__double-url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.primary__double-image {
  position: relative;
}

.primary__double-image:hover .primary__double-name {
  text-decoration: underline;
}

.primary__double-title {
  position: relative;
  display: block;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
  padding: 25px 15px 40px 15px;
  background-color: #fff;
  z-index: 100;
  min-height: 113px;
  width: 100%;
}

.primary__double-title::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  width: 63px;
  height: 2px;
  background-color: #c8c8d3;
}

@media (min-width: 768px) {
  .primary__double-title {
    padding: 0;
    max-width: 80%;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
    background-color: transparent;
    position: absolute;
    z-index: 1;
    bottom: 11px;
    left: 23px;
    z-index: 2;
  }
  .primary__double-title::before {
    top: -13px;
    left: 0;
  }
}

@media (min-width: 1280px) {
  .primary__double-title {
    bottom: 34px;
    font-size: 2.325rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
  }
}

.primary__double-label {
  position: absolute;
  top: 8px;
  left: 19px;
  z-index: 100;
  text-transform: uppercase;
  -webkit-transform: none;
          transform: none;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .primary__double-label {
    top: -31px;
    left: 0px;
    margin-bottom: 10px;
    font-size: 0.688rem;
  }
}

.primary__double-label .label {
  display: inline-block;
}

.primary__double-play {
  position: absolute;
  top: 8px;
  left: -5px;
  z-index: 100;
}

@media (min-width: 768px) {
  .primary__double-play {
    top: -26px;
    left: -20px;
  }
}

@media (min-width: 768px) {
  .primary__double.invert .primary__double-title {
    left: auto;
    right: 23px;
    text-align: right;
  }
  .primary__double.invert .primary__double-title::before {
    left: auto;
    right: 0;
  }
}

@media (min-width: 768px) {
  .primary__double.invert .primary__double-label {
    top: -31px;
    right: 0px;
    margin-bottom: 10px;
    font-size: 0.688rem;
  }
}

.primary__double.invert .primary__double-play {
  position: absolute;
  top: 8px;
  right: 100px;
  left: auto;
  z-index: 100;
}

@media (min-width: 768px) {
  .primary__double.invert .primary__double-play {
    top: -26px;
    left: auto;
    right: 70px;
  }
}

.primary__double.invert .primary__small-name {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 768px) {
  .primary__double.invert .primary__small {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .primary__double.invert .primary__small-name {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .primary__double.invert .primary__small figure {
    margin-left: 6px;
  }
}

.primary__double .home-outcome {
  padding: 0 10px;
}

.primary__double .home-outcome__wrapper {
  height: 43.5px;
}

.primary__double .primary__small {
  margin-top: 10px;
  margin-bottom: 5px;
}

.primary__double .primary__small-name {
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
}

@media (min-width: 768px) {
  .primary__double .primary__small-name {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.19;
  }
}

@media (min-width: 1024px) {
  .primary__double-spacing {
    height: 42.5px;
    width: 100%;
    opacity: 0.2;
    background-color: #036473;
  }
}

.primary .connected .primary__half {
  margin-bottom: 0;
}

.primary .connected .primary__half .primary__connected.nobg .primary__connected-spacing {
  padding-bottom: 0;
}

.primary .connected .primary__wide .primary__broad {
  padding-bottom: 0;
}

.primary .connected .primary__wide .primary__broad.nobg {
  padding-bottom: 24px;
}

.primary .nobg {
  padding-bottom: 6.5px;
}

@media (min-width: 1280px) {
  .primary .nobg {
    padding-bottom: 26px;
  }
}

.primary .noboxes {
  padding-top: 24px;
}

.primary .button-play {
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .primary .button-play {
    width: 52px;
    height: 52px;
  }
}

.primary__small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -10px;
}

.primary__small figure {
  width: 38px;
  margin-right: 6px;
}

.primary__small figure img {
  margin: 0;
  width: auto;
  border-radius: 50%;
  min-width: 36px;
}

.primary__small figure::before {
  display: none;
}

.primary__small-name {
  display: inline-block;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.19;
}

.primary .labeled .primary__large-title::before {
  background: transparent;
}

.primary .labeled .primary__wide-title::before {
  background: transparent;
}

.primary .labeled .primary__double-title::before {
  background: transparent;
}

/*--------- TOKYO MODULES ---------*/
.icon-ceremonia {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/ceremonia-otwarcia.svg);
}

.icon-ceremonia.white {
  background-image: url(images/tokyo/discipline/ceremonia-otwarcia_white.svg);
}

.icon-badminton {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/badminton.svg);
}

.icon-badminton.white {
  background-image: url(images/tokyo/discipline/badminton_white.svg);
}

.icon-baseball {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/baseball.svg);
}

.icon-baseball.white {
  background-image: url(images/tokyo/discipline/baseball_white.svg);
}

.icon-boks {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/box.svg);
}

.icon-boks.white {
  background-image: url(images/tokyo/discipline/boks_white.svg);
}

.icon-zeglarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/zeglarstwo.svg);
}

.icon-zeglarstwo.white {
  background-image: url(images/tokyo/discipline/zeglarstwo_white.svg);
}

.icon-zapasy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/zapasy.svg);
}

.icon-zapasy.white {
  background-image: url(images/tokyo/discipline/zapasy_white.svg);
}

.icon-wioslarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/wioslarstwo.svg);
}

.icon-wioslarstwo.white {
  background-image: url(images/tokyo/discipline/wioslarstwo_white.svg);
}

.icon-ujezdzanie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/ujezdzanie.svg);
}

.icon-ujezdzanie.white {
  background-image: url(images/tokyo/discipline/ujezdzanie_white.svg);
}

.icon-wspinaczka-sportowa,
.icon-wspinaczka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/wspinaczka-sportowa.svg);
}

.icon-wspinaczka-sportowa.white,
.icon-wspinaczka.white {
  background-image: url(images/tokyo/discipline/wspinaczka-sportowa_white.svg);
}

.icon-kon-wierzchowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kon-wierzchowy.svg);
}

.icon-kon-wierzchowy.white {
  background-image: url(images/tokyo/discipline/kon-wierzchowy_white.svg);
}

.icon-surfing {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/surfing.svg);
}

.icon-surfing.white {
  background-image: url(images/tokyo/discipline/surfing_white.svg);
}

.icon-szermierka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/szermierka.svg);
}

.icon-szermierka.white {
  background-image: url(images/tokyo/discipline/szermierka_white.svg);
}

.icon-teakwondo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/taekwondo.svg);
}

.icon-teakwondo.white {
  background-image: url(images/tokyo/discipline/taekwondo_white.svg);
}

.icon-triathlon {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/triathlon.svg);
}

.icon-triathlon.white {
  background-image: url(images/tokyo/discipline/triathlon_white.svg);
}

.icon-tenis-stolowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/tenis-stolowy.svg);
}

.icon-tenis-stolowy.white {
  background-image: url(images/tokyo/discipline/tenis-stolowy_white.svg);
}

.icon-tenis-ziemny {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/tenis-ziemny.svg);
}

.icon-tenis-ziemny.white {
  background-image: url(images/tokyo/discipline/tenis-ziemny_white.svg);
}

.icon-strzelectwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/strzelectwo.svg);
}

.icon-strzelectwo.white {
  background-image: url(images/tokyo/discipline/strzelectwo_white.svg);
}

.icon-sprint-kajakowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/sprint-kajakowy.svg);
}

.icon-sprint-kajakowy.white {
  background-image: url(images/tokyo/discipline/sprint-kajakowy_white.svg);
}

.icon-softball {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/softball.svg);
}

.icon-softball.white {
  background-image: url(images/tokyo/discipline/softball_white.svg);
}

.icon-skoki-do-wody {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/skoki-do-wody.svg);
}

.icon-skoki-do-wody.white {
  background-image: url(images/tokyo/discipline/skoki-do-wody_white.svg);
}

.icon-skoki-trampolina {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/skoki-trampolina.svg);
}

.icon-skoki-trampolina.white {
  background-image: url(images/tokyo/discipline/skoki-trampolina_white.svg);
}

.icon-slalom-kajakowy {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/slalom-kajakowy.svg);
}

.icon-slalom-kajakowy.white {
  background-image: url(images/tokyo/discipline/slalom-kajakowy_white.svg);
}

.icon-skatebording {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/skateboarding.svg);
}

.icon-skatebording.white {
  background-image: url(images/tokyo/discipline/skateboarding_white.svg);
}

.icon-siatkowka-plazowa {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/siatkowka-plazowa.svg);
}

.icon-siatkowka-plazowa.white {
  background-image: url(images/tokyo/discipline/siatkowka-plazowa_white.svg);
}

.icon-siatkowka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/siatkowka.svg);
}

.icon-siatkowka.white {
  background-image: url(images/tokyo/discipline/siatkowka_white.svg);
}

.icon-rugby {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/rugby.svg);
}

.icon-rugby.white {
  background-image: url(images/tokyo/discipline/rugby_white.svg);
}

.icon-podnoszenie-ciezarow {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/podnoszenie-ciezarow.svg);
}

.icon-podnoszenie-ciezarow.white {
  background-image: url(images/tokyo/discipline/podnoszenie-ciezarow_white.svg);
}

.icon-plywanie-synchroniczne,
.icon-plywanie-artystyczne {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/plywanie-synchroniczne.svg);
}

.icon-plywanie-synchroniczne.white,
.icon-plywanie-artystyczne.white {
  background-image: url(images/tokyo/discipline/plywanie-synchroniczne_white.svg);
}

.icon-plywanie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/plywanie.svg);
}

.icon-plywanie.white {
  background-image: url(images/tokyo/discipline/plywanie_white.svg);
}

.icon-pilka-wodna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-wodna.svg);
}

.icon-pilka-wodna.white {
  background-image: url(images/tokyo/discipline/pilka-wodna_white.svg);
}

.icon-pilka-reczna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-reczna.svg);
}

.icon-pilka-reczna.white {
  background-image: url(images/tokyo/discipline/pilka-reczna_white.svg);
}

.icon-plywanie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/plywanie.svg);
}

.icon-plywanie.white {
  background-image: url(images/tokyo/discipline/plywanie_white.svg);
}

.icon-pilka-wodna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-wodna.svg);
}

.icon-pilka-wodna.white {
  background-image: url(images/tokyo/discipline/pilka-wodna_white.svg);
}

.icon-kolarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo.svg);
}

.icon-kolarstwo.white {
  background-image: url(images/tokyo/discipline/kolarstwo_white.svg);
}

.icon-pilka-reczna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-reczna.svg);
}

.icon-pilka-reczna.white {
  background-image: url(images/tokyo/discipline/pilka-reczna_white.svg);
}

.icon-pilka-nozna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/pilka-nozna.svg);
}

.icon-pilka-nozna.white {
  background-image: url(images/tokyo/discipline/pilka-nozna_white.svg);
}

.icon-piecioboj-nowoczesny {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/piecioboj-nowoczesny.svg);
}

.icon-piecioboj-nowoczesny.white {
  background-image: url(images/tokyo/discipline/piecioboj-nowoczesny_white.svg);
}

.icon-maraton-plywacki {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/maraton-plywacki.svg);
}

.icon-maraton-plywacki.white {
  background-image: url(images/tokyo/discipline/maraton-plywacki_white.svg);
}

.icon-lucznictwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/lucznictwo.svg);
}

.icon-lucznictwo.white {
  background-image: url(images/tokyo/discipline/lucznictwo_white.svg);
}

.icon-lekkoatletka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/lekkoatletka.svg);
}

.icon-lekkoatletka.white {
  background-image: url(images/tokyo/discipline/lekkoatletka_white.svg);
}

.icon-koszykowka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/koszykowka.svg);
}

.icon-koszykowka.white {
  background-image: url(images/tokyo/discipline/koszykowka_white.svg);
}

.icon-koszykowka-3-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/koszykowka-3-3.svg);
}

.icon-koszykowka-3-3.white {
  background-image: url(images/tokyo/discipline/koszykowka-3-3_white.svg);
}

.icon-kolarstwo-gorskie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-gorskie.svg);
}

.icon-kolarstwo-gorskie.white {
  background-image: url(images/tokyo/discipline/kolarstwo-gorskie_white.svg);
}

.icon-kolarstwo-bmx-freestyle {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-freestyle.svg);
}

.icon-kolarstwo-bmx-freestyle.white {
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-freestyle_white.svg);
}

.icon-bmx,
.icon-kolarstwo-bmx-racing {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-racing.svg);
}

.icon-bmx.white,
.icon-kolarstwo-bmx-racing.white {
  background-image: url(images/tokyo/discipline/kolarstwo-bmx-racing_white.svg);
}

.icon-lekkoatletyka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/lekkoatletyka.svg);
}

.icon-lekkoatletyka.white {
  background-image: url(images/tokyo/discipline/lekkoatletyka_white.svg);
}

.icon-gimnastyka {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/gimnastyka.svg);
}

.icon-gimnastyka.white {
  background-image: url(images/tokyo/discipline/gimnastyka_white.svg);
}

.icon-gimnastyka-artystyczna {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/gimnastyka-artystyczna.svg);
}

.icon-gimnastyka-artystyczna.white {
  background-image: url(images/tokyo/discipline/gimnastyka-artystyczna_white.svg);
}

.icon-golf {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/golf.svg);
}

.icon-golf.white {
  background-image: url(images/tokyo/discipline/golf_white.svg);
}

.icon-hokej-na-trawie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/hokej-na-trawie.svg);
}

.icon-hokej-na-trawie.white {
  background-image: url(images/tokyo/discipline/hokej-na-trawie_white.svg);
}

.icon-jezdziectwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/jezdziectwo.svg);
}

.icon-jezdziectwo.white {
  background-image: url(images/tokyo/discipline/jezdziectwo_white.svg);
}

.icon-judo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/judo.svg);
}

.icon-judo.white {
  background-image: url(images/tokyo/discipline/judo_white.svg);
}

.icon-kolarstwo-torowe {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/kolarstwo-na-torze.svg);
}

.icon-kolarstwo-torowe.white {
  background-image: url(images/tokyo/discipline/kolarstwo-na-torze_white.svg);
}

.icon-karate-kata,
.icon-karate {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/karate-kata.svg);
}

.icon-karate-kata.white,
.icon-karate.white {
  background-image: url(images/tokyo/discipline/karate-kata_white.svg);
}

.icon-karate-kumite {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/karate-kumite.svg);
}

.icon-karate-kumite.white {
  background-image: url(images/tokyo/discipline/karate-kumite_white.svg);
}

.icon-default {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/discipline/default_icon.png);
}

.timetable__table {
  width: 100%;
}

.timetable__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timetable__container {
  overflow-x: auto;
  width: 100%;
  overflow-x: auto;
}

.timetable__container::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

.timetable__container::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.timetable__container::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.timetable__container::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.timetable__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 400;
  line-height: 1.38;
}

.timetable__name i {
  width: 57px;
  min-width: 57px;
  height: 57px;
  margin-left: 16px;
  margin-right: 8px;
  display: none;
}

@media (min-width: 768px) {
  .timetable__name i {
    display: inline-block;
  }
}

.timetable__head .timetable__name {
  width: 150px;
  min-width: 150px;
  border: 1px solid #fff;
  background-color: #c8c8d3;
  padding: 5px;
}

.timetable__head .timetable__name i {
  display: none;
}

@media (min-width: 768px) {
  .timetable__head .timetable__name {
    width: 234px;
    min-width: 234px;
  }
}

.timetable__head .timetable__month {
  overflow: hidden;
}

.timetable__head .timetable__month th {
  background-color: transparent;
  border-color: transparent;
  min-height: 50px;
  max-height: 50px;
}

.timetable__head .timetable__month span {
  opacity: 0;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (min-width: 768px) {
  .timetable__head .timetable__month span {
    font-size: 1.3125rem;
  }
}

.timetable__head .timetable__month span.firstDayMonth {
  opacity: 1;
  text-transform: uppercase;
}

.timetable__head th {
  width: 100%;
  min-width: 59px;
  max-width: 59px;
  text-align: center;
  background-color: #c8c8d3;
}

.timetable__head th span {
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.14;
  margin-top: 15px;
  display: block;
}

.timetable__head th:first-child {
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 2.08;
}

@media (min-width: 768px) {
  .timetable__head th:first-child {
    font-size: 1.5rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 2.08;
  }
}

.timetable__content .timetable__name {
  width: 150px;
  min-width: 150px;
  border: 1px solid #fff;
  background-color: #c8c8d3;
  padding: 5px;
}

@media (min-width: 768px) {
  .timetable__content .timetable__name {
    width: 234px;
    min-width: 234px;
    padding-right: 10px;
  }
}

.timetable__content .timetable__name a {
  color: inherit;
}

.timetable__content .timetable__name a:hover {
  color: #611422;
}

.timetable__content td {
  background-color: #e6e6ea;
  width: 100%;
  min-width: 59px;
  max-width: 59px;
}

.timetable__content td.active {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.timetable__content td.active:hover {
  background-color: #c8c8d3;
  cursor: pointer;
}

.timetable th,
.timetable td {
  position: relative;
  min-height: 78px;
  border: 2px solid #fff;
}

.timetable__yellow {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(images/tokyo/timetable/yellow.svg);
}

.timetable__gray {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(images/tokyo/timetable/gray.svg);
}

.timetable__flag {
  width: 22px;
  height: 13px;
  position: absolute;
  top: 2px;
  right: 2px;
  background-image: url(images/tokyo/timetable/flag.png);
}

.timetable__popup {
  position: fixed;
  width: 300px;
  background-color: #fff;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .timetable__popup {
    width: 440px;
  }
}

.timetable__popup.show {
  display: block;
}

.timetable__popup-content {
  margin-top: 10px;
  max-height: 240px;
  width: 100%;
  overflow-x: auto;
}

.timetable__popup-content::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.timetable__popup-content::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.timetable__popup-content::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.timetable__popup-content::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.timetable__popup-header {
  padding: 15px;
  background-color: #b11e33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.timetable__popup-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.timetable__popup-text {
  margin-left: 10px;
  font-style: normal;
}

.timetable__popup-text h4 {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.22;
}

.timetable__popup-text span {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 300;
  line-height: 1.22;
  margin: 3px 0;
  display: block;
}

.timetable__popup-text a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f05a22;
  padding: 4px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timetable__popup-text a i {
  display: inline-block;
  background-image: url(images/tokyo/timetable/small-arrow-white.svg);
  width: 10px;
  height: 4px;
  margin-left: 5px;
}

.timetable__popup-text a:hover {
  background-color: #fff;
  color: #b11e33;
}

.timetable__popup-text a:hover i {
  background-image: url(images/tokyo/timetable/small-arrow-red.svg);
}

.timetable__popup-icon span {
  display: block;
  width: 57px;
  min-width: 57px;
  height: 57px;
}

.timetable__popup-close {
  width: 23px;
  height: 23px;
  display: block;
  background-image: url(images/tokyo/timetable/close-white.svg);
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.timetable__popup-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.timetable__popup-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
}

.timetable__popup-left {
  padding-right: 20px;
  font-size: 1rem;
  color: #838383;
  font-weight: 700;
}

.timetable__popup-right {
  padding-right: 20px;
  font-size: 1.125rem;
  color: #2b2b2b;
  font-weight: 700;
}

.timetable__popup-right h6 {
  font-weight: bold;
}

.timetable__popup-right span {
  font-weight: normal;
  display: inline-block;
  margin: 5px 0;
}

.timetable__popup-right a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 6px 14px;
  color: #2b2b2b;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 5px;
  border: 1px solid #d7d7d7;
  font-weight: bold;
  letter-spacing: 1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 150px;
}

.timetable__popup-right a i {
  display: inline-block;
  background-image: url(images/tokyo/timetable/small-arrow-red.svg);
  width: 10px;
  height: 4px;
  margin-left: 10px;
}

.timetable__popup-right a:hover {
  color: #b11e33;
}

.timetable__legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .timetable__legend {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.timetable__legend .timetable__gray,
.timetable__legend .timetable__yellow,
.timetable__legend .timetable__flag {
  position: relative;
  left: auto;
  top: auto;
  -webkit-transform: none;
          transform: none;
  margin-left: 10px;
}

.timetable__legend-info {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 15px;
  margin-top: 3px;
}

.timetable__legend-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}

.timetable__wrapper {
  position: relative;
}

.timetable__mobile {
  position: absolute;
  left: -1px;
  top: 50px;
  z-index: 1;
}

@media (min-width: 1024px) {
  .timetable__mobile {
    display: none;
  }
}

.directory-submenu.tokyo .directory-submenu__wrapper {
  border-bottom: 1px solid #a22d37;
}

.directory-submenu.tokyo .directory-submenu__item--active {
  border-bottom-color: #a22d37;
}

.discipline-results-filters {
  margin-bottom: 40px;
}

.discipline-results-filters__label {
  font-size: 1rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
  .discipline-results-filters__label {
    padding-bottom: 0;
  }
}

.discipline-results-filters .controls-options {
  display: block;
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options__box {
    margin-right: 35px;
  }
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options .multiselect {
    margin-left: 15px;
  }
}

.discipline-results-filters .controls-options .multiselect--active .multiselect__tags {
  background: #a22d37;
}

.discipline-results-filters .controls-options .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .discipline-results-filters .controls-options .multiselect__tags {
    width: 210px;
  }
}

.discipline-results-main.tokyo .results-table__beam {
  background-color: #d1b087;
}

.tokyo2020 .icon-camera {
  background-image: url(images/icons/camera-tokyo.svg);
}

.news-latest__box.tokyo .box-small__category::before,
.news-latest .boxes-3-container .box-small.tokyo .box-small__category::before,
.news-seealso__wrapper.tokyo .box-small__category::before {
  background-color: #95754d;
}

.tokyo .button-play {
  background-image: url(images/icons/play-tokyo.svg);
}

.home-special.tokio .box-small__image,
.grid-three.tokio .box-small__image {
  position: relative;
}

.home-special.tokio .box-small__image::after,
.grid-three.tokio .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-special.tokio .box-small__image::before,
.grid-three.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-special.tokio .box-small__image::before,
  .grid-three.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-special.tokio .box-small__image::after,
.grid-three.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-special.tokio .box-small .label__ver-1,
.home-special.tokio .box-small .label__ver-2,
.home-special.tokio .box-small .label__ver-3,
.home-special.tokio .box-small .label__ver-4,
.grid-three.tokio .box-small .label__ver-1,
.grid-three.tokio .box-small .label__ver-2,
.grid-three.tokio .box-small .label__ver-3,
.grid-three.tokio .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__box-image {
  position: relative;
}

.primary.tokio .primary__box-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__box-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

.primary.tokio .primary__box-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.primary.tokio .primary__box .label__ver-1,
.primary.tokio .primary__box .label__ver-2,
.primary.tokio .primary__box .label__ver-3,
.primary.tokio .primary__box .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__box-category::after {
  background-color: #b49e81;
}

.primary.tokio .primary__twin-photo {
  position: relative;
}

.primary.tokio .primary__twin-photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__twin-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 5px;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-photo::before {
    width: 78px;
    height: 65px;
  }
}

.primary.tokio .primary__twin-photo::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

@media (min-width: 1280px) {
  .primary.tokio .primary__twin-photo::before {
    right: 0;
  }
}

.primary.tokio .primary__twin .label__ver-1,
.primary.tokio .primary__twin .label__ver-2,
.primary.tokio .primary__twin .label__ver-3,
.primary.tokio .primary__twin .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__twin-category::after {
  background-color: #b49e81;
}

.primary.tokio .primary__large-title::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.primary.tokio .primary__large-image {
  position: relative;
}

.primary.tokio .primary__large-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__large-image figure {
  position: relative;
}

.primary.tokio .primary__large-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.tokio .primary__large-image figure::before {
    bottom: -1px;
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 157px;
    height: 131px;
  }
}

.primary.tokio .primary__large-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.tokio .primary__large-image::before {
    bottom: 0;
  }
}

.primary.tokio .primary__large .label__ver-1,
.primary.tokio .primary__large .label__ver-2,
.primary.tokio .primary__large .label__ver-3,
.primary.tokio .primary__large .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__large-category::after {
  background-color: #b49e81;
}

.primary.tokio .primary__wide-title::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.primary.tokio .primary__wide .label__ver-1,
.primary.tokio .primary__wide .label__ver-2,
.primary.tokio .primary__wide .label__ver-3,
.primary.tokio .primary__wide .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__double .label__ver-1,
.primary.tokio .primary__double .label__ver-2,
.primary.tokio .primary__double .label__ver-3,
.primary.tokio .primary__double .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__extended-combined {
  background-image: none;
}

.grid-box.tokio .grid-box__image {
  position: relative;
}

.grid-box.tokio .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.grid-box.tokio .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .grid-box.tokio .grid-box__image::before {
    width: 78px;
    height: 65px;
  }
}

.grid-box.tokio .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.grid-box.tokio .grid-box__category::after {
  background-color: #b49e81;
}

.grid-box.tokio .label__ver-1,
.grid-box.tokio .label__ver-2,
.grid-box.tokio .label__ver-3,
.grid-box.tokio .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.box-big.tokio .box-big__image {
  position: relative;
}

.box-big.tokio .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-big.tokio .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom.png);
}

@media (min-width: 768px) {
  .box-big.tokio .box-big__image::before {
    width: 157px;
    height: 131px;
  }
}

.box-big.tokio .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.box-big.tokio .box-big__paramtitle, .box-big.tokio .box-big__paramtitle--content {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
  color: #fff;
}

.box-big.tokio .label__ver-1,
.box-big.tokio .label__ver-2,
.box-big.tokio .label__ver-3,
.box-big.tokio .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.box-medium.tokio .box-medium__image {
  position: relative;
}

.box-medium.tokio .box-medium__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-medium.tokio .box-medium__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

.box-medium.tokio .box-medium__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.box-medium.tokio .label__ver-1,
.box-medium.tokio .label__ver-2,
.box-medium.tokio .label__ver-3,
.box-medium.tokio .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img {
  position: relative;
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::before {
    width: 78px;
    height: 65px;
  }
}

.boxes-list-discipline__wrapper.tokio .boxes-list-discipline__img::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.boxes-list-discipline__wrapper.tokio .news-latest__category::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #b49e81;
}

.section-grid.tokio .grid-box__image {
  position: relative;
}

.section-grid.tokio .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.section-grid.tokio .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .section-grid.tokio .grid-box__image::before {
    width: 78px;
    height: 65px;
  }
}

.section-grid.tokio .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.section-grid.tokio .grid-box__category::after {
  background-color: #b49e81;
}

.section-grid.tokio .grid-box .label__ver-1,
.section-grid.tokio .grid-box .label__ver-2,
.section-grid.tokio .grid-box .label__ver-3,
.section-grid.tokio .grid-box .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.section-grid.tokio h3::before {
  background-color: #95754d;
}

.pagination.tokio .pagination__number:hover, .pagination.tokio .pagination__number.active {
  border-bottom: 3px solid #b49e81;
}

.directory-submenu.tokio .directory-submenu__wrapper {
  border-bottom: 1px solid #b49e81;
}

.directory-submenu.tokio .directory-submenu__item--active {
  border-bottom-color: #b49e81;
}

.stats-section--playerbg.tokio {
  position: relative;
}

.stats-section--playerbg.tokio::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .stats-section--playerbg.tokio::before {
    width: 91px;
    height: 76px;
  }
}

.nts--main .nts__slide.tokio {
  border: 0;
}

.nts--main .nts__slide.tokio:hover {
  border: 0;
}

.nts--main .nts__slide.tokio .nts__slide-desc,
.nts--main .nts__slide.tokio:hover .nts__slide-desc {
  background: url(images/euro/ns_slide_euro_bg.jpg);
  background-position: right;
  background-size: cover;
}

.nts--main .nts__slide.tokio .nts__slide-title,
.nts--main .nts__slide.tokio .progress-time__time {
  color: #fff;
}

.nts--main .nts__slide.tokio .progress-time__progress {
  background-color: #fff;
}

.grid-three.tokio .grid-three__header {
  color: #fff;
  background-color: #a22d37;
}

.box-small.tokio .box-small__image {
  position: relative;
}

.box-small.tokio .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-small.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .box-small.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.box-small.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.box-small.tokio .box-small__image .button-play {
  background-image: url(images/tokyo/play-tokyo.svg);
}

.box-small.tokio .box-small__category::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #b49e81;
}

.box-small.tokio .box-small .label__ver-1,
.box-small.tokio .box-small .label__ver-2,
.box-small.tokio .box-small .label__ver-3,
.box-small.tokio .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.news-latest__content.tokio .news-latest__image {
  position: relative;
}

.news-latest__content.tokio .news-latest__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-latest__content.tokio .news-latest__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .news-latest__content.tokio .news-latest__image::before {
    width: 78px;
    height: 65px;
  }
}

.news-latest__content.tokio .news-latest__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.news-latest__content.tokio .news-latest__category::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #b49e81;
}

@media (min-width: 768px) {
  .news-latest__content.tokio .news-latest__category::after {
    top: 6px;
  }
}

.liveblog.tokio a {
  color: #b49e81;
}

.liveblog.tokio .liveblog__label::before {
  background-color: transparent;
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #f7a600, #d14d18), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.liveblog.tokio .liveblog__time.first {
  color: #2b2b2b;
}

.liveblog.tokio .liveblog__time.first .liveblog__time-point {
  border: 2px solid #2b2b2b;
}

.liveblog.tokio .liveblog__time.first.event {
  color: #b49e81;
}

.liveblog.tokio .liveblog__time.first.event .liveblog__time-point {
  border: 2px solid #b49e81;
}

.directory-standard-list .box-big.tokio .box-big__image {
  position: relative;
}

.directory-standard-list .box-big.tokio .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.directory-standard-list .box-big.tokio .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom.png);
}

@media (min-width: 768px) {
  .directory-standard-list .box-big.tokio .box-big__image::before {
    width: 157px;
    height: 131px;
  }
}

.directory-standard-list .box-big.tokio .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.directory-standard-list .box-big.tokio .box-big .label__ver-1,
.directory-standard-list .box-big.tokio .box-big .label__ver-2,
.directory-standard-list .box-big.tokio .box-big .label__ver-3,
.directory-standard-list .box-big.tokio .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.boxes-one-three-box.tokio .button-play,
.boxes-section.tokio .button-play,
.home-special.tokio .button-play,
.home-discipline.tokio .button-play,
.home-video.tokio .button-play,
.home-photo.tokio .button-play,
.home-boxes.tokio .button-play,
.home-multi.tokio .button-play,
.home-review.tokio .button-play,
.primary.tokio .button-play,
.grid-box.tokio .button-play,
.box-big.tokio .button-play,
.box-medium.tokio .button-play,
.video .box-small.tokio .button-play,
.boxes-list-discipline__wrapper.tokio .button-play,
.news-latest__content.tokio .button-play,
.section-grid.tokio .button-play,
.nts__slide.tokio .button-play,
.grid-three.tokio .button-play,
.liveblog-video.tokio .button-play {
  background-image: url(images/tokyo/play-tokyo.svg);
}

.boxes-one-three-box.tokio .button-more__elem,
.boxes-section.tokio .button-more__elem,
.home-special.tokio .button-more__elem,
.home-discipline.tokio .button-more__elem,
.home-video.tokio .button-more__elem,
.home-photo.tokio .button-more__elem,
.home-boxes.tokio .button-more__elem,
.home-multi.tokio .button-more__elem,
.home-review.tokio .button-more__elem,
.primary.tokio .button-more__elem,
.grid-box.tokio .button-more__elem,
.box-big.tokio .button-more__elem,
.box-medium.tokio .button-more__elem,
.video .box-small.tokio .button-more__elem,
.boxes-list-discipline__wrapper.tokio .button-more__elem,
.news-latest__content.tokio .button-more__elem,
.section-grid.tokio .button-more__elem,
.nts__slide.tokio .button-more__elem,
.grid-three.tokio .button-more__elem,
.liveblog-video.tokio .button-more__elem {
  background: #d1b087;
  border-color: #d1b087;
  color: #fff;
}

.boxes-one-three-box.tokio .button-more__elem::before,
.boxes-section.tokio .button-more__elem::before,
.home-special.tokio .button-more__elem::before,
.home-discipline.tokio .button-more__elem::before,
.home-video.tokio .button-more__elem::before,
.home-photo.tokio .button-more__elem::before,
.home-boxes.tokio .button-more__elem::before,
.home-multi.tokio .button-more__elem::before,
.home-review.tokio .button-more__elem::before,
.primary.tokio .button-more__elem::before,
.grid-box.tokio .button-more__elem::before,
.box-big.tokio .button-more__elem::before,
.box-medium.tokio .button-more__elem::before,
.video .box-small.tokio .button-more__elem::before,
.boxes-list-discipline__wrapper.tokio .button-more__elem::before,
.news-latest__content.tokio .button-more__elem::before,
.section-grid.tokio .button-more__elem::before,
.nts__slide.tokio .button-more__elem::before,
.grid-three.tokio .button-more__elem::before,
.liveblog-video.tokio .button-more__elem::before {
  background: #d1b087;
}

.boxes-one-three-box.tokio .button-more__elem:hover,
.boxes-section.tokio .button-more__elem:hover,
.home-special.tokio .button-more__elem:hover,
.home-discipline.tokio .button-more__elem:hover,
.home-video.tokio .button-more__elem:hover,
.home-photo.tokio .button-more__elem:hover,
.home-boxes.tokio .button-more__elem:hover,
.home-multi.tokio .button-more__elem:hover,
.home-review.tokio .button-more__elem:hover,
.primary.tokio .button-more__elem:hover,
.grid-box.tokio .button-more__elem:hover,
.box-big.tokio .button-more__elem:hover,
.box-medium.tokio .button-more__elem:hover,
.video .box-small.tokio .button-more__elem:hover,
.boxes-list-discipline__wrapper.tokio .button-more__elem:hover,
.news-latest__content.tokio .button-more__elem:hover,
.section-grid.tokio .button-more__elem:hover,
.nts__slide.tokio .button-more__elem:hover,
.grid-three.tokio .button-more__elem:hover,
.liveblog-video.tokio .button-more__elem:hover {
  background-color: #fff;
  border: 1px solid #d1b087;
  color: #d1b087;
}

.boxes-one-three-box.tokio .gallery-mark,
.boxes-section.tokio .gallery-mark,
.home-special.tokio .gallery-mark,
.home-discipline.tokio .gallery-mark,
.home-video.tokio .gallery-mark,
.home-photo.tokio .gallery-mark,
.home-boxes.tokio .gallery-mark,
.home-multi.tokio .gallery-mark,
.home-review.tokio .gallery-mark,
.primary.tokio .gallery-mark,
.grid-box.tokio .gallery-mark,
.box-big.tokio .gallery-mark,
.box-medium.tokio .gallery-mark,
.video .box-small.tokio .gallery-mark,
.boxes-list-discipline__wrapper.tokio .gallery-mark,
.news-latest__content.tokio .gallery-mark,
.section-grid.tokio .gallery-mark,
.nts__slide.tokio .gallery-mark,
.grid-three.tokio .gallery-mark,
.liveblog-video.tokio .gallery-mark {
  background-image: url(images/tokyo/gall-icon.svg);
}

.medal-standing__table {
  overflow-y: hidden;
  width: 100%;
  overflow-x: auto;
  margin-top: 20px;
}

.medal-standing__table::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

.medal-standing__table::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(199, 199, 199, 0.2);
}

.medal-standing__table::-webkit-scrollbar-thumb {
  background: #c7c7c7;
  border-radius: 10px;
}

.medal-standing__table::-webkit-scrollbar-thumb:hover {
  background: #c7c7c7;
}

.medal-standing__header {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-width: 436px;
}

.medal-standing__tr {
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.medal-standing__tr:first-child {
  min-width: 30px;
}

@media (min-width: 1024px) {
  .medal-standing__tr:first-child {
    width: 5%;
    max-width: 50px;
  }
}

.medal-standing__tr:nth-child(2) {
  display: none;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(2) {
    display: block;
    width: 5%;
    min-width: 50px;
  }
}

.medal-standing__tr:nth-child(3) {
  min-width: 50px;
  width: 15%;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(3) {
    margin-right: 0;
    width: 30%;
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__tr:nth-child(3) {
    margin-right: 0;
    width: 56%;
  }
}

.medal-standing__tr:nth-child(4), .medal-standing__tr:nth-child(5), .medal-standing__tr:nth-child(6) {
  min-width: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(4), .medal-standing__tr:nth-child(5), .medal-standing__tr:nth-child(6) {
    min-width: 70px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__tr:nth-child(4), .medal-standing__tr:nth-child(5), .medal-standing__tr:nth-child(6) {
    width: 8%;
  }
}

.medal-standing__tr:nth-child(7) {
  min-width: 50px;
  margin-left: 5%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(7) {
    min-width: 80px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__tr:nth-child(7) {
    width: 5%;
  }
}

.medal-standing__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #efefef;
  border-bottom: 1px solid #d9d9d9;
  min-width: 436px;
}

.medal-standing__row:nth-child(even) {
  background-color: #fff;
}

.medal-standing__td {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

@media (min-width: 768px) {
  .medal-standing__td {
    height: 67px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td {
    height: 77px;
  }
}

.medal-standing__td:first-child {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 30px;
}

@media (min-width: 1024px) {
  .medal-standing__td:first-child {
    width: 5%;
    max-width: 50px;
  }
}

.medal-standing__td:nth-child(2) {
  min-width: 50px;
  width: 15%;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(2) {
    min-width: 50px;
    width: 30%;
    margin-right: 20px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td:nth-child(2) {
    width: 5%;
    margin-right: 0;
  }
}

.medal-standing__td:nth-child(3) {
  display: none;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 56%;
  }
}

.medal-standing__td:nth-child(4), .medal-standing__td:nth-child(5), .medal-standing__td:nth-child(6) {
  min-width: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(4), .medal-standing__td:nth-child(5), .medal-standing__td:nth-child(6) {
    min-width: 70px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td:nth-child(4), .medal-standing__td:nth-child(5), .medal-standing__td:nth-child(6) {
    width: 8%;
  }
}

.medal-standing__td:nth-child(7) {
  min-width: 80px;
  margin-left: 5%;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.medal-standing__td:nth-child(7)::after {
  content: '';
  height: 3px;
  width: 80%;
  position: absolute;
  bottom: 0;
  background-color: #d9d9d9;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(7) {
    width: 5%;
  }
}

.medal-standing__td img {
  width: 40px;
  height: auto;
  border: 1px solid #dddddd;
}

.medal-standing__icon {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.medal-standing__icon--gold {
  background-image: url(images/icons/medal-gold.svg);
}

.medal-standing__icon--silver {
  background-image: url(images/icons/medal-silver.svg);
}

.medal-standing__icon--bronze {
  background-image: url(images/icons/medal-bronze.svg);
}

.disciplines .flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.disciplines__header {
  padding: 25px;
  font-size: 2.625rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
}

.disciplines__header a {
  color: #f05a22;
}

.disciplines.tokyo .disciplines__header {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .disciplines.tokyo .disciplines__header {
    margin-bottom: 26px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 1280px) {
  .disciplines.tokyo .disciplines__header {
    font-size: 3.375rem;
    line-height: 1.15;
  }
}

.disciplines.tokyo .disciplines__header::before {
  display: none;
}

.disciplines-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 0 11px;
  cursor: default;
  color: inherit;
}

@media (min-width: 768px) {
  .disciplines-item {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .disciplines-item {
    width: 25%;
  }
}

.disciplines-item[href]:not([href='']) {
  color: inherit;
  cursor: pointer;
}

.disciplines-item__inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px;
  height: 110px;
  -webkit-box-shadow: 0 0 0 0.1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 0.1px rgba(0, 0, 0, 0.5);
}

.disciplines-item__image {
  margin-right: 30px;
  width: 90px;
}

.disciplines-item__image .img-responsive {
  height: 100%;
  width: 90px;
  margin: auto;
  border-radius: 50px;
}

.tokio .disciplines-item__image .img-responsive {
  height: auto;
}

.disciplines-item__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.3;
}

.primary.tokio {
  margin-top: 30px;
}

.primary.tokio .primary__background {
  background-color: #0f97ab;
  padding-bottom: 32px;
  padding-top: 13px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#691c27), color-stop(99%, #b11e33));
  background-image: linear-gradient(to bottom, #691c27 0%, #b11e33 99%);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.primary.tokio .primary__background .primary__broad {
  background: transparent;
}

.primary.tokio .second {
  width: auto;
  margin: 0;
  padding: 0;
}

.primary.tokio .container-fluid {
  padding-left: 3px;
  padding-right: 3px;
}

@media (min-width: 1280px) {
  .primary.tokio .container-fluid {
    padding-left: 13px;
    padding-right: 13px;
  }
}

.primary.tokio .primary__wide-image {
  position: relative;
}

.primary.tokio .primary__wide-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__wide-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.tokio .primary__wide-image::before {
    bottom: -1px;
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.tokio .primary__wide-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

.primary.tokio .primary__double-image {
  position: relative;
}

.primary.tokio .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .primary__double-image figure {
  position: relative;
}

.primary.tokio .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  right: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

@media (min-width: 768px) {
  .primary.tokio .primary__double-image figure::before {
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.tokio .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.tokio .primary__double-image::before {
    bottom: -1px;
  }
}

.primary.tokio .invert .primary__double-image {
  position: relative;
}

.primary.tokio .invert .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.tokio .invert .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: 0;
  width: 78px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-left-bottom.png);
}

@media (min-width: 768px) {
  .primary.tokio .invert .primary__double-image figure::before {
    background-image: url(images/tokyo/badge-left-bottom.png);
    width: 152px;
    height: 128px;
  }
}

.primary.tokio .invert .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(12%, rgba(255, 255, 255, 0)), color-stop(54%, rgba(176, 30, 51, 0.65)), to(rgba(0, 0, 0, 0.71)));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 12%, rgba(176, 30, 51, 0.65) 54%, rgba(0, 0, 0, 0.71) 100%);
}

@media (min-width: 768px) {
  .primary.tokio .invert .primary__double-image::before {
    bottom: -1px;
  }
}

.primary.tokio .home-outcome {
  background-color: #036473;
}

.primary.tokio .home-outcome__result {
  background-color: #f7a600;
  color: #fff;
}

.primary.tokio .primary__double-title::before {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.primary.tokio .primary__extended-logo {
  width: 139px;
  min-width: 139px;
  height: 19px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/tokyo-logo.svg);
  margin-right: 0;
}

@media (min-width: 768px) {
  .primary.tokio .primary__extended-logo {
    width: 180px;
    min-width: 180px;
    height: 25px;
    margin-right: 20px;
  }
}

.primary.tokio .primary__extended-combined {
  width: auto;
  height: 40px;
}

@media (min-width: 768px) {
  .primary.tokio .primary__extended-combined {
    width: auto;
    height: 61px;
  }
}

@media (min-width: 1024px) {
  .primary.tokio .primary__extended-combined {
    width: auto;
    height: 68px;
  }
}

.primary.tokio .primary__extended-nav ul {
  width: 100%;
  overflow-x: auto;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #b11e33;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 10px;
}

.primary.tokio .primary__extended-nav ul::-webkit-scrollbar-thumb:hover {
  background: #d9d9d9;
}

.primary.tokio .primary__extended-nav ul:hover {
  cursor: pointer;
}

.primary.tokio .primary__button {
  background-color: #d1b087;
  text-transform: uppercase;
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary.tokio .primary__button-content {
  text-align: center;
}

.primary.tokio .primary__button:hover {
  background-color: #6b1c27;
  border: 1px solid #6b1c27;
  color: #fff;
}

.primary.tokio .primary__twin-label {
  top: 10px;
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-label {
    top: 15px;
  }
}

.primary.tokio .primary__twin-content {
  padding: 30px 15px 15px 15px;
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-content {
    padding: 34px 15px 15px 15px;
  }
}

.primary.tokio .primary__twin-title {
  -webkit-line-clamp: 2;
  max-height: calc(1.1rem * 2);
}

@media (min-width: 768px) {
  .primary.tokio .primary__twin-title {
    -webkit-line-clamp: 3;
    max-height: calc(1.4rem * 3);
  }
}

.home-quiz.tokio {
  margin-bottom: 30px;
}

.home-quiz.tokio .home-quiz__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-quiz.tokio .home-quiz__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 329px;
  height: 100%;
}

@media (max-width: 1023px) {
  .home-quiz.tokio .home-quiz__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .home-quiz.tokio .home-quiz__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 20px;
  }
}

.home-quiz.tokio .home-quiz__content {
  background-color: #c8c8d3;
  background-image: url(images/euro/quiz-module-background.jpg);
  background-size: cover;
  background-position: left center;
  padding: 21px 0 23px 30px;
  width: 67%;
}

@media (max-width: 1023px) {
  .home-quiz.tokio .home-quiz__content {
    padding: 12px 22px 20px;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
  }
}

@media (max-width: 767px) {
  .home-quiz.tokio .home-quiz__content {
    padding: 12px 12px 20px;
    width: 100%;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__content {
    height: auto;
    width: 50%;
    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;
  }
}

@media (min-width: 1024px) {
  .home-quiz.tokio .home-quiz__content {
    padding-left: 117px;
  }
}

.home-quiz.tokio .home-quiz__content:hover {
  background-color: #fff;
}

.home-quiz.tokio .home-quiz__img {
  width: 33%;
}

@media (max-width: 767px) {
  .home-quiz.tokio .home-quiz__img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__img {
    width: 50%;
  }
}

.home-quiz.tokio .home-quiz__img figure {
  width: 100% !important;
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__img figure {
    overflow: hidden;
    height: 329px;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1279px) {
  .home-quiz.tokio .home-quiz__img img {
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__title {
    font-size: 2rem;
    color: #000;
    font-weight: 900;
    max-width: 558px;
  }
}

@media (min-width: 1024px) {
  .home-quiz.tokio .home-quiz__title {
    max-height: 40px;
  }
}

.home-quiz.tokio .home-quiz__title a:hover {
  color: #2b2b2b;
}

.home-quiz.tokio .home-quiz__desc {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__desc {
    overflow: hidden;
    max-height: 45px;
    padding-right: 20px;
    max-width: 421px;
  }
}

.home-quiz.tokio .home-quiz__more {
  display: inline-block;
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.11;
  text-transform: uppercase;
  padding: 10px 12px 10px 22px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media (min-width: 768px) {
  .home-quiz.tokio .home-quiz__more {
    font-size: 0.688rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    max-width: 110px;
  }
}

.home-quiz.tokio .home-quiz__more i {
  background-image: url(images/icons/arrow_white.svg);
  width: 12px;
  height: 5px;
  display: inline-block;
  margin-left: 7px;
  position: relative;
  top: -1px;
}

.home-quiz.tokio .home-quiz__more:hover {
  color: #fff;
}

.home-quiz.tokio .home-quiz__more:hover i {
  background-image: url(images/icons/arrow_white.svg);
}

.home-quiz.tokio .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-quiz.tokio .VueCarousel-navigation-prev {
    left: 15px !important;
  }
}

.home-quiz.tokio .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-quiz.tokio .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-quiz.tokio .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-quiz.tokio .VueCarousel-navigation-next {
    right: 15px !important;
  }
}

.home-quiz.tokio .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-quiz.tokio .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-special.tokio .home-special__background {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#691c27), to(#b11e33)) !important;
  background-image: linear-gradient(to bottom, #691c27 0%, #b11e33) !important;
}

.home-discipline.tokio .box-big__paramtitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-discipline.tokio .box-big::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .home-discipline.tokio .box-big::before {
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.home-discipline.tokio .box-big::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-discipline.tokio .box-big .label__ver-1,
.home-discipline.tokio .box-big .label__ver-2,
.home-discipline.tokio .box-big .label__ver-3,
.home-discipline.tokio .box-big .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-discipline.tokio .box-small__image {
  position: relative;
}

.home-discipline.tokio .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-discipline.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-discipline.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-discipline.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-discipline.tokio .box-small .label__ver-1,
.home-discipline.tokio .box-small .label__ver-2,
.home-discipline.tokio .box-small .label__ver-3,
.home-discipline.tokio .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-video.tokio .home-video__frame {
  background-color: #171a1f;
}

.home-video.tokio .home-video__subtitle {
  color: #fff;
}

.home-video.tokio .home-video__content:hover {
  background-color: #171a1f;
}

@media (min-width: 1280px) {
  .home-video.tokio .home-video__lists:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 26, 31, 0)), to(#171a1f));
    background-image: linear-gradient(to bottom, rgba(23, 26, 31, 0), #171a1f);
  }
}

.home-video.tokio .home-video__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-boxes {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-boxes {
    margin-bottom: 20px;
  }
}

.home-boxes__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-boxes__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (min-width: 1280px) {
  .home-boxes__heading {
    padding-left: 0;
  }
}

.home-boxes__slider {
  position: relative;
  left: 0;
  width: 100%;
}

@media (min-width: 1280px) {
  .home-boxes__slider {
    width: calc(100% + 26px);
    left: -13px;
  }
}

.home-boxes__box {
  position: relative;
  margin: 0 3px;
}

@media (min-width: 1280px) {
  .home-boxes__box {
    margin: 0 13px;
  }
}

.home-boxes__box:hover .home-boxes__content {
  background-color: #e0e0eb;
}

.home-boxes__url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-boxes__content {
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
}

.home-boxes__title {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .home-boxes__title {
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (max-width: 767px) {
  .home-boxes__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.home-boxes__image {
  position: relative;
}

.home-boxes__image .button-play {
  left: auto;
  bottom: auto;
  width: 35px;
  height: 35px;
  position: relative;
  margin-right: 10px;
}

.home-boxes__indicators {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.home-boxes__duration {
  font-size: 0.688rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  padding: 4px 7px;
  background-color: #2a2a2a;
}

.home-boxes__category {
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-boxes__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-boxes__category:hover {
  cursor: pointer;
}

.home-boxes .VueCarousel-dot {
  padding: 0 5px 0 5px !important;
}

.home-boxes .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  width: 6px !important;
  height: 6px !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-boxes .VueCarousel-navigation {
  display: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation {
    display: block;
  }
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-pagination {
    display: none;
  }
}

.home-boxes .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-prev {
    left: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-prev-orange.svg);
}

.home-boxes .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-next {
    right: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/icons/arrow-grey-next-orange.svg);
}

.home-boxes .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-button {
  top: 53% !important;
  color: transparent !important;
}

.home-boxes .VueCarousel-navigation--disabled {
  opacity: 0 !important;
  cursor: default !important;
}

.home-boxes .button-more {
  margin: 20px auto 0;
}

.home-boxes.tokio .home-boxes__image {
  position: relative;
}

.home-boxes.tokio .home-boxes__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .home-boxes.tokio .home-boxes__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-boxes.tokio .home-boxes__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-boxes.tokio .home-boxes__category::after {
  background-color: #b49e81;
}

.home-boxes.tokio .home-boxes__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-multi__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-multi__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-multi__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-multi__heading {
    padding-left: 0;
  }
}

.home-multi__category {
  display: none;
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-multi__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-multi__category:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  .home-multi__category {
    display: block;
  }
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small {
    width: calc(33.3% - 3px);
  }
}

@media (min-width: 1280px) {
  .home-multi .boxes-three-box .box-small {
    width: calc(33.3% - 20px);
  }
}

.home-multi .boxes-three-box .box-small__content {
  position: relative;
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 180px;
  }
}

@media (min-width: 1280px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 210px;
    padding: 22px 19px;
    font-size: 1.5rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (min-width: 1921px) {
  .home-multi .boxes-three-box .box-small__content {
    min-height: 277px;
  }
}

.home-multi .boxes-three-box .box-small .label__ver-1,
.home-multi .boxes-three-box .box-small .label__ver-2,
.home-multi .boxes-three-box .box-small .label__ver-3,
.home-multi .boxes-three-box .box-small .label__ver-4 {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

@media (min-width: 768px) {
  .home-multi .boxes-three-box .box-small-hor {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 25%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1921px) {
  .home-multi .boxes-three-box .box-small-hor {
    height: 105px;
    margin-bottom: 23px;
  }
  .home-multi .boxes-three-box .box-small-hor .box-small-hor__image {
    height: 105px;
  }
  .home-multi .boxes-three-box .box-small-hor:last-of-type {
    margin-bottom: 0;
  }
}

.home-multi .boxes-three-box .box-small-hor:first-of-type {
  border-top: 0;
}

.home-multi .boxes-three-box .box-small-hor img {
  max-width: none;
}

@media (min-width: 1024px) {
  .home-multi .boxes-three-box .box-small-hor__content {
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.5;
  }
}

.home-multi .boxes-three-box .box-small-hor__category {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-multi .boxes-three-box .box-small-hor__category:hover {
  cursor: pointer;
}

@media (min-width: 1463px) {
  .home-multi .boxes-three-box .box-small-hor__category {
    display: block;
  }
}

.home-multi.tokio .box-small__image {
  position: relative;
}

.home-multi.tokio .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 40px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .home-multi.tokio .box-small__image::before {
    width: 78px;
    height: 65px;
  }
}

.home-multi.tokio .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.home-multi.tokio .home-multi__category::after {
  background-color: #b49e81;
}

.home-discipline .home-multi .boxes-three-box .box-small:nth-child(3) {
  display: block;
  padding-left: 14px;
}

@media (min-width: 1280px) {
  .home-discipline .home-multi .boxes-three-box .box-small:nth-child(3) {
    padding-left: 0;
  }
}

.home-review {
  position: relative;
}

@media (min-width: 1280px) {
  .home-review {
    margin-bottom: 30px;
  }
}

@media (max-width: 1023px) {
  .home-review {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .home-review {
    margin-bottom: 0px;
    padding-bottom: 20px;
  }
  .home-review .boxes-three-box .box-small {
    width: 33.3%;
  }
}

.home-review__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-review__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (max-width: 767px) {
  .home-review__heading {
    padding-top: 9px;
  }
}

@media (min-width: 1280px) {
  .home-review__heading {
    padding-left: 0;
  }
}

.home-review .box-small__opinion {
  position: absolute;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-review .box-small__opinion span {
  letter-spacing: 1.1px;
  font-size: 0.688rem;
  color: #9b9b9b;
  font-weight: 700;
}

.home-review .box-small__opinion img {
  width: 43px;
  border-radius: 50%;
  margin-right: 16px;
}

.home-review .box-small__opinion--content {
  text-align: center;
  padding: 20px 35px 20px;
}

.home-review .boxes-3-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .home-review .boxes-3-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }
  .home-review .boxes-3-container::-webkit-scrollbar {
    width: 8px;
    height: 5px;
  }
  .home-review .boxes-3-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(199, 199, 199, 0.2);
  }
  .home-review .boxes-3-container::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
  }
  .home-review .boxes-3-container::-webkit-scrollbar-thumb:hover {
    background: #c7c7c7;
  }
}

.home-review .boxes-3-container .box-small {
  margin-right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media (max-width: 1023px) {
  .home-review .boxes-3-container .box-small {
    min-width: 334px;
    margin-right: 6px;
    margin-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small {
    min-width: 240px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.home-review .boxes-3-container .box-small:last-child {
  margin-right: 0;
}

.home-review .boxes-3-container .box-small .button-play.medium {
  left: 20px;
  bottom: 25px;
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small__content {
    font-size: 1rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .home-review .boxes-3-container .box-small__content {
    min-height: 180px;
  }
}

.home-review .boxes-3-container .box-small__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-review .boxes-3-container .box-small--special {
  height: 100%;
  padding: 25px 20px 20px;
  min-height: 166px;
  font-size: 1.3125rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.33;
}

@media (max-width: 767px) {
  .home-review .boxes-3-container .box-small--special {
    padding: 15px 5px 20px;
    font-size: 1rem;
    text-align: center;
    min-height: 80px;
    line-height: 1.25;
  }
}

@media (min-width: 1280px) {
  .home-review .boxes-3-container .box-small--special {
    font-size: 2rem;
    color: #2b2b2b;
    font-weight: 700;
  }
}

.home-review__big {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  .home-review__big {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.home-review__big-photo {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-review__big-photo {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-height: 444px;
    overflow: hidden;
  }
}

.home-review__big-content {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 172px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .home-review__big-content {
    padding: 26px;
  }
}

@media (min-width: 1024px) {
  .home-review__big-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 587px;
  }
}

:hover > .home-review__big-content {
  background-color: #e0e0eb;
}

.home-review__big-title {
  font-size: 1.5rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.3;
}

@media (min-width: 1280px) {
  .home-review__big-title {
    font-size: 2.625rem;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.19;
  }
}

@media (max-width: 767px) {
  .home-review__big-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 98px;
  }
}

.home-review__big-opinion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 15px;
  bottom: 7px;
}

.home-review__big-opinion figure {
  margin-right: 16px;
}

.home-review__big-opinion figure img {
  border-radius: 50%;
  max-width: 43px;
}

.home-review__big-opinion span {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

@media (min-width: 768px) {
  .home-review__big-opinion {
    bottom: 22px;
    left: 26px;
  }
}

@media (min-width: 1024px) {
  .home-review__big-opinion figure img {
    max-width: 64px;
  }
}

.home-review__big.tokio .home-review__big-content {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#691c27), to(#b11e33));
  background-image: linear-gradient(to bottom, #691c27, #b11e33);
}

.home-review__big.tokio .home-review__big-title {
  color: #fff;
}

@media (min-width: 1280px) {
  .home-review__big.tokio .home-review__big-title {
    color: #fff;
  }
}

.home-review__big.tokio .home-review__big-opinion span {
  color: #fff;
}

.home-review__big.tokio .home-review__big-photo {
  position: relative;
}

.home-review__big.tokio .home-review__big-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .home-review__big.tokio .home-review__big-photo::after {
    background-image: url(images/tokyo/badge-right-bottom.png);
    width: 206px;
    height: 172px;
  }
}

.home-review__big.tokio:hover .home-review__big-content {
  background-color: transparent;
}

.home-review .button-more {
  margin: 20px auto 0;
}

.home-review.tokio .home-review__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

@media (min-width: 768px) {
  .home-slider.tokyo__wrapper::after {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(32.76%, #0602025e), to(#b01e33));
    background-image: linear-gradient(to left, #0602025e 32.76%, #b01e33);
  }
}

.home-slider.tokyo__category::after {
  background-color: #c8c8d3;
}

.home-slider.tokyo__category.tokio::after {
  background-image: -webkit-gradient(linear, left top, right top, from(#95754d), color-stop(#95754d), to(#95754d));
  background-image: linear-gradient(to right, #95754d, #95754d, #95754d);
}

.home-slider.tokyo.tokio .home-slider__heading::before {
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), -webkit-gradient(linear, left top, left bottom, from(#d8d8d8), to(#d8d8d8));
  background-image: radial-gradient(circle at 100% 100%, #95754d, #95754d), linear-gradient(to bottom, #d8d8d8, #d8d8d8);
}

.home-slider.tokyo.tokio .home-slider__text.tokio {
  background-color: #b49e81;
}

@media (min-width: 768px) {
  .home-slider.tokyo.tokio .home-slider__text.tokio {
    background-color: transparent;
  }
}

.home-slider.tokyo.tokio .home-slider__text.tokio .home-slider__category,
.home-slider.tokyo.tokio .home-slider__text.tokio .home-slider__title,
.home-slider.tokyo.tokio .home-slider__text.tokio .home-slider__description {
  color: #fff;
}

.epg.tokyo .epg-calendar__day-indicator.active {
  background-color: #b11e33;
}

.epg.tokyo .epg-calendar__day-indicator.active::after {
  background-color: #b11e33;
}

.epg.tokyo .epg-day--weekend {
  background-color: #f6e0e3;
}

.epg.tokyo .epg-tabs__item--active,
.epg.tokyo .epg-day--active {
  background-color: #b11e33;
}

.epg.tokyo .epg-tabs__item--active::after,
.epg.tokyo .epg-day--active::after {
  border-color: #b11e33 transparent transparent;
}

.epg.tokyo .epg-item__hour {
  background-color: #f6e0e3;
}

.epg.tokyo .epg-item__hour-combined {
  color: #fff;
  background-color: #b11e33;
}

.epg.tokyo .epg-item__cto .cto-btn--online {
  background-color: #b11e33;
  border-color: #b11e33;
}

.epg.tokyo .discipline-filters .controls-options .multiselect--active .multiselect__tags {
  background-color: #b11e33;
}

.epg.tokyo .discipline-filters .controls-options .multiselect .multiselect__option--highlight,
.epg.tokyo .discipline-filters .controls-options .multiselect .multiselect__option--selected.multiselect__option--highlight {
  background-color: #f6e0e3;
}

.epg.tokyo .epg-day-set__date {
  color: #2b2b2b;
}

.kadra-main .controls-options {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .kadra-main .controls-options .multiselect {
    max-width: 215px;
  }
}

.kadra-main .controls-options .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .kadra-main .controls-options .multiselect__tags {
    max-width: 215px;
  }
}

.kadra-main .controls-options .multiselect__placeholder {
  color: #262626;
  padding-left: 5px;
}

.kadra-main .controls-options .multiselect--active .multiselect__tags {
  background-color: #b11e33;
  color: #fff;
}

.kadra-main .controls-options .multiselect__option--highlight,
.kadra-main .controls-options .multiselect__option--selected.multiselect__option--highlight {
  background-color: #f6e0e3;
}

.kadra-main__label {
  min-width: 160px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .kadra-main__label {
    margin-bottom: 10px;
  }
}

.kadra-main__button {
  width: 100%;
  max-width: 1026px;
  margin-bottom: 20px;
}

.kadra-main__button .button-expand {
  background-color: #fff;
  margin-top: 0;
}

.kadra-main .twitter {
  display: none;
}

@media (min-width: 1280px) {
  .kadra-main .twitter {
    display: block;
  }
}

.kadra-discipline {
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .kadra-discipline {
    margin-bottom: 46px;
  }
}

.kadra-discipline__label {
  margin-bottom: 20px;
  font-size: 1.625rem;
  color: #2b2b2b;
  font-weight: 700;
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .kadra-discipline__label {
    margin-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .kadra-discipline__label {
    font-size: 2rem;
  }
}

.kadra-discipline__label::before {
  content: "";
  display: block;
  height: 3px;
  max-width: 206px;
  background-color: #c38b34;
}

.kadra-discipline__table {
  width: 100%;
}

.kadra-discipline__header {
  background-color: #b11e33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.kadra-discipline__tr {
  height: 42px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.kadra-discipline__tr:first-child {
  width: 78px;
}

@media (min-width: 768px) {
  .kadra-discipline__tr:first-child {
    width: 118px;
  }
}

.kadra-discipline__tr:last-child {
  width: calc(100% - 78px);
}

@media (min-width: 768px) {
  .kadra-discipline__tr:last-child {
    width: calc(100% - 118px);
  }
}

.kadra-discipline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}

.kadra-discipline__td {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 400;
  min-height: 93px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .kadra-discipline__td {
    font-size: 21px;
  }
}

.kadra-discipline__td:first-child {
  width: 78px;
}

@media (min-width: 768px) {
  .kadra-discipline__td:first-child {
    width: 118px;
  }
}

.kadra-discipline__td:last-child {
  width: calc(100% - 78px);
}

@media (min-width: 768px) {
  .kadra-discipline__td:last-child {
    width: calc(100% - 118px);
  }
}

.kadra-discipline__td a {
  color: #2b2b2b;
}

.kadra-discipline__td img {
  max-width: 47px;
  height: auto;
}

@media (min-width: 768px) {
  .kadra-discipline__td img {
    max-width: 67px;
  }
}

.kadra-discipline__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 27px);
  margin-left: -13.5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.kadra-discipline__box {
  position: relative;
  margin-bottom: 26px;
}

.kadra-discipline__box-content {
  position: relative;
  min-height: 105px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.kadra-discipline__box-title {
  max-height: 90px;
  overflow: hidden;
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .kadra-discipline__box-title {
    max-height: 85px;
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

.kadra-discipline__box-photo {
  position: relative;
}

.kadra-discipline__box-photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.kadra-discipline__box-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
}

.kadra-discipline__box-photo::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

.kadra-discipline__box-photo img {
  height: auto;
}

@media (max-width: 768px) {
  .kadra-discipline__box {
    width: 33.3%;
  }
}

@media (max-width: 600px) {
  .kadra-discipline__box {
    width: 50%;
  }
}

.event-navbar-top--slim.event-navbar-top.tokyo2020 {
  min-height: 44px;
}

.event-navbar-top.tokyo2020 {
  background-color: #611422;
  background-image: url("images/tokyo/news-navbar-background.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 125% 69%;
  min-height: 142px;
}

@media (min-width: 1920px) {
  .event-navbar-top.tokyo2020 {
    background-size: 100% 69%;
  }
}

.event-navbar-top.tokyo2020 .event-navbar-top__logo {
  padding-top: 15px;
}

.event-navbar-top.tokyo2020 .event-navbar-top__broadcaster {
  padding-top: 13px;
  height: 85px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-navbar-top.tokyo2020 .event-navbar-top__logo svg {
  width: 139px;
  min-width: 139px;
  max-width: 139px;
}

@media (min-width: 768px) {
  .event-navbar-top.tokyo2020 .event-navbar-top__logo svg {
    width: 232px;
    min-width: 232px;
    max-width: 232px;
  }
}

.event-navbar-top.tokyo2020 .event-navbar-menu {
  background-color: #611422;
}

.event-navbar-top.tokyo2020 .event-navbar-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-navbar-top.tokyo2020 .navbar-menu-wrapper a.active {
  color: #d1b087;
  font-weight: bold;
}

.event-navbar-top.tokyo2020 .navbar-menu-wrapper a.active::after {
  background-color: #d1b087;
}

.tokyo2020 .page-results__draw--tokyo .draw-content {
  padding-top: 20px;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item {
  padding-bottom: 0;
  border: 1px solid #d9d9d9;
  position: relative;
  z-index: 1;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item:hover {
  background-color: #fff;
  border-color: #d9d9d9;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand {
  margin-right: 10px;
  max-width: 24px;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand figure {
  width: 24px;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand figure.img-placeholder {
  background: transparent url("images/icons/draw-placeholder.svg") no-repeat center center;
  background-size: contain;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item::before {
  background-color: #2b2b2b;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item {
  font-size: 0.813rem;
  margin: 0 -10px 5px;
  padding: 0 10px 5px;
  border-bottom: 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item:not(:nth-child(2)) {
  margin-bottom: 0;
  border-bottom: 0;
}

.tokyo2020 .page-results__draw--tokyo .draw-content__item .draw-item__brand {
  max-width: 24px;
  margin-right: 10px;
}

.tokyo2020 .page-results__draw--tokyo .draw-item__brand {
  margin-right: 15px;
}

.tokyo2020 .page-results__draw--tokyo .draw-item__brand figure {
  width: 24px;
}

.tokyo2020 .page-results__draw--tokyo .draw-item__brand figure.img-placeholder {
  height: 16px;
}

.tokyo2020 .page-results__draw--tokyo .page-results__beam {
  background-color: #b11e33;
  color: #fff;
  font-weight: 700;
  margin-right: 1px;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .tokyo2020 .page-results__draw--tokyo .page-results__beam .draw-header__item {
    text-align: left;
  }
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-inner .VueCarousel-slide:nth-child(2n-1) .draw-content {
  background-color: #efefef;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(2) .draw-content__item:nth-child(2n + 1)::after {
  border: 1px solid #2b2b2b;
  border-left: 0;
  z-index: 0;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after,
.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after,
.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(4) .draw-content__item:nth-child(2n + 1)::after,
.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(5) .draw-content__item:nth-child(2n + 1)::after {
  border-color: #2b2b2b;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(1) .draw-content__item:nth-child(2n + 1)::after {
  z-index: 1;
}

.tokyo2020 .page-results__draw--tokyo .VueCarousel-slide:nth-child(3) .draw-content__item:nth-child(2n + 1)::after {
  height: calc(4 * 100% + ((4 - 1) * 25px));
}

.tokyo2020 .draw-title {
  background-color: #611422;
  color: #fff;
}

.tokyo2020 .draw-content__eventdate {
  color: #fff;
  background-color: #d1b087;
}

.tokyo2020 .draw-select.controls-options .multiselect--active .multiselect__tags {
  background: #a22d37;
}

.tokyo2020 .draw-select.controls-options .multiselect__tags {
  width: 100%;
}

.tokyo2020 .news__heading--line::before {
  background-color: #c38b34;
}

.tokyo2020 .news .results__heading,
.tokyo2020 .news .news-home__heading {
  position: relative;
}

.tokyo2020 .news .results__heading::before,
.tokyo2020 .news .news-home__heading::before {
  display: block;
  position: absolute;
  content: "";
  top: -3px;
  width: 206px;
  height: 3px;
  background-color: #c38b34;
}

.tokyo2020 .news-lead a,
.tokyo2020 .news-lead a:visited,
.tokyo2020 .news-text__paragraph p a b,
.tokyo2020 .news-text__paragraph p a,
.tokyo2020 .news-text__paragraph p b a,
.tokyo2020 .news-text center a,
.tokyo2020 .news-text p b a,
.tokyo2020 .news-text p big a {
  color: #b01e33;
}

.tokyo2020 .news-text center a,
.tokyo2020 .news-text p b a,
.tokyo2020 .news-text p big a {
  background-image: url("images/icons/arrow-tokyo.svg");
}

.tokyo2020 .news-gallery-large__counter:hover {
  color: #c38b34;
}

.tokyo2020 .icon-pdf {
  background-image: url(images/icons/PDF-tokyo.svg);
}

.tokyo2020 .news-downloads__link {
  color: #b01e33;
}

.tokyo2020 .quiz-item__footer .next-button {
  background-color: #b01e33;
}

.tokyo2020 .news-quiz .quiz__content {
  background-color: #fff;
}

.tokyo2020 .news-quiz .quiz-item__answer {
  background-color: #f7f7f7;
}

.tokyo2020 .news-quiz .quiz-item__answer::before {
  color: #dddddd;
}

.tokyo2020 .news-quiz .quiz-item__answer:hover {
  -webkit-box-shadow: inset 0 0 0 2px #b01e33, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: inset 0 0 0 2px #b01e33, 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.tokyo2020 .news-quiz .quiz-item__body :checked + label.quiz-item__answer {
  background-color: #b01e33;
}

.tokyo2020 .news-quiz .quiz-item__body :checked + label.quiz-item__answer::before {
  color: #b01e33;
}

.tokyo2020 .news-quiz .quiz-item__footer .next-button:hover {
  color: #fff;
}

.tokyo2020 .news-seealso__wrapper.tokyo .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #b49e81;
  margin-bottom: 6px;
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image {
  position: relative;
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 65px;
  background-repeat: no-repeat;
  background-image: url(images/tokyo/badge-right-bottom-small.png);
  background-position: right bottom;
  background-size: contain;
}

@media (min-width: 768px) {
  .tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::before {
    width: 78px;
    height: 65px;
  }
}

.tokyo2020 .news-seealso__wrapper.tokyo .news-seealso__image::after {
  content: "";
  position: absolute;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40.76%, transparent), to(#b01e33));
  background: linear-gradient(transparent 40.76%, #b01e33);
}

@media (min-width: 1280px) {
  .tokyo2020 .news-seealso__title {
    padding-bottom: 27px;
  }
}

.tokyo2020 .news-latest__box.tokyo .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #b49e81;
  margin-bottom: 6px;
}

.tokyo2020 .news-latest__box.tokyo .button-play {
  background-image: url(images/icons/play-tokio.svg);
}

.tokyo2020 .news-latest .boxes-3-container .box-small.tokyo .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #b49e81;
  margin-bottom: 6px;
}

.tokyo2020 .transmission-section {
  padding-top: 20px;
}

.tokyo2020 .transmission-section__label::before {
  background-color: #c38b34;
  margin-bottom: 16px;
}

.tokyo2020 .transmission-header {
  background-image: url("images/tokyo/transmission-background.svg");
  background-size: cover;
}

.tokyo2020 .transmission-header::before, .tokyo2020 .transmission-header::after {
  display: none;
}

.tokyo2020 .transmission-header__parent {
  background-color: #4d121a;
}

.tokyo2020 .transmission-header--tokyo {
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  padding-top: 20px;
}

.tokyo2020 .transmission-header--tokyo .transmission-header > .container {
  position: absolute;
  bottom: 0;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 45px;
  background-color: #611422;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .transmission-navigation__wrapper {
    height: 57px;
    font-size: 1.125rem;
  }
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li {
  margin-right: 15px;
  pointer-events: none;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li:hover::before {
  background-color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 14px;
  background-color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li::after {
  display: none;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a {
  color: #fff;
  pointer-events: auto;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .transmission-navigation li a {
    font-size: 1.313rem;
  }
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a::after {
  background-color: transparent;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .transmission-navigation li a::after {
    margin-top: 12px;
  }
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a:hover {
  color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .transmission-navigation li a:hover::after {
  background-color: #fccb8d;
}

.tokyo2020 .transmission-header--tokyo .discipline {
  width: 72px;
  min-width: 72px;
  height: 72px;
  margin-right: 8px;
  background-size: contain;
  justify-self: flex-start;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .discipline {
    width: 114px;
    min-width: 114px;
    height: 114px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .discipline {
    width: 170px;
    min-width: 170px;
    height: 170px;
    position: relative;
    top: -10px;
  }
}

.tokyo2020 .transmission-header--tokyo .discipline.icon-plywanie, .tokyo2020 .transmission-header--tokyo .discipline.icon-wioslarstwo, .tokyo2020 .transmission-header--tokyo .discipline.icon-strzelectwo {
  height: 50px;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .discipline.icon-plywanie, .tokyo2020 .transmission-header--tokyo .discipline.icon-wioslarstwo, .tokyo2020 .transmission-header--tokyo .discipline.icon-strzelectwo {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .discipline.icon-plywanie, .tokyo2020 .transmission-header--tokyo .discipline.icon-wioslarstwo, .tokyo2020 .transmission-header--tokyo .discipline.icon-strzelectwo {
    height: 120px;
  }
}

.tokyo2020 .transmission-header--tokyo .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 71px;
  min-width: 71px;
  height: 34px;
  justify-self: flex-end;
  margin-left: auto;
  background-size: contain;
  background-image: url(images/tokyo/tokyo-nadawca.svg);
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .logo {
    width: 114px;
    min-width: 114px;
    height: 54px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .logo {
    width: 143px;
    min-width: 143px;
    height: 68px;
  }
}

.tokyo2020 .transmission-header--tokyo .team--first {
  padding-top: 0;
}

.tokyo2020 .transmission-header--tokyo .team > .flex-row {
  margin-bottom: 0;
}

.tokyo2020 .transmission-header--tokyo .team--right .team__logo {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .team__name {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.tokyo2020 .transmission-header--tokyo .mobile-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.tokyo2020 .transmission-header--tokyo .mobile-icons .discipline {
  margin-left: auto;
  margin-right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
}

.tokyo2020 .transmission-header--tokyo .mobile-icons .logo {
  margin-right: auto;
  margin-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 79px;
  height: 38px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .mobile-icons {
    display: none;
  }
}

.tokyo2020 .transmission-header--tokyo .match__overtime {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.tokyo2020 .transmission-header--tokyo .match__overtime--first {
  margin-bottom: 5px;
}

.tokyo2020 .transmission-header--tokyo .match__part {
  font-size: 0.625rem;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .match__part {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .match__part {
    font-size: 1rem;
  }
}

.tokyo2020 .transmission-header--tokyo .match__part-score {
  font-size: 0.625rem;
}

@media (min-width: 768px) {
  .tokyo2020 .transmission-header--tokyo .match__part-score {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo .match__part-score {
    font-size: 1rem;
  }
}

.tokyo2020 .transmission-header--tokyo.teams .hide-on-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.teams .hide-on-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 0;
  max-height: 200px;
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed {
    max-height: 144px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .match__type, .tokyo2020 .transmission-header--tokyo.fixed .match__time, .tokyo2020 .transmission-header--tokyo.fixed .match__data {
  display: none;
}

.tokyo2020 .transmission-header--tokyo.fixed .team__timeline {
  display: none;
}

.tokyo2020 .transmission-header--tokyo.fixed .match-details {
  padding-top: 20px;
}

@media (min-width: 480px) {
  .tokyo2020 .transmission-header--tokyo.fixed .match-details {
    padding-top: 0px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .match-details {
    padding-top: 31px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .match__overtime {
  display: none;
}

.tokyo2020 .transmission-header--tokyo.fixed .team--first {
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .team--first {
    padding-top: 19px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .discipline {
  margin-top: 10px;
  height: 50px;
  top: 0;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .discipline {
    margin-top: 19px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .logo {
  height: 50px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .logo {
    margin-top: 19px;
  }
}

.tokyo2020 .transmission-header--tokyo.fixed .mobile-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo.fixed .mobile-icons {
    display: none;
  }
}

.tokyo2020 .transmission-header--tokyo .team--right,
.tokyo2020 .transmission-header--tokyo .team--left {
  padding-bottom: 10px;
}

.tokyo2020 .transmission-header--tokyo .team.loser .team__name {
  text-decoration: line-through;
  font-weight: normal;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-header--tokyo {
    padding-top: 30px;
  }
}

.tokyo2020 .match-details {
  padding-top: 0;
}

.tokyo2020 .match__overtime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: 1.6px;
}

@media (min-width: 480px) {
  .tokyo2020 .match__overtime {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokyo2020 .match__overtime--first {
  margin-top: 10px;
}

@media (min-width: 480px) {
  .tokyo2020 .match__part {
    margin-right: 10px;
  }
}

.tokyo2020 .timeline__item a:hover {
  color: #fccb8d;
}

.tokyo2020 .relation-item:first-of-type .relation-item__time {
  color: #b01e33;
}

.tokyo2020 .relation-item:first-of-type .relation-item__time::after {
  border-color: #b01e33;
}

.tokyo2020 .transmission-navigation {
  position: static;
  max-width: 1406px;
  margin: 0 auto;
  padding-top: 11px;
}

@media (min-width: 1024px) {
  .tokyo2020 .transmission-navigation {
    padding-top: 15px;
  }
}

.tokyo2020 .transmission-navigation__arrow {
  background-color: #3a0d13;
}

.tokyo2020 .transmission-navigation__arrow:hover {
  background-color: #430f16;
}

.tokyo2020 .transmission-navigation ul {
  width: 100%;
  overflow-x: auto;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #b11e33;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 10px;
}

.tokyo2020 .transmission-navigation ul::-webkit-scrollbar-thumb:hover {
  background: #d9d9d9;
}

.tokyo2020 .transmission-navigation ul:hover {
  cursor: pointer;
}

.tokyo2020 .transmission-title {
  background-color: #4d121a;
}

.tokyo2020 .transmission-title__item {
  padding-top: 0;
}

.tokyo2020 .transmission-player {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4d121a), to(rgba(0, 0, 0, 0.5))), -webkit-gradient(linear, left top, left bottom, from(#2b2b2b), to(#2b2b2b));
  background-image: linear-gradient(to bottom, #4d121a, rgba(0, 0, 0, 0.5)), linear-gradient(to bottom, #2b2b2b, #2b2b2b);
}

.tokyo2020 .transmission-player__content::after {
  background-image: none;
  background-color: rgba(10, 70, 80, 0.42);
}

.tokyo2020 .olympic-details {
  text-align: center;
}

@media (min-width: 1024px) {
  .tokyo2020 .olympic-details {
    min-height: 150px;
  }
}

.tokyo2020 .olympic-details__type {
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__type {
    font-size: 13px;
    letter-spacing: 1.3px;
    margin-bottom: 0px;
  }
}

.tokyo2020 .olympic-details__discipline {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__discipline {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .olympic-details__discipline {
    font-size: 32px;
    line-height: 1.75;
    margin-bottom: 0px;
  }
}

.tokyo2020 .olympic-details__status {
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__status {
    font-size: 16px;
    line-height: 1.6;
  }
}

.tokyo2020 .olympic-details__data {
  font-size: 11px;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .tokyo2020 .olympic-details__data {
    font-size: 13px;
    line-height: 1.62;
  }
}

.tokyo2020 .classification .thead {
  background-color: #8b2130;
}

.tokyo2020 .classification .th {
  color: #fff;
  height: 41px;
  width: 20%;
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2;
          flex: 0.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
}

.tokyo2020 .classification .th:first-child {
  width: 4%;
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
  padding-left: 10px;
  padding-right: 5px;
  min-width: 20px;
}

@media (min-width: 768px) {
  .tokyo2020 .classification .th:first-child {
    padding-right: 0;
  }
}

.tokyo2020 .classification .th:nth-child(2) {
  width: 30%;
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
}

.tokyo2020 .classification .th:nth-child(3) {
  width: 45%;
  -webkit-box-flex: 0.45;
      -ms-flex: 0.45;
          flex: 0.45;
}

.tokyo2020 .classification .tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tokyo2020 .classification .tbody {
  background-color: #fff;
}

.tokyo2020 .classification .tbody .tr {
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.tokyo2020 .classification .td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 71px;
  padding: 5px;
  width: 20%;
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2;
          flex: 0.2;
}

.tokyo2020 .classification .td:first-child {
  width: 4%;
  min-width: 20px;
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
  padding-left: 10px;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .tokyo2020 .classification .td:first-child {
    padding-right: 0;
  }
}

.tokyo2020 .classification .td:nth-child(2) {
  font-weight: bold;
  width: 30%;
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tokyo2020 .classification .td:nth-child(3) {
  width: 45%;
  -webkit-box-flex: 0.45;
      -ms-flex: 0.45;
          flex: 0.45;
}

.tokyo2020 .classification .td:last-child {
  font-weight: bold;
}

.tokyo2020 .classification .td .flag img {
  margin-right: 6px;
  width: 20px;
  height: auto;
}

@media (min-width: 768px) {
  .tokyo2020 .classification .td .flag img {
    width: 40px;
    margin-right: 16px;
  }
}

.tokyo2020 .classification .td span {
  display: block;
}

.tokyo2020 .classification .td a {
  color: #2b2b2b;
}

.tokyo2020 .transmission-prematch__header {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  background-color: #c8c8d3;
  height: 41px;
  padding: 10px;
}

.tokyo2020 .transmission-prematch__content {
  padding: 30px 0 27px;
  background-color: #fff;
}

.tokyo2020 .transmission-prematch__content.prematch-table {
  padding-top: 0;
}

.tokyo2020 .prematch-lastevents__column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 13px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .tokyo2020 .prematch-lastevents__column {
    margin-bottom: 0;
  }
}

.tokyo2020 .prematch-lastevents__logo {
  max-width: 50px;
  min-height: 50px;
  text-align: center;
  margin: 0 auto;
  border-radius: 0%;
  overflow: hidden;
}

.tokyo2020 .prematch-lastevents__teamname {
  text-align: center;
  margin-bottom: 9px;
}

.tokyo2020 .prematch-lastevents__label {
  margin-bottom: 6px;
}

.tokyo2020 .prematch-lastevents__value {
  font-size: 1.313;
  font-weight: 700;
}

.tokyo2020 .prematch-lastevents__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 269px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-lastevents__details {
    margin-top: auto;
  }
}

.tokyo2020 .prematch-lastevents__details .flex-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tokyo2020 .prematch-lastevents__progressbar {
  max-width: 269px;
}

.tokyo2020 .prematch-lastevents .flex-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-lastevents .flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokyo2020 .prematch-condition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-condition {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tokyo2020 .prematch-condition__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.tokyo2020 .prematch-condition__column {
  padding: 0 18px;
  margin-bottom: 50px;
}

@media (min-width: 480px) {
  .tokyo2020 .prematch-condition__column {
    margin-bottom: 0;
    padding: 0 9px 0 9px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .prematch-condition__column {
    padding: 0 18px;
  }
}

.tokyo2020 .prematch-condition__column--last {
  margin-bottom: 20px;
}

.tokyo2020 .prematch-condition__column--last .prematch-condition {
  margin-right: 0;
  margin-left: 10px;
}

.tokyo2020 .prematch-condition__column--last .prematch-condition__icons {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.tokyo2020 .prematch-condition__column--last .d-flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.tokyo2020 .prematch-condition__column--last .condition-icon {
  margin-right: 0;
  margin-left: 12px;
}

.tokyo2020 .prematch-condition__column .d-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tokyo2020 .condition-event {
  min-width: 260px;
  max-width: 296px;
}

@media (min-width: 480px) {
  .tokyo2020 .condition-event {
    min-width: 210px;
  }
}

@media (min-width: 768px) {
  .tokyo2020 .condition-event {
    min-width: 296px;
  }
}

@media (min-width: 1024px) {
  .tokyo2020 .condition-event {
    min-width: 240px;
  }
}

@media (min-width: 1280px) {
  .tokyo2020 .condition-event {
    min-width: 296px;
  }
}

.tokyo2020 .condition-event__logo {
  max-width: 24px;
  margin-right: 8px;
  border-radius: 0%;
  overflow: hidden;
}

.tokyo2020 .condition-event__date {
  background-color: #ececf3;
  font-size: 0.688rem;
  font-weight: 600;
  height: 24px;
  padding: 4px;
}

.tokyo2020 .condition-event__participant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.813rem;
  padding: 4px 14px;
  -webkit-box-shadow: inset 0 0 1px 0 #e1e1e1;
          box-shadow: inset 0 0 1px 0 #e1e1e1;
  margin-top: -1px;
}

.tokyo2020 .condition-event__score {
  margin-left: auto;
  font-weight: 600;
}

.tokyo2020 .prematch-table__group {
  background-color: #d1b087;
  padding: 10px 13px;
  height: auto;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.tokyo2020 .prematch-table__header {
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  background-color: #c3c3c3;
  height: 26px;
  padding-top: 4px;
}

.tokyo2020 .prematch-table__header .prematch-table__row {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tokyo2020 .prematch-table__header .prematch-table__col {
  color: #fff;
}

.tokyo2020 .prematch-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: inset 0 -1px 0 0 #e1e1e1;
          box-shadow: inset 0 -1px 0 0 #e1e1e1;
}

.tokyo2020 .prematch-table__body .prematch-table__row {
  padding: 10px 0;
}

.tokyo2020 .prematch-table__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.813rem;
  color: #2b2b2b;
}

.tokyo2020 .prematch-table__col:nth-child(1) {
  -webkit-box-flex: 0.04;
      -ms-flex: 0.04;
          flex: 0.04;
}

.tokyo2020 .prematch-table__col:nth-child(2) {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
}

.tokyo2020 .prematch-table__col:nth-child(3) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(4) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(5) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(6) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(7) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(8) {
  -webkit-box-flex: 0.1;
      -ms-flex: 0.1;
          flex: 0.1;
}

.tokyo2020 .prematch-table__col:nth-child(2) {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.tokyo2020 .prematch-table__col:last-child {
  font-weight: bold;
}

.tokyo2020 .prematch-table__col figure {
  width: 20px;
  border-radius: 0%;
  margin-right: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .tokyo2020 .prematch-table__col figure {
    width: 40px;
    height: 40px;
  }
}

/*--------- PEKIN2022 MODULES ---------*/
.icon-hokej-na-lodzie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/hokej-na-lodzie.svg);
}

.icon-hokej-na-lodzie.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/hokej-na-lodzie.svg);
          mask-image: url(images/pekin2022/discipline/hokej-na-lodzie.svg);
}

.icon-hokej-na-lodzie.big {
  background-image: url(images/pekin2022/icons/disciplines/big_hokej.svg);
}

.icon-narciarstwo-alpejskie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/narciarstwo-alpejskie.svg);
}

.icon-narciarstwo-alpejskie.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/narciarstwo-alpejskie.svg);
          mask-image: url(images/pekin2022/discipline/narciarstwo-alpejskie.svg);
}

.icon-narciarstwo-alpejskie.big {
  background-image: url(images/pekin2022/icons/disciplines/big_narciarstwo_alpejskie.svg);
}

.icon-biathlon {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/biathlon.svg);
}

.icon-biathlon.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/biathlon.svg);
          mask-image: url(images/pekin2022/discipline/biathlon.svg);
}

.icon-biathlon.big {
  background-image: url(images/pekin2022/icons/disciplines/big_biathlon.svg);
}

.icon-bobsleje {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/bobsleje.svg);
}

.icon-bobsleje.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/bobsleje.svg);
          mask-image: url(images/pekin2022/discipline/bobsleje.svg);
}

.icon-bobsleje.big {
  background-image: url(images/pekin2022/icons/disciplines/big_bobsleje.svg);
}

.icon-biegi-narciarskie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/biegi-narciarskie.svg);
}

.icon-biegi-narciarskie.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/biegi-narciarskie.svg);
          mask-image: url(images/pekin2022/discipline/biegi-narciarskie.svg);
}

.icon-biegi-narciarskie.big {
  background-image: url(images/pekin2022/icons/disciplines/big_biegi_narciarskie.svg);
}

.icon-curling {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/curling.svg);
}

.icon-curling.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/curling.svg);
          mask-image: url(images/pekin2022/discipline/curling.svg);
}

.icon-curling.big {
  background-image: url(images/pekin2022/icons/disciplines/big_curling.svg);
}

.icon-lyzwiarstwo-figurowe {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/lyzwiarstwo-figurowe.svg);
}

.icon-lyzwiarstwo-figurowe.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/lyzwiarstwo-figurowe.svg);
          mask-image: url(images/pekin2022/discipline/lyzwiarstwo-figurowe.svg);
}

.icon-lyzwiarstwo-figurowe.big {
  background-image: url(images/pekin2022/icons/disciplines/big_lyzwiarstwo_figurowe.svg);
}

.icon-narciarstwo-dowolne {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/narciarstwo-dowolne.svg);
}

.icon-narciarstwo-dowolne.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/narciarstwo-dowolne.svg);
          mask-image: url(images/pekin2022/discipline/narciarstwo-dowolne.svg);
}

.icon-narciarstwo-dowolne.big {
  background-image: url(images/pekin2022/icons/disciplines/big_narciarstwo_dowolne.svg);
}

.icon-saneczkarstwo {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/saneczkarstwo.svg);
}

.icon-saneczkarstwo.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/saneczkarstwo.svg);
          mask-image: url(images/pekin2022/discipline/saneczkarstwo.svg);
}

.icon-saneczkarstwo.big {
  background-image: url(images/pekin2022/icons/disciplines/big_saneczkarstwo.svg);
}

.icon-kombinacja-norweska {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/kombinacja-norweska.svg);
}

.icon-kombinacja-norweska.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/kombinacja-norweska.svg);
          mask-image: url(images/pekin2022/discipline/kombinacja-norweska.svg);
}

.icon-kombinacja-norweska.big {
  background-image: url(images/pekin2022/icons/disciplines/big_kombinacja_norweska.svg);
}

.icon-shorttrack {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/shorttrack.svg);
}

.icon-shorttrack.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/shorttrack.svg);
          mask-image: url(images/pekin2022/discipline/shorttrack.svg);
}

.icon-shorttrack.big {
  background-image: url(images/pekin2022/icons/disciplines/big_short_track.svg);
}

.icon-skeleton {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/skeleton.svg);
}

.icon-skeleton.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/skeleton.svg);
          mask-image: url(images/pekin2022/discipline/skeleton.svg);
}

.icon-skeleton.big {
  background-image: url(images/pekin2022/icons/disciplines/big_skeleton.svg);
}

.icon-skoki-narciarskie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/skoki-narciarskie.svg);
}

.icon-skoki-narciarskie.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/skoki-narciarskie.svg);
          mask-image: url(images/pekin2022/discipline/skoki-narciarskie.svg);
}

.icon-skoki-narciarskie.big {
  background-image: url(images/pekin2022/icons/disciplines/big_skoki_narciarskie.svg);
}

.icon-snowboard {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/snowboard.svg);
}

.icon-snowboard.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/snowboard.svg);
          mask-image: url(images/pekin2022/discipline/snowboard.svg);
}

.icon-snowboard.big {
  background-image: url(images/pekin2022/icons/disciplines/big_snowboarding.svg);
}

.icon-lyzwiarstwo-szybkie {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/discipline/lyzwiarstwo-szybkie.svg);
}

.icon-lyzwiarstwo-szybkie.white {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background-image: none;
  background-color: #fff;
  -webkit-mask-image: url(images/pekin2022/discipline/lyzwiarstwo-szybkie.svg);
          mask-image: url(images/pekin2022/discipline/lyzwiarstwo-szybkie.svg);
}

.icon-lyzwiarstwo-szybkie.big {
  background-image: url(images/pekin2022/icons/disciplines/big_lyzwiarstwo_szybkie.svg);
}

.icon-medal-plus {
  width: 32px;
  height: 48px;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
}

.icon-medal-plus--bronze {
  background-image: url(images/pekin2022/icons/medal-bronze-plus.svg);
}

.icon-medal-plus--silver {
  background-image: url(images/pekin2022/icons/medal-silver-plus.svg);
}

.icon-medal-plus--gold {
  background-image: url(images/pekin2022/icons/medal-gold-plus.svg);
}

.directory-submenu.pekin2022 .directory-submenu__wrapper {
  border-bottom: 1px solid #0032a0;
}

.directory-submenu.pekin2022 .directory-submenu__item--active {
  border-bottom-color: #0032a0;
}

.discipline-results-main.pekin2022 .discipline-results-filters {
  margin-bottom: 40px;
}

.discipline-results-main.pekin2022 .discipline-results-filters__label {
  font-size: 1rem;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
  .discipline-results-main.pekin2022 .discipline-results-filters__label {
    padding-bottom: 0;
  }
}

.discipline-results-main.pekin2022 .discipline-results-filters .controls-options {
  display: block;
}

@media (min-width: 1024px) {
  .discipline-results-main.pekin2022 .discipline-results-filters .controls-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .discipline-results-main.pekin2022 .discipline-results-filters .controls-options__box {
    margin-right: 35px;
  }
}

@media (min-width: 1024px) {
  .discipline-results-main.pekin2022 .discipline-results-filters .controls-options .multiselect {
    margin-left: 15px;
  }
}

.discipline-results-main.pekin2022 .discipline-results-filters .controls-options .multiselect--active .multiselect__tags {
  background: #0032a0;
}

.discipline-results-main.pekin2022 .discipline-results-filters .controls-options .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .discipline-results-main.pekin2022 .discipline-results-filters .controls-options .multiselect__tags {
    width: 210px;
  }
}

.discipline-results-main.pekin2022 .results-table__beam {
  background-color: #b7ddff;
}

.pekin2022 .icon-camera {
  background-image: url(images/pekin2022/icons/camera-pekin.svg);
}

.news-latest__box.pekin2022 .box-small__category::before,
.news-latest .boxes-3-container .box-small.pekin2022 .box-small__category::before,
.news-seealso__wrapper.pekin2022 .box-small__category::before {
  background-color: #b7ddff;
}

.pekin2022 .button-play {
  background-image: url(images/pekin2022/icons/play-pekin.svg);
}

.box-small.pekin2022 .box-small__image {
  position: relative;
}

.box-small.pekin2022 .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-small.pekin2022 .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.box-small.pekin2022 .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.box-small.pekin2022 .box-small__image .button-play {
  background-image: url(images/pekin2022/icons/play-pekin.svg);
}

.box-small.pekin2022 .box-small__category::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #41b6e6;
}

.box-small.pekin2022 .box-small .label__ver-1,
.box-small.pekin2022 .box-small .label__ver-2,
.box-small.pekin2022 .box-small .label__ver-3,
.box-small.pekin2022 .box-small .label__ver-4 {
  background-color: #41b6e6;
}

.pagination.pekin2022 .pagination__number:hover, .pagination.pekin2022 .pagination__number.active {
  border-bottom: 3px solid #0032a0;
}

.home-special.pekin2022 .box-small__image,
.grid-three.pekin2022 .box-small__image {
  position: relative;
}

.home-special.pekin2022 .box-small__image::after,
.grid-three.pekin2022 .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.home-special.pekin2022 .box-small__image::before,
.grid-three.pekin2022 .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
}

.home-special.pekin2022 .box-small__image::after,
.grid-three.pekin2022 .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.home-special.pekin2022 .box-small .label__ver-1,
.home-special.pekin2022 .box-small .label__ver-2,
.home-special.pekin2022 .box-small .label__ver-3,
.home-special.pekin2022 .box-small .label__ver-4,
.grid-three.pekin2022 .box-small .label__ver-1,
.grid-three.pekin2022 .box-small .label__ver-2,
.grid-three.pekin2022 .box-small .label__ver-3,
.grid-three.pekin2022 .box-small .label__ver-4 {
  background-color: #41b6e6;
  color: #fff;
}

.primary.pekin2022 .label__ver-3_1 {
  color: #fff;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__box-image {
  position: relative;
}

.primary.pekin2022 .primary__box-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.pekin2022 .primary__box-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
  background-size: cover;
}

.primary.pekin2022 .primary__box-image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.primary.pekin2022 .primary__box .label__ver-1,
.primary.pekin2022 .primary__box .label__ver-2,
.primary.pekin2022 .primary__box .label__ver-3,
.primary.pekin2022 .primary__box .label__ver-4 {
  color: #fff;
  background-image: none;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__box-category::after {
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__twin-photo {
  position: relative;
}

.primary.pekin2022 .primary__twin-photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.pekin2022 .primary__twin-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 5px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
}

.primary.pekin2022 .primary__twin-photo::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

@media (min-width: 1280px) {
  .primary.pekin2022 .primary__twin-photo::before {
    right: 0;
  }
}

.primary.pekin2022 .primary__twin .label__ver-1,
.primary.pekin2022 .primary__twin .label__ver-2,
.primary.pekin2022 .primary__twin .label__ver-3,
.primary.pekin2022 .primary__twin .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__twin-category::after {
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__large-title::before {
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__large-image {
  position: relative;
}

.primary.pekin2022 .primary__large-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.pekin2022 .primary__large-image figure {
  position: relative;
}

.primary.pekin2022 .primary__large-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
}

.primary.pekin2022 .primary__large-image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

@media (min-width: 768px) {
  .primary.pekin2022 .primary__large-image::before {
    bottom: 0;
  }
}

.primary.pekin2022 .primary__large .label__ver-1,
.primary.pekin2022 .primary__large .label__ver-2,
.primary.pekin2022 .primary__large .label__ver-3,
.primary.pekin2022 .primary__large .label__ver-4 {
  color: #fff;
  background-image: none;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__large-category::after {
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__wide-title::before {
  background-image: none;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__wide .label__ver-1,
.primary.pekin2022 .primary__wide .label__ver-2,
.primary.pekin2022 .primary__wide .label__ver-3,
.primary.pekin2022 .primary__wide .label__ver-4 {
  color: #fff;
  background-image: none;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__double .label__ver-1,
.primary.pekin2022 .primary__double .label__ver-2,
.primary.pekin2022 .primary__double .label__ver-3,
.primary.pekin2022 .primary__double .label__ver-4 {
  color: #fff;
  background-image: none;
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__extended-combined {
  background-image: none;
}

.grid-box.pekin2022 .grid-box__image {
  position: relative;
}

.grid-box.pekin2022 .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.grid-box.pekin2022 .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: center center;
  background-size: cover;
}

.grid-box.pekin2022 .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.grid-box.pekin2022 .grid-box__category::after {
  background-color: #41b6e6;
}

.grid-box.pekin2022 .label__ver-1,
.grid-box.pekin2022 .label__ver-2,
.grid-box.pekin2022 .label__ver-3,
.grid-box.pekin2022 .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.box-big.pekin2022 .box-big__image {
  position: relative;
}

.box-big.pekin2022 .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-big.pekin2022 .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
}

.box-big.pekin2022 .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.box-big.pekin2022 .box-big__paramtitle, .box-big.pekin2022 .box-big__paramtitle--content {
  background-color: #41b6e6;
  color: #fff;
}

.box-big.pekin2022 .label__ver-1,
.box-big.pekin2022 .label__ver-2,
.box-big.pekin2022 .label__ver-3,
.box-big.pekin2022 .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.box-medium.pekin2022 .box-medium__image {
  position: relative;
}

.box-medium.pekin2022 .box-medium__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-medium.pekin2022 .box-medium__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
  background-size: cover;
}

.box-medium.pekin2022 .box-medium__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.box-medium.pekin2022 .label__ver-1,
.box-medium.pekin2022 .label__ver-2,
.box-medium.pekin2022 .label__ver-3,
.box-medium.pekin2022 .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.boxes-one-three-box.pekin2022 .box-big__image {
  position: relative;
}

.boxes-one-three-box.pekin2022 .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-one-three-box.pekin2022 .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
  background-size: cover;
}

.boxes-one-three-box.pekin2022 .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.boxes-one-three-box.pekin2022 .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-one-three-box.pekin2022 .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
  background-size: cover;
}

.boxes-one-three-box.pekin2022 .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.boxes-list-discipline__wrapper.pekin2022 .boxes-list-discipline__img {
  position: relative;
}

.boxes-list-discipline__wrapper.pekin2022 .boxes-list-discipline__img::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.boxes-list-discipline__wrapper.pekin2022 .boxes-list-discipline__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.boxes-list-discipline__wrapper.pekin2022 .boxes-list-discipline__img::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.boxes-list-discipline__wrapper.pekin2022 .news-latest__category::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #41b6e6;
}

.section-grid.pekin2022 .grid-box__image {
  position: relative;
}

.section-grid.pekin2022 .grid-box__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.section-grid.pekin2022 .grid-box__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.section-grid.pekin2022 .grid-box__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.section-grid.pekin2022 .grid-box__category::after {
  background-color: #41b6e6;
}

.section-grid.pekin2022 .grid-box .label__ver-1,
.section-grid.pekin2022 .grid-box .label__ver-2,
.section-grid.pekin2022 .grid-box .label__ver-3,
.section-grid.pekin2022 .grid-box .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.section-grid.pekin2022 h3::before {
  background-color: #41b6e6;
}

section.pekin2022 h3::before {
  background-color: #41b6e6;
}

.pagination.pekin2022 .pagination__number:hover, .pagination.pekin2022 .pagination__number.active {
  border-bottom: 3px solid #41b6e6;
}

.stats-section--playerbg.pekin2022 {
  position: relative;
}

.stats-section--playerbg.pekin2022::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.nts--main .nts__slide.pekin2022 {
  border: 0;
}

.nts--main .nts__slide.pekin2022:hover {
  border: 0;
}

.nts--main .nts__slide.pekin2022 .nts__slide-desc,
.nts--main .nts__slide.pekin2022:hover .nts__slide-desc {
  background: url(images/euro/ns_slide_euro_bg.jpg);
  background-position: right;
  background-size: cover;
}

.nts--main .nts__slide.pekin2022 .nts__slide-title,
.nts--main .nts__slide.pekin2022 .progress-time__time {
  color: #fff;
}

.nts--main .nts__slide.pekin2022 .progress-time__progress {
  background-color: #fff;
}

.grid-three.pekin2022 .grid-three__header {
  color: #fff;
  background-color: #0032a0;
}

.box-small.pekin2022 .box-small__image {
  position: relative;
}

.box-small.pekin2022 .box-small__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.box-small.pekin2022 .box-small__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.box-small.pekin2022 .box-small__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.box-small.pekin2022 .box-small__image .button-play {
  background-image: url(images/pekin2022/icons/play-pekin.svg);
}

.box-small.pekin2022 .box-small__category::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #41b6e6;
}

.box-small.pekin2022 .box-small .label__ver-1,
.box-small.pekin2022 .box-small .label__ver-2,
.box-small.pekin2022 .box-small .label__ver-3,
.box-small.pekin2022 .box-small .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.news-latest__content.pekin2022 .news-latest__image {
  position: relative;
}

.news-latest__content.pekin2022 .news-latest__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.news-latest__content.pekin2022 .news-latest__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.news-latest__content.pekin2022 .news-latest__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.news-latest__content.pekin2022 .news-latest__category::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #41b6e6;
}

@media (min-width: 768px) {
  .news-latest__content.pekin2022 .news-latest__category::after {
    top: 6px;
  }
}

.liveblog.pekin2022 a {
  color: #41b6e6;
}

.liveblog.pekin2022 .liveblog__label::before {
  background-color: #41b6e6;
}

.liveblog.pekin2022 .liveblog__time.first {
  color: #2b2b2b;
}

.liveblog.pekin2022 .liveblog__time.first .liveblog__time-point {
  border: 2px solid #2b2b2b;
}

.liveblog.pekin2022 .liveblog__time.first.event {
  color: #41b6e6;
}

.liveblog.pekin2022 .liveblog__time.first.event .liveblog__time-point {
  border: 2px solid #41b6e6;
}

.directory-standard-list .box-big.pekin2022 .box-big__image {
  position: relative;
}

.directory-standard-list .box-big.pekin2022 .box-big__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.directory-standard-list .box-big.pekin2022 .box-big__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
}

.directory-standard-list .box-big.pekin2022 .box-big__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.directory-standard-list .box-big.pekin2022 .box-big .label__ver-1,
.directory-standard-list .box-big.pekin2022 .box-big .label__ver-2,
.directory-standard-list .box-big.pekin2022 .box-big .label__ver-3,
.directory-standard-list .box-big.pekin2022 .box-big .label__ver-4 {
  color: #fff;
  background-color: #41b6e6;
}

.home-second .right-sidebar--pekin2022 .news-home__wrapper--first span,
.home-second .right-sidebar--pekin2022 .news-home__wrapper--first time {
  color: #41b6e6;
}

.home-second .right-sidebar--pekin2022 .news-home__circle {
  background-color: #41b6e6;
}

.home-second .right-sidebar--pekin2022 .news-home__more .icon-arrow-orange {
  background-image: url(images/pekin2022/icons/arrow-pekin.svg);
}

.grid-three.pekin2022 .box-small__content .box-label {
  z-index: 2;
}

.boxes-one-three-box.pekin2022 .button-play,
.boxes-section.pekin2022 .button-play,
.home-special.pekin2022 .button-play,
.home-discipline.pekin2022 .button-play,
.home-video.pekin2022 .button-play,
.home-photo.pekin2022 .button-play,
.home-boxes.pekin2022 .button-play,
.home-multi.pekin2022 .button-play,
.home-review.pekin2022 .button-play,
.primary.pekin2022 .button-play,
.grid-box.pekin2022 .button-play,
.box-big.pekin2022 .button-play,
.box-medium.pekin2022 .button-play,
.video .box-small.pekin2022 .button-play,
.boxes-list-discipline__wrapper.pekin2022 .button-play,
.news-latest__content.pekin2022 .button-play,
.section-grid.pekin2022 .button-play,
.nts__slide.pekin2022 .button-play,
.grid-three.pekin2022 .button-play,
.liveblog-video.pekin2022 .button-play {
  background-image: url(images/pekin2022/icons/play-pekin.svg);
  z-index: 2;
}

.boxes-one-three-box.pekin2022 .button-more__elem,
.boxes-section.pekin2022 .button-more__elem,
.home-special.pekin2022 .button-more__elem,
.home-discipline.pekin2022 .button-more__elem,
.home-video.pekin2022 .button-more__elem,
.home-photo.pekin2022 .button-more__elem,
.home-boxes.pekin2022 .button-more__elem,
.home-multi.pekin2022 .button-more__elem,
.home-review.pekin2022 .button-more__elem,
.primary.pekin2022 .button-more__elem,
.grid-box.pekin2022 .button-more__elem,
.box-big.pekin2022 .button-more__elem,
.box-medium.pekin2022 .button-more__elem,
.video .box-small.pekin2022 .button-more__elem,
.boxes-list-discipline__wrapper.pekin2022 .button-more__elem,
.news-latest__content.pekin2022 .button-more__elem,
.section-grid.pekin2022 .button-more__elem,
.nts__slide.pekin2022 .button-more__elem,
.grid-three.pekin2022 .button-more__elem,
.liveblog-video.pekin2022 .button-more__elem {
  background: #41b6e6;
  border-color: #41b6e6;
  color: #fff;
}

.boxes-one-three-box.pekin2022 .button-more__elem::before,
.boxes-section.pekin2022 .button-more__elem::before,
.home-special.pekin2022 .button-more__elem::before,
.home-discipline.pekin2022 .button-more__elem::before,
.home-video.pekin2022 .button-more__elem::before,
.home-photo.pekin2022 .button-more__elem::before,
.home-boxes.pekin2022 .button-more__elem::before,
.home-multi.pekin2022 .button-more__elem::before,
.home-review.pekin2022 .button-more__elem::before,
.primary.pekin2022 .button-more__elem::before,
.grid-box.pekin2022 .button-more__elem::before,
.box-big.pekin2022 .button-more__elem::before,
.box-medium.pekin2022 .button-more__elem::before,
.video .box-small.pekin2022 .button-more__elem::before,
.boxes-list-discipline__wrapper.pekin2022 .button-more__elem::before,
.news-latest__content.pekin2022 .button-more__elem::before,
.section-grid.pekin2022 .button-more__elem::before,
.nts__slide.pekin2022 .button-more__elem::before,
.grid-three.pekin2022 .button-more__elem::before,
.liveblog-video.pekin2022 .button-more__elem::before {
  background: #41b6e6;
}

.boxes-one-three-box.pekin2022 .button-more__elem:hover,
.boxes-section.pekin2022 .button-more__elem:hover,
.home-special.pekin2022 .button-more__elem:hover,
.home-discipline.pekin2022 .button-more__elem:hover,
.home-video.pekin2022 .button-more__elem:hover,
.home-photo.pekin2022 .button-more__elem:hover,
.home-boxes.pekin2022 .button-more__elem:hover,
.home-multi.pekin2022 .button-more__elem:hover,
.home-review.pekin2022 .button-more__elem:hover,
.primary.pekin2022 .button-more__elem:hover,
.grid-box.pekin2022 .button-more__elem:hover,
.box-big.pekin2022 .button-more__elem:hover,
.box-medium.pekin2022 .button-more__elem:hover,
.video .box-small.pekin2022 .button-more__elem:hover,
.boxes-list-discipline__wrapper.pekin2022 .button-more__elem:hover,
.news-latest__content.pekin2022 .button-more__elem:hover,
.section-grid.pekin2022 .button-more__elem:hover,
.nts__slide.pekin2022 .button-more__elem:hover,
.grid-three.pekin2022 .button-more__elem:hover,
.liveblog-video.pekin2022 .button-more__elem:hover {
  background-color: #fff;
  border: 1px solid #41b6e6;
  color: #41b6e6;
}

.boxes-one-three-box.pekin2022 .gallery-mark,
.boxes-section.pekin2022 .gallery-mark,
.home-special.pekin2022 .gallery-mark,
.home-discipline.pekin2022 .gallery-mark,
.home-video.pekin2022 .gallery-mark,
.home-photo.pekin2022 .gallery-mark,
.home-boxes.pekin2022 .gallery-mark,
.home-multi.pekin2022 .gallery-mark,
.home-review.pekin2022 .gallery-mark,
.primary.pekin2022 .gallery-mark,
.grid-box.pekin2022 .gallery-mark,
.box-big.pekin2022 .gallery-mark,
.box-medium.pekin2022 .gallery-mark,
.video .box-small.pekin2022 .gallery-mark,
.boxes-list-discipline__wrapper.pekin2022 .gallery-mark,
.news-latest__content.pekin2022 .gallery-mark,
.section-grid.pekin2022 .gallery-mark,
.nts__slide.pekin2022 .gallery-mark,
.grid-three.pekin2022 .gallery-mark,
.liveblog-video.pekin2022 .gallery-mark {
  background-image: url(images/tokyo/gall-icon.svg);
}

.boxes-section.pekin2022 .boxes-one-box .button-play {
  position: static;
}

@media (min-width: 768px) {
  .boxes-one-three-box.pekin2022 .box-big .button-play {
    position: static;
  }
}

.controls-options {
  position: relative;
  z-index: 3;
}

.button-filters {
  padding: 25px 0 0;
  z-index: 1;
}

.button-filter {
  display: inline-block;
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1;
  background-color: #fff;
  border: 2px solid #979797;
  padding: 10px;
  margin-right: 15px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.button-filter.active, .button-filter:hover {
  background-color: #41b6e6;
  color: #fff;
  border-color: #41b6e6;
}

.primary.pekin2022 {
  margin-top: 30px;
}

.primary.pekin2022 .primary__background {
  background-color: #0f97ab;
  padding-bottom: 32px;
  padding-top: 13px;
  background-image: linear-gradient(135deg, #35beed 27%, #2fb9ea 33%, #20a9e2 42%, #0690d5 51%, #008bd2 53%, #004f9f 81%);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}

.primary.pekin2022 .primary__background > * {
  position: relative;
  z-index: 2;
}

.primary.pekin2022 .primary__background::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(images/pekin2022/pekin-module.svg);
}

.primary.pekin2022 .primary__background .primary__broad {
  background: transparent;
}

.primary.pekin2022 .second {
  width: auto;
  margin: 0;
  padding: 0;
}

.primary.pekin2022 .container-fluid {
  padding-left: 3px;
  padding-right: 3px;
}

@media (min-width: 1280px) {
  .primary.pekin2022 .container-fluid {
    padding-left: 13px;
    padding-right: 13px;
  }
}

.primary.pekin2022 .primary__wide-image {
  position: relative;
}

.primary.pekin2022 .primary__wide-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.pekin2022 .primary__wide-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
}

.primary.pekin2022 .primary__wide-image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.primary.pekin2022 .primary__double-image {
  position: relative;
}

.primary.pekin2022 .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.pekin2022 .primary__double-image figure {
  position: relative;
}

.primary.pekin2022 .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-image: url(images/pekin2022/strips-big.svg);
}

.primary.pekin2022 .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.primary.pekin2022 .invert .primary__double-image {
  position: relative;
}

.primary.pekin2022 .invert .primary__double-image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.primary.pekin2022 .invert .primary__double-image figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
}

.primary.pekin2022 .invert .primary__double-image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.primary.pekin2022 .home-outcome {
  background-color: #036473;
}

.primary.pekin2022 .home-outcome__result {
  background-color: #f7a600;
  color: #fff;
}

.primary.pekin2022 .primary__double-title::before {
  background-color: #41b6e6;
}

.primary.pekin2022 .primary__extended-logo {
  width: 139px;
  min-width: 139px;
  height: 19px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/pekin-logo.svg);
  margin-right: 0;
}

@media (min-width: 768px) {
  .primary.pekin2022 .primary__extended-logo {
    width: 263px;
    min-width: 263px;
    height: 25px;
    margin-right: 20px;
  }
}

.primary.pekin2022 .primary__extended-combined {
  width: auto;
  height: 40px;
}

@media (min-width: 768px) {
  .primary.pekin2022 .primary__extended-combined {
    width: auto;
    height: 61px;
  }
}

@media (min-width: 1024px) {
  .primary.pekin2022 .primary__extended-combined {
    width: auto;
    height: 68px;
  }
}

.primary.pekin2022 .primary__extended-nav ul {
  width: 100%;
  overflow-x: auto;
}

.primary.pekin2022 .primary__extended-nav ul::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

.primary.pekin2022 .primary__extended-nav ul::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #d9d9d9;
}

.primary.pekin2022 .primary__extended-nav ul::-webkit-scrollbar-thumb {
  background: #41b6e6;
  border-radius: 10px;
}

.primary.pekin2022 .primary__extended-nav ul:hover {
  cursor: pointer;
}

.primary.pekin2022 .primary__button {
  background-color: #0032a0;
  text-transform: uppercase;
  font-size: 0.813rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.46;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.primary.pekin2022 .primary__button-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.primary.pekin2022 .primary__button:hover {
  background-color: #41b6e6;
  border: 1px solid #0032a0;
  color: #fff;
}

.primary.pekin2022 .primary__twin-label {
  top: 10px;
}

@media (min-width: 768px) {
  .primary.pekin2022 .primary__twin-label {
    top: 15px;
  }
}

.primary.pekin2022 .primary__twin-content {
  padding: 30px 15px 15px 15px;
}

@media (min-width: 768px) {
  .primary.pekin2022 .primary__twin-content {
    padding: 34px 15px 15px 15px;
  }
}

.primary.pekin2022 .primary__twin-title {
  -webkit-line-clamp: 2;
  max-height: calc(1.1rem * 2);
}

@media (min-width: 768px) {
  .primary.pekin2022 .primary__twin-title {
    -webkit-line-clamp: 3;
    max-height: calc(1.4rem * 3);
  }
}

.primary.pekin2022 .primary__extended-nav ul li a:hover {
  color: #0032a0;
  text-shadow: none;
}

.primary.pekin2022 .primary__box-label {
  z-index: 3;
}

.event-navbar-top--slim.event-navbar-top.pekin2022 {
  min-height: 44px;
}

.event-navbar-top.pekin2022 {
  background-image: url("images/pekin2022/news-navbar-background.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  min-height: 133px;
}

@media (max-width: 768px) {
  .event-navbar-top.pekin2022 {
    background-size: cover;
    min-height: 137px;
  }
}

.event-navbar-top.pekin2022 .event-navbar-top__broadcaster {
  padding-top: 3px;
  height: 85px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event-navbar-top.pekin2022 .event-navbar-top__logo {
  padding-top: 33px;
}

.event-navbar-top.pekin2022 .event-navbar-top__logo svg {
  width: 179px;
  min-width: 179px;
  max-width: 179px;
}

@media (min-width: 768px) {
  .event-navbar-top.pekin2022 .event-navbar-top__logo svg {
    width: 370px;
    min-width: 200px;
    max-width: 370px;
  }
}

.event-navbar-top.pekin2022 .event-navbar-menu {
  background-color: #0032a0;
}

.event-navbar-top.pekin2022 .event-navbar-menu__logo--pekin2022 {
  position: relative;
  top: 2px;
  max-width: 90%;
}

@media (min-width: 768px) {
  .event-navbar-top.pekin2022 .event-navbar-menu__logo--pekin2022 {
    max-width: none;
  }
}

.event-navbar-top.pekin2022 .event-navbar-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-navbar-top.pekin2022 .navbar-menu-wrapper {
  padding-left: 5px;
}

.event-navbar-top.pekin2022 .navbar-menu-wrapper a.active {
  color: #fff;
  font-weight: bold;
}

.event-navbar-top.pekin2022 .navbar-menu-wrapper a.active::after {
  background-color: #fff;
}

.home-slider__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

.home-slider__wrapper {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .home-slider__wrapper::after {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 50, 160, 0)), color-stop(80%, rgba(0, 50, 160, 0.7)));
    background-image: linear-gradient(to left, rgba(0, 50, 160, 0) 0%, rgba(0, 50, 160, 0.7) 80%);
  }
}

.home-slider__category {
  font-size: 0.813rem;
  color: #2b2b2b;
  font-weight: 700;
  line-height: 1.38;
}

.home-slider__category::after {
  background-color: #41b6e6;
}

.home-slider__category.pekin2022::after {
  background-color: #41b6e6;
}

@media (min-width: 768px) {
  .home-slider__category {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.38;
  }
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-prev::after {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 32px;
  background-image: url(images/pekin2022/icons/arrow-grey-prev-pekin.svg);
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-prev::after {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 32px;
    background-image: url(images/pekin2022/icons/arrow-grey-prev-pekin.svg);
  }
}

.home-slider .VueCarousel-navigation .VueCarousel-navigation-next::after {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 32px;
  background-image: url(images/pekin2022/icons/arrow-grey-next-pekin.svg);
}

@media (min-width: 768px) {
  .home-slider .VueCarousel-navigation .VueCarousel-navigation-next::after {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 32px;
    background-image: url(images/pekin2022/icons/arrow-grey-next-pekin.svg);
  }
}

.home-slider.pekin2022 .home-slider__heading::before {
  background-color: #41b6e6;
}

.home-slider.pekin2022 .home-slider__text.pekin2022 {
  background-color: #41b6e6;
}

@media (min-width: 768px) {
  .home-slider.pekin2022 .home-slider__text.pekin2022 {
    background-color: transparent;
  }
}

.home-slider.pekin2022 .home-slider__text.pekin2022 .home-slider__category,
.home-slider.pekin2022 .home-slider__text.pekin2022 .home-slider__title,
.home-slider.pekin2022 .home-slider__text.pekin2022 .home-slider__description {
  color: #fff;
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-prev::after {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 32px;
  background-image: url(images/pekin2022/icons/arrow-grey-prev-pekin.svg);
}

@media (min-width: 768px) {
  .home-photo .VueCarousel-navigation .VueCarousel-navigation-prev::after {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 32px;
    background-image: url(images/pekin2022/icons/arrow-grey-prev-pekin.svg);
  }
}

.home-photo .VueCarousel-navigation .VueCarousel-navigation-next::after {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 32px;
  background-image: url(images/pekin2022/icons/arrow-grey-next-pekin.svg);
}

@media (min-width: 768px) {
  .home-photo .VueCarousel-navigation .VueCarousel-navigation-next::after {
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16px;
    height: 32px;
    background-image: url(images/pekin2022/icons/arrow-grey-next-pekin.svg);
  }
}

.home-video.pekin2022 .home-video__frame {
  background-color: #0032a0;
}

.home-video.pekin2022 .home-video__subtitle {
  color: #fff;
}

.home-video.pekin2022 .home-video__content:hover {
  background-color: #41b6e6;
}

@media (min-width: 1280px) {
  .home-video.pekin2022 .home-video__lists:after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(23, 26, 31, 0)), to(#171a1f));
    background-image: linear-gradient(to bottom, rgba(23, 26, 31, 0), #171a1f);
  }
}

.home-video.pekin2022 .home-video__heading::before {
  background-color: #41b6e6;
}

.home-boxes {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .home-boxes {
    margin-bottom: 20px;
  }
}

.home-boxes__heading {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .home-boxes__heading {
    font-size: 2rem;
    padding-top: 20px;
    padding-bottom: 15px;
    line-height: 0.94;
  }
}

@media (min-width: 1280px) {
  .home-boxes__heading {
    padding-left: 0;
  }
}

.home-boxes__slider {
  position: relative;
  left: 0;
  width: 100%;
}

@media (min-width: 1280px) {
  .home-boxes__slider {
    width: calc(100% + 26px);
    left: -13px;
  }
}

.home-boxes__box {
  position: relative;
  margin: 0 3px;
}

@media (min-width: 1280px) {
  .home-boxes__box {
    margin: 0 13px;
  }
}

.home-boxes__box:hover .home-boxes__content {
  background-color: #e0e0eb;
}

.home-boxes__url {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 9;
  text-indent: 200%;
  overflow: hidden;
}

.home-boxes__content {
  min-height: 180px;
  background-color: #fff;
  padding: 18px 15px 15px 15px;
}

.home-boxes__title {
  font-size: 1.125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

@media (min-width: 1280px) {
  .home-boxes__title {
    font-size: 1.313rem;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 1.33;
  }
}

@media (max-width: 767px) {
  .home-boxes__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

.home-boxes__image {
  position: relative;
}

.home-boxes__image .button-play {
  left: auto;
  bottom: auto;
  width: 35px;
  height: 35px;
  position: relative;
  margin-right: 10px;
}

.home-boxes__indicators {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.home-boxes__duration {
  font-size: 0.688rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  padding: 4px 7px;
  background-color: #2a2a2a;
}

.home-boxes__category {
  position: absolute;
  z-index: 100;
  left: 16px;
  bottom: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 0.688rem;
  color: #2a2a2a;
  font-weight: 600;
}

.home-boxes__category::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 55px;
  height: 4px;
  background-color: #c8c8d3;
}

.home-boxes__category:hover {
  cursor: pointer;
}

.home-boxes .VueCarousel-dot {
  padding: 0 5px 0 5px !important;
}

.home-boxes .VueCarousel-dot-button {
  background: transparent !important;
  border: 1px solid #2a2a2a !important;
  width: 6px !important;
  height: 6px !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button {
  background: #2a2a2a !important;
}

.home-boxes .VueCarousel-dot--active .VueCarousel-dot-button:focus {
  outline: none !important;
}

.home-boxes .VueCarousel-navigation {
  display: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation {
    display: block;
  }
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-pagination {
    display: none;
  }
}

.home-boxes .VueCarousel-navigation-prev {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  left: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-prev {
    left: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-prev::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/pekin2022/icons/arrow-grey-prev-pekin.svg);
}

.home-boxes .VueCarousel-navigation-prev:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-next {
  width: 30px;
  height: 90px;
  background-color: #fff !important;
  right: 25px !important;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  background-image: none;
}

@media (min-width: 1280px) {
  .home-boxes .VueCarousel-navigation-next {
    right: 22px !important;
  }
}

.home-boxes .VueCarousel-navigation-next::after {
  position: relative;
  top: -8px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 32px;
  background-image: url(images/pekin2022/icons/arrow-grey-next-pekin.svg);
}

.home-boxes .VueCarousel-navigation-next:hover {
  cursor: pointer;
  background-image: none;
}

.home-boxes .VueCarousel-navigation-button {
  top: 53% !important;
  color: transparent !important;
}

.home-boxes .VueCarousel-navigation--disabled {
  opacity: 0 !important;
  cursor: default !important;
}

.home-boxes .button-more {
  margin: 20px auto 0;
}

.home-boxes.pekin2022 .home-boxes__image {
  position: relative;
}

.home-boxes.pekin2022 .home-boxes__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-boxes.pekin2022 .home-boxes__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.home-boxes.pekin2022 .home-boxes__category::after {
  background-color: #41b6e6;
}

.home-boxes.pekin2022 .home-boxes__heading::before {
  background-color: #41b6e6;
}

.timetable.pekin2022 .timetable__name i {
  width: 34px;
  min-width: 34px;
  height: 52px;
  margin-left: 16px;
  margin-right: 8px;
  display: none;
}

@media (min-width: 768px) {
  .timetable.pekin2022 .timetable__name i {
    display: inline-block;
  }
}

.timetable.pekin2022 .timetable__head .timetable__name {
  background-color: #d6d2c4;
}

.timetable.pekin2022 .timetable__head th {
  background-color: #d6d2c4;
}

.timetable.pekin2022 .timetable__content .timetable__name {
  background-color: #d6d2c4;
}

.timetable.pekin2022 .timetable__content .timetable__name a {
  color: inherit;
}

.timetable.pekin2022 .timetable__content .timetable__name a:hover {
  color: #41b6e6;
}

.timetable.pekin2022 .timetable__content th {
  background-color: rgba(214, 210, 196, 0.25);
}

.timetable.pekin2022 .timetable__content th.active:hover {
  background-color: #d6d2c4;
}

.timetable.pekin2022 .timetable__yellow {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/tokyo/timetable/yellow.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__gray {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/tokyo/timetable/gray.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__flag {
  width: 22px;
  height: 13px;
  position: absolute;
  top: 2px;
  right: 2px;
  background: url(images/tokyo/timetable/flag.png) no-repeat center center;
}

.timetable.pekin2022 .timetable__popup {
  position: fixed;
  width: 300px;
  background-color: #fff;
  z-index: 1;
  display: none;
}

.timetable.pekin2022 .timetable__popup-header {
  background-color: #0032a0;
}

.timetable.pekin2022 .timetable__popup-text a {
  background-color: #41b6e6;
  color: #fff;
}

.timetable.pekin2022 .timetable__popup-text a:hover {
  background-color: #0032a0;
  color: #fff;
}

.timetable.pekin2022 .timetable__popup-text a:hover i {
  background-image: url(images/tokyo/timetable/small-arrow-white.svg);
}

.timetable.pekin2022 .timetable__popup-right a i {
  background-image: url(images/icons/arrow-black.svg);
  width: 12px;
  height: 5px;
}

.timetable.pekin2022 .timetable__popup-right a:hover {
  color: #0032a0;
}

.timetable.pekin2022 .timetable__popup.show {
  display: block;
}

.timetable.pekin2022 .timetable__yellow {
  background: url(images/pekin2022/icons/symbol-yellow.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__gray {
  background: url(images/pekin2022/icons/symbol-blue.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__symbol-yellow {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/pekin2022/icons/symbol-yellow.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__symbol-blue {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/pekin2022/icons/symbol-blue.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__symbol-green {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(images/pekin2022/icons/symbol-green.svg) no-repeat center center;
}

.timetable.pekin2022 .timetable__legend .timetable__symbol-yellow,
.timetable.pekin2022 .timetable__legend .timetable__symbol-green,
.timetable.pekin2022 .timetable__legend .timetable__symbol-blue {
  position: relative;
  left: auto;
  top: auto;
  -webkit-transform: none;
          transform: none;
  margin-left: 10px;
}

.timetable.pekin2022 .timetable__legend-info {
  font-size: 1rem;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 15px;
  margin-top: 3px;
}

.timetable.pekin2022 .timetable__legend-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  position: relative;
}

.timetable.pekin2022 .timetable__legend-entry .timetable__flag {
  position: static;
}

.event-disciplines-menu.pekin2022 .event-disciplines-menu__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.event-disciplines-menu.pekin2022 .event-disciplines-menu__arrow--prev {
  left: 10px;
}

@media (min-width: 1440px) {
  .event-disciplines-menu.pekin2022 .event-disciplines-menu__arrow--prev {
    left: 0;
  }
}

.event-disciplines-menu.pekin2022 .event-disciplines-menu__arrow--next {
  right: 10px;
}

@media (min-width: 1440px) {
  .event-disciplines-menu.pekin2022 .event-disciplines-menu__arrow--next {
    right: 0;
  }
}

.event-disciplines-menu.pekin2022 .disciplines-menu {
  padding-bottom: 10px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  overflow-x: auto;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.event-disciplines-menu.pekin2022 .disciplines-menu::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

.event-disciplines-menu.pekin2022 .disciplines-menu::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #d9d9d9;
}

.event-disciplines-menu.pekin2022 .disciplines-menu::-webkit-scrollbar-thumb {
  background: #41b6e6;
  border-radius: 10px;
}

.event-disciplines-menu.pekin2022 .disciplines-menu:hover {
  cursor: pointer;
}

@media (min-width: 1440px) {
  .event-disciplines-menu.pekin2022 .disciplines-menu {
    width: 100%;
  }
}

.event-disciplines-menu.pekin2022 .disciplines-menu__item {
  color: #41b6e6;
  min-width: 86px;
}

.event-disciplines-menu.pekin2022 .disciplines-menu__item img {
  width: 42px;
  margin-bottom: 6px;
}

.event-disciplines-menu.pekin2022 .disciplines-menu__label {
  font-size: 0.6875rem;
  color: #41b6e6;
  font-weight: 600;
  line-height: 11px;
}

.pekin2022 .epg-calendar {
  margin-bottom: 18px;
}

.pekin2022 .epg-calendar__wrapper {
  display: grid;
  grid-gap: 14px;
  grid-template-columns: 100%;
}

@media (min-width: 768px) {
  .pekin2022 .epg-calendar__wrapper {
    grid-template-columns: 240px calc(100% - 270px);
  }
}

.pekin2022 .epg-calendar__day {
  margin: 0 2px;
}

.pekin2022 .epg-calendar__day-indicator {
  background-color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 20px;
  color: #2b2b2b;
  position: relative;
  border: 1px solid #d9d9d9;
  height: 46px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media (min-width: 768px) {
  .pekin2022 .epg-calendar__day-indicator {
    margin-top: 40px;
    font-size: 1.313rem;
    height: 72px;
  }
}

.pekin2022 .epg-calendar__day-indicator.active {
  background-color: #41b6e6;
  color: #fff;
  cursor: default;
}

.pekin2022 .epg-calendar__day-indicator.active:after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #41b6e6;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
          transform: translate(-50%, 50%) rotate(45deg);
  z-index: 1;
}

.pekin2022 .epg-day {
  text-align: center;
  color: #262626;
  background-color: #fff;
  border: 1px solid rgba(37, 42, 55, 0.5);
  padding: 11px 0 17px;
  width: 74px;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  display: block;
  opacity: 0.5;
  pointer-events: none;
}

.pekin2022 .epg-day:hover {
  border-color: silver;
}

.pekin2022 .epg-day--weekend {
  background-color: #b7ddff;
}

.pekin2022 .epg-day--active {
  background-color: #2b2b2b;
  color: #fff;
  position: relative;
  cursor: default;
}

.pekin2022 .epg-day--active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-color: #2b2b2b transparent transparent;
  border-width: 10px;
  border-style: solid;
}

.pekin2022 .epg-day--available {
  opacity: 1;
  pointer-events: auto;
}

.pekin2022 .epg-day__month {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  font-size: 1rem;
  color: #262626;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pekin2022 .epg-day__number {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.14em;
  margin-bottom: 5px;
}

.pekin2022 .epg-day__name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.pekin2022 .epg-calendar {
  padding-left: 36px;
  padding-right: 36px;
}

.pekin2022 .epg-calendar .epg-day-slide .epg-day__month {
  opacity: 0;
}

.pekin2022 .epg-calendar .epg-day-slide .epg-day--firstofmonth .epg-day__month {
  opacity: 1;
}

.pekin2022 .epg-calendar .epg-day-slide ~ .VueCarousel-slide-active .epg-day__month {
  opacity: 1;
  background-color: #f5f5f5;
  padding: 0 10px;
  left: -10px;
}

.pekin2022 .epg-calendar .VueCarousel-slide-active + .epg-day-slide .epg-day--firstofmonth .epg-day__month {
  opacity: 0;
}

.pekin2022 .epg-calendar .VueCarousel-wrapper {
  padding-top: 40px;
}

.pekin2022 .epg-calendar .VueCarousel-navigation-prev::before,
.pekin2022 .epg-calendar .VueCarousel-navigation-next::before {
  content: '';
  display: block;
  width: 18px;
  height: 36px;
  position: absolute;
  top: 0;
}

.pekin2022 .epg-calendar .VueCarousel-navigation-prev::before {
  background: transparent url("images/icons/slide-euro-arrow-left.svg") no-repeat center center;
  background-size: cover;
  left: 2px;
}

.pekin2022 .epg-calendar .VueCarousel-navigation-next::before {
  background: transparent url("images/icons/slide-euro-arrow-right.svg") no-repeat center center;
  background-size: cover;
  right: 2px;
}

.pekin2022 .fixed-calendar .epg-section--calendar {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.pekin2022 .fixed-calendar .epg-section--slider {
  padding-bottom: 138px;
}

.pekin2022 .fixed-calendar.scrolled .epg-section--calendar {
  top: 54px;
}

.pekin2022 .epg-tabs__item--active {
  background-color: #41b6e6;
}

.pekin2022 .epg-tabs__item--active::after {
  border-color: #41b6e6 transparent transparent;
}

.pekin2022 .epg-day-set__date::before {
  background-color: #41b6e6;
}

.pekin2022 .epg-item__cto .cto-btn {
  color: #fff;
  border-color: #41b6e6;
}

.pekin2022 .epg-item__cto .cto-btn--online {
  background-color: #41b6e6;
  color: #fff;
}

.pekin2022 .epg-item__cto .cto-btn--online svg {
  fill: #fff;
}

.disciplines-item.pekin2022 .disciplines-item__name {
  font-size: 1rem;
  color: #41b6e6;
  font-weight: 700;
  letter-spacing: 1.3;
}

.disciplines-item.pekin2022 .disciplines-item__image {
  margin-right: 30px;
  width: 64px;
  height: 96px;
  border-radius: 10px;
}

.disciplines-item.pekin2022 .disciplines-item__image .img-responsive {
  height: 96px;
  width: 64px;
  margin: auto;
  border-radius: 10px;
}

.pekin2022 .results-table {
  margin-bottom: 36px;
}

.pekin2022 .results-table__beam {
  background-color: #b7ddff;
  font-size: 0.875rem;
  color: #2b2b2b;
  font-weight: 600;
}

.pekin2022 .results-table__link {
  font-size: 0.75rem;
  color: #f05a22;
  text-transform: none;
  display: inline-block;
  border: 1px solid #f05a22;
  background-color: #fff;
  padding: 4px 11px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.pekin2022 .results-table__link:hover {
  background-color: #f05a22;
  color: #fff;
}

.pekin2022 .results-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pekin2022 .results-table__row.highlighted {
  background-color: #e2eefa;
}

.pekin2022 .results-table__col--toRight {
  margin-left: auto;
}

.pekin2022 .results-table__col--textRight {
  text-align: right;
}

.pekin2022 .results-table__col--country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pekin2022 .results-table__header .results-table__row, .pekin2022 .results-table__content .results-table__row {
  border-bottom: 1px solid #d7d7d7;
}

.pekin2022 .results-table__header .results-table__row--h2h, .pekin2022 .results-table__content .results-table__row--h2h {
  display: block;
  border-bottom: 0;
  padding: 0 !important;
}

.pekin2022 .results-table__header .results-table__col:nth-child(1), .pekin2022 .results-table__content .results-table__col:nth-child(1) {
  width: 35px;
  padding-right: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__col:nth-child(1), .pekin2022 .results-table__content .results-table__col:nth-child(1) {
    width: 60px;
  }
}

@media (max-width: 767px) {
  .pekin2022 .results-table__header .results-table__col:nth-child(1) .icon-medal, .pekin2022 .results-table__content .results-table__col:nth-child(1) .icon-medal {
    width: 21px;
    height: 21px;
  }
}

.pekin2022 .results-table__header .results-table__col:nth-child(2), .pekin2022 .results-table__content .results-table__col:nth-child(2) {
  width: 60%;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__col:nth-child(2), .pekin2022 .results-table__content .results-table__col:nth-child(2) {
    width: 30%;
  }
}

.pekin2022 .results-table__header .results-table__col:nth-child(3), .pekin2022 .results-table__content .results-table__col:nth-child(3) {
  width: 15%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10px;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__col:nth-child(3), .pekin2022 .results-table__content .results-table__col:nth-child(3) {
    width: 40%;
  }
}

.pekin2022 .results-table__header .results-table__col:nth-child(4), .pekin2022 .results-table__content .results-table__col:nth-child(4) {
  width: 20%;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__col:nth-child(4), .pekin2022 .results-table__content .results-table__col:nth-child(4) {
    width: 15%;
  }
}

.pekin2022 .results-table__header .results-table__col--skijumping, .pekin2022 .results-table__content .results-table__col--skijumping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.pekin2022 .results-table__header .results-table__col--skijumping > div, .pekin2022 .results-table__content .results-table__col--skijumping > div {
  margin-left: 10px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pekin2022 .results-table__header .results-table__col--skijumping > div:nth-child(1), .pekin2022 .results-table__header .results-table__col--skijumping > div:nth-child(2), .pekin2022 .results-table__content .results-table__col--skijumping > div:nth-child(1), .pekin2022 .results-table__content .results-table__col--skijumping > div:nth-child(2) {
  display: none;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__col--skijumping > div:nth-child(1), .pekin2022 .results-table__header .results-table__col--skijumping > div:nth-child(2), .pekin2022 .results-table__content .results-table__col--skijumping > div:nth-child(1), .pekin2022 .results-table__content .results-table__col--skijumping > div:nth-child(2) {
    display: block;
  }
}

.pekin2022 .results-table__header .results-table__col--country > figure, .pekin2022 .results-table__content .results-table__col--country > figure {
  width: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 7px;
}

.pekin2022 .results-table__header .results-table__col--country .img-placeholder, .pekin2022 .results-table__content .results-table__col--country .img-placeholder {
  padding-bottom: 25px !important;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__col--country, .pekin2022 .results-table__content .results-table__col--country {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pekin2022 .results-table__header {
  font-size: 0.875rem;
  color: #656565;
}

.pekin2022 .results-table__header .results-table__row {
  padding: 12px 10px;
  max-height: 43px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__header .results-table__row {
    padding: 12px 25px;
  }
}

.pekin2022 .results-table__content {
  font-size: 1rem;
}

.pekin2022 .results-table__content .results-table__row {
  padding: 15px 10px;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__content .results-table__row {
    smax-height: 57px;
    padding: 18px 25px;
  }
}

.pekin2022 .results-table__content a.results-table__name {
  color: inherit;
}

.pekin2022 .results-table__content a.results-table__name:hover {
  color: #f05a22;
}

.pekin2022 .results-table__countryname {
  display: none;
}

@media (min-width: 768px) {
  .pekin2022 .results-table__countryname {
    display: inline;
  }
}

.pekin2022 .results-table__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 27px;
}

.pekin2022 .results-table__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  color: inherit;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #d7d7d7;
  padding: 4px 11px;
  background-color: #fff;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

.pekin2022 .results-table__more:hover {
  background-color: transparent;
}

.pekin2022 .results-table__more svg {
  margin-left: 7px;
}

.sidebar-list.pekin2022 .gallery-mark {
  background-image: url(images/pekin2022/icons/gall-icon.svg);
}

.sidebar-list.pekin2022 .sidebar-medals tbody tr.highlight {
  background-color: #b7ddff;
}

.boxes-section__header {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 32px;
  position: relative;
  margin-bottom: 25px;
}

.boxes-section__header::before {
  content: '';
  display: block;
  position: absolute;
  top: -5px;
  width: 160px;
  height: 3px;
  background-color: #41b6e6;
}

.boxes-one-box .box-big__content.pt {
  z-index: 2;
}

.medal-standing__header, .medal-standing__row {
  min-width: 320px;
}

.medal-standing__select-country {
  margin-bottom: 40px;
}

.medal-standing__select-country .multiselect {
  min-width: 230px;
}

.medal-standing__select-country .multiselect__option--highlight {
  background: #b7ddff;
}

.medal-standing__select-country .multiselect__option--selected {
  background: #b7ddff;
}

.medal-standing__select-country .multiselect__option--selected.multiselect__option--highlight {
  background: #0032a0;
}

.medal-standing__select-country .multiselect__option--selected.multiselect__option--highlight .option__title {
  color: #fff;
}

.medal-standing__circle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.medal-standing__circle {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.medal-standing__circle svg {
  width: 140px;
  height: 140px;
}

@media (min-width: 768px) {
  .medal-standing__circle svg {
    width: 190px;
    height: 190px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__circle svg {
    width: 230px;
    height: 230px;
  }
}

.medal-standing__label {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.medal-standing__value {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 35%;
}

@media (min-width: 768px) {
  .medal-standing__value {
    font-size: 2.25rem;
  }
}

.medal-standing__country-name {
  font-size: 1.125rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.medal-standing__country-name img {
  margin-right: 5px;
}

.medal-standing__td:nth-child(8) {
  min-width: 50px;
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .medal-standing__td:nth-child(8) {
    min-width: 80px;
  }
}

@media (min-width: 1024px) {
  .medal-standing__td:nth-child(8) {
    width: 10%;
  }
}

.medal-standing__tr:nth-child(8) {
  min-width: 80px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .medal-standing__tr:nth-child(8) {
    width: 10%;
  }
}

.medal-standing__link {
  border: 2px solid #2b2b2b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  padding: 6px 10px;
  margin-right: 15px;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.medal-standing__link span {
  margin-right: 10px;
  display: none;
}

@media (min-width: 768px) {
  .medal-standing__link span {
    display: inline;
  }
}

.medal-standing-table__title {
  font-size: 1.3125rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
}

.medal-standing-table__title .icon-medal {
  margin-right: 15px;
}

.medal-standing-table__list {
  margin-bottom: 30px;
}

.medal-standing-table__header {
  background-color: #fff;
}

.medal-standing-table__row, .medal-standing-table__header {
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #d9d9d9;
  padding: 23px 29px;
}

.medal-standing-table__row {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.medal-standing-table__link {
  border: 2px solid #2b2b2b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  padding: 6px 10px;
  margin-right: 15px;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.medal-standing-table__link span {
  margin-right: 10px;
}

.olympic-pages-header__title {
  font-size: 2rem;
  color: #2b2b2b;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .olympic-pages-header__title {
    margin-bottom: 26px;
    font-size: 2.625rem;
    line-height: 1.19;
  }
}

@media (min-width: 1280px) {
  .olympic-pages-header__title {
    font-size: 3.375rem;
    line-height: 1.15;
  }
}

.kadra-main .controls-options {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .kadra-main .controls-options .multiselect {
    max-width: 215px;
  }
}

.kadra-main .controls-options .multiselect__tags {
  width: 100%;
}

@media (min-width: 1024px) {
  .kadra-main .controls-options .multiselect__tags {
    max-width: 215px;
  }
}

.kadra-main .controls-options .multiselect__placeholder {
  color: #262626;
  padding-left: 5px;
}

.kadra-main .controls-options .multiselect--active .multiselect__tags {
  background-color: #0032a0;
  color: #fff;
}

.kadra-main .controls-options .multiselect__option--highlight,
.kadra-main .controls-options .multiselect__option--selected.multiselect__option--highlight {
  color: #fff;
  background-color: #b7ddff;
}

.kadra-main__label {
  min-width: 160px;
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .kadra-main__label {
    margin-bottom: 10px;
  }
}

.kadra-main__button {
  width: 100%;
  max-width: 1026px;
  margin-bottom: 20px;
}

.kadra-main__button .button-expand {
  background-color: #fff;
  margin-top: 0;
}

.kadra-main .twitter {
  display: none;
}

@media (min-width: 1280px) {
  .kadra-main .twitter {
    display: block;
  }
}

.kadra-discipline {
  position: relative;
}

.kadra-discipline__label::before {
  background-color: #41b6e6;
}

.kadra-discipline__bgimage {
  height: 96px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.kadra-discipline__box {
  position: relative;
  margin-bottom: 26px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 22px;
  background-color: #fff;
}

.kadra-discipline__box-content {
  position: relative;
  min-height: 105px;
  padding: 18px 15px 15px 15px;
  -webkit-transition: 0.25s ease-in-out;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.kadra-discipline__box-title {
  overflow: hidden;
  font-size: 1.3125rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.33;
}

.kadra-discipline__box-photo {
  max-height: 140px;
  position: relative;
  overflow: hidden;
}

.kadra-discipline__box-photo::before, .kadra-discipline__box-photo::after {
  display: none;
}

.kadra-discipline__box-photo img {
  height: auto;
}

@media (max-width: 768px) {
  .kadra-discipline__box {
    width: auto;
  }
}

@media (max-width: 600px) {
  .kadra-discipline__box {
    width: auto;
  }
}

.kadra-discipline__boxes {
  display: block;
  width: auto;
  margin-left: 0;
}

.pekin2022 .epg-item__category--live {
  background-color: #41b6e6;
  color: #fff;
}

.pekin2022 .news-lead a,
.pekin2022 .news-lead a:visited {
  color: #41b6e6;
}

.pekin2022 .news-text__paragraph p a b,
.pekin2022 .news-text__paragraph p a,
.pekin2022 .news-text__paragraph p b a {
  color: #41b6e6;
}

.pekin2022 .news-text center a,
.pekin2022 .news-text p b a,
.pekin2022 .news-text p big a {
  position: relative;
  width: 100%;
  display: inline-block;
  margin: 10px 0;
  background-color: #fff;
  padding: 13px 40px 13px 20px;
  font-size: 1.125rem;
  color: #41b6e6;
  font-weight: 700;
  line-height: 1.33;
  text-align: left;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-repeat: no-repeat;
  background-size: 12px 5px;
  background-position: right 20px center;
  background-image: url(images/pekin2022/icons/arrow-pekin.svg);
}

.pekin2022 .news-text b,
.pekin2022 .news-text h3,
.pekin2022 .news-text h4,
.pekin2022 .news-text h5 {
  font-weight: 700;
}

.pekin2022 .news-text .icon-arrow-orange {
  left: auto;
  right: 20px;
}

.pekin2022 .news-seealso__wrapper.pekin2022 .news-seealso__image {
  position: relative;
}

.pekin2022 .news-seealso__wrapper.pekin2022 .news-seealso__image::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.pekin2022 .news-seealso__wrapper.pekin2022 .news-seealso__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(images/pekin2022/strips-big.svg);
  background-position: right bottom;
  background-size: contain;
}

.pekin2022 .news-seealso__wrapper.pekin2022 .news-seealso__image::after {
  content: "";
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

@media (min-width: 1280px) {
  .pekin2022 .news-seealso__title {
    padding-bottom: 27px;
  }
}

.pekin2022 .news-latest__box.pekin2022 .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #41b6e6;
  margin-bottom: 6px;
}

.pekin2022 .news-latest__box.pekin2022 .button-play {
  background-image: url(images/pekin2022/icons/play-pekin.svg);
}

.pekin2022 .news-latest__box.pekin2022 .news-latest__photo {
  position: relative;
}

.pekin2022 .news-latest__box.pekin2022 .news-latest__photo::after {
  display: block;
  -webkit-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}

.pekin2022 .news-latest__box.pekin2022 .news-latest__photo::before {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/pekin2022/strips-big.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}

.pekin2022 .news-latest__box.pekin2022 .news-latest__photo::after {
  content: '';
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 3%, rgba(0, 50, 160, 0.7) 100%);
}

.pekin2022 .news-latest .boxes-3-container .box-small.pekin2022 .box-small__category::before {
  display: block;
  content: "";
  width: 55px;
  height: 3px;
  background-color: #41b6e6;
  margin-bottom: 6px;
}

.pekin2022 .transmission-title,
.pekin2022 .transmission-player {
  background-color: #41b6e6;
}

.pekin2022 .transmission-header {
  background-color: #0f97ab;
  background-image: linear-gradient(135deg, #35beed 27%, #2fb9ea 33%, #20a9e2 42%, #0690d5 51%, #008bd2 53%, #004f9f 81%) !important;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pekin2022 .transmission-header::before, .pekin2022 .transmission-header::after {
  display: none;
}

.pekin2022 .transmission-header::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(images/pekin2022/pekin-module.svg);
}

.pekin2022 .transmission-header__parent {
  background-color: #4d121a;
}

.pekin2022 .transmission-header.pekin2022 {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  padding-top: 20px;
}

.pekin2022 .transmission-header.pekin2022 > .container {
  z-index: 2;
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation__wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 0;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .transmission-navigation__wrapper {
    height: 0;
    font-size: 1.125rem;
  }
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li {
  margin-right: 15px;
  pointer-events: none;
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li:hover::before {
  background-color: #f2f2f2;
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 14px;
  background-color: #f2f2f2;
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li::after {
  display: none;
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li a {
  color: #fff;
  pointer-events: auto;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .transmission-navigation li a {
    font-size: 1.313rem;
  }
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li a::after {
  background-color: transparent;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .transmission-navigation li a::after {
    margin-top: 12px;
  }
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li a:hover {
  color: #f2f2f2;
}

.pekin2022 .transmission-header.pekin2022 .transmission-navigation li a:hover::after {
  background-color: #f2f2f2;
}

.pekin2022 .transmission-header.pekin2022 .discipline {
  width: 72px;
  min-width: 72px;
  height: 72px;
  margin-right: 8px;
  background-size: contain;
  justify-self: flex-start;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .pekin2022 .transmission-header.pekin2022 .discipline {
    width: 114px;
    min-width: 114px;
    height: 114px;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .discipline {
    width: 170px;
    min-width: 170px;
    height: 170px;
    position: relative;
    top: -10px;
  }
}

.pekin2022 .transmission-header.pekin2022 .discipline.icon-plywanie, .pekin2022 .transmission-header.pekin2022 .discipline.icon-wioslarstwo, .pekin2022 .transmission-header.pekin2022 .discipline.icon-strzelectwo {
  height: 50px;
}

@media (min-width: 768px) {
  .pekin2022 .transmission-header.pekin2022 .discipline.icon-plywanie, .pekin2022 .transmission-header.pekin2022 .discipline.icon-wioslarstwo, .pekin2022 .transmission-header.pekin2022 .discipline.icon-strzelectwo {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .discipline.icon-plywanie, .pekin2022 .transmission-header.pekin2022 .discipline.icon-wioslarstwo, .pekin2022 .transmission-header.pekin2022 .discipline.icon-strzelectwo {
    height: 120px;
  }
}

.pekin2022 .transmission-header.pekin2022 .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 71px;
  min-width: 71px;
  height: 34px;
  justify-self: flex-end;
  margin-left: auto;
  background-size: contain;
  background-image: url(images/tokyo/tokyo-nadawca.svg);
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .pekin2022 .transmission-header.pekin2022 .logo {
    width: 114px;
    min-width: 114px;
    height: 54px;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .logo {
    width: 143px;
    min-width: 143px;
    height: 68px;
  }
}

.pekin2022 .transmission-header.pekin2022 .team--first {
  padding-top: 0;
}

.pekin2022 .transmission-header.pekin2022 .team > .flex-row {
  margin-bottom: 0;
}

.pekin2022 .transmission-header.pekin2022 .team--right .team__logo {
  margin-right: 0;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .team__name {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.pekin2022 .transmission-header.pekin2022 .mobile-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.pekin2022 .transmission-header.pekin2022 .mobile-icons .discipline {
  margin-left: auto;
  margin-right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
}

.pekin2022 .transmission-header.pekin2022 .mobile-icons .logo {
  margin-right: auto;
  margin-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 79px;
  height: 38px;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .mobile-icons {
    display: none;
  }
}

.pekin2022 .transmission-header.pekin2022 .match__overtime {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.pekin2022 .transmission-header.pekin2022 .match__overtime--first {
  margin-bottom: 5px;
}

.pekin2022 .transmission-header.pekin2022 .match__part {
  font-size: 0.625rem;
  margin-right: 5px;
}

@media (min-width: 768px) {
  .pekin2022 .transmission-header.pekin2022 .match__part {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .match__part {
    font-size: 1rem;
  }
}

.pekin2022 .transmission-header.pekin2022 .match__part-score {
  font-size: 0.625rem;
}

@media (min-width: 768px) {
  .pekin2022 .transmission-header.pekin2022 .match__part-score {
    font-size: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 .match__part-score {
    font-size: 1rem;
  }
}

.pekin2022 .transmission-header.pekin2022.teams .hide-on-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.teams .hide-on-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pekin2022 .transmission-header.pekin2022.fixed {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 0;
  max-height: 200px;
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.fixed {
    max-height: 144px;
  }
}

.pekin2022 .transmission-header.pekin2022.fixed .match__type, .pekin2022 .transmission-header.pekin2022.fixed .match__time, .pekin2022 .transmission-header.pekin2022.fixed .match__data {
  display: none;
}

.pekin2022 .transmission-header.pekin2022.fixed .team__timeline {
  display: none;
}

.pekin2022 .transmission-header.pekin2022.fixed .match-details {
  padding-top: 20px;
}

@media (min-width: 480px) {
  .pekin2022 .transmission-header.pekin2022.fixed .match-details {
    padding-top: 0px;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.fixed .match-details {
    padding-top: 31px;
  }
}

.pekin2022 .transmission-header.pekin2022.fixed .match__overtime {
  display: none;
}

.pekin2022 .transmission-header.pekin2022.fixed .team--first {
  padding-top: 0px;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.fixed .team--first {
    padding-top: 19px;
  }
}

.pekin2022 .transmission-header.pekin2022.fixed .discipline {
  margin-top: 10px;
  height: 50px;
  top: 0;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.fixed .discipline {
    margin-top: 19px;
  }
}

.pekin2022 .transmission-header.pekin2022.fixed .logo {
  height: 50px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.fixed .logo {
    margin-top: 19px;
  }
}

.pekin2022 .transmission-header.pekin2022.fixed .mobile-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022.fixed .mobile-icons {
    display: none;
  }
}

.pekin2022 .transmission-header.pekin2022 .team--right,
.pekin2022 .transmission-header.pekin2022 .team--left {
  padding-bottom: 10px;
}

.pekin2022 .transmission-header.pekin2022 .team.loser .team__name {
  text-decoration: line-through;
  font-weight: normal;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header.pekin2022 {
    padding-top: 30px;
  }
}

.pekin2022 .transmission-header.pekin2022.without-image:not(.news-transmission) .match-details,
.pekin2022 .transmission-header.pekin2022.without-image:not(.news-transmission) .news-heading__tag,
.pekin2022 .transmission-header.pekin2022.without-image:not(.news-transmission) .news-heading__tag a,
.pekin2022 .transmission-header.pekin2022.without-image:not(.news-transmission) .news-heading__title,
.pekin2022 .transmission-header.pekin2022.without-image:not(.news-transmission) .transmission-tablescore__table .tr .td {
  color: #fff;
}

.pekin2022 .transmission-header.pekin2022 .button-expand {
  margin-bottom: 30px;
  border-color: #fff;
  color: #fff;
}

.pekin2022 .transmission-header.pekin2022 .transmission-tablescore {
  position: relative;
  z-index: 9;
}

.pekin2022 .transmission-header.pekin2022 .transmission-tablescore__table .tr--featured {
  background-color: #50c8f1;
}

.pekin2022 .transmission-header__discipline-icon i {
  width: 45px;
  height: 97px;
  display: block;
  background-size: contain;
}

@media (min-width: 1024px) {
  .pekin2022 .transmission-header__discipline-icon i {
    width: 65px;
  }
}

.pekin2022 .match-details {
  padding-top: 30px;
}

.pekin2022 .match__overtime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 6px;
  font-size: 1rem;
  letter-spacing: 1.6px;
}

@media (min-width: 480px) {
  .pekin2022 .match__overtime {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.pekin2022 .match__overtime--first {
  margin-top: 10px;
}

@media (min-width: 480px) {
  .pekin2022 .match__part {
    margin-right: 10px;
  }
}

.pekin2022 .timeline__item a:hover {
  color: #fccb8d;
}

.pekin2022 .transmission-header .transmission-tablescore__table .thead .th {
  color: #fff;
}

.pekin2022 .primary__extended-combined {
  background: none;
  width: 117px;
  height: auto;
}

@media (max-width: 1023px) {
  .pekin2022 .primary__extended-combined {
    position: absolute;
    top: 15px;
    right: 0;
    max-width: 30px;
    width: 30px;
    height: 34px;
  }
}

.pekin2022 .olympic-details {
  text-align: center;
}

@media (min-width: 1024px) {
  .pekin2022 .olympic-details {
    min-height: 150px;
  }
}

.pekin2022 .olympic-details__type {
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .pekin2022 .olympic-details__type {
    font-size: 13px;
    letter-spacing: 1.3px;
    margin-bottom: 0px;
  }
}

.pekin2022 .olympic-details__discipline {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .pekin2022 .olympic-details__discipline {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .pekin2022 .olympic-details__discipline {
    font-size: 32px;
    line-height: 1.75;
    margin-bottom: 0px;
  }
}

.pekin2022 .olympic-details__status {
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 768px) {
  .pekin2022 .olympic-details__status {
    font-size: 16px;
    line-height: 1.6;
  }
}

.pekin2022 .olympic-details__data {
  font-size: 11px;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .pekin2022 .olympic-details__data {
    font-size: 13px;
    line-height: 1.62;
  }
}

.pekin2022 .transmission-navigation li::after {
  background-color: #fff;
}

.pekin2022 .transmission-navigation li a {
  color: #fff;
}

@media (min-width: 480px) {
  .pekin2022 .transmission-navigation li a {
    color: #fff;
  }
}

.pekin2022 .transmission-player__content::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 50, 160, 0)), to(rgba(0, 50, 160, 0.7)));
  background-image: linear-gradient(to bottom, rgba(0, 50, 160, 0) 0%, rgba(0, 50, 160, 0.7) 100%);
}

/*--------- LANDING PAGE ---------*/
#smart-tv-app {
  font-size: 16px;
  color: #fff;
  background-color: #f8f8f8;
}

#smart-tv-app .fade {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

#smart-tv-app .step-in-left {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

#smart-tv-app .step-in-right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

#smart-tv-app i {
  color: #ebff00;
  font-style: normal;
}

#smart-tv-app section {
  padding: 0 16px;
}

@media (min-width: 768px) {
  #smart-tv-app section {
    padding: 0 40px;
  }
}

#smart-tv-app .download-app {
  overflow: hidden;
  background: transparent url("images/landing/smart-tv-app/section-1-bg.png") no-repeat center center;
  background-size: cover;
}

#smart-tv-app .download-app__wrapper {
  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;
  margin: 0 auto;
}

@media (min-width: 1280px) {
  #smart-tv-app .download-app__wrapper {
    max-width: 1350px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#smart-tv-app .download-app__content {
  max-width: 590px;
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 768px) {
  #smart-tv-app .download-app__content {
    padding-right: 58px;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .download-app__content {
    max-width: 1350px;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

#smart-tv-app .download-app__text {
  max-width: 460px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  #smart-tv-app .download-app__text {
    margin-bottom: 39px;
  }
}

#smart-tv-app .download-app__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  #smart-tv-app .download-app__title {
    font-size: 44px;
  }
}

#smart-tv-app .download-app__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#smart-tv-app .download-app__icons--android {
  background: transparent url("images/landing/smart-tv-app/icons/android-tv-logo.png") no-repeat center bottom;
  background-size: contain;
  height: 29px;
  width: 171px;
  margin-right: 29px;
}

#smart-tv-app .download-app__icons--tizen {
  background: transparent url("images/landing/smart-tv-app/icons/tizen-lockup-on-dark-rgb.png") no-repeat center bottom;
  background-size: contain;
  height: 40px;
  width: 120px;
  margin-right: 29px;
}

#smart-tv-app .download-app__icons--webos {
  background: transparent url("images/landing/smart-tv-app/icons/lg-web-os-new.svg") no-repeat center bottom;
  background-size: contain;
  height: 30px;
  width: 116px;
}

#smart-tv-app .download-app__img {
  width: 954px;
  padding: 40px 0 30px;
  max-width: 100%;
}

@media (min-width: 768px) {
  #smart-tv-app .download-app__img {
    padding: 58px 0;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .download-app__img {
    padding: 85px 0 122px;
  }
}

#smart-tv-app .download-app__img--img {
  background: transparent url("images/landing/smart-tv-app/section-1-img2.png") no-repeat center center;
  background-size: contain;
  height: 55vw;
}

@media (min-width: 768px) {
  #smart-tv-app .download-app__img--img {
    height: 428px;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .download-app__img--img {
    height: 568px;
  }
}

#smart-tv-app .watch-euro {
  overflow: hidden;
  background: transparent url(images/landing/smart-tv-app/section-2-bg-tablet-tokyo.png) no-repeat top center;
  background-size: auto 1060px;
}

@media (min-width: 768px) {
  #smart-tv-app .watch-euro {
    background-size: contain;
  }
}

@media (min-width: 1024px) {
  #smart-tv-app .watch-euro {
    background-position: center -210px;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro {
    background-size: 100% 46vw;
    background: transparent url(images/landing/smart-tv-app/section-2-bg-tokyo.png) no-repeat top center;
    background-position: center top;
  }
}

#smart-tv-app .watch-euro ul {
  list-style-type: square;
}

#smart-tv-app .watch-euro li {
  margin-left: 16px;
}

#smart-tv-app .watch-euro__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper {
    max-width: 1300px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__img {
  width: 715px;
  max-width: 100%;
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper .watch-euro__img {
    padding: 45px 0 0px;
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__img--img {
  background: transparent url("images/landing/smart-tv-app/section-2-img1-tokyo.png") no-repeat center center;
  background-size: 93%;
  max-height: 580px;
  height: 80vw;
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper .watch-euro__img--img {
    height: 601px;
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__content {
  max-width: 590px;
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper .watch-euro__content {
    padding-left: 58px;
    max-width: 1350px;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__text {
  max-width: 460px;
  margin-bottom: 17px;
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons--euro {
  background: transparent url("images/landing/smart-tv-app/icons/combined-shape.png") no-repeat center bottom;
  background-size: contain;
  height: 45px;
  width: 145px;
  margin-bottom: 40px;
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper .watch-euro__icons--euro {
    margin-bottom: 20px;
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  #smart-tv-app .watch-euro__wrapper .watch-euro__title {
    font-size: 41px;
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons br {
  display: none;
}

@media (min-width: 768px) {
  #smart-tv-app .watch-euro__wrapper .watch-euro__icons {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #smart-tv-app .watch-euro__wrapper .watch-euro__icons br {
    display: inline;
  }
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 29px;
  margin-bottom: 20px;
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons--group span {
  margin-left: 15px;
  white-space: nowrap;
  font-weight: 800;
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons--ico1 {
  background: transparent url("images/landing/smart-tv-app/icons/icon-1-tokyo.svg") no-repeat center bottom;
  background-size: contain;
  height: 45px;
  width: 45px;
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons--ico2 {
  background: transparent url("images/landing/smart-tv-app/icons/icon-2-tokyo.svg") no-repeat center bottom;
  background-size: contain;
  height: 45px;
  width: 45px;
}

#smart-tv-app .watch-euro__wrapper .watch-euro__icons--ico3 {
  background: transparent url("images/landing/smart-tv-app/icons/icon-3-tokyo.svg") no-repeat center bottom;
  background-size: contain;
  height: 45px;
  width: 45px;
}

#smart-tv-app .watch-euro__wrapper2 {
  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;
  margin: 0 auto;
  color: #38324c;
  max-width: 1300px;
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper2 {
    margin: -30px auto 0;
    max-width: 1350px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__icons--play {
  background: transparent url("images/landing/smart-tv-app/icons/4-copy-3.svg") no-repeat center bottom;
  background-size: contain;
  position: absolute;
  z-index: -1;
  height: 257px;
  width: 288px;
  top: 33%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  #smart-tv-app .watch-euro__wrapper2 .watch-euro__icons--play {
    height: 394px;
    width: 441px;
    top: -58%;
    left: 17%;
    -webkit-transform: none;
            transform: none;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper2 .watch-euro__icons--play {
    height: 450px;
    width: 504px;
    top: -67%;
    left: 10%;
  }
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__content {
  max-width: 590px;
  width: 100%;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  margin-top: 40px;
}

@media (min-width: 768px) {
  #smart-tv-app .watch-euro__wrapper2 .watch-euro__content {
    padding-right: 58px;
    margin-top: 140px;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper2 .watch-euro__content {
    max-width: 570px;
    width: auto;
    margin-top: 0;
  }
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__text {
  max-width: 460px;
  margin-bottom: 39px;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__title {
  font-size: 41px;
  font-weight: 900;
  margin-bottom: 23px;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__icons--android {
  background: transparent url("images/landing/smart-tv-app/icons/android-tv-logo_2.png") no-repeat center bottom;
  background-size: contain;
  height: 29px;
  width: 171px;
  margin-right: 29px;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__icons--tizen {
  background: transparent url("images/landing/smart-tv-app/icons/tizen-lockup-on-light-rgb.png") no-repeat center bottom;
  background-size: contain;
  height: 40px;
  width: 120px;
  margin-right: 29px;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__icons--webos {
  background: transparent url("images/landing/smart-tv-app/icons/lg-web-os-new_2.svg") no-repeat center bottom;
  background-size: contain;
  height: 30px;
  width: 116px;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__img {
  width: 765px;
}

#smart-tv-app .watch-euro__wrapper2 .watch-euro__img--img {
  background: transparent url("images/landing/smart-tv-app/section-2-img2.png") no-repeat center center;
  background-size: contain;
  height: 70vw;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  #smart-tv-app .watch-euro__wrapper2 .watch-euro__img--img {
    margin-bottom: 100px;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .watch-euro__wrapper2 .watch-euro__img--img {
    height: 630px;
    background-size: 93%;
    margin-bottom: 0;
  }
}

#smart-tv-app .easy-find {
  overflow: hidden;
  background: transparent url(images/landing/smart-tv-app/section-3-bg-tablet.png) no-repeat top center;
  background-size: cover;
}

@media (min-width: 1280px) {
  #smart-tv-app .easy-find {
    background: transparent url(images/landing/smart-tv-app/section-3-bg.png) no-repeat top center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-size: 100% 372px;
  }
}

#smart-tv-app .easy-find__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1280px) {
  #smart-tv-app .easy-find__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#smart-tv-app .easy-find__wrapper ul {
  list-style-type: square;
}

#smart-tv-app .easy-find__wrapper li {
  margin-bottom: 24px;
  margin-left: 16px;
}

#smart-tv-app .easy-find__wrapper .easy-find__img {
  width: 715px;
  padding: 33px 0 0;
  margin-bottom: 32px;
}

#smart-tv-app .easy-find__wrapper .easy-find__img--img {
  background: transparent url("images/landing/smart-tv-app/section-3-img.png") no-repeat center center;
  background-size: contain;
  height: 54vw;
  max-height: 440px;
}

@media (min-width: 1280px) {
  #smart-tv-app .easy-find__wrapper .easy-find__img--img {
    height: 442px;
    background-size: 100%;
  }
}

#smart-tv-app .easy-find__wrapper .easy-find__content {
  margin-top: 37px;
}

@media (min-width: 1280px) {
  #smart-tv-app .easy-find__wrapper .easy-find__content {
    max-width: 590px;
    width: auto;
    padding-left: 138px;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

#smart-tv-app .easy-find__wrapper .easy-find__text {
  max-width: 460px;
  margin-bottom: 17px;
}

#smart-tv-app .easy-find__wrapper .easy-find__icons--euro {
  background: transparent url("images/landing/smart-tv-app/icons/combined-shape.png") no-repeat center bottom;
  background-size: contain;
  height: 45px;
  width: 145px;
  margin-bottom: 20px;
}

#smart-tv-app .easy-find__wrapper .easy-find__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  #smart-tv-app .easy-find__wrapper .easy-find__title {
    font-size: 41px;
  }
}

#smart-tv-app .how-download__wrapper2 {
  color: #38324c;
  max-width: 1350px;
  margin: 0 auto;
}

#smart-tv-app .how-download__wrapper2 .how-download__content {
  margin-top: 60px;
  position: relative;
  text-align: center;
}

@media (min-width: 1280px) {
  #smart-tv-app .how-download__wrapper2 .how-download__content {
    margin-top: 40px;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 23px;
  text-align: left;
}

#smart-tv-app .how-download__wrapper2 .how-download__title br {
  display: none;
}

@media (min-width: 768px) {
  #smart-tv-app .how-download__wrapper2 .how-download__title {
    text-align: center;
    font-size: 41px;
  }
  #smart-tv-app .how-download__wrapper2 .how-download__title br {
    display: inline;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 67px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  #smart-tv-app .how-download__wrapper2 .how-download__steps {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  #smart-tv-app .how-download__wrapper2 .how-download__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__step {
  background-color: #fff;
  border-radius: 33px;
  padding: 0px 80px 30px;
  font-weight: 600;
  width: 100%;
  min-height: 200px;
  margin: 100px 0 0;
}

@media (min-width: 1280px) {
  #smart-tv-app .how-download__wrapper2 .how-download__step {
    margin: 100px 24px 0;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__step--text {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 13px auto 0;
}

#smart-tv-app .how-download__wrapper2 .how-download__step--icon-bg {
  height: 129px;
  width: 129px;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4d436c), to(#38324c));
  background-image: linear-gradient(to bottom, #4d436c, #38324c);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 9px;
  margin: 0 auto;
  margin-top: -80px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  #smart-tv-app .how-download__wrapper2 .how-download__step--icon-bg {
    height: 163px;
    width: 163px;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__step--icon1 {
  height: 76px;
  width: 86px;
  overflow: hidden;
  background: transparent url(images/landing/smart-tv-app/icons/group-16.svg) no-repeat top center;
  background-size: 100%;
}

@media (min-width: 768px) {
  #smart-tv-app .how-download__wrapper2 .how-download__step--icon1 {
    height: 86px;
    width: 96px;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__step--icon2 {
  height: 76px;
  width: 86px;
  overflow: hidden;
  background: transparent url(images/landing/smart-tv-app/icons/group-16-copy.svg) no-repeat top center;
  background-size: 100%;
}

@media (min-width: 768px) {
  #smart-tv-app .how-download__wrapper2 .how-download__step--icon2 {
    height: 86px;
    width: 96px;
  }
}

#smart-tv-app .how-download__wrapper2 .how-download__step--icon3 {
  height: 76px;
  width: 86px;
  overflow: hidden;
  background: transparent url(images/landing/smart-tv-app/icons/group-16-copy_2.svg) no-repeat top center;
  background-size: 100%;
}

@media (min-width: 768px) {
  #smart-tv-app .how-download__wrapper2 .how-download__step--icon3 {
    height: 86px;
    width: 96px;
  }
}

#smart-tv-app .what-tv {
  overflow: hidden;
  background: transparent url(images/landing/smart-tv-app/section-4-bg-tablet.png) no-repeat top center;
  background-size: 100% 253px;
}

@media (min-width: 1280px) {
  #smart-tv-app .what-tv {
    background: transparent url(images/landing/smart-tv-app/section-4-bg.png) no-repeat top center;
    background-size: 100% 191px;
  }
}

#smart-tv-app .what-tv__wrapper {
  height: 253px;
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

#smart-tv-app .what-tv__wrapper br {
  display: none;
}

@media (min-width: 1280px) {
  #smart-tv-app .what-tv__wrapper {
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 191px;
  }
  #smart-tv-app .what-tv__wrapper br {
    display: inline;
  }
}

#smart-tv-app .what-tv__title {
  font-size: 28px;
  font-weight: 900;
}

@media (min-width: 768px) {
  #smart-tv-app .what-tv__title {
    font-size: 32px;
  }
}

#smart-tv-app .what-tv button {
  border-radius: 11px;
  background-color: #eaff00;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #38324c;
  border: 2px solid #eaff00;
  padding: 0 49px;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  min-height: 57px;
}

@media (min-width: 768px) {
  #smart-tv-app .what-tv button {
    height: 57px;
    font-size: 18px;
  }
}

#smart-tv-app .what-tv button:hover {
  background-color: transparent;
  color: #eaff00;
}

#smart-tv-app .problems {
  color: #38324c;
}

#smart-tv-app .problems__wrapper {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1350px;
  margin: 0 auto;
}

#smart-tv-app .problems__title {
  font-size: 32px;
  font-weight: 900;
  margin: 67px 90px 37px;
  margin: 24px 0;
  text-align: left;
}

@media (min-width: 768px) {
  #smart-tv-app .problems__title {
    text-align: center;
    margin: 67px 90px 37px;
  }
}

#smart-tv-app .problems__card {
  border-radius: 26px;
  background-color: #ffffff;
  padding: 35px;
  font-weight: 600;
  text-align: center;
  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;
}

#smart-tv-app .problems__card a {
  position: relative;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  color: #38324c;
  margin-top: 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
}

#smart-tv-app .problems__card a::after {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #eaff00;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#smart-tv-app .problems__card a:hover::after {
  background-color: #38324c;
}

#smart-tv-app .cto {
  color: #38324c;
}

#smart-tv-app .cto__wrapper {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1350px;
  margin: 0 auto;
}

#smart-tv-app .cto__title {
  font-size: 32px;
  font-weight: 900;
  margin: 24px 0;
  text-align: left;
}

@media (min-width: 768px) {
  #smart-tv-app .cto__title {
    text-align: center;
    margin: 77px 90px 37px;
  }
}

#smart-tv-app .cto__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 70px;
  width: 100%;
}

@media (min-width: 768px) {
  #smart-tv-app .cto__icons {
    width: auto;
  }
}

#smart-tv-app .cto__icons--android {
  background: transparent url("images/landing/smart-tv-app/icons/android-tv-logo_2.png") no-repeat center bottom;
  background-size: contain;
  height: 29px;
  width: 171px;
  margin-right: 29px;
}

#smart-tv-app .cto__icons--tizen {
  background: transparent url("images/landing/smart-tv-app/icons/tizen-lockup-on-light-rgb.png") no-repeat center bottom;
  background-size: contain;
  height: 40px;
  width: 120px;
  margin-right: 29px;
}

#smart-tv-app .cto__icons--webos {
  background: transparent url("images/landing/smart-tv-app/icons/lg-web-os-new_2.svg") no-repeat center bottom;
  background-size: contain;
  height: 30px;
  width: 116px;
}
