.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: #000;
  opacity: 0;
  will-change: opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  display: none; }
  .overlay--shown {
    opacity: .4;
    display: block; }

.no-scroll {
  overflow: hidden;
  position: fixed; }
  .no-scroll:not(.ua-operamini) {
    height: 100%;
    -webkit-overflow-scrolling: auto; }

.component-modal {
  display: none;
  visibility: hidden;
  position: absolute;
  border: 3px solid #00a9ce;
  padding: 2.5rem 0.625rem;
  color: #000;
  width: 80vw;
  max-width: 18.75rem;
  z-index: 100;
  background-color: #fff; }
  @media (min-width: 580px) {
    .component-modal {
      max-width: 28.75rem; } }
  @media (min-width: 980px) {
    .component-modal {
      max-width: 36.25rem; } }
  .component-modal--state-opened {
    display: block;
    visibility: visible;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .component-modal__content {
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5; }
    @media (min-width: 580px) {
      .component-modal__content {
        font-size: 1.25rem; } }
    @media (min-width: 980px) {
      .component-modal__content {
        font-size: 1.5rem; } }
  .component-modal__close {
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0.625rem;
    height: 1.125rem;
    line-height: 1.125rem;
    font-size: 0.6875rem;
    cursor: pointer;
    padding-right: 1.5rem;
    right: 0.375rem; }
    .component-modal__close--visible {
      display: block;
      visibility: visible; }
    .component-modal__close:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e608";
      font-size: 1.5rem;
      position: absolute;
      right: 0; }
    .component-modal__close:hover {
      color: #00a9ce; }
  .component-modal__actions {
    text-align: center;
    margin-bottom: -1rem; }
  .component-modal .component-modal__action {
    margin-bottom: 0;
    display: inline-block;
    min-width: 6.25rem;
    background-color: transparent;
    border: 1px solid #000;
    color: #000; }
    @media (min-width: 980px) {
      .component-modal .component-modal__action {
        min-width: 9.375rem; } }
    .component-modal .component-modal__action:hover {
      background-color: transparent;
      border-color: #008aaf;
      color: #008aaf; }
    .component-modal .component-modal__action--positive {
      background-color: #00a9ce;
      color: #fff;
      border-color: transparent; }
      .component-modal .component-modal__action--positive:hover {
        background-color: #008aaf;
        color: #fff;
        border-color: transparent; }
    .component-modal .component-modal__action--negative {
      background-color: #a2aaad;
      color: #fff;
      border-color: #838f95; }
      .component-modal .component-modal__action--negative:hover {
        background-color: #838f95;
        color: #fff;
        border-color: #838f95; }
    .component-modal .component-modal__action + .component-modal__action {
      margin-left: 0.625rem; }

.component-sticky__element {
  position: -webkit-sticky;
  position: sticky;
  top: 0; }
  .component-sticky__element::before, .component-sticky__element::after {
    content: '';
    display: table; }

[data-component="lazyloading"] {
  -webkit-transition: opacity .5s ease-in;
  transition: opacity .5s ease-in; }
  [data-component="lazyloading"][data-state="unloaded"] {
    will-change: opacity;
    opacity: .01; }
  [data-component="lazyloading"][data-state="loaded"] {
    opacity: 1; }

.drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  height: 100%;
  width: 20rem;
  border: 1px solid #e3e5e6;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%); }
  @media (min-width: 480px) {
    .drawer {
      width: 21.25rem; } }
  .ua-operamini .drawer {
    display: none;
    position: absolute;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none; }
  .drawer__header {
    background-color: #000;
    height: 2.75rem;
    padding: 0;
    border: 0;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5; }
  .drawer__title {
    color: #fff;
    font-size: 1.125rem;
    margin: 0 0.625rem;
    font-weight: 500;
    line-height: 2.75rem;
    float: left;
    height: 2.75rem;
    white-space: nowrap; }
    .ua-operamini .drawer__title {
      padding-top: 0.6875rem; }
  .drawer__close {
    color: #fff;
    margin: 0 0.3125rem;
    font-size: 2rem;
    line-height: 2.75rem;
    cursor: pointer;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    float: right; }
    .drawer__close:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e632"; }
    .dev-desktop .drawer__close:hover {
      color: #b68339; }
  .drawer__content {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 2.75rem; }
  .drawer--opened {
    opacity: 1;
    -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
    .ua-operamini .drawer--opened {
      display: block; }

.widget-rich-media-unit {
  background-color: #f21d07;
  -webkit-transition: height .25s ease-in-out;
  transition: height .25s ease-in-out;
  height: 3.125rem;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 980px) {
    .widget-rich-media-unit {
      height: 5rem; } }
  .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .widget-header {
    position: fixed;
    top: 3.125rem;
    pointer-events: none; }
    @media (min-width: 980px) {
      .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .widget-header {
        top: 5rem; } }
    .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .widget-header .widget-header__wrapper {
      position: absolute;
      pointer-events: all; }
      .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .widget-header .widget-header__wrapper .widget-navigation {
        top: 6.3125rem; }
        @media (min-width: 980px) {
          .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .widget-header .widget-header__wrapper .widget-navigation {
            top: 3.1875rem; } }
  .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .page-container {
    margin-top: 6.25rem; }
    @media (min-width: 980px) {
      .widget-rich-media-unit:not(.widget-rich-media-unit--is-hidden) ~ .page-container {
        margin-top: 10rem; } }
  .widget-rich-media-unit--is-hidden {
    display: none; }
  .widget-rich-media-unit--is-opened {
    height: 15.625rem; }
    @media (min-width: 580px) {
      .widget-rich-media-unit--is-opened {
        height: 18.75rem; } }
    .widget-rich-media-unit--is-opened .widget-rich-media-unit__trigger:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e603"; }
    @media (min-width: 980px) {
      .widget-rich-media-unit--is-opened .widget-rich-media-unit__trigger:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e630";
        font-size: 2rem; } }
  .widget-rich-media-unit--is-static:not(.widget-rich-media-unit--is-opened) .widget-rich-media-unit__trigger {
    display: none; }
  .widget-rich-media-unit[data-alias="unit-b"] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120; }
  .widget-rich-media-unit[data-alias="unit-a"] {
    left: 50%; }
  .widget-rich-media-unit__trigger {
    color: #fff;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    text-decoration: none;
    width: 1.125rem;
    height: 1.125rem;
    outline: 0; }
    .widget-rich-media-unit__trigger:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e600";
      font-size: 1.125rem; }
    @media (min-width: 980px) {
      .widget-rich-media-unit__trigger {
        width: 2rem;
        height: 2rem;
        left: 1.5rem;
        bottom: 1.5rem; }
        .widget-rich-media-unit__trigger:before {
          font-family: "goal-icons";
          speak: none;
          font-style: normal;
          font-weight: normal;
          -webkit-font-feature-settings: normal;
                  font-feature-settings: normal;
          font-variant: normal;
          text-transform: none;
          direction: ltr;
          unicode-bidi: embed;
          content: "\e62d";
          font-size: 2rem; } }

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0; }

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block; }

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px; }

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
     * Add the correct display in IE.
     */
main {
  display: block; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit; }

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder; }

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic; }

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000; }

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%; }

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block; }

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none; }

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden; }

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: "Titillium Web", sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible; }

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none; }

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible; }

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto; }

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block; }

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item; }

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block; }

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block; }

/**
     * Add the correct display in IE.
     */
template {
  display: none; }

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none; }

@font-face {
  font-family: "goal-icons";
  src: url("/conmebol-assets/fonts/goal-icons.a9a785441e.eot");
  src: url("/conmebol-assets/fonts/goal-icons.eot?#iefix") format("embedded-opentype"), url("/conmebol-assets/fonts/goal-icons.ac46b08b5f.woff2") format("woff2"), url("/conmebol-assets/fonts/goal-icons.9c8a8b51d7.woff") format("woff"), url("/conmebol-assets/fonts/goal-icons.61033b157f.ttf") format("truetype"), url("/conmebol-assets/fonts/goal-icons.svg#goal-icons") format("svg");
  font-weight: 400;
  font-style: normal; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "goal-icons";
    src: url("/conmebol-assets/fonts/goal-icons.svg#goal-icons") format("svg"); } }

@-ms-viewport {
  width: device-width; }

html,
body {
  width: 100%; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Ubuntu", sans-serif; }

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -ms-overflow-style: scrollbar; }

body {
  min-height: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  font-weight: 400;
  position: relative;
  -webkit-text-size-adjust: none;
  font-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-translation: none;
  -webkit-tap-highlight-color: transparent;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-transition: padding-top 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: padding-top 500ms cubic-bezier(0.25, 0.1, 0.25, 1); }

.ua-firefox [data-component="slider"] [data-element="sliding-container"] {
  will-change: unset; }

#defocus-element {
  display: block;
  width: 0;
  height: 0;
  text-decoration: none;
  font-size: 1px;
  position: fixed;
  top: 0;
  left: 0; }

iframe {
  border: 0;
  outline: 0; }

.clearfix::before, .clearfix::after {
  clear: both;
  content: "";
  display: table; }

.betting-link {
  font-weight: 700;
  display: block;
  text-align: center;
  margin: 1rem 0; }

.btn {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  height: 2.75rem;
  margin: 1.25rem 0 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  padding: 0 0.3125rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: background-color .2s ease, color .2s ease;
  transition: background-color .2s ease, color .2s ease;
  background-color: #f00;
  color: #fff; }
  @media (min-width: 980px) {
    .btn {
      padding: 0 0.625rem; } }
  .btn span {
    display: inline-block; }
  .ua-operamini .btn {
    padding-top: 0.6875rem; }
  .btn:not(.btn--no-ripple):not(.btn--outline):hover {
    background-color: #e10707; }
  .btn:not(.btn--no-ripple):not(.btn--outline):active {
    background-color: #bb0707; }
  .btn--inactive {
    background-color: #ecf1f0;
    color: #000; }
    .btn--inactive:hover {
      color: #e10707; }
  .btn--outline {
    color: #000;
    background-color: transparent;
    border: 1px solid #000; }
    .btn--outline:hover {
      background-color: transparent;
      border-color: #e10707;
      color: #e10707; }
  .btn--icon {
    width: 7.75rem;
    height: 1.75rem;
    padding: 0.3125rem 1.5625rem;
    margin: 1.25rem auto;
    font-size: 0.9375rem;
    line-height: 1.125rem;
    text-transform: none; }
    .btn--icon .site-logo,
    .btn--icon .share {
      display: block;
      top: 0.3125rem;
      position: absolute;
      width: 1.125rem;
      height: 1.125rem; }
      html:not(.ua-operamini) .btn--icon .site-logo:not(.btn--no-ripple), html:not(.ua-operamini)
      .btn--icon .share:not(.btn--no-ripple) {
        position: absolute; }
    .btn--icon .site-logo {
      background-image: url("/conmebol-assets/img/sprite.afb218a582.png");
      background-position: -136px -34px;
      width: 18px;
      height: 18px;
      left: 0.3125rem; }
      @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .btn--icon .site-logo {
          background-image: url("/conmebol-assets/img/sprite@2x.c2e265935d.png");
          background-size: 160px 126px; } }
    .btn--icon .share {
      right: 0.3125rem; }
      .btn--icon .share:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e699"; }
      .btn--icon .share::before {
        color: #000; }
    .dev-desktop .btn--icon:hover .share::before {
      color: #e10707; }
  .btn--full, .btn--comments {
    margin: 0.625rem auto;
    font-size: 1.125rem; }
    .btn--full span, .btn--comments span {
      font-weight: 400; }
    @media (max-width: 479px) {
      .btn--full, .btn--comments {
        width: 17.5rem; } }
    @media (min-width: 480px) {
      .btn--full, .btn--comments {
        margin: 1.25rem auto 2.5rem; } }
    @media (min-width: 480px) and (max-width: 579px) {
      .btn--full, .btn--comments {
        width: 66.10169%; } }
    @media (min-width: 580px) and (max-width: 979px) {
      .btn--full, .btn--comments {
        width: 49.15254%; } }
    @media (min-width: 980px) {
      .btn--full, .btn--comments {
        width: 48.71795%; } }
  .btn--comments [data-role="comments-count"] {
    font-weight: 400; }
  .ua-operamini .btn--comments,
  .ua-ucbrowser .btn--comments {
    display: none;
    visibility: hidden; }
  .btn--more {
    margin: 0.625rem auto 0.9375rem; }
    @media (max-width: 479px) {
      .btn--more {
        width: 100%; } }
    @media (min-width: 480px) {
      .btn--more {
        margin: 1.25rem auto 1.5625rem; } }
    @media (min-width: 580px) {
      .btn--more {
        width: 22.25rem; } }
    @media (min-width: 740px) {
      .btn--more {
        width: 21.5rem; } }
    @media (min-width: 980px) {
      .btn--more {
        width: 18.875rem; } }
    @media (min-width: 1580px) {
      .btn--more {
        width: 24rem; } }

.widget-headline {
  font-weight: 500;
  position: relative;
  overflow: hidden;
  clear: both;
  text-align: center;
  color: #9b9b9b;
  padding: 0;
  line-height: 1.2; }
  @media (max-width: 479px) {
    .widget-headline {
      font-size: 2rem;
      margin: 1.875rem 0 1.25rem 0; }
      .widget-headline + .widget-related-tags,
      .widget-headline + .tags-list {
        margin-top: -1.25rem; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .widget-headline {
      font-size: 2rem;
      margin: 2.5rem 0 1.25rem 0; }
      .widget-headline + .widget-related-tags,
      .widget-headline + .tags-list {
        margin-top: -1.25rem; } }
  @media (min-width: 580px) {
    .widget-headline {
      font-size: 2rem;
      margin: 2.5rem 0 1.875rem 0; }
      .widget-headline + .widget-related-tags,
      .widget-headline + .tags-list {
        margin-top: -1.875rem; } }
  html:not(.ua-operamini) .widget-headline::before {
    content: "";
    position: absolute;
    height: 2px;
    margin-top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(182, 131, 57, 0.2)), color-stop(15%, rgba(182, 131, 57, 0.4)), color-stop(51%, rgba(182, 131, 57, 0.2)), color-stop(86%, rgba(182, 131, 57, 0.4)), to(rgba(182, 131, 57, 0.2)));
    background-image: linear-gradient(-90deg, rgba(182, 131, 57, 0.2) 0%, rgba(182, 131, 57, 0.4) 15%, rgba(182, 131, 57, 0.2) 51%, rgba(182, 131, 57, 0.4) 86%, rgba(182, 131, 57, 0.2) 100%); }
  html:not(.ua-operamini) .widget-headline span {
    display: inline-block;
    position: relative;
    padding: 0 1.25rem;
    max-width: 95%;
    overflow: hidden; }
  @media (min-width: 980px) {
    aside .widget-headline {
      font-size: 1.5rem;
      margin: 1.25rem 0 0.9375rem; } }

.page-header {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
  height: 3.25rem;
  line-height: 3.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 0.625rem;
  background: #000 url("/conmebol-assets/img/cl-bg-heading-580.ccf1d08954.png") no-repeat right center;
  background-size: auto 100%;
  border-bottom: 0.25rem solid #b68339; }
  @media (min-width: 480px) {
    .page-header {
      font-size: 1.75rem; } }
  @media (min-width: 580px) {
    .page-header {
      font-size: 2rem; }
      .ua-operamini .page-header {
        padding-top: 1rem; } }
  @media (min-width: 740px) {
    .page-header {
      background-image: url("/conmebol-assets/img/cl-bg-heading-1580.0c21a1d38f.png"); } }
  @media (min-width: 980px) {
    .page-header {
      height: 3.875rem;
      line-height: 3.875rem;
      font-size: 2.25rem; } }
  .ua-operamini .page-header {
    padding-top: 0.75rem; }
  .ua-operamini .page-header--dropdown {
    padding-top: 0; }
  .page-header .dropdown {
    display: block; }
    @media (min-width: 740px) {
      .page-header .dropdown {
        display: inline; } }
    @media (min-width: 980px) {
      .page-header .dropdown.dropdown--content {
        display: inline-block;
        height: 100%; } }
    .page-header .dropdown .dropdown__btn {
      padding: 0; }
      @media (max-width: 739px) {
        .page-header .dropdown .dropdown__btn {
          display: block; } }
      .dev-desktop .page-header .dropdown .dropdown__btn:hover .dropdown__label {
        color: #fff; }
      .dev-desktop .page-header .dropdown .dropdown__btn:hover .dropdown__icon {
        background-color: #000; }
    .page-header .dropdown .dropdown__label {
      -webkit-box-sizing: content-box;
              box-sizing: content-box;
      font-weight: 700;
      color: #fff;
      font-size: 1.5rem;
      height: 3.25rem;
      line-height: 3.25rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      padding: 0 0.625rem;
      background: #000 url("/conmebol-assets/img/cl-bg-heading-580.ccf1d08954.png") no-repeat right center;
      background-size: auto 100%;
      border-bottom: 0.25rem solid #b68339;
      margin-top: 0;
      font-weight: 600;
      display: inline-block;
      max-width: 90%;
      padding: 0; }
      @media (min-width: 480px) {
        .page-header .dropdown .dropdown__label {
          font-size: 1.75rem; } }
      @media (min-width: 580px) {
        .page-header .dropdown .dropdown__label {
          font-size: 2rem; }
          .ua-operamini .page-header .dropdown .dropdown__label {
            padding-top: 1rem; } }
      @media (min-width: 740px) {
        .page-header .dropdown .dropdown__label {
          background-image: url("/conmebol-assets/img/cl-bg-heading-1580.0c21a1d38f.png"); } }
      @media (min-width: 980px) {
        .page-header .dropdown .dropdown__label {
          height: 3.875rem;
          line-height: 3.875rem;
          font-size: 2.25rem; } }
      .ua-operamini .page-header .dropdown .dropdown__label {
        padding-top: 0.75rem; }
      @media (min-width: 480px) {
        .page-header .dropdown .dropdown__label {
          width: auto; } }
    .page-header .dropdown .dropdown__icon {
      float: none;
      height: 2rem;
      width: 2rem;
      top: 0.375rem; }
      @media (max-width: 739px) {
        .page-header .dropdown .dropdown__icon {
          position: absolute;
          right: 0; } }
      @media (min-width: 580px) {
        .page-header .dropdown .dropdown__icon {
          top: 0.625rem; } }
      @media (min-width: 740px) {
        .page-header .dropdown .dropdown__icon {
          top: 0.4375rem; } }
      .page-header .dropdown .dropdown__icon i {
        line-height: 2rem; }
        .page-header .dropdown .dropdown__icon i:before {
          font-family: "goal-icons";
          speak: none;
          font-style: normal;
          font-weight: normal;
          -webkit-font-feature-settings: normal;
                  font-feature-settings: normal;
          font-variant: normal;
          text-transform: none;
          direction: ltr;
          unicode-bidi: embed;
          content: "\e62d";
          font-size: 2rem;
          line-height: 2rem; }
    .page-header .dropdown .dropdown__list {
      width: 18.75rem;
      background-color: #000;
      right: -0.625rem; }
      @media (min-width: 480px) {
        .page-header .dropdown .dropdown__list {
          width: 20rem; } }
      @media (min-width: 580px) {
        .page-header .dropdown .dropdown__list {
          margin-top: 0.6875rem; } }
      @media (min-width: 740px) {
        .page-header .dropdown .dropdown__list {
          margin-top: 0.3125rem;
          left: -0.625rem; } }
      @media (min-width: 980px) {
        .page-header .dropdown .dropdown__list {
          margin-top: 0.6875rem; } }
      .page-header .dropdown .dropdown__list ul {
        padding: 0 0.625rem; }
        @media (min-width: 580px) {
          .page-header .dropdown .dropdown__list ul {
            padding: 0 0.9375rem; } }
      .page-header .dropdown .dropdown__list li {
        margin: 0; }
        .page-header .dropdown .dropdown__list li.last {
          border-top: 1px solid #d8d8d8;
          margin-top: 0.5rem;
          position: relative; }
          .page-header .dropdown .dropdown__list li.last a {
            margin-top: 0.5rem;
            font-size: 1rem;
            display: block; }
            @media (min-width: 580px) {
              .page-header .dropdown .dropdown__list li.last a {
                font-size: 1.125rem; } }
          .page-header .dropdown .dropdown__list li.last i {
            position: absolute;
            top: 8px;
            right: 0; }
            .page-header .dropdown .dropdown__list li.last i:before {
              font-family: "goal-icons";
              speak: none;
              font-style: normal;
              font-weight: normal;
              -webkit-font-feature-settings: normal;
                      font-feature-settings: normal;
              font-variant: normal;
              text-transform: none;
              direction: ltr;
              unicode-bidi: embed;
              content: "\e62f";
              font-size: 2rem;
              line-height: 2rem; }
      .page-header .dropdown .dropdown__list a {
        text-transform: none;
        font-size: 1rem;
        line-height: 2.375rem; }
        @media (min-width: 580px) {
          .page-header .dropdown .dropdown__list a {
            font-size: 1.125rem; } }
        .dev-desktop .page-header .dropdown .dropdown__list a:hover {
          color: #008aaf; }
        .page-header .dropdown .dropdown__list a.active {
          color: #008aaf; }
        .page-header .dropdown .dropdown__list a img {
          height: 1.125rem;
          width: 1.5rem;
          margin-right: 0.625rem; }
    .page-header .dropdown.dropdown--opened .dropdown__label {
      color: #fff; }
    .page-header .dropdown.dropdown--opened .dropdown__icon,
    .page-header .dropdown.dropdown--opened .dropdown__icon:hover {
      background-color: #000; }
    .page-header .dropdown.dropdown--opened .dropdown__list {
      padding: 0;
      background-color: transparent; }
      .page-header .dropdown.dropdown--opened .dropdown__list ul {
        margin-top: 2.75rem;
        padding-top: 0.75rem;
        padding-bottom: 0.3125rem; }

.part-title {
  clear: both;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  color: #838f95;
  text-align: center;
  margin-bottom: 1.25rem;
  margin-top: 1.875rem; }
  @media (min-width: 480px) {
    .part-title {
      font-size: 1.375rem;
      margin-top: 2.5rem; } }
  .part-title:first-of-type {
    margin-top: 0; }
  .part-title--uppercase {
    text-transform: uppercase; }

.card-title {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.625rem;
  margin: 0;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.75rem;
  color: #9b9b9b;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden; }
  .ua-operamini .card-title {
    padding-top: 0.6875rem; }
  .card-title::before, .card-title::after {
    background-color: #9b9b9b;
    content: "";
    display: inline-block;
    height: 0.125rem;
    width: 1.25rem;
    margin: 0.5rem 0.625rem; }

h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  clear: both;
  color: #838f95;
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  height: 2.5rem;
  line-height: 2.5rem;
  margin: 0;
  padding: 0; }
  h1 + [class*="widget-"] > .widget-headline {
    margin-top: 0; }

.message-notice {
  color: #a2aaad;
  font-size: 1.375rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin: 1.875rem 0 3.125rem; }
  @media (min-width: 980px) {
    .message-notice {
      font-size: 1.875rem; } }

.nav-tabs {
  border-bottom: 5px solid #000;
  padding: 0.625rem 0; }
  .nav-tabs .btn, .nav-tabs .btn--outline {
    margin: 0;
    font-size: 0.875rem; }
    .ua-vn-blackberry .nav-tabs .btn.is-clicked::after, .ua-vn-blackberry .nav-tabs .btn--outline.is-clicked::after {
      -webkit-transition: none;
      transition: none;
      -webkit-transform: none;
              transform: none;
      -webkit-animation-play-state: paused;
              animation-play-state: paused; }
    @media (min-width: 980px) {
      .nav-tabs .btn, .nav-tabs .btn--outline {
        font-size: 1rem; } }
  .nav-tabs a:nth-last-child(2):first-child {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%; }
    .nav-tabs a:nth-last-child(2):first-child ~ a:last-child {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
  .nav-tabs a:nth-last-child(3):first-child,
  .nav-tabs a:nth-last-child(3):first-child ~ a {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%; }
    .nav-tabs a:nth-last-child(3):first-child:last-child,
    .nav-tabs a:nth-last-child(3):first-child ~ a:last-child {
      width: 32.20339%;
      float: right;
      margin-right: 0; }
  .nav-tabs--inside {
    padding: 0.625rem 0; }
    .nav-tabs--inside .btn {
      margin: 0;
      font-size: 0.875rem; }
      @media (min-width: 980px) {
        .nav-tabs--inside .btn {
          font-size: 1rem; } }
    .nav-tabs--inside a {
      width: 49.15254%;
      float: left; }
  .nav-tabs--fixed a:nth-last-child(2):first-child {
    width: 49.15254%;
    float: left;
    margin-right: 1.69492%; }
    .nav-tabs--fixed a:nth-last-child(2):first-child ~ a:last-child {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
  @media (min-width: 740px) {
    .nav-tabs--fixed a:nth-last-child(2):first-child {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%;
      margin-left: 16.94915%; }
      .nav-tabs--fixed a:nth-last-child(2):first-child ~ a:last-child {
        width: 32.20339%;
        float: right;
        margin-right: 0;
        margin-right: 16.94915%; } }
  .nav-tabs--fixed a:nth-last-child(3):first-child,
  .nav-tabs--fixed a:nth-last-child(3):first-child ~ a {
    width: 32.20339%;
    float: left;
    margin-right: 1.69492%; }
    .nav-tabs--fixed a:nth-last-child(3):first-child:last-child,
    .nav-tabs--fixed a:nth-last-child(3):first-child ~ a:last-child {
      width: 32.20339%;
      float: right;
      margin-right: 0; }

.nav-switch {
  height: 2.75rem;
  color: #fff;
  background-color: #1f324a;
  text-align: center;
  position: relative;
  font-size: 0;
  margin-bottom: 1.875rem; }
  @media (min-width: 480px) {
    .nav-switch {
      margin-bottom: 2.5rem; } }
  @media (max-width: 579px) {
    .nav-switch {
      padding: 0 2.75rem; } }
  .ua-ucbrowser .nav-switch,
  .ua-operamini .nav-switch {
    padding: 0 2.75rem; }
  .nav-switch__prev, .nav-switch__next {
    display: inline-block;
    height: 2.75rem;
    width: 2.75rem;
    font-size: 2rem;
    line-height: 2.75rem;
    color: #fff;
    text-decoration: none;
    vertical-align: top; }
    @media (max-width: 579px) {
      .nav-switch__prev, .nav-switch__next {
        position: absolute;
        top: 0; } }
    .ua-ucbrowser .nav-switch__prev,
    .ua-operamini .nav-switch__prev, .ua-ucbrowser .nav-switch__next,
    .ua-operamini .nav-switch__next {
      position: absolute;
      top: 0; }
    .ua-operamini .nav-switch__prev, .ua-operamini .nav-switch__next {
      top: 0.375rem; }
      .ua-operamini .nav-switch__prev::before, .ua-operamini .nav-switch__next::before {
        display: none;
        visibility: hidden; }
  .nav-switch__prev:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e62e"; }
  @media (max-width: 579px) {
    .nav-switch__prev {
      left: 0; } }
  .ua-ucbrowser .nav-switch__prev,
  .ua-operamini .nav-switch__prev {
    left: 0; }
  .nav-switch__next:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e62f"; }
  @media (max-width: 579px) {
    .nav-switch__next {
      right: 0; } }
  .ua-ucbrowser .nav-switch__next,
  .ua-operamini .nav-switch__next {
    right: 0; }
  .nav-switch__label {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.75rem; }
    @media (min-width: 580px) {
      .nav-switch__label {
        font-size: 1.375rem;
        max-width: calc(100% - 5.5rem); } }
    .ua-operamini .nav-switch__label {
      padding-top: 0.75rem; }

.sponsorship-strip {
  display: none;
  height: 2.75rem;
  clear: both;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 0.625rem; }
  @media (max-width: 479px) {
    .sponsorship-strip {
      margin-left: 0;
      margin-right: 0; } }
  .sponsorship-strip.sponsorship-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .sponsorship-strip .image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-size: contain;
    background-repeat: no-repeat; }
    .ua-ie .sponsorship-strip .image {
      display: inline-block; }
  .sponsorship-strip .text {
    font-size: 0.875rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .ua-operamini .sponsorship-strip .text {
      position: relative;
      top: 0.6875rem; }
  .sponsorship-strip > * {
    height: 2.75rem;
    line-height: 2.75rem;
    white-space: nowrap; }

.widget-share {
  display: block;
  visibility: hidden;
  opacity: 0;
  color: #0a1721;
  overflow: hidden;
  position: relative;
  min-height: 3.125rem;
  -webkit-transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, visibility;
  pointer-events: none; }
  .widget-share.opened {
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: all; }
  .widget-share .share-wrapper {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .widget-share .shares-counter {
    font-size: 0.875rem;
    text-align: center;
    line-height: 2.75rem;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .widget-share .shares-counter .counter {
      font-size: 1.5rem; }
    @media (min-width: 740px) {
      .widget-share .shares-counter {
        font-size: 1.25rem; }
        .widget-share .shares-counter .counter {
          font-size: 2.125rem; } }
  .widget-share .social {
    text-align: center;
    vertical-align: middle;
    position: relative;
    font-size: 0;
    height: 48px; }
    .widget-share .social.two-rows {
      height: 96px; }
  .widget-share .social-btn-group {
    position: absolute;
    left: 0;
    right: 0; }
    .widget-share .social-btn-group .social-btn {
      opacity: 1;
      visibility: visibile; }
      .widget-share .social-btn-group .social-btn:not(.social-btn-more) {
        -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .widget-share .social-btn-group:not(.current) .social-btn {
      opacity: 0;
      visibility: hidden; }
    .widget-share .social-btn-group.current {
      z-index: 1; }
      .widget-share .social-btn-group.current .social-btn-more {
        opacity: 1;
        visibility: visibile; }
      .widget-share .social-btn-group.current:last-child .social-btn-more::before {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        -webkit-transition: -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .widget-share .social-btn {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    color: #fff;
    border: 1px solid #fff;
    background-color: #f00;
    cursor: pointer;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    margin: 0.125rem;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .widget-share .social-btn::before {
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 3rem;
      margin-top: -1.5rem;
      margin-left: -1.5rem;
      line-height: 1; }
  .widget-share .social-btn-line {
    position: relative;
    overflow: hidden; }
    .widget-share .social-btn-line iframe {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      -webkit-transform: scale(2.5);
              transform: scale(2.5); }

.card [data-element="flipper"] {
  height: 100%;
  position: relative;
  background-color: #fff; }

.card [data-side] {
  display: block;
  position: relative;
  text-decoration: none;
  clear: both;
  -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, visibility;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
  .card [data-side][href] {
    cursor: pointer; }

.dev-desktop .card .title {
  -webkit-transition: color .2s ease;
  transition: color .2s ease; }

.dev-desktop .card [data-side="front"]:hover {
  color: #b68339; }

.card [data-side="back"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%; }
  .ua-operamini .card [data-side="back"] {
    display: none; }
  .card [data-side="back"] h3 {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    position: absolute; }
  .card [data-side="back"] .widget-share {
    height: 100%; }
    .card [data-side="back"] .widget-share .shares-counter {
      display: none; }

.card .picture {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border: 0 solid #fff;
  overflow: hidden; }
  .card .picture img {
    width: 100%; }

.card .title {
  display: block;
  color: #000;
  line-height: 1.2;
  position: relative; }
  .card .title h3 {
    font-weight: 500; }
  .dev-desktop .card .title:hover {
    color: #b68339; }

.card .title-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  word-wrap: break-word; }
  .card .title-wrapper > * {
    margin: 0;
    max-height: 100%;
    width: 100%;
    font-size: inherit;
    line-height: inherit; }

.card .share {
  background-color: #000; }

.card .image {
  display: none;
  visibility: hidden;
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  right: 0;
  height: 2.1875rem;
  background-repeat: no-repeat;
  background-position: center center; }

.card footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #f5f5f5;
  height: 2.8125rem;
  padding: 0 2rem 0 0.625rem;
  overflow: hidden; }
  .ua-safari .card footer {
    bottom: 1px; }
  .ua-operamini .card footer {
    padding-top: 0.8125rem; }
  .card footer > *:nth-last-child(2) {
    margin-right: 0; }
  .card footer time {
    color: #000;
    position: relative;
    padding-left: 0.4375rem;
    font-weight: 300;
    float: left;
    margin-right: 0.3125rem; }
    .card footer time::after {
      content: "";
      position: absolute;
      height: 1.375rem;
      width: 0.125rem;
      top: 50%;
      margin-top: -0.6875rem;
      left: 0;
      background-color: #b68339; }
  .card footer .category {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    max-width: 49%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    direction: ltr;
    float: right; }
  .card footer [data-role="flip-button"] {
    display: inline-block;
    width: 2.3125rem;
    height: 2.3125rem;
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0.3125rem 0 0.3125rem 0.3125rem;
    color: #000;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0; }
    .card footer [data-role="flip-button"]:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e633"; }
    .ua-operamini .card footer [data-role="flip-button"] {
      display: none; }
    .card footer [data-role="flip-button"]::after {
      content: "";
      height: 1.25rem;
      width: 0.0625rem;
      background-color: #f5f5f5;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -0.625rem; }
  .card footer .category,
  .card footer time {
    line-height: 2.8125rem;
    font-size: 0.75rem; }
  .card footer i {
    line-height: 2.8125rem;
    font-size: 1.25rem;
    float: right;
    margin-left: 0.3125rem; }

.card [data-state="flipped"] [data-side="back"] {
  opacity: 1;
  visibility: visible; }
  .dev-desktop .card [data-state="flipped"] [data-side="back"] .title:hover {
    color: #b68339; }
  .card [data-state="flipped"] [data-side="back"] .widget-share {
    visibility: visible;
    opacity: 1;
    pointer-events: all; }

.card [data-state="flipped"] [data-side="front"] {
  opacity: 0;
  visibility: hidden; }

.card [data-state="flipped"] footer [data-role="flip-button"]:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e632"; }

.card .type-video,
.card .type-gallery {
  background-color: #000; }
  .card .type-video .picture,
  .card .type-gallery .picture {
    border-color: #000; }
  .card .type-video [data-side="front"] .title,
  .card .type-gallery [data-side="front"] .title {
    color: #fff; }
    .card .type-video [data-side="front"] .title:hover,
    .card .type-gallery [data-side="front"] .title:hover {
      color: #b68339; }
  .dev-desktop .card .type-video [data-side="back"] .title, .dev-desktop
  .card .type-gallery [data-side="back"] .title {
    color: #fff; }
    .dev-desktop .card .type-video [data-side="back"] .title:hover, .dev-desktop
    .card .type-gallery [data-side="back"] .title:hover {
      color: #b68339; }
  .card .type-video footer,
  .card .type-gallery footer {
    background-color: #000;
    border-top-color: #9b9b9b; }
    .card .type-video footer time,
    .card .type-gallery footer time {
      color: #fff; }
    .card .type-video footer [data-role="flip-button"],
    .card .type-gallery footer [data-role="flip-button"] {
      color: #fff; }
      .card .type-video footer [data-role="flip-button"]::after,
      .card .type-gallery footer [data-role="flip-button"]::after {
        background-color: #9b9b9b; }
    .card .type-video footer .media,
    .card .type-gallery footer .media {
      color: #fff;
      font-size: 1.25rem;
      float: left;
      margin: 0 0.625rem 0 0; }
    .card .type-video footer .category,
    .card .type-gallery footer .category {
      color: #fff; }

.card .type-gallery footer .media:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e63e"; }

.card .type-video footer .media:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e617"; }

.card .type-media-video,
.card .type-media-gallery {
  background-color: #000;
  border: 1px solid #ecf1f0; }
  .card .type-media-video .picture,
  .card .type-media-gallery .picture {
    background-color: #000; }
  .card .type-media-video footer,
  .card .type-media-gallery footer {
    background-color: #000; }
    .card .type-media-video footer [data-role="flip-button"],
    .card .type-media-gallery footer [data-role="flip-button"] {
      color: #fff; }
    .card .type-media-video footer .media,
    .card .type-media-gallery footer .media {
      color: #fff;
      font-size: 1.25rem;
      float: left;
      margin: 0 0.625rem 0 0; }
    .card .type-media-video footer .category,
    .card .type-media-gallery footer .category {
      color: #fff; }
  .card .type-media-video time,
  .card .type-media-video .title,
  .card .type-media-gallery time,
  .card .type-media-gallery .title {
    color: #fff; }
  .dev-desktop .card .type-media-video [data-side="back"] .title, .dev-desktop
  .card .type-media-gallery [data-side="back"] .title {
    color: #fff; }
    .dev-desktop .card .type-media-video [data-side="back"] .title:hover, .dev-desktop
    .card .type-media-gallery [data-side="back"] .title:hover {
      color: #b68339; }

.card .type-media-gallery footer .media:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e63e"; }

.card .type-media-video footer .media:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e617"; }

.card .type-video footer .category,
.card .type-gallery footer .category,
.card .type-media-gallery footer .category,
.card .type-media-video footer .category {
  max-width: 30%; }

.ua-operamini .card .type-video footer .media, .ua-operamini
.card .type-gallery footer .media, .ua-operamini
.card .type-media-gallery footer .media, .ua-operamini
.card .type-media-video footer .media {
  position: relative;
  top: -0.3125rem; }

.card.sponsorship-active [data-side],
.card.sponsorship-active footer {
  background-repeat: no-repeat;
  background-position: center center; }

.card.sponsorship-active footer time {
  display: none;
  visibility: hidden; }

.card.sponsorship-active footer [data-role="flip-button"] {
  background-color: rgba(255, 255, 255, 0.7); }

.card.sponsorship-active .type-gallery footer [data-role="flip-button"],
.card.sponsorship-active .type-video footer [data-role="flip-button"],
.card.sponsorship-active .type-media-gallery footer [data-role="flip-button"],
.card.sponsorship-active .type-media-video footer [data-role="flip-button"] {
  background-color: rgba(0, 0, 0, 0.7); }

.table {
  background-color: #fff; }
  .table__header {
    color: #fff;
    background-color: #000;
    border-color: #000;
    font-weight: 600; }
  .table__row {
    position: relative;
    font-size: 0;
    margin: 0 0.625rem;
    white-space: nowrap; }
    .table__row--underline {
      border-bottom: 1px solid #f5f5f5; }
  .table__cell {
    display: inline-block;
    padding: 0.625rem 0;
    text-align: center;
    vertical-align: middle;
    font-size: 0.875rem;
    line-height: 1.5625rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media (min-width: 580px) {
      .table__cell {
        font-size: 1rem; } }
    .table__cell a {
      color: inherit;
      text-decoration: none; }
      .table__cell a:hover {
        color: #b68339; }

table.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse; }

td.table__cell,
th.table__cell {
  display: table-cell;
  padding: 0.625rem; }

.layout-master {
  min-width: 18.9375rem; }
  .layout-master .elem-container {
    clear: both; }
    @media (max-width: 479px) {
      .layout-master .elem-container {
        max-width: 100%;
        min-width: 100%; } }
    @media (min-width: 480px) and (max-width: 579px) {
      .layout-master .elem-container {
        max-width: 30rem;
        min-width: 28.9375rem; } }
    @media (min-width: 580px) and (max-width: 739px) {
      .layout-master .elem-container {
        max-width: 36.25rem;
        min-width: 35.1875rem; } }
    @media (min-width: 740px) and (max-width: 979px) {
      .layout-master .elem-container {
        max-width: 46.25rem;
        min-width: 45.1875rem; } }
    @media (min-width: 980px) and (max-width: 1579px) {
      .layout-master .elem-container {
        max-width: 61.25rem;
        min-width: 60.1875rem; } }
    @media (min-width: 1580px) {
      .layout-master .elem-container {
        max-width: 80rem;
        min-width: 78.9375rem; } }
  .layout-master .page-container {
    clear: both;
    margin: 0 auto;
    position: relative; }
    @media (max-width: 479px) {
      .layout-master .page-container {
        max-width: 100%;
        min-width: 100%; } }
    @media (min-width: 480px) and (max-width: 579px) {
      .layout-master .page-container {
        max-width: 30rem;
        min-width: 28.9375rem; } }
    @media (min-width: 580px) and (max-width: 739px) {
      .layout-master .page-container {
        max-width: 36.25rem;
        min-width: 35.1875rem; } }
    @media (min-width: 740px) and (max-width: 979px) {
      .layout-master .page-container {
        max-width: 46.25rem;
        min-width: 45.1875rem; } }
    @media (min-width: 980px) and (max-width: 1579px) {
      .layout-master .page-container {
        max-width: 61.25rem;
        min-width: 60.1875rem; } }
    @media (min-width: 1580px) {
      .layout-master .page-container {
        max-width: 80rem;
        min-width: 78.9375rem; } }
    @media (max-width: 479px) {
      .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters),
      .layout-master .page-container .gutters {
        padding-left: 0.625rem;
        padding-right: 0.625rem; }
        .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters) [data-role="ad"],
        .layout-master .page-container .gutters [data-role="ad"] {
          margin-left: -0.625rem;
          margin-right: -0.625rem; }
      .layout-master .page-container .mr-gutters {
        margin-left: 0.625rem;
        margin-right: 0.625rem; }
        .layout-master .page-container .mr-gutters [data-role="ad"] {
          margin-left: -0.625rem;
          margin-right: -0.625rem; }
      .layout-master .page-container .page-header,
      .layout-master .page-container .widget-landing-page-navigation,
      .layout-master .page-container h1 {
        margin-left: 0.625rem;
        margin-right: 0.625rem; } }
    @media (min-width: 480px) and (max-width: 579px) {
      .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters),
      .layout-master .page-container .gutters {
        padding-left: 1.0625rem;
        padding-right: 1.0625rem; }
      .layout-master .page-container .mr-gutters {
        margin-left: 1.0625rem;
        margin-right: 1.0625rem; }
      .layout-master .page-container .page-header,
      .layout-master .page-container .widget-landing-page-navigation,
      .layout-master .page-container h1 {
        margin-left: 1.0625rem;
        margin-right: 1.0625rem; } }
    @media (min-width: 580px) and (max-width: 739px) {
      .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters),
      .layout-master .page-container .gutters {
        padding-left: 1.25rem;
        padding-right: 1.25rem; }
      .layout-master .page-container .mr-gutters {
        margin-left: 1.25rem;
        margin-right: 1.25rem; }
      .layout-master .page-container .page-header,
      .layout-master .page-container .widget-landing-page-navigation,
      .layout-master .page-container h1 {
        margin-left: 1.25rem;
        margin-right: 1.25rem; } }
    @media (min-width: 740px) and (max-width: 979px) {
      .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters),
      .layout-master .page-container .gutters {
        padding-left: 1.125rem;
        padding-right: 1.125rem; }
      .layout-master .page-container .mr-gutters {
        margin-left: 1.125rem;
        margin-right: 1.125rem; }
      .layout-master .page-container .page-header,
      .layout-master .page-container .widget-landing-page-navigation,
      .layout-master .page-container h1 {
        margin-left: 1.125rem;
        margin-right: 1.125rem; } }
    @media (min-width: 980px) and (max-width: 1579px) {
      .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters),
      .layout-master .page-container .gutters {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; }
      .layout-master .page-container .mr-gutters {
        margin-left: 0.9375rem;
        margin-right: 0.9375rem; }
      .layout-master .page-container .page-header,
      .layout-master .page-container .widget-landing-page-navigation,
      .layout-master .page-container h1 {
        margin-left: 0.9375rem;
        margin-right: 0.9375rem; } }
    @media (min-width: 1580px) {
      .layout-master .page-container .page-container-bg > [class*="widget-"]:not(.no-gutters),
      .layout-master .page-container .gutters {
        padding-left: 2.25rem;
        padding-right: 2.25rem; }
      .layout-master .page-container .mr-gutters {
        margin-left: 2.25rem;
        margin-right: 2.25rem; }
      .layout-master .page-container .page-header,
      .layout-master .page-container .widget-landing-page-navigation,
      .layout-master .page-container h1 {
        margin-left: 2.25rem;
        margin-right: 2.25rem; } }
    .layout-master .page-container-bg {
      background-color: #f5f5f5;
      padding-bottom: 1.875rem;
      position: relative;
      z-index: 1; }
      .layout-master .page-container-bg:empty {
        display: none; }
  .layout-master .ad-leaderboard[data-empty] + .page-container {
    margin-top: 0.9375rem; }
  .layout-master .page-content {
    background-color: #fff;
    padding: 1.875rem; }
    .layout-master .page-content *:first-child {
      margin-top: 0; }
    .layout-master .page-content *:last-child {
      margin-bottom: 0; }

.layout-main-with-sidebar .above-content,
.layout-main-with-sidebar .main-container,
.layout-main-with-sidebar .below-content {
  clear: both;
  position: relative; }

.layout-main-with-sidebar .main-container > aside .commercial {
  display: none;
  visibility: hidden; }

@media (min-width: 980px) {
  .layout-main-with-sidebar .main-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .layout-main-with-sidebar .main-container > .main-content,
    .layout-main-with-sidebar .main-container > aside {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
    .layout-main-with-sidebar .main-container > .main-content {
      width: 66.10169%;
      float: left;
      margin-right: 1.69492%; }
    .layout-main-with-sidebar .main-container > aside {
      width: 32.20339%;
      float: right;
      margin-right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .layout-main-with-sidebar .main-container > aside > * {
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
        .layout-main-with-sidebar .main-container > aside > *:not(:last-child) {
          margin-bottom: 1.25rem; }
      .layout-main-with-sidebar .main-container > aside .commercial {
        display: block;
        visibility: visible;
        position: relative;
        background-color: #fff;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1; }
      .layout-main-with-sidebar .main-container > aside [data-role="ad"] {
        z-index: 50; } }

@media (max-width: 979px) {
  .layout-article .scroll-group .article-content .content,
  .layout-article .scroll-group .article-content aside {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .layout-article .scroll-group .article-content aside .commercial {
    display: none;
    visibility: hidden; } }

@media (min-width: 980px) {
  .layout-article .scroll-group .article-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .ua-ucbrowser .layout-article .scroll-group .article-content,
    .ua-androidbrowser .layout-article .scroll-group .article-content {
      display: block; }
    .layout-article .scroll-group .article-content .content {
      width: 66.10169%;
      float: left;
      margin-right: 1.69492%;
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
    .layout-article .scroll-group .article-content aside {
      width: 32.20339%;
      float: right;
      margin-right: 0;
      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 1 auto;
              flex: 1 1 auto; }
      .ua-ucbrowser .layout-article .scroll-group .article-content aside,
      .ua-androidbrowser .layout-article .scroll-group .article-content aside {
        display: block; }
      .layout-article .scroll-group .article-content aside .commercial {
        display: block;
        visibility: visible;
        position: relative;
        background-color: #fff;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1; }
      .layout-article .scroll-group .article-content aside [data-role="ad"] {
        z-index: 50; } }

.layout-article .dummy-article-widget {
  opacity: .5; }
  .layout-article .dummy-article-widget .article-container {
    padding-top: 1rem;
    min-height: 100vh; }
  .layout-article .dummy-article-widget header {
    background-color: #ccc;
    height: 2.5rem;
    margin-bottom: 1rem; }
  .layout-article .dummy-article-widget .picture {
    background-color: #ccc;
    height: 12.5rem; }
  .layout-article .dummy-article-widget .body .p {
    background-color: #ccc;
    margin-bottom: 1rem; }
    .layout-article .dummy-article-widget .body .p:nth-child(2n) {
      height: 3rem; }
    .layout-article .dummy-article-widget .body .p:nth-child(2n + 1) {
      height: 2rem;
      float: left;
      clear: both;
      width: 80%; }

.layout-article .article-delimiter {
  height: 5rem;
  margin: 1.25rem 0; }
  .layout-article .article-delimiter.hidden {
    display: none;
    visibility: hidden; }
  .layout-article .article-delimiter.invisible {
    visibility: hidden; }

.layout-article .panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 5rem;
  padding: 0.625rem 0;
  background-color: #00ac77;
  color: #fff; }
  .layout-article .panel.panel-top {
    position: fixed;
    top: -5rem;
    opacity: 0;
    -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), top 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), top 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, top;
    z-index: 80; }
    .layout-article .panel.panel-top.opened {
      top: 0;
      opacity: 1;
      -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), top 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
      transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), top 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .layout-article .panel .elem-container {
    position: relative;
    height: 100%;
    margin: 0 auto;
    padding: 0 0.625rem;
    padding-left: 55px; }
    .layout-article .panel .elem-container > * {
      height: 100%;
      cursor: pointer; }
    .layout-article .panel .elem-container .next {
      position: absolute;
      top: 0;
      font-size: 1.5rem;
      line-height: 3.75rem;
      padding: 0 0.625rem;
      left: 0;
      border-right: 1px solid #fff; }
      .layout-article .panel .elem-container .next:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e604"; }
    .layout-article .panel .elem-container .content {
      width: 100%; }
      .layout-article .panel .elem-container .content .label,
      .layout-article .panel .elem-container .content .title {
        font-size: 0.875rem;
        line-height: 1.0625rem;
        overflow: hidden;
        word-wrap: break-word; }
      .layout-article .panel .elem-container .content .label {
        font-weight: 700; }
      .layout-article .panel .elem-container .content .title {
        max-height: 2.125rem; }
    .layout-article .panel .elem-container .close {
      display: none;
      position: absolute;
      top: 0;
      font-size: 1.5rem;
      padding: 0 0.625rem;
      right: 0; }
      .layout-article .panel .elem-container .close:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e608"; }
  @media (min-width: 480px) {
    .layout-article .panel.panel-top .elem-container {
      padding: 0 3.4375rem; }
    .layout-article .panel .elem-container .content .label,
    .layout-article .panel .elem-container .content .title {
      font-size: 1rem;
      line-height: 1.1875rem; }
    .layout-article .panel .elem-container .content .title {
      max-height: 2.375rem; }
    .layout-article .panel .elem-container .close {
      display: block; } }
  @media (min-width: 740px) {
    .layout-article .panel .elem-container .content .label {
      font-size: 1.125rem;
      line-height: 1.375rem; }
    .layout-article .panel .elem-container .content .title {
      font-size: 1.125rem;
      line-height: 1.875rem;
      max-height: 1.875rem; } }

.widget-footer-sponsor-strip {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-bottom: 1.75rem; }
  @media (min-width: 480px) {
    .widget-footer-sponsor-strip {
      padding-top: 0.3125rem;
      padding-bottom: 0.3125rem; } }
  @media (min-width: 580px) {
    .widget-footer-sponsor-strip {
      padding-top: 0.375rem;
      padding-bottom: 0.375rem; } }
  @media (min-width: 740px) {
    .widget-footer-sponsor-strip {
      padding-top: 0.5625rem;
      padding-bottom: 0.5625rem; } }
  @media (min-width: 980px) {
    .widget-footer-sponsor-strip {
      padding-top: 0.625rem;
      padding-bottom: 0.625rem; } }
  @media (min-width: 1580px) {
    .widget-footer-sponsor-strip {
      padding-top: 0.875rem;
      padding-bottom: 0.875rem; } }
  .widget-footer-sponsor-strip ul {
    white-space: nowrap;
    list-style: none;
    text-align: center;
    padding-left: 0;
    font-size: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 18.5rem;
    height: 1.0625rem;
    margin-right: auto;
    margin-left: auto;
    background-image: url("/conmebol-assets/img/cl-sponsor-strip-int.d93fd32f0e.png"); }
    .edition-pt-br .widget-footer-sponsor-strip ul {
      background-image: url("/conmebol-assets/img/cl-sponsor-strip-pt-br.c007db4c29.png"); }
    @media (min-width: 480px) {
      .widget-footer-sponsor-strip ul {
        height: 1.375rem;
        width: 23.125rem; } }
    @media (min-width: 580px) {
      .widget-footer-sponsor-strip ul {
        height: 1.6875rem;
        width: 28.9375rem; } }
    @media (min-width: 740px) {
      .widget-footer-sponsor-strip ul {
        height: 2.4375rem;
        width: 41.3125rem; } }
    @media (min-width: 980px) {
      .widget-footer-sponsor-strip ul {
        height: 2.6875rem;
        width: 45.875rem; } }
    @media (min-width: 1580px) {
      .widget-footer-sponsor-strip ul {
        height: 3.5rem;
        width: 60rem; } }
  .widget-footer-sponsor-strip li {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 1.9375rem;
    margin-right: 0.0625rem; }
    @media (min-width: 480px) {
      .widget-footer-sponsor-strip li {
        width: 2.4375rem;
        margin-right: 0.125rem; } }
    @media (min-width: 580px) {
      .widget-footer-sponsor-strip li {
        width: 3.0625rem;
        margin-right: 0.125rem; } }
    @media (min-width: 740px) {
      .widget-footer-sponsor-strip li {
        width: 4.375rem;
        margin-right: 0.25rem; } }
    @media (min-width: 980px) {
      .widget-footer-sponsor-strip li {
        width: 4.875rem;
        margin-right: 0.25rem; } }
    @media (min-width: 1580px) {
      .widget-footer-sponsor-strip li {
        width: 6.25rem;
        margin-right: 0.4375rem; } }
    .widget-footer-sponsor-strip li:last-child {
      margin-right: 0; }
  .widget-footer-sponsor-strip a {
    font-size: 0;
    display: block;
    height: 100%;
    overflow: hidden; }

.slider__wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-x: none; }
  .slider__wrapper::-webkit-scrollbar {
    display: block;
    -webkit-appearance: none;
            appearance: none; }
  @media (min-width: 980px) {
    .slider__wrapper {
      overflow-x: hidden; } }

.slider__list {
  font-size: 0;
  white-space: nowrap;
  position: relative;
  padding-bottom: 1.25rem; }
  .slider__list > * {
    white-space: normal; }

.slider__paginator {
  display: none;
  visibility: hidden;
  padding: 0;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 0;
  top: -1.25rem;
  font-size: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  @media (min-width: 480px) and (max-width: 579px) {
    .slider__paginator {
      top: 0; } }
  .slider__paginator--visible {
    display: block;
    visibility: visible;
    top: -1.25rem; }
    @media (min-width: 480px) and (max-width: 579px) {
      .slider__paginator--visible {
        top: -0.9375rem; } }
  .slider__paginator-page, .slider__paginator--next, .slider__paginator--prev {
    display: inline-block;
    cursor: pointer; }
  .slider__paginator--goto {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.625rem; }
  .slider__paginator-page {
    position: relative;
    z-index: 5;
    width: 1rem;
    border: 1px solid #b68339;
    border-radius: 50%;
    height: 1rem; }
    .slider__paginator-page:not(:last-child) {
      margin-right: 0.625rem; }
    .slider__paginator-page.current {
      cursor: default;
      background-color: #b68339; }
  .slider__paginator--prev, .slider__paginator--next {
    color: #b68339; }
    .slider__paginator--prev::before, .slider__paginator--next::before {
      font-size: 2.25rem;
      display: inline-block;
      vertical-align: middle; }
  .slider__paginator--disabled {
    color: #d8d8d8;
    cursor: default; }
  .slider__paginator--prev:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e605";
    -webkit-transform: none /*rtl:rotate(180deg)*/;
            transform: none /*rtl:rotate(180deg)*/; }
  .slider__paginator--next:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e606";
    -webkit-transform: none /*rtl:rotate(180deg)*/;
            transform: none /*rtl:rotate(180deg)*/; }

.widget-share {
  display: block;
  visibility: hidden;
  opacity: 0;
  color: #0a1721;
  overflow: hidden;
  position: relative;
  min-height: 3.125rem;
  -webkit-transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, visibility;
  pointer-events: none; }
  .widget-share.opened {
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: all; }
  .widget-share .share-wrapper {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .widget-share .shares-counter {
    font-size: 0.875rem;
    text-align: center;
    line-height: 2.75rem;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .widget-share .shares-counter .counter {
      font-size: 1.5rem; }
    @media (min-width: 740px) {
      .widget-share .shares-counter {
        font-size: 1.25rem; }
        .widget-share .shares-counter .counter {
          font-size: 2.125rem; } }
  .widget-share .social {
    text-align: center;
    vertical-align: middle;
    position: relative;
    font-size: 0;
    height: 48px; }
    .widget-share .social.two-rows {
      height: 96px; }
  .widget-share .social-btn-group {
    position: absolute;
    left: 0;
    right: 0; }
    .widget-share .social-btn-group .social-btn {
      opacity: 1;
      visibility: visibile; }
      .widget-share .social-btn-group .social-btn:not(.social-btn-more) {
        -webkit-transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), visibility 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
    .widget-share .social-btn-group:not(.current) .social-btn {
      opacity: 0;
      visibility: hidden; }
    .widget-share .social-btn-group.current {
      z-index: 1; }
      .widget-share .social-btn-group.current .social-btn-more {
        opacity: 1;
        visibility: visibile; }
      .widget-share .social-btn-group.current:last-child .social-btn-more::before {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        -webkit-transition: -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
        transition: transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1), -webkit-transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1); }
  .widget-share .social-btn {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    color: #fff;
    border: 1px solid #fff;
    background-color: #f00;
    cursor: pointer;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    margin: 0.125rem;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
    .widget-share .social-btn::before {
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 3rem;
      margin-top: -1.5rem;
      margin-left: -1.5rem;
      line-height: 1; }
  .widget-share .social-btn-line {
    position: relative;
    overflow: hidden; }
    .widget-share .social-btn-line iframe {
      position: absolute !important;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      -webkit-transform: scale(2.5);
              transform: scale(2.5); }

.slider-paginator {
  list-style: none;
  display: block;
  padding: 0;
  margin: 1.25rem 0 0 0;
  text-align: center;
  clear: both;
  height: 1.5rem; }
  .slider-paginator li {
    display: inline-block;
    cursor: pointer;
    line-height: 1.5rem;
    height: 1.5rem;
    overflow: hidden; }
  .slider-paginator .page {
    padding: 0.1875rem 0.15625rem;
    position: relative; }
    .slider-paginator .page span {
      display: block;
      width: 1.125rem;
      border-radius: 1.125rem;
      height: 1.125rem;
      border: 1px solid #b68339;
      background-color: transparent;
      -webkit-transition: background-color .2s ease;
      transition: background-color .2s ease; }
    .ua-vn-blackberry .slider-paginator .page {
      position: relative;
      top: 0.1875rem; }
  .slider-paginator .current {
    cursor: default; }
    .slider-paginator .current span {
      background-color: #b68339; }
  .slider-paginator .prev,
  .slider-paginator .next {
    color: #b68339;
    font-size: 2.5rem;
    position: relative;
    direction: ltr;
    width: 1.875rem;
    overflow: hidden; }
    .slider-paginator .prev::before,
    .slider-paginator .next::before {
      display: inline-block;
      position: absolute; }
  .slider-paginator .disabled {
    color: #d8d8d8;
    cursor: default; }
  .slider-paginator .prev {
    margin-right: 1.09375rem; }
    .slider-paginator .prev:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e605";
      right: -0.875rem; }
  .slider-paginator .next {
    margin-left: 1.09375rem; }
    .slider-paginator .next:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e606";
      left: -0.875rem; }

[data-role="ad"][data-state="loaded"] {
  text-align: center;
  pointer-events: none; }
  [data-role="ad"][data-state="loaded"] > *,
  [data-role="ad"][data-state="loaded"] iframe {
    pointer-events: all; }
  [data-role="ad"][data-state="loaded"] > [id^="ad-"],
  [data-role="ad"][data-state="loaded"] [id$="__container__"] {
    pointer-events: none; }
  [data-role="ad"][data-state="loaded"] div {
    margin: 0 auto; }
  [data-role="ad"][data-state="loaded"].ad-top-mpu > div, [data-role="ad"][data-state="loaded"].ad-bottom-mpu > div, [data-role="ad"][data-state="loaded"].ad-bottombanner > div, [data-role="ad"][data-state="loaded"].ad-topbanner > div {
    background-color: #fff;
    padding: 2.625rem 0 0.625rem 0;
    position: relative; }
    [data-role="ad"][data-state="loaded"].ad-top-mpu > div::before, [data-role="ad"][data-state="loaded"].ad-bottom-mpu > div::before, [data-role="ad"][data-state="loaded"].ad-bottombanner > div::before, [data-role="ad"][data-state="loaded"].ad-topbanner > div::before {
      content: attr(data-label);
      position: absolute;
      padding: 0.625rem;
      top: 0;
      left: 0;
      right: 0;
      text-align: left;
      font-size: 0.875rem;
      color: #a2aaad;
      line-height: 1.375rem; }
      .ua-ie [data-role="ad"][data-state="loaded"].ad-top-mpu > div::before, .ua-ie [data-role="ad"][data-state="loaded"].ad-bottom-mpu > div::before, .ua-ie [data-role="ad"][data-state="loaded"].ad-bottombanner > div::before, .ua-ie [data-role="ad"][data-state="loaded"].ad-topbanner > div::before {
        top: 0.625rem; }
  [data-role="ad"][data-state="loaded"].ad-leaderboard {
    clear: both;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
  [data-role="ad"][data-state="loaded"].out-of-page {
    line-height: 0; }
  [data-role="ad"][data-state="loaded"].premium-takeover iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  [data-role="ad"][data-state="loaded"].premium-takeover.ad-leaderboard:not([data-empty]) {
    position: relative;
    height: 15.625rem;
    margin-top: 6.375rem; }
    @media (min-width: 580px) {
      [data-role="ad"][data-state="loaded"].premium-takeover.ad-leaderboard:not([data-empty]) {
        height: 18.75rem; } }
    @media (min-width: 980px) {
      [data-role="ad"][data-state="loaded"].premium-takeover.ad-leaderboard:not([data-empty]) {
        margin-top: 10.125rem; } }

.widget-header {
  clear: both;
  display: block;
  height: 50px;
  line-height: 50px;
  width: 100%;
  position: relative;
  z-index: 100; }
  .widget-header__wrapper {
    clear: both;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    background-color: #000;
    height: 50px;
    left: 0;
    padding: 0 1.69492%;
    position: fixed;
    top: 0;
    -webkit-transition: top 250ms ease-in-out;
    transition: top 250ms ease-in-out;
    will-change: top;
    z-index: 99; }
    .ua-operamini .widget-header__wrapper {
      position: relative; }
  .widget-header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    float: left;
    margin-right: 0.9375rem; }
    @media (min-width: 980px) {
      .widget-header__logo {
        position: absolute;
        top: 0;
        left: gutter; } }
    .widget-header__logo--standard {
      visibility: visible; }
    @media (max-width: 979px) {
      .widget-header__logo img {
        height: auto;
        width: 9.375rem; } }
  .widget-header--closed:not(.widget-header--locked) .widget-header__wrapper {
    top: -50px;
    -webkit-transition: top 250ms ease-in-out;
    transition: top 250ms ease-in-out; }
  .widget-header--closed .widget-leave-goal-beta {
    display: none;
    visibility: hidden; }
  .widget-header--locked .widget-leave-goal-beta {
    display: none;
    visibility: hidden; }
  .gallery-fullscreen .widget-header {
    display: none;
    visibility: hidden; }
  .sponsorship-banner-top:not(.ua-operamini) .widget-header--top:not(.widget-header--locked) .widget-header__wrapper {
    top: 3.125rem; }
  @media (min-width: 980px) {
    .widget-header {
      height: 80px;
      line-height: 80px;
      position: relative; }
      .widget-header__wrapper {
        height: 80px; }
        .widget-header__wrapper .widget-header__logo--beta + .widget-navigation {
          padding-left: 14.375rem; }
        .widget-header__wrapper .widget-navigation {
          float: left; } }
      @media (min-width: 980px) and (min-width: 980px) {
        .widget-header__wrapper .widget-navigation {
          float: none;
          padding-left: 11.25rem;
          padding-right: 8.75rem; } }
  @media (min-width: 980px) {
      .widget-header--closed:not(.widget-header--locked) .widget-header__wrapper {
        top: -80px;
        -webkit-transition: top 250ms ease-in-out;
        transition: top 250ms ease-in-out; }
      .sponsorship-banner-top:not(.ua-operamini) .widget-header--top:not(.widget-header--locked) .widget-header__wrapper {
        top: 5rem; } }
  .widget-header__menu {
    display: block;
    visibility: visible;
    display: block;
    position: relative;
    padding: 0;
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: none;
    border: 0;
    cursor: pointer;
    background-color: transparent;
    margin-top: 0.625rem;
    position: absolute;
    top: 0;
    cursor: pointer;
    right: 1.69492%; }
    .widget-header__menu:focus {
      outline: 0; }
    .widget-header__menu span {
      display: block;
      position: relative;
      height: 0.25rem;
      top: 0.8125rem;
      background-color: #fff; }
      .widget-header__menu span::before, .widget-header__menu span::after {
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 0.25rem;
        background-color: #fff;
        content: "";
        will-change: transform;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
        -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%; }
        .ua-operamini .widget-header__menu span::before, .ua-operamini .widget-header__menu span::after {
          display: none;
          visibility: hidden; }
      .widget-header__menu span::before {
        top: -0.5625rem; }
      .widget-header__menu span::after {
        top: 0.5625rem; }
      .ua-operamini .widget-header__menu span {
        display: none;
        visibility: hidden; }
    .widget-header__menu--expanded span {
      background: none; }
      .widget-header__menu--expanded span::before {
        display: inline-block;
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
                transform: rotate3d(0, 0, 1, 45deg); }
      .widget-header__menu--expanded span::after {
        display: inline-block;
        top: 0;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
                transform: rotate3d(0, 0, 1, -45deg); }
    @media (min-width: 580px) and (max-width: 979px) {
      .widget-header__menu {
        margin-left: 2rem; } }
    @media (min-width: 980px) {
      .widget-header__menu {
        display: none;
        visibility: hidden; } }
  @media (max-width: 979px) {
    .widget-header .widget-navigation {
      clear: both;
      line-height: 1; }
      .widget-header .widget-navigation::before {
        display: none; } }

.widget-navigation {
  text-transform: uppercase;
  font-weight: 500; }
  @media (max-width: 979px) {
    .widget-navigation {
      position: fixed;
      top: 50px;
      bottom: 0;
      width: 14rem;
      background-color: #000;
      padding-bottom: 4.375rem;
      right: 0;
      padding-left: 0.625rem;
      -webkit-transform: translate3d(14rem, 0, 0);
              transform: translate3d(14rem, 0, 0); }
      html:not(.no-animate) .widget-navigation {
        -webkit-transition: -webkit-transform 400ms ease-in-out;
        transition: -webkit-transform 400ms ease-in-out;
        transition: transform 400ms ease-in-out;
        transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out; }
      .ua-operamini .widget-navigation,
      .ua-androidbrowser .widget-navigation,
      .ua-ucbrowser .widget-navigation {
        display: none;
        visibility: hidden;
        -webkit-transform: none;
                transform: none; }
      .ua-operamini .widget-navigation {
        height: 125rem; }
      .widget-navigation--opened {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0); }
        .ua-operamini .widget-navigation--opened,
        .ua-androidbrowser .widget-navigation--opened,
        .ua-ucbrowser .widget-navigation--opened {
          display: block;
          visibility: visible;
          -webkit-transform: none;
                  transform: none; } }
  .widget-navigation__sub-nav {
    display: none;
    margin-top: 1.5625rem; }
    @media (min-width: 980px) {
      .widget-navigation__sub-nav {
        display: block;
        position: absolute;
        top: 80%;
        left: 50%;
        margin-top: 0.3125rem;
        -webkit-transform: translate3d(-50%, 0, 0);
                transform: translate3d(-50%, 0, 0);
        opacity: 0;
        visibility: hidden;
        background-color: #fff;
        width: 24.375rem;
        padding: 1.25rem 0.625rem 0;
        -webkit-box-shadow: 0 2px 8px 0 #081f2c;
                box-shadow: 0 2px 8px 0 #081f2c; }
        html:not(.no-animate) .widget-navigation__sub-nav {
          -webkit-transition: opacity .3s, visibility .3s;
          transition: opacity .3s, visibility .3s; }
        .widget-navigation__sub-nav::before {
          content: "";
          position: absolute;
          top: -9px;
          left: 50%;
          margin-left: -11px;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 0 11px 9px;
          border-color: transparent transparent #fff; } }
    .widget-navigation__item--sub-nav-open > .widget-navigation__sub-nav {
      display: block; }
      .widget-navigation__item--sub-nav-open > .widget-navigation__sub-nav .widget-navigation__sub-item {
        display: block; }
      @media (min-width: 980px) {
        .widget-navigation__item--sub-nav-open > .widget-navigation__sub-nav {
          opacity: 1;
          visibility: visible; } }
    .ua-operamini .widget-navigation__sub-nav::after {
      display: none; }
    .widget-navigation__sub-nav-toggle {
      position: relative; }
      .widget-navigation__sub-nav-toggle::after {
        -webkit-transition: top .3s, -webkit-transform .3s;
        transition: top .3s, -webkit-transform .3s;
        transition: transform .3s, top .3s;
        transition: transform .3s, top .3s, -webkit-transform .3s; }
      .ua-operamini .widget-navigation__sub-nav-toggle::after {
        display: none; }
      .widget-navigation__sub-nav-toggle:after {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e62d";
        font-size: 1.375rem;
        position: absolute;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
        @media (min-width: 980px) {
          .widget-navigation__sub-nav-toggle:after {
            top: 50%;
            right: -1.75rem; } }
        @media (max-width: 979px) {
          .widget-navigation__sub-nav-toggle:after {
            top: 0.9375rem;
            right: -0.9375rem; } }
      .widget-navigation__item--sub-nav-open > .widget-navigation__sub-nav-toggle::after {
        -webkit-transform: translateY(-50%) rotate(180deg);
                transform: translateY(-50%) rotate(180deg); }
  .widget-navigation__sub-items {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.5rem; }
    @media (max-width: 979px) {
      .widget-navigation__sub-items {
        padding-left: 1.25rem; } }
    @media (min-width: 980px) {
      .widget-navigation__sub-items {
        width: 100%; } }
  .widget-navigation__sub-item {
    position: relative;
    font-size: 1.125rem;
    display: none; }
    .widget-navigation__sub-item > a {
      text-decoration: none;
      display: block;
      color: #000; }
      .dev-desktop .widget-navigation__sub-item > a:hover span {
        color: #b68339; }
    @media (max-width: 979px) {
      .widget-navigation__sub-item {
        margin-bottom: 1.375rem; }
        .widget-navigation__sub-item > a {
          color: #fff;
          padding-left: 1.375rem; }
        .widget-navigation__sub-item:nth-child(n + 11) {
          display: none; }
        .widget-navigation__sub-item img {
          left: 0; } }
    @media (min-width: 980px) {
      .widget-navigation__sub-item {
        float: left;
        width: 50%;
        font-weight: 500;
        margin-bottom: 1.875rem; }
        .widget-navigation__sub-item > a {
          padding: 0 1.25rem; } }
  .widget-navigation__nav {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0; }
    @media (min-width: 980px) {
      .widget-navigation__nav {
        height: 5rem; } }
    @media (max-width: 979px) {
      .widget-navigation__nav {
        max-height: 100%;
        overflow-y: auto; }
        .ua-operamini .widget-navigation__nav {
          max-height: none; } }
    @media (min-width: 980px) {
      .widget-navigation__nav .dropdown__btn::after {
        display: none;
        visibility: hidden; } }
    .widget-navigation__nav .dropdown__btn > span {
      font-size: 2.5rem;
      position: relative;
      bottom: 0; }
  .widget-navigation__options {
    display: block;
    position: absolute; }
    @media (max-width: 979px) {
      .widget-navigation__options {
        bottom: 0;
        left: 0.625rem;
        right: 0.625rem; }
        .ua-operamini .widget-navigation__options,
        .ua-vn-blackberry .widget-navigation__options {
          bottom: auto; } }
    @media (min-width: 980px) {
      .widget-navigation__options {
        top: 0;
        right: 0; } }
  .widget-navigation__item {
    -webkit-transition: border-bottom-color .15s ease-in-out 2s;
    transition: border-bottom-color .15s ease-in-out 2s; }
    .widget-navigation__item--sub-nav {
      padding-right: 1.875rem; }
    .widget-navigation__item > a {
      display: block;
      color: #fff;
      text-decoration: none;
      font-size: 1.25rem;
      cursor: pointer; }
      .widget-navigation__item > a span {
        -webkit-transition: border-bottom .15s ease-in-out;
        transition: border-bottom .15s ease-in-out;
        display: inline-block;
        line-height: 1.5; }
        @media (max-width: 979px) {
          .widget-navigation__item > a span {
            padding-left: 0.625rem; } }
    .widget-navigation__item--active > a {
      color: #fff; }
      @media (max-width: 979px) {
        .widget-navigation__item--active > a span {
          border-left: 0.125rem solid #f00; } }
      @media (min-width: 980px) {
        .widget-navigation__item--active > a span {
          border-bottom: 0.125rem solid #f00; } }
    @media (min-width: 980px) {
      .widget-navigation__item {
        display: inline-block;
        position: relative;
        vertical-align: top; }
        .widget-navigation__item:not(:last-child) {
          margin-right: 1.875rem; }
        .widget-navigation__item > a {
          height: 100%;
          word-wrap: break-word;
          cursor: pointer; }
        .dev-desktop .widget-navigation__item--active:hover > span {
          border-bottom: 0.125rem solid #f00; }
        .ua-operamini .widget-navigation__item {
          padding-top: 1.25rem; }
        .dev-desktop .widget-navigation__item:not(.dropdown):not(.widget-navigation__item--active):hover > a span {
          border: 0;
          color: #b68339; } }
    @media (max-width: 979px) {
      .widget-navigation__item {
        line-height: 1.3;
        margin: 0.9375rem 0; }
        .widget-navigation__item--active {
          border-left-color: #00a9ce; }
          .dev-desktop .widget-navigation__item--active:hover {
            border-left-color: #00a9ce; }
        .dev-desktop .widget-navigation__item:hover {
          border-left-color: #00a9ce; } }
  .widget-navigation .dropdown__btn {
    padding-right: 3.125rem;
    position: relative; }
    .widget-navigation .dropdown__btn:after {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e62d";
      font-size: 2rem;
      -webkit-transition: -webkit-transform 400ms ease-in-out;
      transition: -webkit-transform 400ms ease-in-out;
      transition: transform 400ms ease-in-out;
      transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
      position: absolute;
      top: 0;
      right: 0.9375rem; }
      .dev-desktop .widget-navigation .dropdown__btn:after:hover {
        opacity: .8;
        -webkit-transition: 150ms ease-in-out;
        transition: 150ms ease-in-out; }
  .widget-navigation .dropdown__list {
    background-color: #fff;
    margin: 0.9375rem 0 0;
    -webkit-box-shadow: 0 2px 8px #838f95;
            box-shadow: 0 2px 8px #838f95;
    min-width: 9.375rem;
    left: 0; }
    .widget-navigation .dropdown__list .widget-navigation__item {
      display: block;
      list-style-type: none;
      line-height: 1.875rem;
      padding: 0.3125rem 1.25rem;
      -webkit-transition: 3s ease-in-out;
      transition: 3s ease-in-out;
      margin: 0;
      left: -0.875rem; }
      .widget-navigation .dropdown__list .widget-navigation__item::before {
        display: none;
        visibility: hidden; }
      .widget-navigation .dropdown__list .widget-navigation__item > a {
        display: block;
        color: #00000c;
        text-decoration: none;
        font-size: 1.25rem;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden; }
      .dev-desktop .widget-navigation .dropdown__list .widget-navigation__item:hover > a {
        -webkit-box-shadow: none;
                box-shadow: none; }
  .ua-operamini .widget-navigation .dropdown::before {
    margin-top: 0.4375rem; }
  .widget-navigation .dropdown--opened .dropdown__btn {
    color: #008aaf;
    opacity: 1; }
    .widget-navigation .dropdown--opened .dropdown__btn::after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .widget-navigation .dropdown--opened .dropdown__list ul {
    margin: 3.125rem 0 0.625rem; }
  .dev-desktop .widget-navigation .dropdown--opened .dropdown__list .widget-navigation__item:hover > a {
    color: #008aaf; }

@media (min-width: 980px) {
  .widget-edition-picker {
    position: absolute;
    top: 16px;
    margin-right: 1.875rem;
    right: 0; } }

.widget-edition-picker__label--editions {
  display: none;
  visibility: hidden; }

.widget-edition-picker--no-editions .widget-edition-picker__other-edition {
  display: none;
  visibility: hidden; }

@media (max-width: 979px) {
  .widget-edition-picker--no-editions .widget-edition-picker__list--languages {
    top: 3.125rem; }
    .ua-androidbrowser .widget-edition-picker--no-editions .widget-edition-picker__list--languages,
    .ua-operamini .widget-edition-picker--no-editions .widget-edition-picker__list--languages,
    .ua-ucbrowser .widget-edition-picker--no-editions .widget-edition-picker__list--languages {
      top: 6.25rem; } }

@media (max-width: 979px) {
  .widget-edition-picker--opened .widget-edition-picker__container--languages {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
    .ua-ie .widget-edition-picker--opened .widget-edition-picker__container--languages,
    .ua-ucbrowser .widget-edition-picker--opened .widget-edition-picker__container--languages,
    .ua-androidbrowser .widget-edition-picker--opened .widget-edition-picker__container--languages,
    .ua-operamini .widget-edition-picker--opened .widget-edition-picker__container--languages {
      display: block;
      visibility: visible;
      -webkit-transform: none;
              transform: none; } }

@media (min-width: 980px) {
  .widget-edition-picker--opened .widget-edition-picker__container--languages {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible; } }

@media (min-width: 980px) {
  .widget-edition-picker--opened .widget-edition-picker__button::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg); } }

@media (min-width: 980px) {
  .widget-edition-picker--editions .widget-edition-picker__label--languages {
    display: none;
    visibility: hidden; }
  .widget-edition-picker--editions .widget-edition-picker__label--editions {
    display: block;
    visibility: visible; }
    .ua-operamini .widget-edition-picker--editions .widget-edition-picker__label--editions,
    .ua-ie .widget-edition-picker--editions .widget-edition-picker__label--editions {
      top: 6.25rem; }
    .sponsorship-banner-top.ua-operamini .widget-edition-picker--editions .widget-edition-picker__label--editions {
      top: 9.375rem; } }

.dev-desktop .widget-edition-picker__close:hover {
  cursor: pointer; }

@media (max-width: 979px) {
  .widget-edition-picker__close--editions {
    color: #fff;
    cursor: pointer;
    font-size: 1.375rem;
    height: 3.125rem;
    line-height: 3.125rem;
    padding-left: 2rem; }
    .ua-operamini .widget-edition-picker__close--editions span {
      position: relative;
      top: 0.625rem; }
    .widget-edition-picker__close--editions:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e62e";
      left: 0;
      font-size: 2rem;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
    .ua-operamini .widget-edition-picker__container > .widget-edition-picker__close--editions::before {
      display: none;
      visibility: hidden; } }

@media (min-width: 980px) {
  .widget-edition-picker__close--editions {
    color: #000;
    background-color: #fff;
    width: 100%;
    padding: 0 1.25rem; }
    .widget-edition-picker__close--editions span {
      display: block;
      border-bottom: 1px solid #d8d8d8;
      line-height: 3.5rem;
      font-size: 1.125rem;
      padding: 0 2.5rem; }
      .widget-edition-picker__close--editions span:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e62e";
        left: 1.4375rem;
        font-size: 2rem;
        position: absolute; } }

@media (max-width: 979px) {
  .widget-edition-picker__close--languages {
    color: #fff;
    cursor: pointer;
    font-size: 1.375rem;
    height: 3.125rem;
    line-height: 3.125rem;
    padding-left: 2rem; }
    .ua-operamini .widget-edition-picker__close--languages span {
      position: relative;
      top: 0.625rem; }
    .widget-edition-picker__close--languages:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e62e";
      left: 0;
      font-size: 2rem;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); } }

@media (min-width: 980px) {
  .widget-edition-picker__close--languages {
    display: none;
    visibility: hidden; } }

.widget-edition-picker__button {
  color: #fff;
  cursor: pointer;
  height: 3rem;
  line-height: 1.5rem;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0.75rem 2rem 0.75rem 0.75rem; }
  .widget-edition-picker__button span {
    display: none;
    visibility: hidden; }
  .widget-edition-picker__button:after {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e62d";
    font-size: 1.375rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0.125rem;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
  @media (min-width: 980px) {
    .widget-edition-picker__button::before {
      content: "";
      width: 0.125rem;
      height: 1.375rem;
      position: absolute;
      top: 50%;
      margin-top: -0.6875rem;
      left: 0;
      background-color: #f00; } }
  @media (max-width: 979px) {
    .widget-edition-picker__button {
      border-top: 0.125rem solid #b68339;
      border-bottom: 0.125rem solid #b68339; }
      .widget-edition-picker__button:after {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e62f";
        font-size: 2rem;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 0.125rem; } }
  .widget-edition-picker__button--with-flag::before {
    display: none;
    visibility: hidden; }
  .widget-edition-picker__button--with-flag span {
    display: block;
    visibility: visible;
    width: 1.5rem;
    height: 1.125rem;
    line-height: 1;
    border: 1px solid #ecf1f0;
    position: absolute;
    top: 0.9375rem;
    left: 0.625rem; }
    .widget-edition-picker__button--with-flag span img {
      max-height: 100%;
      max-width: 100%; }

.widget-edition-picker__container {
  z-index: 100;
  top: 0;
  right: 0; }
  @media (max-width: 979px) {
    .widget-edition-picker__container {
      background-color: #000;
      position: fixed;
      bottom: 0;
      width: 15.25rem;
      will-change: transform;
      -webkit-transform: translateX(244px);
              transform: translateX(244px); }
      html:not(.no-animate) .widget-edition-picker__container {
        -webkit-transition: -webkit-transform 350ms ease-in-out;
        transition: -webkit-transform 350ms ease-in-out;
        transition: transform 350ms ease-in-out;
        transition: transform 350ms ease-in-out, -webkit-transform 350ms ease-in-out; }
      .ua-ie .widget-edition-picker__container,
      .ua-androidbrowser .widget-edition-picker__container,
      .ua-ucbrowser .widget-edition-picker__container,
      .ua-operamini .widget-edition-picker__container {
        display: none;
        visibility: hidden;
        -webkit-transform: none;
                transform: none;
        margin-top: 50px; }
      .sponsorship-banner-top.ua-operamini .widget-edition-picker__container {
        margin-top: 100px; }
      .ua-operamini .widget-edition-picker__container {
        min-height: 1000px; } }
  @media (min-width: 980px) {
    .widget-edition-picker__container {
      -webkit-box-shadow: 2px 2px 10px transparent;
              box-shadow: 2px 2px 10px transparent;
      overflow: hidden;
      position: absolute;
      -webkit-transition: opacity 100ms ease-in-out, visibility 100ms ease-in-out, -webkit-transform 200ms ease-in-out;
      transition: opacity 100ms ease-in-out, visibility 100ms ease-in-out, -webkit-transform 200ms ease-in-out;
      transition: opacity 100ms ease-in-out, visibility 100ms ease-in-out, transform 200ms ease-in-out;
      transition: opacity 100ms ease-in-out, visibility 100ms ease-in-out, transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
      will-change: multiple;
      opacity: 0;
      top: 4rem;
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
      visibility: hidden;
      border-bottom: 0.25rem solid #b68339;
      margin-right: -1.875rem; } }
  @media (min-width: 980px) {
    .widget-edition-picker__container--editions {
      top: 3.125rem; }
      .widget-edition-picker__container--editions .widget-edition-picker__header {
        display: none;
        visibility: hidden; } }
  @media (max-width: 979px) {
    .widget-edition-picker__container--editions:not(.widget-edition-picker__container--closed) {
      -webkit-transform: translateX(0);
              transform: translateX(0); }
      .ua-ie .widget-edition-picker__container--editions:not(.widget-edition-picker__container--closed),
      .ua-ucbrowser .widget-edition-picker__container--editions:not(.widget-edition-picker__container--closed),
      .ua-androidbrowser .widget-edition-picker__container--editions:not(.widget-edition-picker__container--closed),
      .ua-operamini .widget-edition-picker__container--editions:not(.widget-edition-picker__container--closed) {
        display: block;
        visibility: visible;
        -webkit-transform: none;
                transform: none; } }
  @media (min-width: 980px) {
    .widget-edition-picker__container--editions:not(.widget-edition-picker__container--closed) {
      border: 1px solid #000;
      -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
              box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px); } }

.widget-edition-picker__content {
  background-color: #000;
  -webkit-transition: max-height 350ms ease-in-out;
  transition: max-height 350ms ease-in-out;
  max-height: 50rem; }
  @media (min-width: 980px) {
    .widget-edition-picker__content {
      padding: 0 1.875rem; } }

.widget-edition-picker__other-edition {
  width: 15.25rem;
  padding: 0 0.625rem; }
  .dev-desktop .widget-edition-picker__other-edition:hover {
    cursor: pointer; }
  .ua-operamini .widget-edition-picker__other-edition {
    padding-top: 1.25rem; }
  @media (min-width: 980px) {
    .widget-edition-picker__other-edition {
      width: 100%; } }
  .widget-edition-picker__other-edition span {
    display: block;
    border-bottom: 1px solid #d8d8d8;
    line-height: 3.5rem;
    height: 3.5rem;
    padding: 0 0.625rem;
    font-size: 1.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    @media (max-width: 979px) {
      .widget-edition-picker__other-edition span {
        padding-right: 1.875rem; } }
    .widget-edition-picker__other-edition span:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e62f";
      right: 0.625rem;
      font-size: 2rem;
      position: absolute; }
      @media (min-width: 980px) {
        .widget-edition-picker__other-edition span:before {
          right: 1.25rem; } }
  @media (max-width: 979px) {
    .widget-edition-picker__other-edition {
      position: fixed;
      top: 3.125rem;
      right: 0; }
      .ua-operamini .widget-edition-picker__other-edition,
      .ua-ie .widget-edition-picker__other-edition,
      .ua-ucbrowser .widget-edition-picker__other-edition,
      .ua-androidbrowser .widget-edition-picker__other-edition {
        top: 6.25rem; } }

.widget-edition-picker__list {
  display: block;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  padding: 0.3125rem 0.625rem;
  width: 15.25rem; }
  @media (max-width: 979px) {
    .widget-edition-picker__list {
      bottom: 0;
      position: fixed;
      right: 0; }
      .widget-edition-picker__list--languages {
        top: 6.625rem;
        padding: 0.3125rem 1.25rem; }
        .ua-operamini .widget-edition-picker__list--languages,
        .ua-ie .widget-edition-picker__list--languages,
        .ua-ucbrowser .widget-edition-picker__list--languages,
        .ua-androidbrowser .widget-edition-picker__list--languages {
          top: 9.75rem; }
        .sponsorship-banner-top.ua-operamini .widget-edition-picker__list--languages {
          top: 12.875rem; }
        .ua-operamini .widget-edition-picker__list--languages {
          overflow-y: visible;
          min-height: 1000px;
          background-color: #000; }
      .widget-edition-picker__list--editions {
        top: 8.125rem;
        padding: 0.3125rem 0; }
        .ua-operamini .widget-edition-picker__list--editions,
        .ua-ie .widget-edition-picker__list--editions,
        .ua-ucbrowser .widget-edition-picker__list--editions,
        .ua-androidbrowser .widget-edition-picker__list--editions {
          top: 11.25rem; }
        .ua-operamini .widget-edition-picker__list--editions {
          overflow-y: visible;
          min-height: 1000px; } }
  .widget-edition-picker__list--editions .widget-edition-picker__link {
    position: relative;
    padding-left: 3.375rem; }
    @media (min-width: 980px) {
      .widget-edition-picker__list--editions .widget-edition-picker__link {
        padding-left: 3.875rem; } }
  @media (min-width: 980px) {
    .widget-edition-picker__list {
      background-color: #000;
      padding: 0.75rem 0;
      width: 100%; } }

.widget-edition-picker__item {
  display: block;
  margin: 0;
  padding: 0; }
  .widget-edition-picker__item--selected span {
    border-bottom: 0.125rem solid #f00; }

.widget-edition-picker__link {
  color: #fff;
  display: block;
  font-size: 1.125rem;
  line-height: 2.375rem;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  .widget-edition-picker__link span {
    display: inline-block;
    line-height: 1.5;
    -webkit-transition: color .2s ease;
    transition: color .2s ease; }
  .dev-desktop .widget-edition-picker__link:hover span {
    color: #b68339; }
  .ua-operamini .widget-edition-picker__link {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem; }

.widget-edition-picker__title-other {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem 0; }
  .ua-operamini .widget-edition-picker__title-other {
    padding-top: 0.625rem; }

.widget-edition-picker__picked-language {
  font-size: 1.125rem;
  padding-top: 0.625rem;
  position: relative;
  color: #000;
  text-decoration: none;
  display: block;
  padding-left: 3.375rem; }
  .dev-desktop .widget-edition-picker__picked-language:hover {
    color: #b68339; }
  @media (min-width: 980px) {
    .widget-edition-picker__picked-language {
      padding-left: 4rem; } }

.widget-edition-picker__picked-language, .widget-edition-picker__title-other {
  line-height: 2.375rem;
  height: 2.375rem;
  margin: 0; }

.widget-edition-picker__flag, .widget-edition-picker__area {
  height: 1.125rem;
  width: 1.5rem;
  border: 1px solid #ecf1f0;
  position: absolute;
  top: 0.625rem;
  line-height: 1;
  left: 1.25rem; }
  .ua-operamini .widget-edition-picker__flag, .ua-operamini .widget-edition-picker__area {
    top: 0.4375rem; }
  .widget-edition-picker__flag img, .widget-edition-picker__area img {
    max-width: 100%;
    max-height: 100%; }
  @media (min-width: 980px) {
    .widget-edition-picker__flag, .widget-edition-picker__area {
      height: 1.5rem;
      width: 2rem;
      top: 0.4375rem; } }

.widget-edition-picker__area {
  border: 0; }
  @media (max-width: 979px) {
    .widget-edition-picker__area {
      top: 1.1875rem;
      left: 1.25rem; }
      .ua-operamini .widget-edition-picker__area {
        top: 0.75rem; } }
  @media (min-width: 980px) {
    .widget-edition-picker__area {
      top: 1rem; } }

.widget-edition-picker__header {
  background-color: #000; }
  @media (max-width: 979px) {
    .widget-edition-picker__header {
      position: fixed;
      top: 0;
      width: 15.25rem;
      right: 0; }
      .ua-operamini .widget-edition-picker__header,
      .ua-ie .widget-edition-picker__header,
      .ua-ucbrowser .widget-edition-picker__header,
      .ua-androidbrowser .widget-edition-picker__header {
        top: 51px; }
      .sponsorship-banner-top.ua-operamini .widget-edition-picker__header {
        top: 101px; } }
  @media (min-width: 980px) {
    .widget-edition-picker__header {
      display: none;
      visibility: hidden; } }

.widget-edition-picker__label {
  color: #fff;
  font-size: 1.125rem;
  line-height: 3.125rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 1.875rem; }
  @media (max-width: 979px) {
    .widget-edition-picker__label {
      display: none;
      visibility: hidden; } }

.widget-edition-picker__leave {
  display: block;
  width: 14rem;
  background-color: #00a9ce;
  color: #fff;
  padding: 0.3125rem 1.875rem;
  margin: 0.9375rem auto;
  text-decoration: none;
  position: relative; }
  .widget-edition-picker__leave span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.125rem; }
    @media (min-width: 980px) {
      .widget-edition-picker__leave span {
        font-size: 1rem; } }
  .widget-edition-picker__leave::before, .widget-edition-picker__leave::after {
    content: "";
    font-size: 1.125rem;
    line-height: 1;
    display: block;
    position: absolute;
    top: 0.3125rem; }
  .widget-edition-picker__leave::before {
    left: 0.3125rem; }
  .widget-edition-picker__leave:after {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e699";
    right: 0.3125rem; }
  .widget-edition-picker__leave--mobile {
    display: block;
    visibility: visible; }
    @media (min-width: 980px) {
      .widget-edition-picker__leave--mobile {
        display: none;
        visibility: hidden; } }
  .widget-edition-picker__leave--desktop {
    display: none;
    visibility: hidden; }
    @media (min-width: 980px) {
      .widget-edition-picker__leave--desktop {
        display: block;
        visibility: visible; } }

.widget-sponsorship {
  display: none;
  visibility: hidden;
  overflow: hidden; }
  .widget-sponsorship.sponsorship-active {
    display: block;
    visibility: visible; }
    .widget-sponsorship.sponsorship-active.clickable,
    .widget-sponsorship.sponsorship-active .clickable {
      cursor: pointer; }
  .widget-sponsorship.banner-top {
    width: 100%;
    height: 3.125rem;
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #fff;
    background-color: #00a9ce;
    z-index: 79;
    text-align: center; }
    @media (min-width: 980px) {
      .widget-sponsorship.banner-top {
        height: 5rem; } }
    .widget-sponsorship.banner-top .banner {
      display: inline-block;
      height: 100%;
      width: 20rem;
      background-position: center center;
      background-size: contain;
      background-repeat: no-repeat; }
      @media (min-width: 580px) {
        .widget-sponsorship.banner-top .banner {
          width: 36.25rem; } }
      @media (min-width: 980px) {
        .widget-sponsorship.banner-top .banner {
          width: 61.25rem; } }
    .widget-sponsorship.banner-top .commercial {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }

.sponsorship-banner-top body {
  padding-top: 3.125rem; }
  @media (min-width: 980px) {
    .sponsorship-banner-top body {
      padding-top: 5rem; } }

.widget-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 20.3125rem;
  color: #fff;
  text-align: center;
  background: #000 url("/conmebol-assets/img/cl-bg-footer-320.58628bb64b.png") no-repeat bottom center;
  background-size: cover; }
  @media (min-width: 480px) {
    .widget-footer {
      background-image: url("/conmebol-assets/img/cl-bg-footer-480.e3776570e4.png"); } }
  @media (min-width: 580px) {
    .widget-footer {
      background-image: url("/conmebol-assets/img/cl-bg-footer-580.57a4ec056e.png"); } }
  @media (min-width: 740px) {
    .widget-footer {
      background-image: url("/conmebol-assets/img/cl-bg-footer-740.dcdc1cbea0.png"); } }
  @media (min-width: 980px) {
    .widget-footer {
      background-image: url("/conmebol-assets/img/cl-bg-footer-980.b08d5138ce.png"); } }
  @media (min-width: 1580px) {
    .widget-footer {
      background-image: url("/conmebol-assets/img/cl-bg-footer-1580.c4e1d258c1.png"); } }
  @media (min-width: 580px) and (max-width: 739px) {
    .widget-footer {
      min-height: 14.3125rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .widget-footer {
      min-height: 14.3125rem; } }
  @media (min-width: 980px) {
    .widget-footer {
      min-height: 21.25rem; } }
  @media (min-width: 1580px) {
    .widget-footer {
      min-height: 21.875rem; } }
  .ua-operamini .widget-footer {
    height: 21.875rem; }
  .widget-footer .page-container {
    position: static;
    background-color: transparent;
    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; }
    @media (min-width: 580px) {
      .widget-footer .page-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        margin: 3.4375rem auto; } }
  .widget-footer__bottom {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    @media (min-width: 580px) {
      .widget-footer__bottom {
        text-align: left;
        -webkit-box-flex: 0.6;
            -ms-flex: 0.6;
                flex: 0.6; } }
    @media (min-width: 740px) {
      .widget-footer__bottom {
        -webkit-box-flex: 0.8;
            -ms-flex: 0.8;
                flex: 0.8; } }
    @media (min-width: 1580px) {
      .widget-footer__bottom {
        -webkit-box-flex: 0.77;
            -ms-flex: 0.77;
                flex: 0.77; } }
  .widget-footer__logo {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.3125rem;
    width: 9.375rem;
    min-height: 7.8125rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    @media (min-width: 480px) {
      .widget-footer__logo {
        padding-top: 0.3125rem;
        -webkit-box-flex: 0.4;
            -ms-flex: 0.4;
                flex: 0.4; } }
    @media (min-width: 580px) {
      .widget-footer__logo {
        margin-top: 0;
        padding: 0 1.25rem 0 0;
        -webkit-box-flex: 0.26;
            -ms-flex: 0.26;
                flex: 0.26; } }
    @media (min-width: 740px) {
      .widget-footer__logo {
        padding: 0 1.25rem 0 3.75rem;
        -webkit-box-flex: 0.32;
            -ms-flex: 0.32;
                flex: 0.32; } }
    @media (min-width: 980px) {
      .widget-footer__logo {
        margin-top: 1.25rem;
        padding: 0;
        -webkit-box-flex: 0.65;
            -ms-flex: 0.65;
                flex: 0.65; } }
    @media (min-width: 1580px) {
      .widget-footer__logo {
        -webkit-box-flex: 0.45;
            -ms-flex: 0.45;
                flex: 0.45;
        margin-top: 1.875rem;
        padding-left: 165px; } }
    .widget-footer__logo a {
      display: block;
      width: 100%; }
      .widget-footer__logo a img {
        width: 9.25rem;
        height: 8.125rem; }
        @media (min-width: 580px) {
          .widget-footer__logo a img {
            width: 9.0625rem;
            height: 7.8125rem; } }
        @media (min-width: 980px) {
          .widget-footer__logo a img {
            width: 18.75rem;
            height: 16.5rem; } }
  .widget-footer__icons {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    padding-top: 2.5rem; }
    .widget-footer__icons a {
      width: 1.4375rem;
      margin: 0 0.5625rem;
      max-height: 1.4375rem;
      opacity: 1;
      -webkit-transition: 0.2s;
      transition: 0.2s; }
      .dev-desktop .widget-footer__icons a:hover:hover {
        -webkit-transition: 0.2s;
        transition: 0.2s;
        opacity: 0.8; }
      @media (min-width: 980px) {
        .widget-footer__icons a {
          width: 1.625rem; } }
    .widget-footer__icons::before {
      content: "";
      position: absolute;
      height: 0.125rem;
      width: 12.5rem;
      margin: 0 auto;
      bottom: 3.125rem;
      left: 0;
      right: 0;
      background-image: -webkit-gradient(linear, right top, left top, from(rgba(182, 131, 57, 0.2)), color-stop(15%, rgba(182, 131, 57, 0.4)), color-stop(51%, rgba(182, 131, 57, 0.6)), color-stop(86%, rgba(182, 131, 57, 0.4)), to(rgba(182, 131, 57, 0.2)));
      background-image: linear-gradient(-90deg, rgba(182, 131, 57, 0.2) 0%, rgba(182, 131, 57, 0.4) 15%, rgba(182, 131, 57, 0.6) 51%, rgba(182, 131, 57, 0.4) 86%, rgba(182, 131, 57, 0.2) 100%); }
      @media (min-width: 580px) {
        .widget-footer__icons::before {
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg);
          margin: 0;
          bottom: -0.9375rem;
          left: -5.625rem;
          width: 9rem;
          right: 0; } }
      @media (min-width: 980px) {
        .widget-footer__icons::before {
          left: -9.375rem;
          width: 12.5rem; } }
      @media (min-width: 1580px) {
        .widget-footer__icons::before {
          bottom: -1.5625rem;
          left: -9.6875rem; } }
    @media (min-width: 580px) {
      .widget-footer__icons {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-left: 0.1875rem;
        padding-top: 0.9375rem; } }
    @media (min-width: 980px) {
      .widget-footer__icons {
        margin-left: 2.25rem;
        padding-top: 3.25rem; } }
    @media (min-width: 1580px) {
      .widget-footer__icons {
        margin-left: 2.75rem;
        padding-top: 2.9375rem; } }
  .widget-footer__links {
    padding: 0;
    margin-bottom: 0;
    font-weight: 300;
    text-align: center; }
    .widget-footer__links li {
      position: relative;
      padding-right: 5px;
      display: inline-block;
      list-style-type: none; }
      .widget-footer__links li::after {
        position: absolute;
        top: 25%;
        content: "";
        display: block;
        width: 1px;
        height: 50%;
        background-color: #fff; }
      .widget-footer__links li::after {
        right: 0;
        margin: 0 -0.3125rem 0 0.625rem; }
      .widget-footer__links li:last-child {
        padding: 0; }
        .widget-footer__links li:last-child::after {
          display: none; }
      .widget-footer__links li.ios-link, .widget-footer__links li.android-link {
        display: none;
        visibility: hidden; }
      .os-android .widget-footer__links li.web-link,
      .os-ios .widget-footer__links li.web-link {
        display: none;
        visibility: hidden; }
      .os-android .widget-footer__links li.android-link {
        display: inline-block;
        visibility: visible; }
      .os-ios .widget-footer__links li.ios-link {
        display: inline-block;
        visibility: visible; }
      .widget-footer__links li a {
        font-size: 1rem;
        color: #fff;
        line-height: 2rem;
        text-decoration: none;
        cursor: pointer;
        -webkit-transition: color .2s ease;
        transition: color .2s ease;
        margin-left: 0.75rem; }
        @media (min-width: 480px) {
          .widget-footer__links li a {
            line-height: 2rem; } }
        @media (min-width: 580px) {
          .widget-footer__links li a {
            font-size: 0.9375rem; } }
        @media (min-width: 980px) {
          .widget-footer__links li a {
            font-size: 1.125rem; } }
        .dev-desktop .widget-footer__links li a:hover {
          color: #b68339; }
    @media (min-width: 480px) {
      .widget-footer__links {
        text-align: left; } }
    @media (min-width: 580px) {
      .widget-footer__links {
        margin: 0.75rem 0 0 0; } }
    @media (min-width: 980px) {
      .widget-footer__links {
        margin: 1.4375rem 0 0 2rem; } }
    @media (min-width: 1580px) {
      .widget-footer__links {
        margin: 1.5rem 0 0 2.5rem; } }
  .widget-footer__copyright {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 300; }
    @media (min-width: 480px) {
      .widget-footer__copyright {
        font-size: 0.75rem; } }
    @media (min-width: 580px) {
      .widget-footer__copyright {
        margin: 0.5rem 0 0 0.75rem; } }
    @media (min-width: 980px) {
      .widget-footer__copyright {
        margin: 1.25rem 0 0 2.8125rem; } }
    @media (min-width: 1580px) {
      .widget-footer__copyright {
        margin: 0.875rem 0 0 3.3125rem; } }

.widget-ad-skin,
.widget-ad-skin__top-gutter {
  display: none;
  visibility: hidden;
  z-index: 0;
  cursor: pointer; }
  @media (min-width: 980px) {
    .widget-ad-skin--active,
    .widget-ad-skin__top-gutter--active {
      display: block;
      visibility: visible; }
      .gallery-fullscreen .widget-ad-skin--active, .gallery-fullscreen
      .widget-ad-skin__top-gutter--active {
        display: none;
        visibility: hidden; } }
  .widget-ad-skin--at-absolute,
  .widget-ad-skin__top-gutter--at-absolute {
    position: fixed; }

.widget-ad-skin--v1 .widget-ad-skin__left-gutter,
.widget-ad-skin--v1 .widget-ad-skin__right-gutter {
  display: none;
  visibility: hidden; }

@media (min-width: 1580px) {
  .widget-ad-skin--v2 {
    width: 80rem; } }

.widget-ad-skin--at-fixed {
  position: relative; }

.widget-ad-skin__left-gutter, .widget-ad-skin__right-gutter {
  background-repeat: no-repeat;
  position: absolute;
  height: 37.5rem;
  width: 9.375rem;
  overflow: hidden; }
  .widget-ad-skin__left-gutter--linked, .widget-ad-skin__right-gutter--linked {
    cursor: pointer; }

.widget-ad-skin__left-gutter {
  left: 0;
  -webkit-transform: translate3d(-9.375rem, 0, 0);
          transform: translate3d(-9.375rem, 0, 0);
  background-position: right top; }

.widget-ad-skin__right-gutter {
  right: 0;
  -webkit-transform: translate3d(9.375rem, 0, 0);
          transform: translate3d(9.375rem, 0, 0);
  background-position: left top; }

.widget-ad-skin__top-gutter {
  -webkit-transition: top .25s ease-in-out;
  transition: top .25s ease-in-out;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center top; }
  .widget-ad-skin__top-gutter--at-fixed {
    position: absolute; }
  html:not(.header-closed) .widget-ad-masthead:not(.widget-ad-masthead--active) ~ .widget-ad-skin__top-gutter,
  .header-page-top .widget-ad-masthead:not(.widget-ad-masthead--active) ~ .widget-ad-skin__top-gutter {
    top: 5rem; }
  html:not(.header-closed) .widget-ad-masthead.widget-ad-masthead--active ~ .widget-ad-skin__top-gutter,
  .header-page-top .widget-ad-masthead.widget-ad-masthead--active ~ .widget-ad-skin__top-gutter {
    top: 10rem; }
  .header-closed .widget-ad-masthead ~ .widget-ad-skin__top-gutter {
    top: 0; }
  .widget-ad-skin__top-gutter--linked {
    cursor: pointer; }

@media (max-width: 979px) {
  .skin-on body {
    background-color: #ecf1f0 !important; } }

@media (min-width: 980px) {
  .skin-on .ad-leaderboard {
    position: relative;
    z-index: 2; }
  .skin-on .widget-footer {
    z-index: 1; } }

.gallery-fullscreen .widget-ad-masthead {
  display: none;
  visibility: hidden; }

.widget-ad-masthead--active {
  border-bottom: 1px solid #fff;
  background-color: #000;
  height: 3.1875rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 100; }
  .widget-ad-masthead--active + .widget-header {
    position: fixed;
    top: 3.1875rem;
    pointer-events: none; }
    .widget-ad-masthead--active + .widget-header + .ad-leaderboard:not([data-empty]):not(.premium-takeover) {
      margin-top: 7.25rem; }
    .widget-ad-masthead--active + .widget-header .widget-header__wrapper {
      position: absolute;
      pointer-events: all; }
    .widget-ad-masthead--active + .widget-header .widget-navigation {
      top: 6.375rem; }
  @media (min-width: 480px) {
    .widget-ad-masthead--active + .widget-header + .ad-leaderboard[data-empty]:not(.premium-takeover) {
      height: 5rem; } }
  @media (min-width: 980px) {
    .widget-ad-masthead--active {
      height: 5.0625rem; }
      .widget-ad-masthead--active + .widget-header {
        top: 5.0625rem; }
        .widget-ad-masthead--active + .widget-header + .ad-leaderboard:not([data-empty]):not(.premium-takeover) {
          margin-top: 12.25rem; }
        .widget-ad-masthead--active + .widget-header + .ad-leaderboard[data-empty]:not(.premium-takeover) {
          height: 9.375rem; } }

.widget-smart-banner {
  position: relative;
  z-index: 11; }
  .gallery-fullscreen .widget-smart-banner {
    display: none;
    visibility: hidden; }
  .widget-smart-banner__container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; }
  .widget-smart-banner__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly; }
  .widget-smart-banner__text1, .widget-smart-banner__text2 {
    font-size: 0.75rem;
    padding-right: 3.125rem; }
  .widget-smart-banner__icon {
    overflow: hidden;
    position: absolute; }
    .widget-smart-banner__icon img {
      display: block;
      max-width: 100%;
      height: auto; }
  .widget-smart-banner__download {
    position: absolute; }
    .widget-smart-banner__download a {
      text-decoration: none;
      text-transform: uppercase; }
  .widget-smart-banner__close {
    position: absolute;
    text-align: center;
    width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem; }
    .widget-smart-banner__close::after {
      content: "\00d7"; }
  .widget-smart-banner__container[data-type="android"] {
    background-color: #fff;
    height: 6.25rem;
    padding: 0.625rem 0.625rem 0.625rem 3.125rem; }
    .widget-smart-banner__container[data-type="android"] .widget-smart-banner__leading {
      display: none;
      visibility: hidden; }
    .widget-smart-banner__container[data-type="android"] .widget-smart-banner__name {
      line-height: 0.875rem; }
    .widget-smart-banner__container[data-type="android"] .widget-smart-banner__text2 {
      font-size: 0.75rem;
      line-height: 0.875rem; }
    .widget-smart-banner__container[data-type="android"]::after {
      content: '';
      background: transparent url("/conmebol-assets/img/google-play.png") no-repeat center center;
      background-size: contain;
      position: absolute;
      width: 6.25rem;
      height: 1.5625rem;
      bottom: 1rem;
      left: 3.125rem; }
    .widget-smart-banner__container[data-type="android"] .widget-smart-banner__download {
      bottom: 0.625rem;
      right: 0.625rem; }
      .widget-smart-banner__container[data-type="android"] .widget-smart-banner__download a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        background-color: #689f38;
        color: #fff;
        height: 2.25rem;
        line-height: 2.25rem;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        border-radius: 0.125rem;
        -webkit-box-shadow: 0 0.125rem 0.125rem 0 #dbdbdc;
                box-shadow: 0 0.125rem 0.125rem 0 #dbdbdc; }
    .widget-smart-banner__container[data-type="android"] .widget-smart-banner__icon {
      width: 1.875rem;
      height: 1.875rem;
      top: 0.625rem;
      left: 0.625rem; }
    .widget-smart-banner__container[data-type="android"] .widget-smart-banner__close {
      top: 0.3125rem;
      font-size: 1.875rem;
      right: 0.625rem; }
  .widget-smart-banner__container[data-type="ios"] {
    background-color: #f2f2f2;
    height: 5.1875rem;
    padding: 0.625rem 0.625rem 0.625rem 6.25rem; }
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__text-wrapper {
      height: 4.0625rem; }
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__text1,
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__text2 {
      font-size: 0.75rem;
      color: #000;
      padding-right: 4.0625rem; }
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__leading {
      position: absolute;
      bottom: 0.6875rem;
      font-size: 0.75rem;
      line-height: 0.75rem;
      left: 6.25rem; }
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__download {
      top: 1.75rem;
      right: 0.875rem; }
      .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__download a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: #1175e5;
        font-size: 1.125rem;
        text-transform: none; }
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__icon {
      width: 3.75rem;
      height: 3.75rem;
      top: 0.75rem;
      border-radius: 0.9375rem;
      left: 1.8125rem; }
    .widget-smart-banner__container[data-type="ios"] .widget-smart-banner__close {
      top: 1.5625rem;
      font-size: 1.25rem;
      color: #797979;
      left: 0.125rem; }

.tag-header {
  position: relative;
  overflow: visible; }
  .tag-header .page-header--bridgestone, .tag-header .page-header--rexona, .tag-header .page-header--qatar, .tag-header .page-header--amstel, .tag-header .page-header--santander {
    border: 0; }
  @media (min-width: 740px) {
    .tag-header .page-header--bridgestone, .tag-header .page-header--rexona {
      border-bottom: 4px solid #fff; }
    .tag-header .page-header--qatar {
      border-bottom: 4px solid #5c0632; }
    .tag-header .page-header--amstel {
      border-bottom: 4px solid #d00910; }
    .tag-header .page-header--santander {
      border-bottom: 4px solid #ec1d25; } }
  .tag-header .crest {
    display: none;
    visibility: hidden; }
    @media (min-width: 480px) {
      .tag-header .crest {
        display: block;
        visibility: visible;
        height: 2.25rem;
        width: 2.25rem;
        position: absolute;
        top: 50%;
        margin-top: -1.125rem; } }
    @media (min-width: 480px) {
      .tag-header .crest + .text {
        margin-left: 3.5rem; } }
  @media (min-width: 580px) {
    .tag-header-category {
      padding-left: 1.25rem; } }
  .tag-header .sponsorship {
    font-size: 0.75rem;
    text-transform: none;
    right: 0.9375rem;
    color: #000;
    background-color: #fff;
    margin: 0 0.625rem;
    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; }
    .tag-header .sponsorship--qatar {
      background-color: #5c0632;
      color: #fff; }
    .tag-header .sponsorship--amstel {
      background-color: #d00910;
      color: #fff; }
    .tag-header .sponsorship--santander {
      background-color: #ec1d25;
      color: #ec1d25;
      height: 2.5rem; }
    .tag-header .sponsorship .label {
      padding-left: 0.625rem; }
      @media (min-width: 740px) {
        .tag-header .sponsorship .label {
          font-size: 1rem; } }
    .tag-header .sponsorship .label,
    .tag-header .sponsorship .brand {
      line-height: 2.1875rem; }
      .tag-header .sponsorship .label--santander,
      .tag-header .sponsorship .brand--santander {
        color: #fff;
        line-height: 2.5rem; }
    .tag-header .sponsorship .brand {
      margin: 0 0.625rem;
      height: 2.1875rem; }
      .tag-header .sponsorship .brand img {
        height: 100%; }
    @media (min-width: 480px) {
      .tag-header .sponsorship {
        margin: 0 1.0625rem; } }
    @media (min-width: 580px) {
      .tag-header .sponsorship {
        margin: 0 1.25rem; } }
    @media (min-width: 740px) {
      .tag-header .sponsorship {
        position: absolute;
        background-color: transparent;
        color: #fff;
        top: 0.5rem;
        right: 0.5625rem; } }
    @media (min-width: 980px) {
      .tag-header .sponsorship {
        top: 0.8125rem; } }
    @media (min-width: 1580px) {
      .tag-header .sponsorship {
        right: 1.625rem; } }

.ua-operamini .widget-article iframe[src*="eplayer"],
.ua-operamini .widget-article .scrbbl-embed {
  display: none;
  visibility: hidden; }

.widget-article .article-container {
  background-color: #fff; }

.widget-article .tags-bar {
  border-bottom: 0.0625rem solid #ecf1f0;
  display: block;
  clear: both;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  @media (min-width: 740px) {
    .widget-article .tags-bar {
      padding-left: 1.25rem;
      padding-right: 1.25rem; } }
  @media (min-width: 1580px) {
    .widget-article .tags-bar {
      padding-left: 12%;
      padding-right: 12%; } }

.widget-article .tags-bar-main {
  font-size: 0.875rem;
  line-height: 2.75rem;
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
  color: #000;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  float: left; }
  .ua-ucbrowser .widget-article .tags-bar-main,
  .ua-androidbrowser .widget-article .tags-bar-main {
    position: relative; }
  .ua-operamini .widget-article .tags-bar-main {
    padding-top: 0.625rem; }
  .dev-desktop .widget-article .tags-bar-main:hover {
    color: #b68339; }
  @media (min-width: 580px) {
    .widget-article .tags-bar-main {
      max-width: 60%; } }
  @media (min-width: 740px) {
    .widget-article .tags-bar-main {
      font-size: 1.125rem; } }

.widget-article .article-header {
  position: relative;
  margin: 0;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  @media (min-width: 740px) {
    .widget-article .article-header {
      padding-left: 1.25rem;
      padding-right: 1.25rem; } }
  @media (min-width: 1580px) {
    .widget-article .article-header {
      padding-left: 12%;
      padding-right: 12%; } }
  .widget-article .article-header header {
    color: #000; }
  .widget-article .article-header .article-headline {
    color: #000;
    height: auto;
    text-overflow: initial;
    white-space: normal;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.625rem;
    margin: 0;
    padding: 1.75rem 0;
    word-wrap: break-word; }
    @media (min-width: 480px) and (max-width: 579px) {
      .widget-article .article-header .article-headline {
        font-size: 1.375rem;
        line-height: 1.625rem; } }
    @media (min-width: 580px) and (max-width: 739px) {
      .widget-article .article-header .article-headline {
        font-size: 1.375rem;
        line-height: 1.625rem; } }
    @media (min-width: 1580px) {
      .widget-article .article-header .article-headline {
        font-size: 2rem;
        line-height: 2.5rem;
        padding: 2.375rem 0; } }
  .widget-article .article-header .article-update-time {
    font-size: 0.75rem;
    font-style: italic; }

.widget-article .actions-bar {
  font-size: 0;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  color: #9b9b9b;
  margin-bottom: 2.375rem; }
  .ua-operamimi .widget-article .actions-bar {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem; }
  .widget-article .actions-bar > * {
    font-size: 0.75rem;
    display: inline-block;
    white-space: nowrap; }
    .widget-article .actions-bar > *::before {
      font-size: 2rem;
      padding: 0 0.1875rem 0 0.3125rem;
      vertical-align: middle;
      line-height: inherit; }
  @media (min-width: 740px) {
    .widget-article .actions-bar > * {
      font-size: 0.875rem; } }
  @media (min-width: 1580px) {
    .widget-article .actions-bar {
      padding: 0 0 0.625rem 0; } }

.widget-article .actions-bar-share {
  cursor: pointer; }
  .widget-article .actions-bar-share:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e633";
    position: relative;
    top: -0.125rem; }
  .widget-article .actions-bar-share .close-label {
    display: none;
    visibility: hidden; }
  .widget-article .actions-bar-share.opened {
    color: #008aaf; }
    .widget-article .actions-bar-share.opened:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e608"; }
    .widget-article .actions-bar-share.opened .label {
      display: none;
      visibility: hidden; }
    .widget-article .actions-bar-share.opened .close-label {
      display: inline-block;
      visibility: visible; }
  .ua-operamini .widget-article .actions-bar-share {
    display: none;
    visibility: hidden; }

.widget-article .actions-bar-comments {
  cursor: pointer; }
  .widget-article .actions-bar-comments:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e62c"; }
    @media (min-width: 740px) {
      .widget-article .actions-bar-comments:before {
        position: relative;
        top: -0.125rem; } }
  .widget-article .actions-bar-comments .label {
    display: none;
    visibility: hidden; }
  .ua-operamini .widget-article .actions-bar-comments,
  .ua-ucbrowser .widget-article .actions-bar-comments {
    display: none;
    visibility: hidden; }
  @media (min-width: 480px) {
    .widget-article .actions-bar-comments .label {
      display: inline;
      visibility: visible; } }

.widget-article .actions-container {
  position: relative;
  overflow: hidden;
  margin: 0; }
  .widget-article .actions-container .picture {
    position: relative;
    height: 0;
    margin: 0;
    padding-top: 56.25%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    overflow: hidden; }
    .widget-article .actions-container .picture .image-source {
      position: absolute;
      bottom: 0;
      width: 5rem;
      height: 1.875rem;
      padding: 0.625rem;
      font-size: 0.5625rem;
      line-height: 0.625rem;
      background-color: #000;
      color: #fff;
      right: 0; }
      .widget-article .actions-container .picture .image-source span {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: center; }
      .ua-operamini .widget-article .actions-container .picture .image-source {
        padding: 0.3125rem; }
    .widget-article .actions-container .picture img {
      position: absolute;
      top: 0;
      width: 100%; }
  .widget-article .actions-container .widget-share {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); }
    .widget-article .actions-container .widget-share .social {
      width: 9.375rem;
      margin: 0 auto; }
  @media (min-width: 740px) {
    .widget-article .actions-container .widget-share {
      height: 4.125rem; }
      .widget-article .actions-container .widget-share .shares-counter,
      .widget-article .actions-container .widget-share .social {
        display: inline-block; }
      .widget-article .actions-container .widget-share .shares-counter {
        width: 25%; }
      .widget-article .actions-container .widget-share .social {
        width: 50%; } }

.widget-article .video {
  position: relative;
  margin: 0;
  overflow: hidden;
  text-align: center; }
  .widget-article .video > * {
    max-width: 100%; }
  .ua-operamini .widget-article .video {
    display: none;
    visibility: hidden; }

.widget-article .teaser,
.widget-article .body {
  color: #000;
  word-wrap: break-word;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  @media (min-width: 740px) {
    .widget-article .teaser,
    .widget-article .body {
      padding-left: 1.25rem;
      padding-right: 1.25rem; } }
  @media (min-width: 1580px) {
    .widget-article .teaser,
    .widget-article .body {
      padding-left: 12%;
      padding-right: 12%; } }

.widget-article .teaser {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem; }
  @media (min-width: 740px) {
    .widget-article .teaser {
      font-size: 1.375rem;
      line-height: 1.875rem; }
      .widget-article .teaser p {
        margin: 1.875rem 0; } }

.widget-article .body {
  font-size: 1rem;
  line-height: 1.375rem;
  padding-bottom: 1.25rem; }
  .widget-article .body a {
    text-decoration: none;
    color: #f00; }
    .dev-desktop .widget-article .body a:hover {
      text-decoration: underline;
      color: #008aaf; }
  .widget-article .body img {
    display: block;
    max-width: 100%;
    clear: both; }
  .widget-article .body p {
    margin: 1.875rem 0; }
    .widget-article .body p:last-child {
      margin-bottom: 0; }
  .widget-article .body .article-collapse-wrapper p:first-child {
    padding: 1.375rem 0; }
  @media (min-width: 740px) {
    .widget-article .body {
      font-size: 1.125rem;
      line-height: 1.625rem; }
      .widget-article .body .article-collapse-wrapper p :first-child {
        padding: 1.625rem 0; } }
  .widget-article .body .twitter-tweet,
  .widget-article .body .fb-video {
    clear: both;
    margin-left: auto;
    margin-right: auto; }

.widget-article .social-container {
  background-color: #fff;
  padding: 2.5rem 0; }
  .widget-article .social-container:not(.hidden) {
    margin-top: 0.625rem; }
    @media (min-width: 580px) and (max-width: 739px) {
      .widget-article .social-container:not(.hidden) {
        margin-top: 0.75rem; } }
    @media (min-width: 740px) and (max-width: 979px) {
      .widget-article .social-container:not(.hidden) {
        margin-top: 1rem; } }
    @media (min-width: 980px) and (max-width: 1579px) {
      .widget-article .social-container:not(.hidden) {
        margin-top: 1.375rem; } }
    @media (min-width: 1580px) {
      .widget-article .social-container:not(.hidden) {
        margin-top: 1.75rem; } }
  .widget-article .social-container .btn--comments {
    margin-bottom: 0; }

.widget-article .share-bar {
  margin: 0 auto 0.625rem; }
  .widget-article .share-bar .widget-share .shares-counter {
    display: none; }
  .widget-article .share-bar .widget-share .social-btn {
    margin: 0; }
  .ua-operamini .widget-article .share-bar {
    display: none;
    visibility: hidden; }
  @media (max-width: 479px) {
    .widget-article .share-bar {
      width: 12.875rem; }
      .widget-article .share-bar .widget-share .social-btn {
        margin-right: 0.625rem; }
        .widget-article .share-bar .widget-share .social-btn:nth-child(4) {
          margin-right: 0; } }
  @media (min-width: 480px) {
    .widget-article .share-bar .widget-share .social-btn {
      width: 21.05263%;
      float: left;
      margin-right: 5.26316%; }
      .widget-article .share-bar .widget-share .social-btn:nth-child(4) {
        width: 21.05263%;
        float: right;
        margin-right: 0; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .widget-article .share-bar {
      width: 66.10169%; } }
  @media (min-width: 580px) and (max-width: 979px) {
    .widget-article .share-bar {
      width: 66.10169%; } }
  @media (min-width: 980px) {
    .widget-article .share-bar {
      width: 48.71795%; } }

.widget-article .sponsorship-strip,
.widget-article .article-sponsorship-footer {
  display: none;
  visibility: hidden; }
  .widget-article .sponsorship-strip.sponsorship-active,
  .widget-article .article-sponsorship-footer.sponsorship-active {
    display: block;
    visibility: visible; }

.widget-article--featured .tags-bar {
  background-color: #000;
  margin: 0;
  padding: 0 0.625rem;
  border-color: #000; }

.widget-article--featured .tags-bar-main {
  color: #fff; }

.widget-article--featured .dropdown__label {
  color: #fff; }

.widget-article--featured .dropdown__icon {
  background-color: #fff;
  color: #000; }

.widget-article--featured .article-header header {
  margin: 0; }

.widget-article--featured .article-header,
.widget-article--featured .widget-article-author {
  margin-left: 0;
  margin-right: 0; }

.widget-article--featured .actions-bar {
  border: 0; }

.widget-article .tags-list:not(.hidden) {
  margin-top: 0.625rem; }
  @media (min-width: 580px) and (max-width: 739px) {
    .widget-article .tags-list:not(.hidden) {
      margin-top: 0.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .widget-article .tags-list:not(.hidden) {
      margin-top: 1rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .widget-article .tags-list:not(.hidden) {
      margin-top: 1.375rem; } }
  @media (min-width: 1580px) {
    .widget-article .tags-list:not(.hidden) {
      margin-top: 1.75rem; } }

.widget-article--legacy .actions-container .picture {
  background-position: 50% 50%; }

.widget-article-author {
  position: relative;
  display: inline-block;
  clear: both; }
  .widget-article-author .author-part {
    clear: both;
    position: relative;
    z-index: 2; }
    .ua-operamini .widget-article-author .author-part,
    .ua-ie .widget-article-author .author-part {
      display: table;
      table-layout: fixed;
      width: 100%; }
  .widget-article-author .social-links {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: relative;
    top: 0.3125rem; }
    .widget-article-author .social-links a {
      display: inline-block;
      text-decoration: none;
      font-size: 1.5rem;
      -webkit-transition: -webkit-transform 200ms ease-in-out;
      transition: -webkit-transform 200ms ease-in-out;
      transition: transform 200ms ease-in-out;
      transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out; }
      .dev-desktop .widget-article-author .social-links a {
        -webkit-transform: scale(1);
                transform: scale(1);
        cursor: pointer; }
        .dev-desktop .widget-article-author .social-links a:hover {
          -webkit-transform: scale(1.25);
                  transform: scale(1.25); }
    .widget-article-author .social-links .link-facebook {
      color: #3b5998; }
      .widget-article-author .social-links .link-facebook:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e643"; }
    .widget-article-author .social-links .link-twitter {
      color: #4099ff; }
      .widget-article-author .social-links .link-twitter:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e644"; }
    .widget-article-author .social-links .link-google {
      color: #ff5700; }
      .widget-article-author .social-links .link-google:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e645"; }
    .widget-article-author .social-links .link-weibo {
      color: #d72928; }
      .widget-article-author .social-links .link-weibo:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e696"; }
    .widget-article-author .social-links .link-twitter:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e644"; }
    .widget-article-author .social-links .link-facebook:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e643"; }
    .widget-article-author .social-links .link-google:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e645"; }
  .widget-article-author .author-details {
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-bottom: 1.75rem; }
    @media (min-width: 1580px) {
      .widget-article-author .author-details {
        margin-bottom: 2.375rem; } }
    .ua-operamini .widget-article-author .author-details,
    .ua-ie .widget-article-author .author-details {
      display: table-cell; }
  .widget-article-author.with-sponsorship .underline {
    display: none; }
  .widget-article-author.with-sponsorship .author-details {
    margin-bottom: 2.75rem; }
  .widget-article-author .article-sponsorship-strip {
    position: absolute;
    bottom: 0;
    margin: 0;
    left: 0.625rem;
    right: 0; }
  .widget-article-author .author-img-container {
    width: 2rem;
    height: 2rem;
    background-color: #000;
    overflow: hidden;
    border-radius: 1rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.625rem;
    position: relative; }
    .ua-operamini .widget-article-author .author-img-container,
    .ua-ie .widget-article-author .author-img-container {
      text-align: right;
      width: 9.375rem;
      display: table-cell; }
  .widget-article-author .author-img {
    display: block;
    height: auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; }
  .widget-article-author .name-and-social {
    display: block;
    clear: both; }
  .widget-article-author .name {
    font-size: 0.875rem;
    display: inline-block;
    color: #000; }
  .widget-article-author .byline {
    color: #000;
    font-size: 0.75rem;
    margin-bottom: 0.9375rem;
    word-wrap: break-word;
    clear: both; }
    .ua-ie .widget-article-author .byline,
    .ua-operamini .widget-article-author .byline {
      padding-bottom: 0.9375rem; }
    @media (min-width: 580px) {
      .widget-article-author .byline {
        font-size: 0.875rem; } }
    @media (min-width: 1580px) {
      .widget-article-author .byline {
        font-size: 1rem; } }
  .widget-article-author.author-type-guest .name, .widget-article-author.author-type-correspondent .name,
  .article-container .featured .widget-article-author .name {
    font-size: 0.875rem;
    font-weight: 300; }
  .article-container .featured .widget-article-author .author-details {
    margin-bottom: 0.3125rem; }
  .article-container .featured .widget-article-author.with-sponsorship .author-details {
    margin-bottom: 2.75rem; }
  .article-container .featured .widget-article-author .underline {
    height: 0.3125rem;
    background-color: #000; }
  @media (min-width: 480px) {
    .article-container .featured .widget-article-author .author-details {
      margin-bottom: 0.9375rem; }
    .article-container .featured .widget-article-author .underline {
      height: 0.9375rem; }
    .article-container .featured .widget-article-author.with-sponsorship .author-details {
      margin-bottom: 2.75rem; } }
  @media (min-width: 1580px) {
    .article-container .featured .widget-article-author .author-details {
      margin-bottom: 1.25rem; }
    .article-container .featured .widget-article-author .underline {
      height: 1.25rem; }
    .article-container .featured .widget-article-author.with-sponsorship .author-details {
      margin-bottom: 2.75rem; } }
  .article-container .featured .widget-article-author .author-img {
    height: 5.3125rem; }
    @media (min-width: 740px) {
      .article-container .featured .widget-article-author .author-img {
        height: 6.25rem; } }

.dropdown {
  position: relative; }
  .dropdown__btn {
    position: relative;
    z-index: 100;
    cursor: pointer; }
  .dropdown__list {
    overflow: hidden;
    position: absolute;
    z-index: 99;
    top: 0; }
  .dropdown ul {
    max-height: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    will-change: max-height;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition: max-height 350ms ease-in-out 0ms, padding 100ms ease-in-out 0ms, margin 20ms ease-in-out 330ms;
    transition: max-height 350ms ease-in-out 0ms, padding 100ms ease-in-out 0ms, margin 20ms ease-in-out 330ms; }
  .dropdown--opened ul {
    -webkit-transition: max-height 350ms ease-in-out, padding 100ms ease-in-out;
    transition: max-height 350ms ease-in-out, padding 100ms ease-in-out; }
    .ua-ucbrowser .dropdown--opened ul,
    .ua-androidbrowser .dropdown--opened ul {
      overflow-y: auto; }
  .dropdown--animation-end ul {
    overflow-y: auto; }
    .ua-firefox .dropdown--animation-end ul {
      padding-bottom: 0.3125rem; }
    .ua-ucbrowser .dropdown--animation-end ul {
      overflow-y: scroll; }
  .dropdown--content .dropdown__btn {
    line-height: 1;
    padding: 0.4375rem;
    z-index: 50; }
    .dropdown__label {
      -webkit-transition: color .3s;
      transition: color .3s; }
    .dropdown__icon {
      -webkit-transition: background-color .3s;
      transition: background-color .3s; }
    .dev-desktop .dropdown--content .dropdown__btn:hover .dropdown__label {
      color: #e10707; }
    .dev-desktop .dropdown--content .dropdown__btn:hover .dropdown__icon {
      background-color: #e10707; }
  .dropdown--content .dropdown__icon {
    display: inline-block;
    color: #fff;
    background-color: #000;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    float: right; }
    .dropdown--content .dropdown__icon i {
      display: block;
      -webkit-transition: 400ms ease-in-out;
      transition: 400ms ease-in-out;
      -webkit-transform-origin: 48% 47%;
              transform-origin: 48% 47%;
      line-height: 1.5rem;
      width: 100%;
      height: 100%;
      position: absolute;
      text-align: center; }
      .dropdown--content .dropdown__icon i:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e604";
        line-height: inherit;
        font-size: 1.5rem; }
  .dropdown--content .dropdown__label {
    display: inline-block;
    visibility: visible;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    vertical-align: top;
    padding: 0.25rem 0; }
  .dropdown--content .dropdown__list {
    overflow: hidden;
    width: 100%;
    background-color: #fff;
    margin: 0;
    z-index: 49;
    top: 0;
    border-right-width: 0; }
    .ua-operamini .dropdown--content .dropdown__list {
      border: 1px solid transparent;
      border-top-width: 0; }
    html:not(.ua-operamini) .dropdown--content .dropdown__list {
      -webkit-box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
              box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2); }
    .dropdown--content .dropdown__list ul {
      padding: 0 0.4375rem;
      background-color: #fff; }
    .dropdown--content .dropdown__list li {
      display: block;
      clear: both;
      padding: 0;
      margin: 0 0 0.625rem;
      -webkit-transition: 3s ease-in-out;
      transition: 3s ease-in-out;
      line-height: 1; }
      .ua-ie .dropdown--content .dropdown__list li {
        margin-bottom: 0.625rem;
        height: 1.4375rem; }
      .dropdown--content .dropdown__list li:last-child {
        margin-bottom: 0; }
    .dropdown--content .dropdown__list a {
      line-height: 1.1;
      cursor: pointer;
      display: inline-block;
      color: #000;
      font-size: 0.875rem;
      font-weight: 400;
      text-transform: uppercase;
      text-decoration: none;
      word-wrap: break-word;
      max-width: 100%; }
  .dropdown--content.dropdown--opened .dropdown__label {
    color: #e10707; }
  .dropdown--content.dropdown--opened .dropdown__icon, .dropdown--content.dropdown--opened .dropdown__icon:hover {
    background-color: #e10707; }
    html:not(.ua-operamini) .dropdown--content.dropdown--opened .dropdown__icon i, html:not(.ua-operamini) .dropdown--content.dropdown--opened .dropdown__icon:hover i {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .dropdown--content.dropdown--opened .dropdown__list {
    padding-bottom: 0.9375rem; }
    .ua-operamini .dropdown--content.dropdown--opened .dropdown__list {
      border-color: rgba(0, 0, 0, 0.2); }
    .dropdown--content.dropdown--opened .dropdown__list ul {
      margin-top: 3.125rem; }
    .dropdown--content.dropdown--opened .dropdown__list li {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-transition: 350ms ease-in-out;
      transition: 350ms ease-in-out; }

.widget-article .article-container .body .widget-inline-related-articles h3 {
  padding: 1.25rem 0;
  margin: 0;
  border-top: 1px solid #ecf1f0;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  word-wrap: break-word;
  line-height: 1; }

.widget-article .article-container .body .widget-inline-related-articles ul {
  padding: 0 0 1.25rem;
  margin: 0;
  border-bottom: 1px solid #ecf1f0; }

.widget-article .article-container .body .widget-inline-related-articles li {
  position: relative;
  padding: 0 0 1.25rem;
  margin: 0;
  list-style: none;
  padding-left: 0.625rem;
  margin-left: 0.625rem; }
  .widget-article .article-container .body .widget-inline-related-articles li a {
    color: #000; }
  .widget-article .article-container .body .widget-inline-related-articles li::before {
    left: -0.625rem; }
  .widget-article .article-container .body .widget-inline-related-articles li:last-child {
    padding-bottom: 0; }
  .widget-article .article-container .body .widget-inline-related-articles li::before {
    position: absolute;
    top: 0;
    font-family: sans-serif;
    content: "\2022";
    font-size: 2.5rem;
    color: #b68339; }
    .ua-operamini .widget-article .article-container .body .widget-inline-related-articles li::before {
      top: -0.625rem; }
  .widget-article .article-container .body .widget-inline-related-articles li > * {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.375rem;
    text-transform: uppercase;
    color: #000;
    word-wrap: break-word; }
    .widget-article .article-container .body .widget-inline-related-articles li > *:hover {
      color: #00a9ce; }

@media (min-width: 480px) {
  .widget-article .article-container .body .widget-inline-related-articles ul {
    padding-bottom: 1.875rem; } }

@media (min-width: 580px) {
  .widget-article .article-container .body .widget-inline-related-articles li {
    padding-left: 0.9375rem; } }

@media (min-width: 740px) {
  .widget-article .article-container .body .widget-inline-related-articles h3 {
    padding-bottom: 1.5625rem;
    font-size: 1.375rem; }
  .widget-article .article-container .body .widget-inline-related-articles li {
    padding-left: 1.25rem; }
    .widget-article .article-container .body .widget-inline-related-articles li > * {
      font-size: 1.125rem; } }

@media (min-width: 980px) {
  .widget-article .article-container .body .widget-inline-related-articles h3 {
    padding-bottom: 1.875rem; } }

.widget-semantic-player > script {
  display: none;
  visibility: hidden; }

.widget-semantic-player .label {
  display: none;
  visibility: hidden; }

.widget-semantic-player--displayed {
  position: relative;
  padding: 2.625rem 0 0.625rem 0; }
  .widget-semantic-player--displayed .label {
    display: block;
    visibility: visible;
    position: absolute;
    padding: 0.625rem 0;
    top: 0;
    left: 0;
    right: 0;
    font-size: 0.875rem;
    color: #a2aaad;
    line-height: 1.375rem;
    text-align: left; }
    .ua-ie .widget-semantic-player--displayed .label {
      top: 0.625rem; }

.drawer__content .gig-comments-container * {
  font-family: inherit; }

.drawer__content .gig-comments-container .gig-composebox-social-login, .drawer__content .gig-comments-container .gig-composebox-social-login:hover {
  background: transparent;
  border: 0;
  padding: 0; }

.drawer__content .gig-comments-container .gig-composebox-logout {
  white-space: nowrap; }

.drawer__content .gig-comments-container .gig-comment,
.drawer__content .gig-comments-container .gig-comment-replies {
  clear: both;
  width: auto;
  padding: 0; }

.drawer__content .gig-comments-container .gig-comments-comments {
  padding: 0 0.625rem 0.625rem; }
  .drawer__content .gig-comments-container .gig-comments-comments > .gig-comment:nth-of-type(n+2) {
    border-top: 1px solid #ecf1f0;
    margin-top: 0.9375rem;
    padding-top: 0.9375rem; }
  .drawer__content .gig-comments-container .gig-comments-comments > .gig-comment > .gig-comment-replies > div {
    border-left: 10px solid #ecf1f0;
    padding-left: 0.625rem; }

.drawer__content .gig-comments-container .gig-comment {
  margin: 0.9375rem 0; }
  .drawer__content .gig-comments-container .gig-comment .gig-comment-replybox {
    background-color: transparent; }
    .drawer__content .gig-comments-container .gig-comment .gig-comment-replybox .gig-composebox-header-right,
    .drawer__content .gig-comments-container .gig-comment .gig-comment-replybox .gig-composebox-header-left {
      float: left;
      margin: 0.625rem 0.3125rem 0 0; }

.drawer__content .gig-comments-container .gig-comments-composebox {
  padding: 0.625rem 0.625rem 0.9375rem; }

.drawer__content .gig-comments-container .gig-composebox-data {
  padding: 0; }

.drawer__content .gig-comments-container .gig-composebox-editor {
  border-radius: 0; }

.drawer__content .gig-comments-container .gig-composebox-photo,
.drawer__content .gig-comments-container .gig-composebox-footer-left {
  display: none; }

.drawer__content .gig-comments-container .gig-comments-button.gig-composebox-post, .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-cancel {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  height: 2.75rem;
  margin: 1.25rem 0 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  padding: 0 0.3125rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: background-color .2s ease, color .2s ease;
  transition: background-color .2s ease, color .2s ease;
  background-color: #f00;
  color: #fff;
  background: #00a9ce;
  border: 0;
  margin: 0;
  border-radius: 0; }
  @media (min-width: 980px) {
    .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-post, .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-cancel {
      padding: 0 0.625rem; } }
  .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-post span, .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-cancel span {
    display: inline-block; }
  .ua-operamini .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-post, .ua-operamini .drawer__content .gig-comments-container .gig-comments-button.gig-composebox-cancel {
    padding-top: 0.6875rem; }

.drawer__content .gig-comments-container .gig-comment-data {
  padding-top: 0.9375rem; }

.drawer__content .gig-comments-container .gig-comment-photo {
  height: 3.125rem;
  width: 3.125rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0.625rem 0.9375rem 0;
  float: left; }
  .drawer__content .gig-comments-container .gig-comment-photo img {
    height: 100% !important; }

.drawer__content .gig-comments-container .gig-comment-providerLogo {
  display: none; }

.drawer__content .gig-comments-container .gig-comment-username {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.625rem; }

.drawer__content .gig-comments-container .gig-comment-time {
  font-size: 0.75rem;
  color: #a2aaad;
  float: none;
  display: block;
  margin: 0; }

.drawer__content .gig-comments-container .gig-comment-body {
  clear: both;
  font-size: 1rem;
  margin-bottom: 0.9375rem; }

.drawer__content .gig-comments-container .gig-comment-replyLink {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  height: 2.75rem;
  margin: 1.25rem 0 2.5rem;
  line-height: 2.75rem;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  padding: 0 0.3125rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: background-color .2s ease, color .2s ease;
  transition: background-color .2s ease, color .2s ease;
  background-color: #f00;
  color: #fff;
  float: left;
  padding: 0 0.625rem;
  margin: 0;
  font-size: 1.125rem; }
  @media (min-width: 980px) {
    .drawer__content .gig-comments-container .gig-comment-replyLink {
      padding: 0 0.625rem; } }
  .drawer__content .gig-comments-container .gig-comment-replyLink span {
    display: inline-block; }
  .ua-operamini .drawer__content .gig-comments-container .gig-comment-replyLink {
    padding-top: 0.6875rem; }

.drawer__content .gig-comments-container .gig-comment-vote-pos,
.drawer__content .gig-comments-container .gig-comment-vote-neg,
.drawer__content .gig-comments-container .gig-comment-flag {
  float: left;
  line-height: 2.75rem;
  background-image: none;
  padding: 0; }
  .drawer__content .gig-comments-container .gig-comment-vote-pos:hover,
  .drawer__content .gig-comments-container .gig-comment-vote-neg:hover,
  .drawer__content .gig-comments-container .gig-comment-flag:hover {
    background-image: none; }
  .drawer__content .gig-comments-container .gig-comment-vote-pos::before,
  .drawer__content .gig-comments-container .gig-comment-vote-neg::before,
  .drawer__content .gig-comments-container .gig-comment-flag::before {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    margin: 0.375rem 0.3125rem 0.375rem 0.625rem;
    height: 2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle; }

.drawer__content .gig-comments-container .gig-comment-vote-pos:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e636";
  background-color: #00ac77; }

.drawer__content .gig-comments-container .gig-comment-vote-neg:before {
  font-family: "goal-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  direction: ltr;
  unicode-bidi: embed;
  content: "\e638";
  background-color: #f21d07; }

.drawer__content .gig-comments-container .gig-comment-flag {
  float: right;
  margin-right: 0;
  visibility: visible;
  width: auto; }
  .drawer__content .gig-comments-container .gig-comment-flag:before {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e695";
    background-color: #a2aaad; }
  .drawer__content .gig-comments-container .gig-comment-flag.gig-comment-flag-submitted::before {
    background-color: #f21d07; }

.drawer__content .gig-comments-container .gig-comment-replies .gig-comment {
  margin: 1.875rem 0 0; }

.drawer__content .gig-comments-container .gig-comment-replies .gig-comment-photo {
  height: 1.875rem;
  width: 1.875rem; }

.drawer__content .gig-comments-container .gig-comment-replies .gig-comment-username {
  margin-bottom: 0; }

.drawer__content .gig-comments-container .gig-composebox-header {
  clear: both; }
  .drawer__content .gig-comments-container .gig-composebox-header .gig-composebox-header-right {
    float: none; }

.tags-list {
  position: relative;
  padding: 1.25rem 0 1.5625rem; }
  .tags-list .scroller {
    white-space: nowrap;
    overflow: hidden; }
    .ua-operamini .tags-list .scroller {
      white-space: normal; }
  .tags-list ul {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    will-change: transform; }
  .tags-list.animated ul {
    -webkit-transition: -webkit-transform 350ms ease-in-out;
    transition: -webkit-transform 350ms ease-in-out;
    transition: transform 350ms ease-in-out;
    transition: transform 350ms ease-in-out, -webkit-transform 350ms ease-in-out; }
  .tags-list ul,
  .tags-list li {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    font-size: 0; }
  .tags-list li {
    display: inline-block;
    margin-right: 0.625rem; }
    .tags-list li:last-child {
      margin-right: 0; }
  .tags-list .prev,
  .tags-list .next {
    display: none;
    font-size: 2rem;
    position: absolute;
    color: #000;
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125rem;
    text-align: center;
    -webkit-transform: translateY(-0.8125rem);
            transform: translateY(-0.8125rem);
    top: 1.25rem;
    cursor: pointer; }
    .tags-list .prev.disabled,
    .tags-list .next.disabled {
      color: #d8d8d8;
      cursor: default; }
    .dev-desktop .tags-list .prev:not(.disabled):hover, .dev-desktop
    .tags-list .next:not(.disabled):hover {
      color: #b68339; }
  .tags-list .prev {
    left: 0; }
    .tags-list .prev:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e62e"; }
  .tags-list .next {
    right: 0; }
    .tags-list .next:before {
      font-family: "goal-icons";
      speak: none;
      font-style: normal;
      font-weight: normal;
      -webkit-font-feature-settings: normal;
              font-feature-settings: normal;
      font-variant: normal;
      text-transform: none;
      direction: ltr;
      unicode-bidi: embed;
      content: "\e62f"; }
  .tags-list .tag {
    font-size: 0; }
    .tags-list .tag a {
      display: block;
      background-color: #000;
      color: #fff;
      text-decoration: none;
      height: 1.625rem;
      line-height: 1.625rem;
      padding: 0 0.625rem;
      font-size: 0.875rem;
      white-space: nowrap;
      -webkit-transition: color .2s ease;
      transition: color .2s ease; }
      .ua-operamini .tags-list .tag a {
        padding-top: 0.125rem; }
    .dev-desktop .tags-list .tag:hover a {
      color: #b68339; }
    .ua-operamini .tags-list .tag {
      margin-bottom: 0.625rem;
      display: block;
      float: left;
      clear: right; }
  @media (min-width: 580px) {
    .tags-list {
      padding-top: 1.875rem;
      padding-bottom: 1.25rem; }
      .tags-list .prev,
      .tags-list .next {
        top: 1.875rem; } }
  @media (min-width: 740px) {
    .tags-list {
      padding-bottom: 1.5625rem; }
      .tags-list .prev,
      .tags-list .next {
        display: block; }
        .ua-operamini .tags-list .prev, .ua-operamini
        .tags-list .next {
          display: none; }
      .tags-list .scroller {
        margin-right: 3.125rem;
        margin-left: 3.125rem; }
        .ua-operamini .tags-list .scroller {
          margin-left: 0;
          margin-right: 0; } }
  .tags-list--dark {
    margin: 1rem 0;
    background-color: #fff;
    padding: 1.6875rem 0.625rem; }
    @media (min-width: 740px) {
      .tags-list--dark {
        padding-left: 0;
        padding-right: 0; } }
    @media (min-width: 980px) {
      .tags-list--dark {
        margin-bottom: 0; } }
    .tags-list--dark .tag a {
      color: #fff;
      background-color: #000; }
    @media (min-width: 580px) {
      .tags-list--dark .prev,
      .tags-list--dark .next {
        top: 1.6875rem; } }
  .tags-list--light .tag a {
    background-color: #fff;
    color: #000; }
    .tags-list--light .tag a.active {
      color: #fff;
      background-color: #f21d07; }
  .tags-list--filter {
    background-color: #fff;
    padding: 0.5625rem 0 0.5625rem; }
    .tags-list--filter .scroller {
      margin-left: 10px;
      margin-right: 0; }
    .tags-list--filter .tag:hover a.active {
      text-decoration: none;
      pointer-events: none;
      color: #fff; }
    .tags-list--filter .tag .active {
      background-color: #008aaf;
      color: #fff; }
    .tags-list--filter .prev,
    .tags-list--filter .next {
      top: 0;
      height: 2.75rem;
      width: 2rem;
      background-color: #fff;
      -webkit-transform: translateY(0);
              transform: translateY(0);
      z-index: 1;
      line-height: 2.5625rem; }
      .tags-list--filter .prev.disabled,
      .tags-list--filter .next.disabled {
        display: none;
        visibility: hidden; }
      .tags-list--filter .prev::before,
      .tags-list--filter .next::before {
        display: inline-block;
        width: 2rem;
        height: 2.75rem;
        vertical-align: middle; }
    .tags-list--filter .next {
      border-left: 2px solid rgba(8, 31, 44, 0.1); }
    .tags-list--filter .prev {
      border-right: 2px solid rgba(8, 31, 44, 0.1); }

@media (max-width: 479px) {
  .news-card-2 .picture {
    border-width: 5px;
    width: 7.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-2 .type-gallery .picture,
  .news-card-2 .type-video .picture {
    position: relative; }
    .news-card-2 .type-gallery .picture::before,
    .news-card-2 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-2 .type-gallery .picture::before, .ua-operamini
      .news-card-2 .type-video .picture::before {
        display: none; }
  .news-card-2 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 7.875rem;
    right: 0; }
  .news-card-2 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-2 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-2 [data-side="back"] .title,
  .news-card-2 [data-side="back"] .share {
    width: 50%; }
  .news-card-2 [data-side="back"] .title {
    left: 0; }
  .news-card-2 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-2 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem; }
  .news-card-2 [data-side="back"] .title {
    display: none; }
  .news-card-2 [data-side="back"] .share {
    width: 100%; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-2 .picture {
    width: 100%;
    height: 7.6875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-2 .type-video .picture,
  .news-card-2 .type-gallery .picture {
    position: relative; }
    .news-card-2 .type-video .picture::before,
    .news-card-2 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-2 .type-video .picture::before, .ua-operamini
      .news-card-2 .type-gallery .picture::before {
        display: none; }
  .news-card-2 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.6875rem;
    bottom: 0; }
  .news-card-2 [data-side="back"] .title,
  .news-card-2 [data-side="back"] .share {
    height: 50%; }
  .news-card-2 [data-side="back"] .title {
    top: 0; }
  .news-card-2 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-2.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-2 .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.25rem; }
  .news-card-2 [data-side="back"] .title {
    padding: 1.25rem; } }

@media (min-width: 580px) {
  .news-card-2 [data-side="back"] .title {
    padding: 1.5rem 1.25rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-2 .picture {
    width: 100%;
    height: 9.25rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-2 .type-video .picture,
  .news-card-2 .type-gallery .picture {
    position: relative; }
    .news-card-2 .type-video .picture::before,
    .news-card-2 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-2 .type-video .picture::before, .ua-operamini
      .news-card-2 .type-gallery .picture::before {
        display: none; }
  .news-card-2 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9.25rem;
    bottom: 0; }
  .news-card-2 [data-side="back"] .title,
  .news-card-2 [data-side="back"] .share {
    height: 50%; }
  .news-card-2 [data-side="back"] .title {
    top: 0; }
  .news-card-2 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-2.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-2 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 1.25rem 1.25rem 2.9375rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-2 .picture {
    width: 100%;
    height: 12.125rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-2 .type-video .picture,
  .news-card-2 .type-gallery .picture {
    position: relative; }
    .news-card-2 .type-video .picture::before,
    .news-card-2 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-2 .type-video .picture::before, .ua-operamini
      .news-card-2 .type-gallery .picture::before {
        display: none; }
  .news-card-2 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 12.125rem;
    bottom: 0; }
  .news-card-2 [data-side="back"] .title,
  .news-card-2 [data-side="back"] .share {
    height: 50%; }
  .news-card-2 [data-side="back"] .title {
    top: 0; }
  .news-card-2 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-2.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-2 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 1.25rem 1.25rem 3.4375rem; } }

@media (min-width: 980px) and (max-width: 1579px) {
  .news-card-2 .picture {
    width: 100%;
    height: 10.625rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-2 .type-video .picture,
  .news-card-2 .type-gallery .picture {
    position: relative; }
    .news-card-2 .type-video .picture::before,
    .news-card-2 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-2 .type-video .picture::before, .ua-operamini
      .news-card-2 .type-gallery .picture::before {
        display: none; }
  .news-card-2 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 10.625rem;
    bottom: 0; }
  .news-card-2 [data-side="back"] .title,
  .news-card-2 [data-side="back"] .share {
    height: 50%; }
  .news-card-2 [data-side="back"] .title {
    top: 0; }
  .news-card-2 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-2.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-2 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 1.25rem 1.25rem 4.0625rem; } }

@media (min-width: 1580px) {
  .news-card-2 .picture {
    width: 100%;
    height: 13.5rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-2 .type-video .picture,
  .news-card-2 .type-gallery .picture {
    position: relative; }
    .news-card-2 .type-video .picture::before,
    .news-card-2 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-2 .type-video .picture::before, .ua-operamini
      .news-card-2 .type-gallery .picture::before {
        display: none; }
  .news-card-2 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 13.5rem;
    bottom: 0; }
  .news-card-2 [data-side="back"] .title,
  .news-card-2 [data-side="back"] .share {
    height: 50%; }
  .news-card-2 [data-side="back"] .title {
    top: 0; }
  .news-card-2 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-2.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-2 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 1.25rem 1.25rem 3.5rem; }
  .news-card-2 [data-side="back"] .title {
    padding: 1.75rem 1.25rem; } }

.news-card-4 .picture {
  border-width: 5px;
  width: 7.875rem;
  height: 100%;
  position: absolute;
  left: 0; }

.news-card-4 .type-gallery .picture,
.news-card-4 .type-video .picture {
  position: relative; }
  .news-card-4 .type-gallery .picture::before,
  .news-card-4 .type-video .picture::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-color: #000;
    top: 50%;
    margin-top: -13px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    right: 0;
    margin-right: -0.0625rem;
    border-left: 0;
    border-right: 13px solid #000; }
    .ua-operamini .news-card-4 .type-gallery .picture::before, .ua-operamini
    .news-card-4 .type-video .picture::before {
      display: none; }

.news-card-4 .title {
  margin: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 7.875rem;
  right: 0; }

.news-card-4 .title-wrapper > * {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
  .ua-operamini .news-card-4 .title-wrapper > * {
    top: 0.3125rem;
    bottom: 0.3125rem;
    -webkit-transform: none;
            transform: none; }

.news-card-4 [data-side="back"] .title,
.news-card-4 [data-side="back"] .share {
  width: 50%; }

.news-card-4 [data-side="back"] .title {
  left: 0; }

.news-card-4 [data-side="back"] .share {
  height: 100%;
  float: right; }

.news-card-4 [data-side="back"] .title {
  display: none; }

.news-card-4 [data-side="back"] .share {
  width: 100%; }

@media (max-width: 479px) {
  .news-card-4 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 480px) and (max-width: 739px) {
  .news-card-4 .title {
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 1.125rem 0.75rem 1.1875rem; } }

@media (min-width: 740px) and (max-width: 1579px) {
  .news-card-4 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 1580px) {
  .news-card-4 .title {
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 1.125rem 0.75rem 1.1875rem; } }

@media (max-width: 479px) {
  .news-card-15 .picture {
    width: 100%;
    height: 10.5625rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-15 .type-video .picture,
  .news-card-15 .type-gallery .picture {
    position: relative; }
    .news-card-15 .type-video .picture::before,
    .news-card-15 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-15 .type-video .picture::before, .ua-operamini
      .news-card-15 .type-gallery .picture::before {
        display: none; }
  .news-card-15 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 10.5625rem;
    bottom: 0; }
  .news-card-15 [data-side="back"] .title,
  .news-card-15 [data-side="back"] .share {
    height: 50%; }
  .news-card-15 [data-side="back"] .title {
    top: 0; }
  .news-card-15 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-15.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-15 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 0.9375rem 0.9375rem 3.0625rem; }
  .news-card-15 [data-side="back"] .title {
    padding: 0.9375rem; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-15 .picture {
    border-width: 0;
    width: 14rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-15 .type-gallery .picture,
  .news-card-15 .type-video .picture {
    position: relative; }
    .news-card-15 .type-gallery .picture::before,
    .news-card-15 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-15 .type-gallery .picture::before, .ua-operamini
      .news-card-15 .type-video .picture::before {
        display: none; }
  .news-card-15 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 14rem;
    right: 0; }
  .news-card-15 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-15 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-15 [data-side="back"] .title,
  .news-card-15 [data-side="back"] .share {
    width: 50%; }
  .news-card-15 [data-side="back"] .title {
    left: 0; }
  .news-card-15 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-15 .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.125rem 0.9375rem 1.1875rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-15 .picture {
    border-width: 0;
    width: 17.3125rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-15 .type-gallery .picture,
  .news-card-15 .type-video .picture {
    position: relative; }
    .news-card-15 .type-gallery .picture::before,
    .news-card-15 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-15 .type-gallery .picture::before, .ua-operamini
      .news-card-15 .type-video .picture::before {
        display: none; }
  .news-card-15 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 17.3125rem;
    right: 0; }
  .news-card-15 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-15 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-15 [data-side="back"] .title,
  .news-card-15 [data-side="back"] .share {
    width: 50%; }
  .news-card-15 [data-side="back"] .title {
    left: 0; }
  .news-card-15 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-15 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 1.8125rem 0.9375rem 1.875rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-15 .picture {
    width: 100%;
    height: 12.125rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-15 .type-video .picture,
  .news-card-15 .type-gallery .picture {
    position: relative; }
    .news-card-15 .type-video .picture::before,
    .news-card-15 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-15 .type-video .picture::before, .ua-operamini
      .news-card-15 .type-gallery .picture::before {
        display: none; }
  .news-card-15 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 12.125rem;
    bottom: 0; }
  .news-card-15 [data-side="back"] .title,
  .news-card-15 [data-side="back"] .share {
    height: 50%; }
  .news-card-15 [data-side="back"] .title {
    top: 0; }
  .news-card-15 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-15.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-15 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 1.25rem 1.25rem 3.4375rem; } }

@media (min-width: 980px) and (max-width: 1579px) {
  .news-card-15 .picture {
    border-width: 0;
    width: 24.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-15 .type-gallery .picture,
  .news-card-15 .type-video .picture {
    position: relative; }
    .news-card-15 .type-gallery .picture::before,
    .news-card-15 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-15 .type-gallery .picture::before, .ua-operamini
      .news-card-15 .type-video .picture::before {
        display: none; }
  .news-card-15 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 24.875rem;
    right: 0; }
  .news-card-15 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-15 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-15 [data-side="back"] .title,
  .news-card-15 [data-side="back"] .share {
    width: 50%; }
  .news-card-15 [data-side="back"] .title {
    left: 0; }
  .news-card-15 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-15 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 2.0625rem 1.25rem 2.125rem; } }

@media (min-width: 1580px) {
  .news-card-15 .picture {
    border-width: 0;
    width: 30.3125rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-15 .type-gallery .picture,
  .news-card-15 .type-video .picture {
    position: relative; }
    .news-card-15 .type-gallery .picture::before,
    .news-card-15 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-15 .type-gallery .picture::before, .ua-operamini
      .news-card-15 .type-video .picture::before {
        display: none; }
  .news-card-15 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30.3125rem;
    right: 0; }
  .news-card-15 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-15 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-15 [data-side="back"] .title,
  .news-card-15 [data-side="back"] .share {
    width: 50%; }
  .news-card-15 [data-side="back"] .title {
    left: 0; }
  .news-card-15 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-15 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 3.625rem 1.25rem 3.6875rem; } }

@media (max-width: 479px) {
  .news-card-16 .picture {
    border-width: 5px;
    width: 7.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-16 .type-gallery .picture,
  .news-card-16 .type-video .picture {
    position: relative; }
    .news-card-16 .type-gallery .picture::before,
    .news-card-16 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-16 .type-gallery .picture::before, .ua-operamini
      .news-card-16 .type-video .picture::before {
        display: none; }
  .news-card-16 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 7.875rem;
    right: 0; }
  .news-card-16 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-16 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-16 [data-side="back"] .title,
  .news-card-16 [data-side="back"] .share {
    width: 50%; }
  .news-card-16 [data-side="back"] .title {
    left: 0; }
  .news-card-16 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-16 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem; }
  .news-card-16 [data-side="back"] .title {
    display: none; }
  .news-card-16 [data-side="back"] .share {
    width: 100%; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-16 .picture {
    width: 100%;
    height: 7.6875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-16 .type-video .picture,
  .news-card-16 .type-gallery .picture {
    position: relative; }
    .news-card-16 .type-video .picture::before,
    .news-card-16 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-16 .type-video .picture::before, .ua-operamini
      .news-card-16 .type-gallery .picture::before {
        display: none; }
  .news-card-16 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.6875rem;
    bottom: 0; }
  .news-card-16 [data-side="back"] .title,
  .news-card-16 [data-side="back"] .share {
    height: 50%; }
  .news-card-16 [data-side="back"] .title {
    top: 0; }
  .news-card-16 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-16.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-16 .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.25rem; }
  .news-card-16 [data-side="back"] .title {
    padding: 1.25rem; } }

@media (min-width: 580px) {
  .news-card-16 [data-side="back"] .title {
    padding: 1.5rem 1.25rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-16 .picture {
    width: 100%;
    height: 9.25rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-16 .type-video .picture,
  .news-card-16 .type-gallery .picture {
    position: relative; }
    .news-card-16 .type-video .picture::before,
    .news-card-16 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-16 .type-video .picture::before, .ua-operamini
      .news-card-16 .type-gallery .picture::before {
        display: none; }
  .news-card-16 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9.25rem;
    bottom: 0; }
  .news-card-16 [data-side="back"] .title,
  .news-card-16 [data-side="back"] .share {
    height: 50%; }
  .news-card-16 [data-side="back"] .title {
    top: 0; }
  .news-card-16 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-16.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-16 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 1.25rem 1.25rem 2.9375rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-16 .picture {
    border-width: 5px;
    width: 7.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-16 .type-gallery .picture,
  .news-card-16 .type-video .picture {
    position: relative; }
    .news-card-16 .type-gallery .picture::before,
    .news-card-16 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-16 .type-gallery .picture::before, .ua-operamini
      .news-card-16 .type-video .picture::before {
        display: none; }
  .news-card-16 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 7.875rem;
    right: 0; }
  .news-card-16 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-16 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-16 [data-side="back"] .title,
  .news-card-16 [data-side="back"] .share {
    width: 50%; }
  .news-card-16 [data-side="back"] .title {
    left: 0; }
  .news-card-16 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-16 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 980px) and (max-width: 1579px) {
  .news-card-16 .picture {
    width: 100%;
    height: 10.625rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-16 .type-video .picture,
  .news-card-16 .type-gallery .picture {
    position: relative; }
    .news-card-16 .type-video .picture::before,
    .news-card-16 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-16 .type-video .picture::before, .ua-operamini
      .news-card-16 .type-gallery .picture::before {
        display: none; }
  .news-card-16 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 10.625rem;
    bottom: 0; }
  .news-card-16 [data-side="back"] .title,
  .news-card-16 [data-side="back"] .share {
    height: 50%; }
  .news-card-16 [data-side="back"] .title {
    top: 0; }
  .news-card-16 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-16.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-16 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 1.25rem 1.25rem 4.0625rem; } }

@media (min-width: 1580px) {
  .news-card-16 .picture {
    width: 100%;
    height: 13.5rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-16 .type-video .picture,
  .news-card-16 .type-gallery .picture {
    position: relative; }
    .news-card-16 .type-video .picture::before,
    .news-card-16 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-16 .type-video .picture::before, .ua-operamini
      .news-card-16 .type-gallery .picture::before {
        display: none; }
  .news-card-16 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 13.5rem;
    bottom: 0; }
  .news-card-16 [data-side="back"] .title,
  .news-card-16 [data-side="back"] .share {
    height: 50%; }
  .news-card-16 [data-side="back"] .title {
    top: 0; }
  .news-card-16 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-16.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-16 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 1.25rem 1.25rem 3.5rem; }
  .news-card-16 [data-side="back"] .title {
    padding: 1.75rem 1.25rem; } }

.news-card-17 .title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  padding: 0.9375rem 0.9375rem 1.25rem;
  text-align: center; }

.news-card-17 [data-side="back"] .title {
  padding: 0.9375rem; }

@media (max-width: 479px) {
  .news-card-17 .picture {
    width: 100%;
    height: 11.375rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-17 .type-video .picture,
  .news-card-17 .type-gallery .picture {
    position: relative; }
    .news-card-17 .type-video .picture::before,
    .news-card-17 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-17 .type-video .picture::before, .ua-operamini
      .news-card-17 .type-gallery .picture::before {
        display: none; }
  .news-card-17 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 11.375rem;
    bottom: 0; }
  .news-card-17 [data-side="back"] .title,
  .news-card-17 [data-side="back"] .share {
    height: 50%; }
  .news-card-17 [data-side="back"] .title {
    top: 0; }
  .news-card-17 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-17.sponsorship-active .image {
    display: block;
    visibility: visible; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-17 .picture {
    width: 100%;
    height: 15.375rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-17 .type-video .picture,
  .news-card-17 .type-gallery .picture {
    position: relative; }
    .news-card-17 .type-video .picture::before,
    .news-card-17 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-17 .type-video .picture::before, .ua-operamini
      .news-card-17 .type-gallery .picture::before {
        display: none; }
  .news-card-17 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 15.375rem;
    bottom: 0; }
  .news-card-17 [data-side="back"] .title,
  .news-card-17 [data-side="back"] .share {
    height: 50%; }
  .news-card-17 [data-side="back"] .title {
    top: 0; }
  .news-card-17 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-17.sponsorship-active .image {
    display: block;
    visibility: visible; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-17 .picture {
    width: 100%;
    height: 20.3125rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-17 .type-video .picture,
  .news-card-17 .type-gallery .picture {
    position: relative; }
    .news-card-17 .type-video .picture::before,
    .news-card-17 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-17 .type-video .picture::before, .ua-operamini
      .news-card-17 .type-gallery .picture::before {
        display: none; }
  .news-card-17 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 20.3125rem;
    bottom: 0; }
  .news-card-17 [data-side="back"] .title,
  .news-card-17 [data-side="back"] .share {
    height: 50%; }
  .news-card-17 [data-side="back"] .title {
    top: 0; }
  .news-card-17 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-17.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-17 .title {
    font-size: 1.25rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-17 .picture {
    width: 100%;
    height: 25.9375rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-17 .type-video .picture,
  .news-card-17 .type-gallery .picture {
    position: relative; }
    .news-card-17 .type-video .picture::before,
    .news-card-17 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-17 .type-video .picture::before, .ua-operamini
      .news-card-17 .type-gallery .picture::before {
        display: none; }
  .news-card-17 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 25.9375rem;
    bottom: 0; }
  .news-card-17 [data-side="back"] .title,
  .news-card-17 [data-side="back"] .share {
    height: 50%; }
  .news-card-17 [data-side="back"] .title {
    top: 0; }
  .news-card-17 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-17.sponsorship-active .image {
    display: block;
    visibility: visible; } }

@media (min-width: 980px) and (max-width: 1579px) {
  .news-card-17 .picture {
    width: 100%;
    height: 22.4375rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-17 .type-video .picture,
  .news-card-17 .type-gallery .picture {
    position: relative; }
    .news-card-17 .type-video .picture::before,
    .news-card-17 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-17 .type-video .picture::before, .ua-operamini
      .news-card-17 .type-gallery .picture::before {
        display: none; }
  .news-card-17 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 22.4375rem;
    bottom: 0; }
  .news-card-17 [data-side="back"] .title,
  .news-card-17 [data-side="back"] .share {
    height: 50%; }
  .news-card-17 [data-side="back"] .title {
    top: 0; }
  .news-card-17 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-17.sponsorship-active .image {
    display: block;
    visibility: visible; } }

@media (min-width: 1580px) {
  .news-card-17 .picture {
    width: 100%;
    height: 28.25rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-17 .type-video .picture,
  .news-card-17 .type-gallery .picture {
    position: relative; }
    .news-card-17 .type-video .picture::before,
    .news-card-17 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-17 .type-video .picture::before, .ua-operamini
      .news-card-17 .type-gallery .picture::before {
        display: none; }
  .news-card-17 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 28.25rem;
    bottom: 0; }
  .news-card-17 [data-side="back"] .title,
  .news-card-17 [data-side="back"] .share {
    height: 50%; }
  .news-card-17 [data-side="back"] .title {
    top: 0; }
  .news-card-17 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-17.sponsorship-active .image {
    display: block;
    visibility: visible; } }

@media (min-width: 480px) {
  .news-card-17 .title {
    padding-bottom: 0.8125rem; } }

@media (min-width: 740px) {
  .news-card-17 .title {
    font-size: 1.375rem;
    line-height: 1.5625rem;
    padding-bottom: 1.25rem; } }

@media (min-width: 980px) {
  .news-card-17 .title {
    padding-bottom: 0.625rem; } }

@media (max-width: 479px) {
  .news-card-18 .picture {
    width: 100%;
    height: 10.5625rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-18 .type-video .picture,
  .news-card-18 .type-gallery .picture {
    position: relative; }
    .news-card-18 .type-video .picture::before,
    .news-card-18 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-18 .type-video .picture::before, .ua-operamini
      .news-card-18 .type-gallery .picture::before {
        display: none; }
  .news-card-18 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 10.5625rem;
    bottom: 0; }
  .news-card-18 [data-side="back"] .title,
  .news-card-18 [data-side="back"] .share {
    height: 50%; }
  .news-card-18 [data-side="back"] .title {
    top: 0; }
  .news-card-18 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-18.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-18 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 0.9375rem 0.9375rem 3.0625rem; }
  .news-card-18 [data-side="back"] .title {
    padding: 0.9375rem; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-18 .picture {
    border-width: 0;
    width: 14rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-18 .type-gallery .picture,
  .news-card-18 .type-video .picture {
    position: relative; }
    .news-card-18 .type-gallery .picture::before,
    .news-card-18 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-18 .type-gallery .picture::before, .ua-operamini
      .news-card-18 .type-video .picture::before {
        display: none; }
  .news-card-18 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 14rem;
    right: 0; }
  .news-card-18 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-18 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-18 [data-side="back"] .title,
  .news-card-18 [data-side="back"] .share {
    width: 50%; }
  .news-card-18 [data-side="back"] .title {
    left: 0; }
  .news-card-18 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-18 .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.125rem 0.9375rem 1.1875rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-18 .picture {
    border-width: 0;
    width: 17.3125rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-18 .type-gallery .picture,
  .news-card-18 .type-video .picture {
    position: relative; }
    .news-card-18 .type-gallery .picture::before,
    .news-card-18 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-18 .type-gallery .picture::before, .ua-operamini
      .news-card-18 .type-video .picture::before {
        display: none; }
  .news-card-18 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 17.3125rem;
    right: 0; }
  .news-card-18 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-18 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-18 [data-side="back"] .title,
  .news-card-18 [data-side="back"] .share {
    width: 50%; }
  .news-card-18 [data-side="back"] .title {
    left: 0; }
  .news-card-18 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-18 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 1.8125rem 0.9375rem 1.875rem; } }

@media (min-width: 740px) {
  .news-card-18 .picture {
    border-width: 0;
    width: 24.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-18 .type-gallery .picture,
  .news-card-18 .type-video .picture {
    position: relative; }
    .news-card-18 .type-gallery .picture::before,
    .news-card-18 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-18 .type-gallery .picture::before, .ua-operamini
      .news-card-18 .type-video .picture::before {
        display: none; }
  .news-card-18 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 24.875rem;
    right: 0; }
  .news-card-18 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-18 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-18 [data-side="back"] .title,
  .news-card-18 [data-side="back"] .share {
    width: 50%; }
  .news-card-18 [data-side="back"] .title {
    left: 0; }
  .news-card-18 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-18 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 2.0625rem 1.25rem 2.125rem; } }

@media (min-width: 1580px) {
  .news-card-18 .picture {
    border-width: 0;
    width: 30.3125rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-18 .type-gallery .picture,
  .news-card-18 .type-video .picture {
    position: relative; }
    .news-card-18 .type-gallery .picture::before,
    .news-card-18 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-18 .type-gallery .picture::before, .ua-operamini
      .news-card-18 .type-video .picture::before {
        display: none; }
  .news-card-18 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30.3125rem;
    right: 0; }
  .news-card-18 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-18 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-18 [data-side="back"] .title,
  .news-card-18 [data-side="back"] .share {
    width: 50%; }
  .news-card-18 [data-side="back"] .title {
    left: 0; }
  .news-card-18 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-18 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 3.625rem 1.25rem 3.6875rem; } }

@media (max-width: 479px) {
  .news-card-19 .picture {
    width: 100%;
    height: 10.5625rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-19 .type-video .picture,
  .news-card-19 .type-gallery .picture {
    position: relative; }
    .news-card-19 .type-video .picture::before,
    .news-card-19 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-19 .type-video .picture::before, .ua-operamini
      .news-card-19 .type-gallery .picture::before {
        display: none; }
  .news-card-19 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 10.5625rem;
    bottom: 0; }
  .news-card-19 [data-side="back"] .title,
  .news-card-19 [data-side="back"] .share {
    height: 50%; }
  .news-card-19 [data-side="back"] .title {
    top: 0; }
  .news-card-19 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-19.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-19 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 0.9375rem 0.9375rem 3.0625rem; }
  .news-card-19 [data-side="back"] .title {
    padding: 0.9375rem; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-19 .picture {
    border-width: 0;
    width: 14rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-19 .type-gallery .picture,
  .news-card-19 .type-video .picture {
    position: relative; }
    .news-card-19 .type-gallery .picture::before,
    .news-card-19 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-19 .type-gallery .picture::before, .ua-operamini
      .news-card-19 .type-video .picture::before {
        display: none; }
  .news-card-19 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 14rem;
    right: 0; }
  .news-card-19 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-19 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-19 [data-side="back"] .title,
  .news-card-19 [data-side="back"] .share {
    width: 50%; }
  .news-card-19 [data-side="back"] .title {
    left: 0; }
  .news-card-19 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-19 .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.125rem 0.9375rem 1.1875rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-19 .picture {
    border-width: 0;
    width: 17.3125rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-19 .type-gallery .picture,
  .news-card-19 .type-video .picture {
    position: relative; }
    .news-card-19 .type-gallery .picture::before,
    .news-card-19 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-19 .type-gallery .picture::before, .ua-operamini
      .news-card-19 .type-video .picture::before {
        display: none; }
  .news-card-19 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 17.3125rem;
    right: 0; }
  .news-card-19 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-19 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-19 [data-side="back"] .title,
  .news-card-19 [data-side="back"] .share {
    width: 50%; }
  .news-card-19 [data-side="back"] .title {
    left: 0; }
  .news-card-19 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-19 .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding: 1.8125rem 0.9375rem 1.875rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-19 .picture {
    border-width: 0;
    width: 21.5625rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-19 .type-gallery .picture,
  .news-card-19 .type-video .picture {
    position: relative; }
    .news-card-19 .type-gallery .picture::before,
    .news-card-19 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-19 .type-gallery .picture::before, .ua-operamini
      .news-card-19 .type-video .picture::before {
        display: none; }
  .news-card-19 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 21.5625rem;
    right: 0; }
  .news-card-19 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-19 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-19 [data-side="back"] .title,
  .news-card-19 [data-side="back"] .share {
    width: 50%; }
  .news-card-19 [data-side="back"] .title {
    left: 0; }
  .news-card-19 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-19 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 2.0625rem 1.25rem 2.125rem; } }

@media (min-width: 980px) {
  .news-card-19 .picture {
    border-width: 0;
    width: 24.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-19 .type-gallery .picture,
  .news-card-19 .type-video .picture {
    position: relative; }
    .news-card-19 .type-gallery .picture::before,
    .news-card-19 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-19 .type-gallery .picture::before, .ua-operamini
      .news-card-19 .type-video .picture::before {
        display: none; }
  .news-card-19 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 24.875rem;
    right: 0; }
  .news-card-19 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-19 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-19 [data-side="back"] .title,
  .news-card-19 [data-side="back"] .share {
    width: 50%; }
  .news-card-19 [data-side="back"] .title {
    left: 0; }
  .news-card-19 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-19 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 2.0625rem 1.25rem 2.125rem; } }

@media (min-width: 1580px) {
  .news-card-19 .picture {
    border-width: 0;
    width: 30.3125rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-19 .type-gallery .picture,
  .news-card-19 .type-video .picture {
    position: relative; }
    .news-card-19 .type-gallery .picture::before,
    .news-card-19 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-19 .type-gallery .picture::before, .ua-operamini
      .news-card-19 .type-video .picture::before {
        display: none; }
  .news-card-19 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30.3125rem;
    right: 0; }
  .news-card-19 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-19 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-19 [data-side="back"] .title,
  .news-card-19 [data-side="back"] .share {
    width: 50%; }
  .news-card-19 [data-side="back"] .title {
    left: 0; }
  .news-card-19 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-19 .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
    padding: 3.625rem 1.25rem 3.6875rem; } }

.multi-card {
  background-color: #fff;
  font-size: 0.875rem; }
  .multi-card a {
    text-decoration: none; }
  .multi-card__item {
    position: relative;
    height: 4.1875rem;
    padding: 0.625rem 0.625rem 0.625rem 1.5625rem; }
    @media (min-width: 480px) {
      .multi-card__item {
        height: 4.3125rem;
        padding: 0.625rem 0.625rem 0.625rem 7.5rem; } }
    @media (min-width: 740px) {
      .multi-card__item {
        height: 4.0625rem;
        padding: 0.625rem 0.625rem 0.625rem 1.5625rem; } }
    @media (min-width: 980px) {
      .multi-card__item {
        height: 4.1875rem; } }
    @media (min-width: 1580px) {
      .multi-card__item {
        height: 4.3125rem;
        padding: 0.625rem 0.625rem 0.625rem 7.5rem; } }
    .multi-card__item:not(:last-child) {
      border-bottom: 0.0625rem solid #f5f5f5; }
    .multi-card__item::before {
      content: '';
      position: absolute;
      width: 0.3125rem;
      top: 0.625rem;
      bottom: 0.625rem;
      background-color: #b68339;
      left: 0.625rem; }
      @media (min-width: 480px) {
        .multi-card__item::before {
          left: 6.5625rem; } }
      @media (min-width: 740px) {
        .multi-card__item::before {
          left: 0.625rem; } }
      @media (min-width: 1580px) {
        .multi-card__item::before {
          left: 6.5625rem; } }
  .multi-card__footer {
    font-size: 0.75rem; }
  .multi-card__title, .multi-card__category {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    font-weight: 500; }
  .multi-card__category {
    display: block;
    float: left;
    max-width: 70%;
    margin-right: 0.3125rem; }
  .multi-card__title {
    margin: 0.3125rem 0;
    font-size: 0.875rem;
    line-height: 1.0625rem;
    height: 1.0625rem;
    -webkit-transition: color .2s ease;
    transition: color .2s ease; }
    .multi-card__title:hover {
      color: #b68339; }
  .multi-card__publish {
    display: block;
    float: left;
    color: #000;
    font-weight: 300;
    margin-right: 0.3125rem; }
  .multi-card .picture {
    display: none;
    visibility: hidden;
    left: 0.625rem; }
    @media (min-width: 480px) {
      .multi-card .picture {
        display: block;
        visibility: visible;
        position: absolute;
        height: 3rem;
        width: 5.25rem;
        top: 0.625rem;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        border: 0 solid #fff;
        overflow: hidden; } }
    @media (min-width: 740px) {
      .multi-card .picture {
        display: none;
        visibility: hidden; } }
    @media (min-width: 1580px) {
      .multi-card .picture {
        display: block;
        visibility: visible; } }
    .multi-card .picture img {
      width: 100%;
      display: block; }

/*
.card-4-group-1 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-1 {
      @include span(12 first last);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(4 first);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);
    }
  }
}

.card-4-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include between(480, 740) {
    .card {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      @include span(12 first last);
    }

    .commercial {
      @include span(12 first last);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .commercial {
      display: none;
    }
  }
}

.card-4-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include between(480, 980) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }
  }
}

.card-6-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(320) {
    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }
  }

  @include at(740) {
    .card-1,
    .card-2 {
      @include span(6 first);
    }

    .card-3,
    .card-5 {
      @include span(6 first);
    }

    .card-4,
    .card-6 {
      @include span(6 last);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card-1 {
      @include span(4 first);
    }

    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
      @include span(4);
    }

    .card-3,
    .card-5 {
      @include span(4 first);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);

      margin-bottom: 0;
    }
  }
}

.card-8-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include at(320) {
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(740) {
    .card {
      @include span(6);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }

    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(4);
    }

    .card-1,
    .card-6 {
      @include span(4 first);
    }

    .card-3,
    .card-8 {
      @include span(4 last);
    }

    .card-4 {
      @include span(6 first);
    }

    .card-5 {
      @include span(6 last);
    }

    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-8 {
      @include span(3 last);
    }
  }
}

.card-8-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include to(740) {
    .card {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include between(740, 1580) {
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .card-5,
    .card-7 {
      @include span(6 first);
    }

    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-1,
    .card-2,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-6,
    .card-8 {
      @include span(3 last);
    }
  }
}
*/
.card-5-group-1 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .card-5-group-1:after {
    content: " ";
    display: block;
    clear: both; }
  .card-5-group-1 .card,
  .card-5-group-1 .commercial,
  .card-5-group-1 [data-role="ad"] {
    margin-bottom: 0.625rem; }
  .card-5-group-1 [data-role="ad"] {
    margin-top: 0.625rem; }
  .card-5-group-1 .commercial {
    background-color: #fff;
    position: relative; }
    .card-5-group-1 .commercial [data-role="ad"] {
      margin-top: 0;
      margin-bottom: 0; }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-5-group-1 .card,
    .card-5-group-1 [data-role="ad"] {
      margin-bottom: 0.75rem; }
    .card-5-group-1 [data-role="ad"] {
      margin-top: 0.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-5-group-1 .card,
    .card-5-group-1 [data-role="ad"] {
      margin-bottom: 1rem; }
    .card-5-group-1 [data-role="ad"] {
      margin-top: 1rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .card-5-group-1 .card,
    .card-5-group-1 [data-role="ad"] {
      margin-bottom: 1.375rem; }
    .card-5-group-1 [data-role="ad"] {
      margin-top: 1.375rem; } }
  @media (min-width: 1580px) {
    .card-5-group-1 .card,
    .card-5-group-1 [data-role="ad"] {
      margin-bottom: 1.75rem; }
    .card-5-group-1 [data-role="ad"] {
      margin-top: 1.75rem; } }
  .card-5-group-1 .slider-wrapper {
    float: none;
    overflow: hidden;
    height: auto;
    width: 100%; }
  .card-5-group-1 .card-1 {
    height: 21.875rem; }
    .card-5-group-1 .card-1 [data-side] {
      height: 19.0625rem; }
    .card-5-group-1 .card-1.sponsorship-active .title-wrapper > * {
      -webkit-transform: none;
              transform: none;
      top: 0; }
    .card-5-group-1 .card-1.sponsorship-active .image {
      display: block;
      visibility: visible; }
  .card-5-group-1 .card-2,
  .card-5-group-1 .card-3,
  .card-5-group-1 .card-4 {
    height: 7.5rem; }
    .card-5-group-1 .card-2 [data-side],
    .card-5-group-1 .card-3 [data-side],
    .card-5-group-1 .card-4 [data-side] {
      height: 4.6875rem; }
  @media (min-width: 480px) and (max-width: 579px) {
    .card-5-group-1 .card-1 {
      height: 10.625rem; }
      .card-5-group-1 .card-1 [data-side] {
        height: 7.8125rem; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-5-group-1 .card-1 {
      height: 12.5rem; }
      .card-5-group-1 .card-1 [data-side] {
        height: 9.6875rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-5-group-1 .card-1 {
      width: 100%;
      float: left;
      margin-right: 1.69492%;
      height: 14.875rem; }
      .card-5-group-1 .card-1 [data-side] {
        height: 12.0625rem; }
    .card-5-group-1 .card-2,
    .card-5-group-1 .card-3,
    .card-5-group-1 .card-4 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; }
    .card-5-group-1 .commercial {
      width: 49.15254%;
      float: right;
      margin-right: 0;
      margin-bottom: 0; }
    .card-5-group-1 .card-6 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .card-5-group-1 .card-1 {
      width: 66.10169%;
      float: left;
      margin-right: 1.69492%;
      height: 16.75rem; }
      .card-5-group-1 .card-1 [data-side] {
        height: 13.9375rem; }
    .card-5-group-1 .card-2 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-5-group-1 .card-3,
    .card-5-group-1 .card-4,
    .card-5-group-1 .card-5 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%;
      clear: left; }
    .card-5-group-1 .card-6 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%;
      margin-top: -17.6875rem; }
    .card-5-group-1 .commercial {
      width: 32.20339%;
      float: right;
      margin-right: 0;
      margin-bottom: 0; } }
  @media (min-width: 1580px) {
    .card-5-group-1 .card-1 {
      width: 66.10169%;
      float: left;
      margin-right: 1.69492%;
      height: 19.875rem; }
      .card-5-group-1 .card-1 [data-side] {
        height: 17.0625rem; }
    .card-5-group-1 .card-2 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-5-group-1 .card-3,
    .card-5-group-1 .card-4,
    .card-5-group-1 .card-5 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%;
      clear: left; }
    .card-5-group-1 .card-6 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%;
      margin-top: -18.5rem; }
    .card-5-group-1 .commercial {
      width: 32.20339%;
      float: right;
      margin-right: 0;
      margin-bottom: 0; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-5-group-1 > footer {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; } }
  @media (min-width: 740px) {
    .card-5-group-1 > footer {
      clear: left;
      float: left; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-5-group-1 > footer .btn {
      width: 100%; } }
  @media (min-width: 740px) {
    .card-5-group-1 > footer .btn {
      top: 0;
      margin: 0;
      display: inline-block; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .card-5-group-1 > footer .btn {
      left: 10.25rem; } }
  @media (min-width: 1580px) {
    .card-5-group-1 > footer .btn {
      left: 12.5rem; } }

/*
.card-4-group-1 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-1 {
      @include span(12 first last);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(4 first);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);
    }
  }
}

.card-4-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include between(480, 740) {
    .card {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      @include span(12 first last);
    }

    .commercial {
      @include span(12 first last);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .commercial {
      display: none;
    }
  }
}

.card-4-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include between(480, 980) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }
  }
}

.card-6-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(320) {
    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }
  }

  @include at(740) {
    .card-1,
    .card-2 {
      @include span(6 first);
    }

    .card-3,
    .card-5 {
      @include span(6 first);
    }

    .card-4,
    .card-6 {
      @include span(6 last);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card-1 {
      @include span(4 first);
    }

    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
      @include span(4);
    }

    .card-3,
    .card-5 {
      @include span(4 first);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);

      margin-bottom: 0;
    }
  }
}

.card-8-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include at(320) {
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(740) {
    .card {
      @include span(6);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }

    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(4);
    }

    .card-1,
    .card-6 {
      @include span(4 first);
    }

    .card-3,
    .card-8 {
      @include span(4 last);
    }

    .card-4 {
      @include span(6 first);
    }

    .card-5 {
      @include span(6 last);
    }

    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-8 {
      @include span(3 last);
    }
  }
}

.card-8-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include to(740) {
    .card {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include between(740, 1580) {
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .card-5,
    .card-7 {
      @include span(6 first);
    }

    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-1,
    .card-2,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-6,
    .card-8 {
      @include span(3 last);
    }
  }
}
*/
.card-5-group-2 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .card-5-group-2:after {
    content: " ";
    display: block;
    clear: both; }
  .card-5-group-2 .card,
  .card-5-group-2 .commercial,
  .card-5-group-2 [data-role="ad"] {
    margin-bottom: 0.625rem; }
  .card-5-group-2 [data-role="ad"] {
    margin-top: 0.625rem; }
  .card-5-group-2 .commercial {
    background-color: #fff;
    position: relative; }
    .card-5-group-2 .commercial [data-role="ad"] {
      margin-top: 0;
      margin-bottom: 0; }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-5-group-2 .card,
    .card-5-group-2 [data-role="ad"] {
      margin-bottom: 0.75rem; }
    .card-5-group-2 [data-role="ad"] {
      margin-top: 0.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-5-group-2 .card,
    .card-5-group-2 [data-role="ad"] {
      margin-bottom: 1rem; }
    .card-5-group-2 [data-role="ad"] {
      margin-top: 1rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .card-5-group-2 .card,
    .card-5-group-2 [data-role="ad"] {
      margin-bottom: 1.375rem; }
    .card-5-group-2 [data-role="ad"] {
      margin-top: 1.375rem; } }
  @media (min-width: 1580px) {
    .card-5-group-2 .card,
    .card-5-group-2 [data-role="ad"] {
      margin-bottom: 1.75rem; }
    .card-5-group-2 [data-role="ad"] {
      margin-top: 1.75rem; } }
  .card-5-group-2 .slider-wrapper {
    float: none;
    overflow: hidden;
    height: auto;
    width: 100%; }
  .card-5-group-2 .type-video .article-image:after {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e6ec";
    position: absolute;
    z-index: 1;
    top: 50%;
    color: #fff;
    height: 1.75rem;
    width: 1rem;
    font-size: 2rem;
    border-radius: 50%;
    background-color: #000;
    text-align: center;
    line-height: 1.875rem;
    text-indent: -0.5625rem;
    opacity: 0.75;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .card-5-group-2 .card-1,
  .card-5-group-2 .card-2,
  .card-5-group-2 .card-3,
  .card-5-group-2 .card-4,
  .card-5-group-2 .card-5,
  .card-5-group-2 .card-6 {
    height: 7.5rem; }
    .card-5-group-2 .card-1 [data-side],
    .card-5-group-2 .card-2 [data-side],
    .card-5-group-2 .card-3 [data-side],
    .card-5-group-2 .card-4 [data-side],
    .card-5-group-2 .card-5 [data-side],
    .card-5-group-2 .card-6 [data-side] {
      height: 4.6875rem; }
  @media (min-width: 740px) {
    .card-5-group-2 .card-1,
    .card-5-group-2 .card-3,
    .card-5-group-2 .card-5 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; }
    .card-5-group-2 .card-2,
    .card-5-group-2 .card-4,
    .card-5-group-2 .card-6 {
      width: 49.15254%;
      float: right;
      margin-right: 0; } }
  @media (min-width: 980px) {
    .card-5-group-2 .card-1,
    .card-5-group-2 .card-2,
    .card-5-group-2 .card-4,
    .card-5-group-2 .card-5 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-5-group-2 .card-3,
    .card-5-group-2 .card-6 {
      width: 32.20339%;
      float: right;
      margin-right: 0; } }

/*
.card-4-group-1 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-1 {
      @include span(12 first last);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(4 first);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);
    }
  }
}

.card-4-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include between(480, 740) {
    .card {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      @include span(12 first last);
    }

    .commercial {
      @include span(12 first last);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .commercial {
      display: none;
    }
  }
}

.card-4-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include between(480, 980) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }
  }
}

.card-6-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(320) {
    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }
  }

  @include at(740) {
    .card-1,
    .card-2 {
      @include span(6 first);
    }

    .card-3,
    .card-5 {
      @include span(6 first);
    }

    .card-4,
    .card-6 {
      @include span(6 last);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card-1 {
      @include span(4 first);
    }

    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
      @include span(4);
    }

    .card-3,
    .card-5 {
      @include span(4 first);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);

      margin-bottom: 0;
    }
  }
}

.card-8-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include at(320) {
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(740) {
    .card {
      @include span(6);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }

    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(4);
    }

    .card-1,
    .card-6 {
      @include span(4 first);
    }

    .card-3,
    .card-8 {
      @include span(4 last);
    }

    .card-4 {
      @include span(6 first);
    }

    .card-5 {
      @include span(6 last);
    }

    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-8 {
      @include span(3 last);
    }
  }
}

.card-8-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include to(740) {
    .card {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include between(740, 1580) {
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .card-5,
    .card-7 {
      @include span(6 first);
    }

    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-1,
    .card-2,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-6,
    .card-8 {
      @include span(3 last);
    }
  }
}
*/
.card-6-group-4 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .card-6-group-4:after {
    content: " ";
    display: block;
    clear: both; }
  .card-6-group-4 .card,
  .card-6-group-4 .commercial,
  .card-6-group-4 [data-role="ad"] {
    margin-bottom: 0.625rem; }
  .card-6-group-4 [data-role="ad"] {
    margin-top: 0.625rem; }
  .card-6-group-4 .commercial {
    background-color: #fff;
    position: relative; }
    .card-6-group-4 .commercial [data-role="ad"] {
      margin-top: 0;
      margin-bottom: 0; }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-6-group-4 .card,
    .card-6-group-4 [data-role="ad"] {
      margin-bottom: 0.75rem; }
    .card-6-group-4 [data-role="ad"] {
      margin-top: 0.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-6-group-4 .card,
    .card-6-group-4 [data-role="ad"] {
      margin-bottom: 1rem; }
    .card-6-group-4 [data-role="ad"] {
      margin-top: 1rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .card-6-group-4 .card,
    .card-6-group-4 [data-role="ad"] {
      margin-bottom: 1.375rem; }
    .card-6-group-4 [data-role="ad"] {
      margin-top: 1.375rem; } }
  @media (min-width: 1580px) {
    .card-6-group-4 .card,
    .card-6-group-4 [data-role="ad"] {
      margin-bottom: 1.75rem; }
    .card-6-group-4 [data-role="ad"] {
      margin-top: 1.75rem; } }
  .card-6-group-4 .slider-wrapper {
    float: none;
    overflow: hidden;
    height: auto;
    width: 100%; }
  .card-6-group-4 .card {
    width: 100%;
    float: right;
    margin-right: 0;
    height: 7.5rem; }
    .card-6-group-4 .card [data-side] {
      height: 4.6875rem; }
  .card-6-group-4 .card-1 {
    height: 21.875rem; }
    .card-6-group-4 .card-1 [data-side] {
      height: 19.0625rem; }
    .card-6-group-4 .card-1.sponsorship-active .title-wrapper > * {
      -webkit-transform: none;
              transform: none;
      top: 0; }
    .card-6-group-4 .card-1.sponsorship-active .image {
      display: block;
      visibility: visible; }
  .card-6-group-4 .commercial {
    width: 100%;
    float: right;
    margin-right: 0; }
  @media (max-width: 739px) {
    .card-6-group-4 .commercial {
      margin-bottom: 0; } }
  @media (min-width: 480px) and (max-width: 739px) {
    .card-6-group-4 .card-2 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-4 .card-3 {
      width: 49.15254%;
      float: right;
      margin-right: 0; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .card-6-group-4 .card-1 {
      height: 10.625rem; }
      .card-6-group-4 .card-1 [data-side] {
        height: 7.8125rem; }
    .card-6-group-4 .card-2,
    .card-6-group-4 .card-3 {
      height: 21.875rem; }
      .card-6-group-4 .card-2 [data-side],
      .card-6-group-4 .card-3 [data-side] {
        height: 19.0625rem; }
      .card-6-group-4 .card-2 footer .category,
      .card-6-group-4 .card-3 footer .category {
        max-width: 30%; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-6-group-4 .card-1 {
      height: 12.5rem; }
      .card-6-group-4 .card-1 [data-side] {
        height: 9.6875rem; }
    .card-6-group-4 .card-2,
    .card-6-group-4 .card-3 {
      height: 23.75rem; }
      .card-6-group-4 .card-2 [data-side],
      .card-6-group-4 .card-3 [data-side] {
        height: 20.9375rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-6-group-4 .card-1,
    .card-6-group-4 .card-2 {
      height: 24.5rem; }
      .card-6-group-4 .card-1 [data-side],
      .card-6-group-4 .card-2 [data-side] {
        height: 21.6875rem; }
    .card-6-group-4 .card-1,
    .card-6-group-4 .card-2,
    .card-6-group-4 .card-3,
    .card-6-group-4 .card-4 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-4 .card-5,
    .card-6-group-4 .card-6 {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
    .card-6-group-4 .card-5 {
      margin-top: -8.375rem; }
    .card-6-group-4 .commercial {
      width: 49.15254%;
      float: right;
      margin-right: 0;
      height: 50rem; } }
  @media (min-width: 980px) {
    .card-6-group-4 .card-1 {
      width: 66.10169%;
      float: left;
      margin-right: 1.69492%;
      height: 16.75rem; }
      .card-6-group-4 .card-1 [data-side] {
        height: 13.9375rem; }
    .card-6-group-4 .card-2,
    .card-6-group-4 .card-3 {
      height: 25.25rem; }
      .card-6-group-4 .card-2 [data-side],
      .card-6-group-4 .card-3 [data-side] {
        height: 22.4375rem; }
    .card-6-group-4 .card-2,
    .card-6-group-4 .card-4 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-4 .card-3,
    .card-6-group-4 .card-5 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-4 .card-4,
    .card-6-group-4 .card-5,
    .card-6-group-4 .card-6 {
      margin-bottom: 0; }
    .card-6-group-4 .card-6 {
      width: 32.20339%;
      float: right;
      margin-right: 0; }
    .card-6-group-4 .commercial {
      width: 32.20339%;
      float: right;
      margin-right: 0;
      height: 43.375rem; } }
  @media (min-width: 1580px) {
    .card-6-group-4 .card-1 {
      height: 19.875rem; }
      .card-6-group-4 .card-1 [data-side] {
        height: 17.0625rem; }
    .card-6-group-4 .card-2,
    .card-6-group-4 .card-3 {
      height: 25.875rem; }
      .card-6-group-4 .card-2 [data-side],
      .card-6-group-4 .card-3 [data-side] {
        height: 23.0625rem; }
    .card-6-group-4 .commercial {
      height: 47.5rem; } }

/*
.card-4-group-1 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-1 {
      @include span(12 first last);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(4 first);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);
    }
  }
}

.card-4-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include between(480, 740) {
    .card {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      @include span(12 first last);
    }

    .commercial {
      @include span(12 first last);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .commercial {
      display: none;
    }
  }
}

.card-4-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include between(480, 980) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }
  }
}

.card-6-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(320) {
    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }
  }

  @include at(740) {
    .card-1,
    .card-2 {
      @include span(6 first);
    }

    .card-3,
    .card-5 {
      @include span(6 first);
    }

    .card-4,
    .card-6 {
      @include span(6 last);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card-1 {
      @include span(4 first);
    }

    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
      @include span(4);
    }

    .card-3,
    .card-5 {
      @include span(4 first);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);

      margin-bottom: 0;
    }
  }
}

.card-8-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include at(320) {
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(740) {
    .card {
      @include span(6);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }

    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(4);
    }

    .card-1,
    .card-6 {
      @include span(4 first);
    }

    .card-3,
    .card-8 {
      @include span(4 last);
    }

    .card-4 {
      @include span(6 first);
    }

    .card-5 {
      @include span(6 last);
    }

    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-8 {
      @include span(3 last);
    }
  }
}

.card-8-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include to(740) {
    .card {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include between(740, 1580) {
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .card-5,
    .card-7 {
      @include span(6 first);
    }

    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-1,
    .card-2,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-6,
    .card-8 {
      @include span(3 last);
    }
  }
}
*/
.card-6-group-5 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .card-6-group-5:after {
    content: " ";
    display: block;
    clear: both; }
  .card-6-group-5 .card,
  .card-6-group-5 .commercial,
  .card-6-group-5 [data-role="ad"] {
    margin-bottom: 0.625rem; }
  .card-6-group-5 [data-role="ad"] {
    margin-top: 0.625rem; }
  .card-6-group-5 .commercial {
    background-color: #fff;
    position: relative; }
    .card-6-group-5 .commercial [data-role="ad"] {
      margin-top: 0;
      margin-bottom: 0; }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-6-group-5 .card,
    .card-6-group-5 [data-role="ad"] {
      margin-bottom: 0.75rem; }
    .card-6-group-5 [data-role="ad"] {
      margin-top: 0.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-6-group-5 .card,
    .card-6-group-5 [data-role="ad"] {
      margin-bottom: 1rem; }
    .card-6-group-5 [data-role="ad"] {
      margin-top: 1rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .card-6-group-5 .card,
    .card-6-group-5 [data-role="ad"] {
      margin-bottom: 1.375rem; }
    .card-6-group-5 [data-role="ad"] {
      margin-top: 1.375rem; } }
  @media (min-width: 1580px) {
    .card-6-group-5 .card,
    .card-6-group-5 [data-role="ad"] {
      margin-bottom: 1.75rem; }
    .card-6-group-5 [data-role="ad"] {
      margin-top: 1.75rem; } }
  .card-6-group-5 .slider-wrapper {
    float: none;
    overflow: hidden;
    height: auto;
    width: 100%; }
  .card-6-group-5 .card {
    width: 100%;
    float: right;
    margin-right: 0;
    height: 7.5rem; }
    .card-6-group-5 .card [data-side] {
      height: 4.6875rem; }
  .card-6-group-5 .card-1 {
    width: 100%;
    float: right;
    margin-right: 0;
    height: 21.875rem; }
    .card-6-group-5 .card-1 [data-side] {
      height: 19.0625rem; }
    @media (min-width: 480px) and (max-width: 579px) {
      .card-6-group-5 .card-1 {
        height: 10.625rem; }
        .card-6-group-5 .card-1 [data-side] {
          height: 7.8125rem; } }
    @media (min-width: 580px) and (max-width: 739px) {
      .card-6-group-5 .card-1 {
        height: 12.5rem; }
        .card-6-group-5 .card-1 [data-side] {
          height: 9.6875rem; } }
    .card-6-group-5 .card-1.sponsorship-active .title-wrapper > * {
      -webkit-transform: none;
              transform: none;
      top: 0; }
    .card-6-group-5 .card-1.sponsorship-active .image {
      display: block;
      visibility: visible; }
  .card-6-group-5 .commercial {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-bottom: 0; }
    @media (min-width: 740px) {
      .card-6-group-5 .commercial {
        width: 49.15254%;
        float: right;
        margin-right: 0;
        height: 50rem; } }
    @media (min-width: 980px) {
      .card-6-group-5 .commercial {
        width: 32.20339%;
        float: right;
        margin-right: 0;
        height: 43.375rem; } }
    @media (min-width: 1580px) {
      .card-6-group-5 .commercial {
        height: 47.5rem; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-3 {
      height: 21.875rem; }
      .card-6-group-5 .card-2 [data-side],
      .card-6-group-5 .card-3 [data-side] {
        height: 19.0625rem; }
      .card-6-group-5 .card-2 footer .category,
      .card-6-group-5 .card-3 footer .category {
        max-width: 30%; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-3 {
      height: 21.875rem; }
      .card-6-group-5 .card-2 [data-side],
      .card-6-group-5 .card-3 [data-side] {
        height: 19.0625rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .card-6-group-5 .card-1 {
      height: 14.875rem; }
      .card-6-group-5 .card-1 [data-side] {
        height: 12.0625rem; }
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-3 {
      height: 24.5rem; }
      .card-6-group-5 .card-2 [data-side],
      .card-6-group-5 .card-3 [data-side] {
        height: 21.6875rem; }
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-3,
    .card-6-group-5 .card-4 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-5 .card-5,
    .card-6-group-5 .card-6 {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
    .card-6-group-5 .card-5 {
      margin-top: -8.375rem; } }
  @media (min-width: 980px) {
    .card-6-group-5 .card-1 {
      width: 100%;
      float: right;
      margin-right: 0;
      height: 16.75rem; }
      .card-6-group-5 .card-1 [data-side] {
        height: 13.9375rem; }
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-3 {
      height: 25.25rem; }
      .card-6-group-5 .card-2 [data-side],
      .card-6-group-5 .card-3 [data-side] {
        height: 22.4375rem; }
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-4 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-5 .card-3,
    .card-6-group-5 .card-5 {
      width: 32.20339%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-5 .card-4,
    .card-6-group-5 .card-5,
    .card-6-group-5 .card-6 {
      margin-bottom: 0; }
    .card-6-group-5 .card-6 {
      width: 32.20339%;
      float: right;
      margin-right: 0; } }
  @media (min-width: 1580px) {
    .card-6-group-5 .card-1 {
      height: 19.875rem; }
      .card-6-group-5 .card-1 [data-side] {
        height: 17.0625rem; }
    .card-6-group-5 .card-2,
    .card-6-group-5 .card-3 {
      height: 25.875rem; }
      .card-6-group-5 .card-2 [data-side],
      .card-6-group-5 .card-3 [data-side] {
        height: 23.0625rem; } }
  .card-6-group-5 .card-2 {
    width: 100%;
    float: right;
    margin-right: 0; }
  .card-6-group-5 .card-3 {
    width: 100%;
    float: right;
    margin-right: 0; }
  @media (min-width: 480px) {
    .card-6-group-5 .card-2 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%; }
    .card-6-group-5 .card-3 {
      width: 49.15254%;
      float: right;
      margin-right: 0; } }

.widget-latest-news.no-more-btn {
  margin-bottom: 0.9375rem; }
  @media (min-width: 580px) {
    .widget-latest-news.no-more-btn {
      margin-bottom: 1.5625rem; } }

.widget-latest-news .commercial.side-widget {
  background-color: transparent; }
  @media (min-width: 740px) and (max-width: 979px) {
    .widget-latest-news .commercial.side-widget {
      margin-bottom: 2.5rem; } }

.news-card-4 .picture {
  border-width: 5px;
  width: 7.875rem;
  height: 100%;
  position: absolute;
  left: 0; }

.news-card-4 .type-gallery .picture,
.news-card-4 .type-video .picture {
  position: relative; }
  .news-card-4 .type-gallery .picture::before,
  .news-card-4 .type-video .picture::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-color: #000;
    top: 50%;
    margin-top: -13px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    right: 0;
    margin-right: -0.0625rem;
    border-left: 0;
    border-right: 13px solid #000; }
    .ua-operamini .news-card-4 .type-gallery .picture::before, .ua-operamini
    .news-card-4 .type-video .picture::before {
      display: none; }

.news-card-4 .title {
  margin: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 7.875rem;
  right: 0; }

.news-card-4 .title-wrapper > * {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
  .ua-operamini .news-card-4 .title-wrapper > * {
    top: 0.3125rem;
    bottom: 0.3125rem;
    -webkit-transform: none;
            transform: none; }

.news-card-4 [data-side="back"] .title,
.news-card-4 [data-side="back"] .share {
  width: 50%; }

.news-card-4 [data-side="back"] .title {
  left: 0; }

.news-card-4 [data-side="back"] .share {
  height: 100%;
  float: right; }

.news-card-4 [data-side="back"] .title {
  display: none; }

.news-card-4 [data-side="back"] .share {
  width: 100%; }

@media (max-width: 479px) {
  .news-card-4 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 480px) and (max-width: 739px) {
  .news-card-4 .title {
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 1.125rem 0.75rem 1.1875rem; } }

@media (min-width: 740px) and (max-width: 1579px) {
  .news-card-4 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 1580px) {
  .news-card-4 .title {
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 1.125rem 0.75rem 1.1875rem; } }

@media (max-width: 1579px) {
  .news-card-5 .picture {
    border-width: 5px;
    width: 7.875rem;
    height: 100%;
    position: absolute;
    left: 0; }
  .news-card-5 .type-gallery .picture,
  .news-card-5 .type-video .picture {
    position: relative; }
    .news-card-5 .type-gallery .picture::before,
    .news-card-5 .type-video .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      top: 50%;
      margin-top: -13px;
      border-top: 13px solid transparent;
      border-bottom: 13px solid transparent;
      right: 0;
      margin-right: -0.0625rem;
      border-left: 0;
      border-right: 13px solid #000; }
      .ua-operamini .news-card-5 .type-gallery .picture::before, .ua-operamini
      .news-card-5 .type-video .picture::before {
        display: none; }
  .news-card-5 .title {
    margin: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 7.875rem;
    right: 0; }
  .news-card-5 .title-wrapper > * {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .ua-operamini .news-card-5 .title-wrapper > * {
      top: 0.3125rem;
      bottom: 0.3125rem;
      -webkit-transform: none;
              transform: none; }
  .news-card-5 [data-side="back"] .title,
  .news-card-5 [data-side="back"] .share {
    width: 50%; }
  .news-card-5 [data-side="back"] .title {
    left: 0; }
  .news-card-5 [data-side="back"] .share {
    height: 100%;
    float: right; }
  .news-card-5 [data-side="back"] .title {
    display: none; }
  .news-card-5 [data-side="back"] .share {
    width: 100%; } }

@media (max-width: 479px) {
  .news-card-5 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 480px) and (max-width: 739px) {
  .news-card-5 .title {
    font-size: 1rem;
    line-height: 1.1875rem;
    padding: 1.125rem 0.75rem 1.25rem; } }

@media (min-width: 740px) and (max-width: 1579px) {
  .news-card-5 .title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 0.75rem 0.75rem 0.8125rem; } }

@media (min-width: 1580px) {
  .news-card-5 .picture {
    width: 100%;
    height: 9.875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-5 .type-video .picture,
  .news-card-5 .type-gallery .picture {
    position: relative; }
    .news-card-5 .type-video .picture::before,
    .news-card-5 .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-5 .type-video .picture::before, .ua-operamini
      .news-card-5 .type-gallery .picture::before {
        display: none; }
  .news-card-5 .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9.875rem;
    bottom: 0; }
  .news-card-5 [data-side="back"] .title,
  .news-card-5 [data-side="back"] .share {
    height: 50%; }
  .news-card-5 [data-side="back"] .title {
    top: 0; }
  .news-card-5 [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-5.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-5 .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.1875rem; }
  .news-card-5 [data-side="back"] .title {
    padding: 0.9375rem; } }

@media (max-width: 479px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.8125rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.8125rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 0.75rem; }
  .news-card-media-slider [data-side="back"] .title {
    display: none; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 9rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.9375rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.6875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.6875rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.375rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.875rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.1875rem; } }

@media (min-width: 980px) and (max-width: 1579px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.75rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.75rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.3125rem; }
  .news-card-media-slider [data-side="back"] .title {
    padding: 1.75rem 1.25rem; } }

@media (min-width: 1580px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 9.875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9.875rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.1875rem; }
  .news-card-media-slider [data-side="back"] .title {
    padding: 1.5625rem 1.25rem; } }

.news-card-media-slider.sponsorship-active .image {
  display: none;
  visibility: hidden; }

.news-card-video-player [data-element="flipper"] {
  position: static; }

.news-card-video-player [data-side="front"] {
  padding: 0.625rem;
  position: static;
  overflow: visible; }

.news-card-video-player .title {
  max-height: 50%;
  padding-top: 0.9375rem;
  overflow: hidden;
  font-size: 1.25rem;
  line-height: 1.5rem; }
  @media (min-width: 480px) {
    .news-card-video-player .title {
      padding-top: 1.25rem; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .news-card-video-player .title {
      font-size: 1.125rem;
      line-height: 1.375rem; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .news-card-video-player .title {
      font-size: 1.25rem;
      line-height: 1.5rem; } }
  @media (min-width: 740px) {
    .news-card-video-player .title {
      font-size: 1.375rem;
      line-height: 1.625rem; } }
  .news-card-video-player .title .title-wrapper {
    height: auto; }
  .ua-operamini .news-card-video-player .title {
    max-height: none; }

.news-card-video-player .picture {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  width: 100%; }
  .news-card-video-player .picture > *:first-child {
    position: absolute !important;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0; }
  .ua-operamini .news-card-video-player .picture {
    display: none;
    visibility: hidden; }

/*
.card-4-group-1 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-1 {
      @include span(12 first last);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(4 first);
    }

    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);
    }
  }
}

.card-4-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include between(480, 740) {
    .card {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      @include span(12 first last);
    }

    .commercial {
      @include span(12 first last);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .commercial {
      display: none;
    }
  }
}

.card-4-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include between(480, 980) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4 {
      @include span(6 last);
    }

    .card-3,
    .card-4 {
      margin-bottom: 0;
    }
  }

  @include from(980) {
    .card {
      @include span(3);

      margin-bottom: 0;
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }
  }
}

.card-6-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  .commercial {
    @include span(12 first last);

    margin-bottom: 0;
  }

  @include at(320) {
    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }
  }

  @include at(740) {
    .card-1,
    .card-2 {
      @include span(6 first);
    }

    .card-3,
    .card-5 {
      @include span(6 first);
    }

    .card-4,
    .card-6 {
      @include span(6 last);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(6 last);
    }
  }

  @include from(980) {
    .card-1 {
      @include span(4 first);
    }

    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6 {
      @include span(4);
    }

    .card-3,
    .card-5 {
      @include span(4 first);
    }

    .card-5,
    .card-6 {
      margin-bottom: 0;
    }

    .commercial {
      @include span(4 last);

      margin-bottom: 0;
    }
  }
}

.card-8-group-2 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include at(320) {
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include between(480, 740) {
    .card-1 {
      @include span(6 first);
    }

    .card-2 {
      @include span(6 last);
    }

    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(740) {
    .card {
      @include span(6);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }

    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(4);
    }

    .card-1,
    .card-6 {
      @include span(4 first);
    }

    .card-3,
    .card-8 {
      @include span(4 last);
    }

    .card-4 {
      @include span(6 first);
    }

    .card-5 {
      @include span(6 last);
    }

    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-5,
    .card-6,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-8 {
      @include span(3 last);
    }
  }
}

.card-8-group-3 {
  @extend %card-group-base;

  .card {
    @include span(12 first last);
  }

  @include to(740) {
    .card {
      margin-bottom: 0;
    }

    .slider-wrapper .card {
      @include span(7);
    }
  }

  @include at(740) {
    .card {
      @include span(6 first);
    }

    .card-2,
    .card-4,
    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include between(740, 1580) {
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }
  }

  @include at(980) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-4 {
      @include span(3 last);
    }

    .card-5,
    .card-7 {
      @include span(6 first);
    }

    .card-6,
    .card-8 {
      @include span(6 last);
    }
  }

  @include at(1580) {
    .card {
      @include span(3);
    }

    .card-1 {
      @include span(3 first);
    }

    .card-1,
    .card-2,
    .card-7,
    .card-8 {
      margin-bottom: 0;
    }

    .card-4,
    .card-6,
    .card-8 {
      @include span(3 last);
    }
  }
}
*/
@media (max-width: 479px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.8125rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.8125rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 0.75rem; }
  .news-card-media-slider [data-side="back"] .title {
    display: none; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%; } }

@media (min-width: 480px) and (max-width: 579px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 9rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.9375rem; } }

@media (min-width: 580px) and (max-width: 739px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.6875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.6875rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.375rem; } }

@media (min-width: 740px) and (max-width: 979px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.875rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.1875rem; } }

@media (min-width: 980px) and (max-width: 1579px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 7.75rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 7.75rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.3125rem; }
  .news-card-media-slider [data-side="back"] .title {
    padding: 1.75rem 1.25rem; } }

@media (min-width: 1580px) {
  .news-card-media-slider .picture {
    width: 100%;
    height: 9.875rem;
    position: absolute;
    top: 0;
    left: 0; }
  .news-card-media-slider .type-video .picture,
  .news-card-media-slider .type-gallery .picture {
    position: relative; }
    .news-card-media-slider .type-video .picture::before,
    .news-card-media-slider .type-gallery .picture::before {
      position: absolute;
      content: "";
      width: 0;
      height: 0;
      border-color: #000;
      bottom: 0;
      left: 50%;
      margin-bottom: -0.0625rem;
      margin-left: -13px;
      border-left: 13px solid transparent;
      border-right: 13px solid transparent;
      border-top: 0;
      border-bottom: 13px solid #000; }
      .ua-operamini .news-card-media-slider .type-video .picture::before, .ua-operamini
      .news-card-media-slider .type-gallery .picture::before {
        display: none; }
  .news-card-media-slider .title {
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    top: 9.875rem;
    bottom: 0; }
  .news-card-media-slider [data-side="back"] .title,
  .news-card-media-slider [data-side="back"] .share {
    height: 50%; }
  .news-card-media-slider [data-side="back"] .title {
    top: 0; }
  .news-card-media-slider [data-side="back"] .share {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0; }
  .news-card-media-slider.sponsorship-active .image {
    display: block;
    visibility: visible; }
  .news-card-media-slider .title {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 1.25rem 1.25rem 3.1875rem; }
  .news-card-media-slider [data-side="back"] .title {
    padding: 1.5625rem 1.25rem; } }

.news-card-media-slider.sponsorship-active .image {
  display: none;
  visibility: hidden; }

.media-card-group {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .media-card-group:after {
    content: " ";
    display: block;
    clear: both; }
  .media-card-group .card,
  .media-card-group .commercial,
  .media-card-group [data-role="ad"] {
    margin-bottom: 0.625rem; }
  .media-card-group [data-role="ad"] {
    margin-top: 0.625rem; }
  .media-card-group .commercial {
    background-color: #fff;
    position: relative; }
    .media-card-group .commercial [data-role="ad"] {
      margin-top: 0;
      margin-bottom: 0; }
  @media (min-width: 580px) and (max-width: 739px) {
    .media-card-group .card,
    .media-card-group [data-role="ad"] {
      margin-bottom: 0.75rem; }
    .media-card-group [data-role="ad"] {
      margin-top: 0.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .media-card-group .card,
    .media-card-group [data-role="ad"] {
      margin-bottom: 1rem; }
    .media-card-group [data-role="ad"] {
      margin-top: 1rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .media-card-group .card,
    .media-card-group [data-role="ad"] {
      margin-bottom: 1.375rem; }
    .media-card-group [data-role="ad"] {
      margin-top: 1.375rem; } }
  @media (min-width: 1580px) {
    .media-card-group .card,
    .media-card-group [data-role="ad"] {
      margin-bottom: 1.75rem; }
    .media-card-group [data-role="ad"] {
      margin-top: 1.75rem; } }
  .media-card-group .slider-wrapper {
    float: none;
    overflow: hidden;
    height: auto;
    width: 100%; }
  .media-card-group .card {
    width: 100%;
    float: right;
    margin-right: 0;
    height: 7.625rem; }
    .media-card-group .card [data-side] {
      height: 4.8125rem; }
  @media (max-width: 479px) {
    .media-card-group .card-4 {
      height: 22.5rem; }
      .media-card-group .card-4 [data-side] {
        height: 19.6875rem; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .media-card-group .card-4 {
      height: 22.5rem; }
      .media-card-group .card-4 [data-side] {
        height: 19.6875rem; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .media-card-group .card-4 {
      height: 26.5625rem; }
      .media-card-group .card-4 [data-side] {
        height: 23.75rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .media-card-group .card-1,
    .media-card-group .card-2,
    .media-card-group .card-3 {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
    .media-card-group .card-4 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      height: 24.875rem; }
      .media-card-group .card-4 [data-side] {
        height: 22.0625rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .media-card-group .card-1,
    .media-card-group .card-2,
    .media-card-group .card-3 {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
    .media-card-group .card-4 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      height: 25.625rem; }
      .media-card-group .card-4 [data-side] {
        height: 22.8125rem; } }
  @media (min-width: 1580px) {
    .media-card-group .card-1,
    .media-card-group .card-2 {
      height: 22.75rem; }
      .media-card-group .card-1 [data-side],
      .media-card-group .card-2 [data-side] {
        height: 19.9375rem; }
    .media-card-group .card-1 {
      width: 23.72881%;
      float: left;
      margin-right: 1.69492%; }
    .media-card-group .card-2 {
      width: 23.72881%;
      float: right;
      margin-right: 0; }
    .media-card-group .card-3 {
      width: 49.15254%;
      float: right;
      margin-right: 0; }
    .media-card-group .card-4 {
      width: 49.15254%;
      float: left;
      margin-right: 1.69492%;
      height: 32.125rem; }
      .media-card-group .card-4 [data-side] {
        height: 29.3125rem; } }

.slider-card-group {
  position: relative; }
  .slider-card-group .card {
    height: 18.25rem;
    display: inline-block;
    width: 14.0625rem;
    float: none;
    margin-right: 0.625rem; }
    .slider-card-group .card [data-side] {
      height: 15.4375rem; }
    .slider-card-group .card:last-child {
      margin-right: 0; }
  @media (max-width: 479px) {
    .slider-card-group .card {
      width: 16.3125rem;
      margin-right: 0.25rem; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .slider-card-group .card {
      height: 22.5rem;
      width: 16.3125rem;
      margin-right: 0.4375rem; }
      .slider-card-group .card [data-side] {
        height: 19.6875rem; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .slider-card-group .card {
      height: 20.75rem;
      width: 13.6875rem;
      margin-right: 0.625rem; }
      .slider-card-group .card [data-side] {
        height: 17.9375rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .slider-card-group .card {
      height: 20.75rem;
      width: 14.125rem;
      margin-right: 0.75rem; }
      .slider-card-group .card [data-side] {
        height: 17.9375rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .slider-card-group .card {
      height: 20.75rem;
      width: 14.0625rem;
      margin-right: 1rem; }
      .slider-card-group .card [data-side] {
        height: 17.9375rem; } }
  @media (min-width: 1580px) {
    .slider-card-group .card {
      height: 22.75rem;
      width: 17.875rem;
      margin-right: 1.3125rem; }
      .slider-card-group .card [data-side] {
        height: 19.9375rem; } }

.widget-media-group {
  position: relative;
  background-color: #000;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
  background-size: cover;
  background: #000 url("/conmebol-assets/img/cl-bg-media-group-320.7c8dfe0ede.png") no-repeat center top;
  background-size: cover; }
  .widget-media-group:not(.hidden) {
    margin-top: 0.625rem; }
    @media (min-width: 580px) and (max-width: 739px) {
      .widget-media-group:not(.hidden) {
        margin-top: 0.75rem; } }
    @media (min-width: 740px) and (max-width: 979px) {
      .widget-media-group:not(.hidden) {
        margin-top: 1rem; } }
    @media (min-width: 980px) and (max-width: 1579px) {
      .widget-media-group:not(.hidden) {
        margin-top: 1.375rem; } }
    @media (min-width: 1580px) {
      .widget-media-group:not(.hidden) {
        margin-top: 1.75rem; } }
  @media (max-width: 479px) {
    .widget-media-group__wrapper {
      padding-left: 0.625rem;
      padding-right: 0.625rem; } }
  @media (min-width: 480px) and (max-width: 579px) {
    .widget-media-group__wrapper {
      padding-left: 1.0625rem;
      padding-right: 1.0625rem; } }
  @media (min-width: 580px) and (max-width: 739px) {
    .widget-media-group__wrapper {
      padding-left: 1.25rem;
      padding-right: 1.25rem; } }
  @media (min-width: 740px) and (max-width: 979px) {
    .widget-media-group__wrapper {
      padding-left: 1.125rem;
      padding-right: 1.125rem; } }
  @media (min-width: 980px) and (max-width: 1579px) {
    .widget-media-group__wrapper {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  @media (min-width: 1580px) {
    .widget-media-group__wrapper {
      padding-left: 2.25rem;
      padding-right: 2.25rem; } }
  .widget-media-group__footer .btn--more {
    margin: 0 auto 0.9375rem; }
  @media (min-width: 480px) {
    .widget-media-group {
      background-image: url("/conmebol-assets/img/cl-bg-media-group-480.f74d4f2131.png"); } }
  @media (min-width: 580px) {
    .widget-media-group {
      background-image: url("/conmebol-assets/img/cl-bg-media-group-580.da9a5ec290.png"); } }
  @media (min-width: 740px) {
    .widget-media-group {
      background-image: url("/conmebol-assets/img/cl-bg-media-group-740.6a56ef2044.png"); } }
  @media (min-width: 980px) {
    .widget-media-group {
      background-image: url("/conmebol-assets/img/cl-bg-media-group-1580.25bd2d998a.png"); } }
  @media (min-width: 1580px) {
    .widget-media-group {
      background-image: url("/conmebol-assets/img/cl-bg-media-group-1580.25bd2d998a.png"); } }
  @media (min-width: 580px) {
    .widget-media-group {
      padding-top: 1.875rem;
      padding-bottom: 1.875rem; } }
  .widget-media-group .widget-headline {
    margin-top: 0;
    color: #fff; }
  .widget-media-group .card {
    background-color: #000;
    border: 1px solid #fff; }
    .widget-media-group .card [data-element="flipper"] {
      background-color: #000;
      border-width: 0; }
    .widget-media-group .card [data-side="front"] .title {
      color: #fff; }
      .widget-media-group .card [data-side="front"] .title:hover {
        color: #b68339; }
    .widget-media-group .card [data-side="front"] .picture {
      border-color: #000; }
  .widget-media-group .group .card-1 [data-element="flipper"] [data-side],
  .widget-media-group .group .card-2 [data-element="flipper"] [data-side] {
    height: 4.8125rem; }
    @media (min-width: 1580px) {
      .widget-media-group .group .card-1 [data-element="flipper"] [data-side],
      .widget-media-group .group .card-2 [data-element="flipper"] [data-side] {
        height: 19.9375rem; } }
  .widget-media-group .group .card-3 [data-element="flipper"] [data-side] {
    height: 4.8125rem; }
  .widget-media-group .group .card-4 .ad-place {
    background-color: #d0d6d5; }
  .widget-media-group .commercial {
    display: none;
    visibility: hidden;
    margin-bottom: 0;
    margin-top: 1.25rem; }
    .widget-media-group .commercial [data-role="ad"] {
      margin-bottom: 0; }
    @media (min-width: 580px) {
      .widget-media-group .commercial {
        margin-top: 1.875rem; } }
    @media (min-width: 740px) {
      .widget-media-group .commercial {
        display: block;
        visibility: visible; } }
  .widget-media-group .news-card-video-player {
    position: relative;
    z-index: 10; }
  .widget-media-group.page-container {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem; }

.widget-competition-fixtures-and-results--list .widget-headline {
  margin-top: 0; }

.widget-competition-fixtures-and-results--list .widget-competition-fixtures-and-results__content {
  background-color: #fff; }

.widget-competition-fixtures-and-results--list .match-row {
  margin: 0 0.625rem; }

.widget-competition-fixtures-and-results--list footer {
  padding: 1.25rem; }

.widget-competition-fixtures-and-results--list .match-additional-data {
  padding: 0 0.625rem;
  height: auto; }

.widget-competition-fixtures-and-results--list .btn--more {
  clear: both;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  margin: 0; }

.widget-competition-standings--default .table__cell {
  width: 10%; }
  .widget-competition-standings--default .table__cell:nth-of-type(3) {
    width: 50%;
    text-align: left; }
  .widget-competition-standings--default .table__cell:nth-last-of-type(1), .widget-competition-standings--default .table__cell:nth-last-of-type(2) {
    width: 15%; }
  @media (min-width: 580px) {
    .widget-competition-standings--default .table__cell {
      width: 7%; }
      .widget-competition-standings--default .table__cell:nth-of-type(3) {
        width: 36%;
        padding-left: 0.625rem; }
      .widget-competition-standings--default .table__cell:nth-last-of-type(1), .widget-competition-standings--default .table__cell:nth-last-of-type(2) {
        width: 11%; } }
  @media (max-width: 579px) {
    .widget-competition-standings--default .table__cell:nth-of-type(2), .widget-competition-standings--default .table__cell:nth-of-type(5), .widget-competition-standings--default .table__cell:nth-of-type(6), .widget-competition-standings--default .table__cell:nth-of-type(7) {
      display: none;
      visibility: hidden; } }

@media (max-width: 579px) {
  .widget-competition-standings--default .table__header .table__cell:nth-of-type(3) {
    visibility: hidden; } }

@media (max-width: 579px) {
  .widget-competition-standings--default .table__body .table__cell:nth-of-type(1) {
    padding-right: 0.625rem; } }

.widget-competition-standings--landing-page {
  overflow: hidden; }
  .widget-competition-standings--landing-page .table__cell:nth-child(1) {
    text-align: left;
    width: 100%; }
  .widget-competition-standings--landing-page .table__cell:nth-child(2) {
    width: 1.5625rem; }
  .widget-competition-standings--landing-page .table__cell:nth-child(3) {
    width: 3.125rem; }
  .widget-competition-standings--landing-page .table__body .table__cell:nth-child(3) {
    font-weight: 500; }
  .widget-competition-standings--landing-page .widget-competition-standings__table {
    display: none; }
    .widget-competition-standings--landing-page .widget-competition-standings__table--active {
      display: block; }
    @media (min-width: 580px) {
      .widget-competition-standings--landing-page .widget-competition-standings__table {
        display: block; } }
    @media (min-width: 580px) and (max-width: 979px) {
      .widget-competition-standings--landing-page .widget-competition-standings__table {
        width: 49.15254%;
        float: left;
        margin-right: 1.69492%;
        margin-top: 0.625rem; }
        .widget-competition-standings--landing-page .widget-competition-standings__table:nth-child(2n) {
          width: 49.15254%;
          float: right;
          margin-right: 0; }
        .widget-competition-standings--landing-page .widget-competition-standings__table:nth-child(-n + 2) {
          margin-top: 0; } }
    @media (min-width: 980px) {
      .widget-competition-standings--landing-page .widget-competition-standings__table {
        width: 23.72881%;
        float: left;
        margin-right: 1.69492%;
        margin-top: 1.25rem; }
        .widget-competition-standings--landing-page .widget-competition-standings__table:nth-child(4n) {
          width: 23.72881%;
          float: right;
          margin-right: 0; }
        .widget-competition-standings--landing-page .widget-competition-standings__table:nth-child(-n + 4) {
          margin-top: 0; } }

.widget-competition-standings__updated {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #1f324a; }

.widget-competition-standings__table-key {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: #1f324a;
  background-color: #fff;
  padding: 0.625rem; }

.widget-competition-standings__team-logo {
  width: 1.875rem;
  height: 1.875rem; }

@media (max-width: 979px) {
  .widget-competition-standings [data-role="ad"]:not(.hidden) {
    margin-top: 0.625rem; } }
  @media (max-width: 979px) and (min-width: 580px) and (max-width: 739px) {
    .widget-competition-standings [data-role="ad"]:not(.hidden) {
      margin-top: 0.75rem; } }
  @media (max-width: 979px) and (min-width: 740px) and (max-width: 979px) {
    .widget-competition-standings [data-role="ad"]:not(.hidden) {
      margin-top: 1rem; } }
  @media (max-width: 979px) and (min-width: 980px) and (max-width: 1579px) {
    .widget-competition-standings [data-role="ad"]:not(.hidden) {
      margin-top: 1.375rem; } }
  @media (max-width: 979px) and (min-width: 1580px) {
    .widget-competition-standings [data-role="ad"]:not(.hidden) {
      margin-top: 1.75rem; } }

.widget-competition-standings .match-list {
  margin-top: 0.625rem; }
  .widget-competition-standings .match-list .match-row:not(.match-row--exposed) {
    display: none;
    visibility: hidden; }
  .widget-competition-standings .match-list__button-expand {
    background-color: #fff;
    cursor: pointer;
    height: 2.75rem;
    line-height: 2.75rem;
    text-align: center; }
    .widget-competition-standings .match-list__button-expand span {
      position: relative; }
      html:not(.ua-operamini) .widget-competition-standings .match-list__button-expand span {
        padding-right: 0.875rem; }
      .widget-competition-standings .match-list__button-expand span::after {
        content: "";
        display: inline-block;
        width: 0.5rem;
        height: 0.5rem;
        border: 1px solid #000;
        border-left: 0;
        border-bottom: 0;
        top: 0;
        position: absolute;
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg);
        right: 0; }
        .ua-operamini .widget-competition-standings .match-list__button-expand span::after {
          display: none; }
      .widget-competition-standings .match-list__button-expand span::after {
        border-width: 2px;
        height: 0.75rem;
        left: 100%;
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        width: 0.75rem; }
  .widget-competition-standings .match-list--expanded .match-row:not(.match-row--exposed) {
    display: block;
    visibility: visible; }
  .widget-competition-standings .match-list--expanded .match-list__button-expand span::after {
    -webkit-transform: translate(0, 50%) rotate(-45deg);
            transform: translate(0, 50%) rotate(-45deg); }

.widget-competition-standings__groups {
  position: relative;
  margin-bottom: 0.625rem; }
  @media (min-width: 580px) {
    .widget-competition-standings__groups {
      display: none; } }

.widget-competition-standings__current-group {
  background-color: #fff;
  padding: 0.625rem 3.125rem 0.625rem 0.625rem;
  border: 1px solid #9b9b9b;
  line-height: 1.5rem;
  font-size: 1rem;
  display: block;
  cursor: pointer; }
  .widget-competition-standings__current-group:after {
    font-family: "goal-icons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    direction: ltr;
    unicode-bidi: embed;
    content: "\e62d"; }
  .widget-competition-standings__current-group::after {
    font-size: 2rem;
    line-height: 2rem;
    position: absolute;
    right: 0.625rem;
    top: 50%;
    margin-top: -1rem; }

.widget-competition-standings__groups-select {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.match-row--v1 {
  background-color: #fff;
  list-style-type: none;
  border-bottom: 1px solid #ecf1f0;
  font-size: 0.875rem;
  position: relative;
  padding-bottom: 0.5rem; }
  .match-row--v1 .match-main-data {
    position: relative; }
    .match-row--v1 .match-main-data .match-result,
    .match-row--v1 .match-main-data .action {
      display: block;
      position: absolute;
      top: 0;
      width: 3.75rem;
      height: 2.875rem;
      line-height: 2.875rem;
      text-decoration: none;
      color: #000;
      vertical-align: middle;
      margin: 0.625rem 0;
      right: 0; }
    .match-row--v1 .match-main-data .action--visible {
      text-align: center;
      overflow: hidden; }
      .match-row--v1 .match-main-data .action--visible::after {
        pointer-events: none;
        content: '';
        display: inline-block;
        margin: 0.625rem 0;
        vertical-align: middle;
        position: absolute;
        height: 2.875rem;
        width: 100%;
        font-size: 1.875rem;
        text-align: center;
        line-height: 2.875rem;
        z-index: 0;
        right: 0;
        left: 0;
        border-left: 1px solid #ecf1f0; }
    .match-row--v1 .match-main-data .action-btn {
      position: relative;
      z-index: 1;
      top: 0.125rem;
      cursor: pointer; }
      .match-row--v1 .match-main-data .action-btn[data-type="copa-toyota"][data-state="off"]:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e683";
        font-size: 2rem; }
      .match-row--v1 .match-main-data .action-btn[data-type="copa-toyota"][data-state="on"]:before {
        font-family: "goal-icons";
        speak: none;
        font-style: normal;
        font-weight: normal;
        -webkit-font-feature-settings: normal;
                font-feature-settings: normal;
        font-variant: normal;
        text-transform: none;
        direction: ltr;
        unicode-bidi: embed;
        content: "\e684";
        font-size: 2rem; }
    .match-row--v1 .match-main-data .match-result {
      border-left: 1px solid #ecf1f0; }
    .match-row--v1 .match-main-data .result {
      display: inline-block;
      height: 2rem;
      width: 2rem;
      text-transform: uppercase;
      font-size: 1.125rem;
      font-weight: 700;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -1rem;
      margin-left: -1rem; }
      .match-row--v1 .match-main-data .result::before {
        content: attr(data-label);
        text-align: center;
        vertical-align: middle;
        display: block;
        color: #fff;
        height: 2rem;
        width: 2rem;
        position: absolute;
        top: 0;
        left: 0;
        line-height: 2rem; }
        .ua-ie .match-row--v1 .match-main-data .result::before {
          line-height: 1.8; }
      .match-row--v1 .match-main-data .result--draw {
        background-color: #d0d6d5; }
        .match-row--v1 .match-main-data .result--draw::after {
          background-color: #d0d6d5; }
      .match-row--v1 .match-main-data .result--win {
        background-color: #00ac77; }
        .match-row--v1 .match-main-data .result--win::after {
          background-color: #00ac77; }
      .match-row--v1 .match-main-data .result--lost {
        background-color: #f21d07; }
        .match-row--v1 .match-main-data .result--lost::after {
          background-color: #f21d07; }
      .match-row--v1 .match-main-data .result--last-match::after {
        content: "";
        display: block;
        width: 100%;
        height: 0.125rem;
        position: absolute;
        bottom: -0.3125rem; }
  .match-row--v1 .match-main-data-link {
    display: block;
    height: 3.6875rem;
    line-height: 3.6875rem;
    color: #000;
    text-decoration: none; }
  .match-row--v1 .match-status {
    height: 2.875rem;
    width: 2.875rem;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0.625rem;
    left: 0.625rem; }
    .ua-operamini .match-row--v1 .match-status {
      display: table;
      table-layout: fixed; }
    .match-row--v1 .match-status > * {
      word-wrap: break-word;
      line-height: normal;
      position: absolute;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      top: 50%;
      left: 50%; }
      .ua-operamini .match-row--v1 .match-status > * {
        -webkit-transform: none;
                transform: none;
        position: relative;
        top: auto;
        left: auto;
        display: table-cell;
        vertical-align: middle; }
    .match-row--v1 .match-status time {
      display: none;
      visibility: hidden; }
      .ua-operamini .match-row--v1 .match-status time {
        display: none;
        visibility: hidden; }
  .match-row--v1.status-pld .match-status, .match-row--v1.status-can .match-status {
    background-color: #b68339; }
  .match-row--v1.status-pld .crest {
    display: none;
    visibility: hidden; }
    .ua-operamini .match-row--v1.status-pld .crest {
      display: none;
      visibility: hidden; }
  .match-row--v1.status-pla .match-status, .match-row--v1.status-sus .match-status {
    background-color: #f21d07; }
  .match-row--v1.status-pla .crest, .match-row--v1.status-sus .crest {
    display: none;
    visibility: hidden; }
  .match-row--v1.status-fix .match-status, .match-row--v1.status-pos .match-status {
    background-color: #000; }
  .match-row--v1.status-fix .goals, .match-row--v1.status-pos .goals {
    display: none;
    visibility: hidden; }
  .match-row--v1.status-fix .match-status span {
    display: none;
    visibility: hidden; }
  .match-row--v1.status-fix .match-status time {
    display: block;
    visibility: visible; }
    .ua-operamini .match-row--v1.status-fix .match-status time {
      display: table-cell;
      visibility: visible; }
  .match-row--v1 .match-teams {
    padding: 0 4rem; }
    .match-row--v1 .match-teams .match-data {
      padding-top: 0.625rem;
      line-height: 1; }
      .match-row--v1 .match-teams .match-data > * {
        line-height: 1.5rem; }
    .match-row--v1 .match-teams .goals,
    .match-row--v1 .match-teams .crest {
      font-weight: 400;
      position: absolute;
      left: 0; }
    .match-row--v1 .match-teams .goals {
      font-size: 1.25rem;
      width: 1.5rem;
      text-align: center; }
      @media (min-width: 580px) {
        .match-row--v1 .match-teams .goals {
          font-size: 1.5rem; } }
    .match-row--v1 .match-teams .win .team-name {
      font-weight: 500; }
    .match-row--v1 .match-teams .crest {
      height: 100%;
      width: 1.5625rem;
      display: inline-block;
      text-align: center; }
      .match-row--v1 .match-teams .crest img {
        height: 1.125rem;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        .ua-operamini .match-row--v1 .match-teams .crest img {
          top: 0;
          left: 0;
          display: block; }
    .match-row--v1 .match-teams .team-home,
    .match-row--v1 .match-teams .team-away {
      position: relative;
      font-weight: 300;
      padding-left: 1.875rem; }
      .match-row--v1 .match-teams .team-home span,
      .match-row--v1 .match-teams .team-away span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
    .match-row--v1 .match-teams .line {
      display: none;
      visibility: hidden; }
    .match-row--v1 .match-teams--without-results {
      padding-right: 0.625rem; }
  .match-row--v1 .match-additional-data {
    color: #838f95;
    font-size: 0.75rem;
    height: 1.375rem;
    padding: 0 0 0.3125rem 0.625rem; }
    @media (min-width: 580px) {
      .match-row--v1 .match-additional-data {
        padding: 0 0 0.3125rem 0; } }
    @media (min-width: 980px) {
      .match-row--v1 .match-additional-data {
        padding: 0 0.625rem 0.3125rem;
        height: auto; } }
    .match-row--v1 .match-additional-data.hidden {
      display: none;
      visibility: hidden; }
    .match-row--v1 .match-additional-data__competition-name {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-transform: none;
      display: inline-block;
      vertical-align: top;
      max-width: 70%;
      padding-left: 0.625rem; }
      @media (min-width: 580px) {
        .match-row--v1 .match-additional-data__competition-name {
          position: absolute;
          max-width: 40%;
          left: 0; } }
  @media (min-width: 580px) {
    .match-row--v1:not(.match-row--compact) .match-main-data .match-result,
    .match-row--v1:not(.match-row--compact) .match-main-data .action {
      height: 2.25rem;
      line-height: 2.25rem; }
    .match-row--v1:not(.match-row--compact) .match-main-data .action::after {
      line-height: 2.25rem;
      height: 2.25rem; }
    .match-row--v1:not(.match-row--compact) .match-status {
      height: 2.25rem; }
    .match-row--v1:not(.match-row--compact) .match-main-data-link {
      height: 3rem;
      line-height: 3rem; }
    .match-row--v1:not(.match-row--compact) .match-status {
      height: 2.25rem; }
    .match-row--v1:not(.match-row--compact) .match-teams .match-data {
      position: relative;
      font-size: 0;
      padding: 0; }
      .ua-operamini .match-row--v1:not(.match-row--compact) .match-teams .match-data {
        padding-top: 1.25rem; }
      .match-row--v1:not(.match-row--compact) .match-teams .match-data > * {
        display: inline-block;
        font-size: 0.875rem;
        line-height: 3.5rem; }
    .match-row--v1:not(.match-row--compact) .match-teams .team-home,
    .match-row--v1:not(.match-row--compact) .match-teams .team-away {
      width: 49%; }
      .match-row--v1:not(.match-row--compact) .match-teams .team-home span,
      .match-row--v1:not(.match-row--compact) .match-teams .team-away span {
        height: 3.5rem; }
    .match-row--v1:not(.match-row--compact) .match-teams .line {
      display: inline-block;
      visibility: visible;
      width: 2%;
      text-align: center;
      vertical-align: top; }
    .match-row--v1:not(.match-row--compact) .match-teams .crest img {
      height: 1.5625rem; }
    .match-row--v1:not(.match-row--compact) .match-teams .team-home {
      padding-left: 0;
      padding-right: 2.5rem;
      text-align: right; }
      .match-row--v1:not(.match-row--compact) .match-teams .team-home .goals,
      .match-row--v1:not(.match-row--compact) .match-teams .team-home .crest {
        left: auto;
        right: 0.1875rem; }
    .match-row--v1:not(.match-row--compact) .match-teams .team-away {
      padding-left: 2.5rem; }
      .match-row--v1:not(.match-row--compact) .match-teams .team-away .goals,
      .match-row--v1:not(.match-row--compact) .match-teams .team-away .crest {
        right: auto;
        left: 0.1875rem; }
    .match-row--v1:not(.match-row--compact) .match-additional-data {
      text-align: center; } }

.widget-competition-stages {
  background: transparent; }
  .widget-competition-stages__status-indicator {
    overflow: hidden;
    max-width: 100px; }
  .widget-competition-stages__navigation {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    font-size: 0; }
  .widget-competition-stages__title {
    font-size: 0;
    position: relative; }
  .widget-competition-stages__round {
    margin-bottom: 1.375rem;
    margin-top: 1.375rem;
    text-align: center;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #838f95;
    width: 100%;
    display: inline-block; }
    @media (min-width: 580px) {
      .widget-competition-stages__round {
        width: 50%; } }
    .widget-competition-stages__round:last-of-type {
      position: absolute;
      top: 5.5rem;
      display: none; }
      @media (min-width: 580px) {
        .widget-competition-stages__round:last-of-type {
          display: inline-block; } }
  .widget-competition-stages__tag {
    display: inline-block;
    margin-right: 0.625rem; }
  .widget-competition-stages__scroller {
    display: block; }
  @media (min-width: 740px) {
    .widget-competition-stages__row-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .widget-competition-stages__row {
    margin: 1.75rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative; }
    @media (min-width: 740px) {
      .widget-competition-stages__row {
        width: 48%; } }
  .widget-competition-stages__game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -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;
    width: 100%; }
    .widget-competition-stages__game--phase {
      margin-right: 0.625rem; }
      .widget-competition-stages__game--phase::after {
        position: absolute;
        content: '';
        width: 50%;
        border-bottom: solid #a2aaad;
        border-top: solid #a2aaad;
        top: 3.75rem;
        bottom: 3.75rem;
        z-index: -1;
        border-right: solid #a2aaad;
        left: 52%;
        margin-right: 0.625rem; }
        @media (min-width: 480px) {
          .widget-competition-stages__game--phase::after {
            width: 51%; } }
        @media (min-width: 580px) {
          .widget-competition-stages__game--phase::after {
            width: 51%; } }
      .widget-competition-stages__game--phase::before {
        position: absolute;
        content: '';
        width: 0.4375rem;
        border-top: solid #a2aaad;
        top: 50%;
        z-index: -1;
        right: -0.8125rem; }
        @media (min-width: 480px) {
          .widget-competition-stages__game--phase::before {
            right: -1.0625rem; } }
        @media (min-width: 580px) {
          .widget-competition-stages__game--phase::before {
            right: -0.8125rem; } }
        @media (min-width: 740px) {
          .widget-competition-stages__game--phase::before {
            right: -0.9375rem; } }
        @media (min-width: 1580px) {
          .widget-competition-stages__game--phase::before {
            right: -1rem; } }
    .widget-competition-stages__game--winner {
      position: relative;
      display: none;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-left: 0.625rem; }
      @media (min-width: 580px) {
        .widget-competition-stages__game--winner {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
      .widget-competition-stages__game--winner .widget-competition-stages__matches {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
    .widget-competition-stages__game .match-row {
      width: 100%; }
  .widget-competition-stages__link {
    text-decoration: none;
    width: 100%;
    cursor: pointer; }
  .widget-competition-stages__matches {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    width: 100%; }
  .widget-competition-stages__match-tag {
    position: relative;
    width: 100%;
    min-width: 18.5rem;
    height: 2.8125rem;
    font-size: 1rem;
    color: #000;
    background: #fff;
    line-height: 2.8125rem;
    padding-left: 3.4375rem;
    padding-right: 0.9375rem; }
    @media (min-width: 480px) {
      .widget-competition-stages__match-tag {
        min-width: 27.875rem; } }
    @media (min-width: 580px) {
      .widget-competition-stages__match-tag {
        min-width: 16.25rem; } }
    @media (min-width: 740px) {
      .widget-competition-stages__match-tag {
        min-width: 18.75rem; } }
    .widget-competition-stages__match-tag span {
      float: right; }
    .widget-competition-stages__match-tag:first-of-type {
      font-weight: 600;
      color: #fff;
      padding: 0 0.9375rem;
      font-size: 0.875rem;
      background: #000; }
  .widget-competition-stages__match-final {
    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; }
    .widget-competition-stages__match-final .widget-competition-stages__matches {
      width: 100%; }
      @media (min-width: 580px) {
        .widget-competition-stages__match-final .widget-competition-stages__matches {
          width: 50%; } }
    .widget-competition-stages__match-final h3.widget-competition-stages__round:last-of-type {
      display: block;
      position: relative;
      top: 0;
      margin-top: 0; }
    .widget-competition-stages__match-final .widget-competition-stages__link {
      width: 100%; }
      @media (min-width: 580px) {
        .widget-competition-stages__match-final .widget-competition-stages__link {
          width: 50%; } }
  .widget-competition-stages__flag {
    position: absolute;
    width: 1.625rem;
    height: 1.625rem;
    top: 50%;
    margin-top: -0.8125rem;
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
    left: 0; }
    .widget-competition-stages__flag--winner {
      width: 4rem;
      height: 4rem; }
  .widget-competition-stages__winner {
    font-weight: 600; }
  .widget-competition-stages .widget-competition-standings {
    margin-top: 2.5rem; }
  .widget-competition-stages [data-role="ad"] {
    margin-top: 2.5rem; }
  .widget-competition-stages__legs {
    overflow: hidden; }
  .widget-competition-stages__legs-slider {
    width: 200%;
    overflow: hidden;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s; }
    @media (min-width: 980px) {
      .widget-competition-stages__legs-slider {
        -webkit-transition: none;
        transition: none;
        width: auto; } }
  .widget-competition-stages__leg-container {
    float: left;
    width: 50%; }
    @media (min-width: 980px) {
      .widget-competition-stages__leg-container {
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
        .widget-competition-stages__leg-container--first {
          padding-right: 0.625rem; }
        .widget-competition-stages__leg-container--second {
          padding-left: 0.625rem; } }
  .widget-competition-stages__leg-header {
    text-align: center;
    margin: 0 0 1.25rem;
    font-size: 1.375rem;
    color: #9b9b9b;
    display: none;
    font-weight: 500; }
    @media (min-width: 980px) {
      .widget-competition-stages__leg-header {
        display: block; } }
  .widget-competition-stages__leg-nav {
    overflow: hidden;
    margin: 0 auto 0.625rem; }
    @media (min-width: 740px) {
      .widget-competition-stages__leg-nav {
        max-width: 28.75rem; } }
    @media (min-width: 980px) {
      .widget-competition-stages__leg-nav {
        display: none; } }
  .widget-competition-stages__leg-nav-item {
    float: left;
    width: 50%;
    color: #000;
    line-height: 1.5rem;
    padding: 0.625rem;
    text-align: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    background-color: #d8d8d8;
    -webkit-transition: color .3s, background-color .3s;
    transition: color .3s, background-color .3s; }
    .widget-competition-stages__leg-nav-item--active {
      cursor: default;
      color: #fff;
      background-color: #f00; }
  .widget-competition-stages__no-data {
    text-align: center;
    width: 100%;
    color: #9b9b9b;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 0.9375rem;
    margin: 0.625rem 0;
    position: relative; }
    .widget-competition-stages__no-data::before {
      content: "";
      position: absolute;
      height: 2px;
      margin-top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: -webkit-gradient(linear, right top, left top, from(rgba(182, 131, 57, 0.2)), color-stop(50%, rgba(182, 131, 57, 0.4)), to(rgba(182, 131, 57, 0.2)));
      background-image: linear-gradient(-90deg, rgba(182, 131, 57, 0.2) 0%, rgba(182, 131, 57, 0.4) 50%, rgba(182, 131, 57, 0.2) 100%); }
  .widget-competition-stages .widget-headline {
    margin-bottom: 0.625rem; }
    @media (min-width: 980px) {
      .widget-competition-stages .widget-headline {
        margin-bottom: 1.25rem; } }
  .widget-competition-stages--groups-landing-page .widget-competition-standings {
    margin-top: 0; }

.p0c-competition-stages {
  background: transparent; }
  .p0c-competition-stages__navigation {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    font-size: 0; }
  .p0c-competition-stages__title {
    font-size: 0;
    position: relative;
    text-align: left; }
  .p0c-competition-stages .active {
    background-color: #081f2c; }
  .p0c-competition-stages__round {
    margin-bottom: 1.375rem;
    margin-top: 1.375rem;
    text-align: center;
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #838f95;
    width: 100%;
    display: inline-block;
    width: 50%; }
    .p0c-competition-stages__round:last-of-type {
      position: absolute;
      top: 4.5rem;
      display: none;
      display: inline-block; }
  .p0c-competition-stages__tag {
    display: inline-block;
    margin-right: 0.625rem; }
  .p0c-competition-stages__item {
    display: block;
    background-color: #fff;
    text-transform: uppercase;
    color: #838f95;
    text-decoration: none;
    height: 1.625rem;
    line-height: 1.625rem;
    padding: 0 0.625rem;
    font-size: 0.875rem;
    white-space: nowrap; }
  .p0c-competition-stages__scroller {
    display: block; }
  .p0c-competition-stages__row {
    margin-bottom: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative; }
  .p0c-competition-stages__game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -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;
    width: 100%; }
    .p0c-competition-stages__game--phase {
      margin-right: 0.625rem; }
      .p0c-competition-stages__game--phase::after {
        position: absolute;
        content: '';
        width: 50%;
        border-bottom: solid #a2aaad;
        border-top: solid #a2aaad;
        top: 3.75rem;
        bottom: 3.75rem;
        z-index: -1;
        width: 0.3125rem;
        border-right: solid #a2aaad;
        right: -1.0625rem;
        margin-right: 0.625rem; }
      .p0c-competition-stages__game--phase::before {
        position: absolute;
        content: '';
        width: 0.4375rem;
        border-top: solid #a2aaad;
        top: 50%;
        z-index: -1;
        right: -0.8125rem; }
    .p0c-competition-stages__game--winner {
      position: relative;
      display: none;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-left: 0.625rem; }
      .p0c-competition-stages__game--winner .p0c-competition-stages__matches {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
  .p0c-competition-stages__link {
    text-decoration: none;
    width: 100%;
    cursor: pointer; }
    .p0c-competition-stages__link:first-of-type {
      margin-bottom: 2.5rem; }
  .p0c-competition-stages__matches {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    width: 100%; }
  .p0c-competition-stages__match-tag {
    position: relative;
    min-width: 18.5rem;
    height: 2.8125rem;
    font-size: 1rem;
    color: #081f2c;
    background: #fff;
    line-height: 2.8125rem;
    min-width: 18.625rem;
    padding-left: 3.4375rem;
    padding-right: 0.9375rem; }
    .p0c-competition-stages__match-tag span {
      float: right; }
  .p0c-competition-stages__match-tag:first-of-type {
    font-weight: 600;
    background: #081f2c;
    color: #fff;
    padding: 0 0.9375rem;
    font-size: 0.875rem; }
  .p0c-competition-stages__match-final {
    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; }
    .p0c-competition-stages__match-final h3.p0c-competition-stages__round:last-of-type {
      display: block;
      position: relative;
      top: 0;
      margin-top: 0; }
    .p0c-competition-stages__match-final .p0c-competition-stages__link {
      width: 50%; }
  .p0c-competition-stages__flag {
    position: absolute;
    width: 1.625rem;
    height: 1.625rem;
    top: 50%;
    margin-top: -0.8125rem;
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
    left: 0; }
    .p0c-competition-stages__flag--winner {
      width: 4rem;
      height: 4rem; }
  .p0c-competition-stages__winner {
    font-weight: 600; }

.p0c-competition-match-list__day, .p0c-competition-match-list__no-data {
  background-color: #f5f5f5; }

.p0c-competition-match-list__day {
  padding: 0; }
  .p0c-competition-match-list__day:last-of-type {
    margin: 0; }
  .p0c-competition-match-list__day--empty {
    display: none; }

.p0c-competition-match-list__days, .p0c-competition-match-list__matches {
  margin: 0;
  padding: 0;
  list-style: none; }

.p0c-competition-match-list__title, .p0c-competition-match-list__no-data {
  color: #9b9b9b;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 0.9375rem;
  margin: 0.625rem 0;
  position: relative; }
  .p0c-competition-match-list__title::before, .p0c-competition-match-list__no-data::before {
    content: "";
    position: absolute;
    height: 2px;
    margin-top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(182, 131, 57, 0.2)), color-stop(50%, rgba(182, 131, 57, 0.4)), to(rgba(182, 131, 57, 0.2)));
    background-image: linear-gradient(-90deg, rgba(182, 131, 57, 0.2) 0%, rgba(182, 131, 57, 0.4) 50%, rgba(182, 131, 57, 0.2) 100%); }

.p0c-competition-match-list__title {
  text-align: center;
  font-size: 1.5rem; }

.p0c-competition-match-list__title-date {
  position: relative; }

.p0c-competition-match-list__no-data {
  text-align: center;
  font-weight: 600; }
  .p0c-competition-match-list__no-data--hidden {
    display: none; }

.p0c-competition-match-list__row {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.625rem 0.9375rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-bottom: 1px solid #e3e5e6;
  background-color: #fff; }
  .p0c-competition-match-list__row:last-of-type {
    border-bottom: 0; }

.p0c-competition-match-list__match-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }

.p0c-competition-match-list__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  -webkit-transition: background-color .3s, color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, -webkit-box-shadow .3s;
  transition: background-color .3s, color .3s, box-shadow .3s;
  transition: background-color .3s, color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  text-transform: uppercase;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  font-weight: 500; }
  @media (min-width: 580px) {
    .p0c-competition-match-list__status {
      height: 2.25rem; } }
  .dev-desktop .p0c-competition-match-list__status:hover {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
  .p0c-competition-match-list__status--post-full-time, .p0c-competition-match-list__status--post-penalties, .p0c-competition-match-list__status--post-after-overtime, .p0c-competition-match-list__status--post-after-extra-time {
    color: #fff;
    border: 0;
    background-color: #b68339; }
  .p0c-competition-match-list__status--timestamp {
    color: #fff;
    background-color: #000; }
  .p0c-competition-match-list__status--pre-postponed, .p0c-competition-match-list__status--post-canceled, .p0c-competition-match-list__status--live-suspended {
    color: #121212;
    font-weight: 600; }
  .p0c-competition-match-list__status--minutes {
    color: #fff;
    font-weight: 600;
    background-color: #f21d07; }

.p0c-competition-match-list__period-name {
  display: block;
  line-height: 1.25rem; }

.p0c-competition-match-list__teams {
  margin: 0 0.625rem;
  width: 48%;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }

.p0c-competition-match-list__match-link {
  width: 100%;
  text-decoration: none;
  color: #000; }

.p0c-competition-match-list__team-crest {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 1.125rem;
  width: 1.125rem;
  margin: 0 0.1875rem; }

.p0c-competition-match-list__score {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 1.125rem;
  width: 1.5rem;
  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-weight: 500;
  font-size: 1.25rem; }

.p0c-competition-match-list__agg-score {
  width: 100%;
  text-align: left;
  margin-top: 0.25rem;
  font-size: 0.75rem; }

.p0c-competition-match-list__team-crest--placeholder {
  background: url("/conmebol-assets/img/team-crest.132c44732c.png") no-repeat 50% 50%;
  background-size: contain; }

.p0c-competition-match-list__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  height: 1.4375rem; }
  @media (min-width: 580px) {
    .p0c-competition-match-list__team {
      height: auto; } }
  .p0c-competition-match-list__team--home {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }

.p0c-competition-match-list__team-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0 0 0 0.625rem;
  text-decoration: none;
  color: #000; }
  .p0c-competition-match-list__team-name--win {
    font-weight: 500; }
  .p0c-competition-match-list__team-name--home {
    margin: 0 0 0 0.625rem;
    text-align: left; }
  .p0c-competition-match-list__team-name--away {
    margin: 0 0 0 0.625rem; }

.p0c-competition-match-list__teams-separator {
  display: none; }

@media (min-width: 580px) {
  .p0c-competition-match-list .p0c-competition-match-list__score {
    font-size: 1.5rem; }
  .p0c-competition-match-list .p0c-competition-match-list__agg-score {
    text-align: center;
    margin-top: 0;
    font-size: 0.875rem;
    padding-left: 2.875rem; }
  .p0c-competition-match-list .p0c-competition-match-list__team-crest {
    height: 1.75rem;
    width: 1.75rem; }
  .p0c-competition-match-list .p0c-competition-match-list__teams {
    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;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 70%;
    overflow: hidden; }
  .p0c-competition-match-list .p0c-competition-match-list__match-link {
    display: block; }
  .p0c-competition-match-list .p0c-competition-match-list__team {
    width: 45%; }
    .p0c-competition-match-list .p0c-competition-match-list__team--home {
      margin: 0;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  @media (min-width: 580px) and (min-width: 740px) {
    .p0c-competition-match-list .p0c-competition-match-list__team {
      width: 47%; } }

@media (min-width: 580px) {
  .p0c-competition-match-list .p0c-competition-match-list__team-name--home {
    text-align: right;
    margin: 0 1.4375rem 0 0; }
  .p0c-competition-match-list .p0c-competition-match-list__team-name--away {
    text-align: left;
    margin: 0 0 0 1.4375rem; }
  .p0c-competition-match-list .p0c-competition-match-list__teams-separator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0.4375rem; } }


/*# sourceMappingURL=commons.0a24bc3f5c.css.map*/