* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: 0 none;
  list-style-type: none;
}
.container,
.container-fluid {
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}
.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.col-xs,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: 0.5rem;
}
.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}
.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}
.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}
.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}
.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}
.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: 0.5rem;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: 0.5rem;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: 0.5rem;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
/* Fonts */
@font-face {
  font-family: 'NotoSans-Bold';
  src: url('https://ocdn.eu/forbes/fonts/new_fonts/NotoSans-Bold.ttf') format('truetype'), url('https://ocdn.eu/forbes/fonts/NotoSans-Bold.woff') format('woff'), url('https://ocdn.eu/forbes/fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans-Regular';
  src: url('https://ocdn.eu/forbes/fonts/new_fonts/NotoSans-Regular.ttf') format('truetype'), url('https://ocdn.eu/forbes/fonts/NotoSans-Regular.woff') format('woff'), url('https://ocdn.eu/forbes/fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans-Italic';
  src: url('https://ocdn.eu/forbes/fonts/new_fonts/NotoSans-Italic.ttf') format('truetype'), url('https://ocdn.eu/forbes/fonts/NotoSans-Italic.woff') format('woff'), url('https://ocdn.eu/forbes/fonts/NotoSans-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'icomoon';
  src: url('https://ocdn.eu/forbes/fonts/icomoon.woff') format('woff'), url('https://ocdn.eu/forbes/fonts/icomoon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"],
.authorIcon:before,
td .changeSpan:after,
.mediaType:after,
.listIconGallery,
.listIconVideo {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* arrows */
.icon-arrow-up:before {
  content: "\e90c";
}
.icon-arrow-down:before {
  content: "\e90d";
}
.icon-arrow:before {
  content: "\e90e";
}
/* social icons */
.icon-share:before {
  content: "\e905";
}
.icon-fb:before,
.facebook.authorIcon:before {
  content: "\e900";
}
.icon-blogger:before {
  content: "\e909";
}
.icon-instagram:before {
  content: "\e90a";
}
.icon-youtube:before {
  content: "\e90b";
}
.icon-twitter:before,
.twitter.authorIcon:before {
  content: "\e906";
}
.icon-googlep:before,
.google.authorIcon:before {
  content: "\e907";
}
/* type icons */
.icon-photo:before,
.mediaType.mediagallery:after,
.listIconGallery:after {
  content: "\e901";
}
.icon-play:before,
.mediaType.mediaVideo:after,
.mediaType.shortvideo:after,
.listIconVideo:after {
  content: "\e902";
}
.icon-scroll:before {
  content: "\e903";
}
.icon-search:before {
  content: "\e904";
}
.icon-search.close:before {
  content: "\00d7";
}
.icon-quotation:before {
  content: "\e908";
}
/* less Functions */
/* line under special widget */
/* line under mobile boxes */
.authorNameReview {
  font-family: NotoSans-Regular;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.listPageTitle {
  color: #cd9a24;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 18px;
  line-height: 33px;
  text-transform: uppercase;
  margin-right: 8px;
  background: #fff;
  display: inline-block;
}
.btnTypeGo {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background: #fff;
  text-transform: uppercase;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 12px;
  color: #666;
  padding: 10px;
  text-align: center;
  margin-top: -1px;
}
.btnTypeMore {
  border-top: 1px solid #666;
  text-align: center;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 14px;
}
.btnTypeMore span {
  display: block;
  background: #fff;
  width: 110px;
  margin: -12px auto 0;
  position: relative;
}
.btnTypeMore span:after {
  content: '>';
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -5px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-family: Verdana;
  width: 10px;
}
.uppercase {
  text-transform: uppercase;
}
.transition {
  -webkit-transition: all 125ms linear;
  -moz-transition: all 125ms linear;
  -o-transition: all 125ms linear;
  -ms-transition: all 125ms linear;
  transition: all 125ms linear;
}
.streamBoxFn .streamBox {
  padding: 15px 15px 0;
}
.streamBoxFn .streamBox .streamElement {
  display: flex;
  margin: 0 auto;
  border-bottom: 1px solid #ccc;
  text-align: left;
  padding-bottom: 15px;
}
.streamBoxFn .streamBox .streamElement .smallTitle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
}
.streamBoxFn .streamBox .streamElement .smallTitle .title {
  font-size: 14px;
  font-family: NotoSans-Bold;
  color: #333333;
  margin-bottom: 5px;
  max-height: 85px;
  overflow: hidden;
}
.streamBoxFn .streamBox .streamElement .smallTitle .itemAuthors {
  font-size: 9px;
  color: #999999;
  text-transform: uppercase;
}
.streamBoxFn .streamBox .streamElement .imageHolder {
  position: relative;
  background: url('https://ocdn.eu/forbes/misc/lista-default-m.jpg') no-repeat top center;
  background-size: contain;
}
.streamBoxFn .streamBox .streamElement .itemImage {
  height: 90px;
  width: 90px;
  display: block;
}
.streamBoxFn .streamBox .streamElement .itemImage.loaded {
  width: auto;
  max-height: 90px;
}
.streamBoxFn .streamBox:last-child .streamElement {
  border: none;
}
.bigPhotoGradient {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}
.smallUnderline {
  border-top: 1px solid #cd9a24;
  margin: 0 15px 0px 15px;
}
strong {
  font-weight: 700;
  font-family: 'NotoSans-Bold';
}
.layoutDefault #doc,
#newDetail #doc {
  margin-top: 34px;
}
#extraAdsBlock {
  margin: 2px auto 30px;
}
#extraAdsBlock .ad_adInfo,
#extraAdsBlock .ad_adInfoEnd {
  font-size: 12px;
  color: #333;
}
/* temp */
#doc {
  overflow: hidden;
}
.yellowUl li {
  list-style-type: none;
  margin: 0 0 10px 23px;
  position: relative;
}
.yellowUl li:before {
  content: "";
  border-radius: 100%;
  background: #cd9a24;
  position: absolute;
  height: 8px;
  width: 8px;
  top: 7px;
  left: -20px;
}
.articleBody.contentSourceDetailBody {
  margin-bottom: 35px;
}
.articleBody.contentSourceDetailBody p {
  font-size: 16px;
  line-height: 1.625;
  margin: 18px 0;
}
.articleBody.contentSourceDetailBody p a {
  color: #1e1e1e;
}
.articleBody.contentSourceDetailBody p a:hover {
  color: #999;
  border-bottom: 2px solid #999;
}
.articleBody.contentSourceDetailBody h2 {
  margin: 30px 0;
}
.articleBody.contentSourceDetailBody h3 {
  margin: 20px 0;
}
.articleBody.contentSourceDetailBody li:before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #ffd200;
  position: absolute;
  top: 4px;
  left: -29px;
}
/* important bo to forum niestety */
.m_forum .k_rightPlaceHolder button,
.m_forum .k_back,
.m_forum .k_rightPlaceHolder input,
.m_forum #nForum_commentatorButtons button {
  background: #cd9a24 !important;
}
#mainForum {
  max-width: 787px;
  width: 100%;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .customSize {
    max-width: 480px;
  }
}
body {
  background: ;
  font-family: "Open Sans", sans-serif;
  background-position: center 20px;
}
.containerCustom {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 1 300px;
}
.containerCustom .stream,
.containerCustom .leftColWrapper {
  flex: 1;
}
.containerCustom .rightColWrapper {
  width: 300px;
  margin-left: 20px;
  box-sizing: border-box;
}
.customSize {
  max-width: 1120px;
}
.pageAligment {
  max-width: 1150px;
  margin: 0 auto;
  background: #fff;
}
#onet-ad-top {
  margin-top: 10px;
  background: transparent;
  margin-bottom: 10px;
  padding: 0 10px;
  box-sizing: border-box;
}
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  body.screening .pageAligment {
    max-width: 100%;
    margin: 0 75px;
  }
}
@media only screen and (max-width: 1200px) {
  .customSize {
    width: 100%;
  }
  #doc {
    padding: 0 5%;
  }
}
.pageAligment {
  margin: 0 auto;
  position: relative;
}
#headMove {
  display: none;
}
.pageHeaderLogo .serviceName {
  margin-top: 5px;
  font-family: "Open Sans";
  font-weight: 100;
  text-transform: lowercase;
  color: #fff;
  font-size: 24px;
}
#pageHeader {
  font: 12px Verdana, Arial, Helvetica, sans-serif;
  left: 0;
  top: 0;
  z-index: 5000001;
  background: #000;
  padding: 35px 0;
  margin-top: -5px;
}
#pageHeader .rootMenuContainer {
  overflow: hidden;
}
#pageHeader.ustbar .pageHeaderWrapper {
  max-width: 1120px;
  margin: 0 auto;
}
#pageHeader #menuPlaceHolder {
  position: absolute;
}
#pageHeader .serviceLogo,
#pageHeader .serviceName,
#pageHeader .partners,
#pageHeader .partnerLogo {
  float: left;
}
#pageHeader h1 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 34px;
}
#pageHeader h2 {
  font-size: 18px;
}
#pageHeader.ustbar {
  -o-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
}
#pageHeader.ustbar #headerNav,
#pageHeader.ustbar .searchBar,
#pageHeader.ustbar .pageHeaderWrapper,
#pageHeader.ustbar #searchForm #searchSubmit,
#pageHeader.ustbar .menuButton,
#pageHeader.ustbar .menuButton .menuNotifyCircle,
#pageHeader.ustbar .pageHeaderLogo img,
#pageHeader.ustbar .specialPageHeaderLogo img,
#pageHeader.ustbar #searchForm #searchQuery,
#pageHeader.ustbar #searchForm .searchQuerySuggest,
#pageHeader.ustbar #pageHeader,
#pageHeader.ustbar #pageHeaderLogo,
#pageHeader.ustbar .notificationContent:after {
  -o-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
}
#pageHeader .partners {
  margin-left: 15px;
}
#pageHeader .partners .partnerLogo {
  margin: 0px;
}
#pageHeader .pageHeaderLogo.noOnetLogo {
  margin-left: 50px;
}
#pageHeader .pageHeaderLogo.noOnetLogo .partners {
  margin-left: 0px;
}
#pageHeader .menuButton {
  top: 8px;
  position: static !important;
  margin-top: 8px;
  margin-left: 5px;
}
#pageHeader #rootMenuBox {
  top: 55px;
  left: 0px;
}
#pageHeader .barService .notificationBox .notificationContent:after {
  left: 22px !important;
}
#pageHeader .searchBar {
  display: block;
  background: none;
  float: right;
}
#pageHeader .searchBar .profileList {
  float: left;
  font-size: 30px;
  color: #fff;
  overflow: hidden;
}
#pageHeader .searchBar .profileList li {
  float: left;
  height: 30px;
  width: 23px;
  margin: 0 20px;
  cursor: pointer;
  position: relative;
}
#pageHeader .searchBar .profileList li a {
  display: block;
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#pageHeader .searchBar .search {
  height: 30px;
  width: 23px;
  margin: 0 20px;
  cursor: pointer;
  position: relative;
  float: left;
  font-size: 30px;
  color: #fff;
  overflow: hidden;
}
#pageHeader .searchBar .search .icon-search.close::before {
  top: -3px;
  left: 3px;
  position: relative;
}
#searchForm {
  height: 70px;
  position: absolute;
  overflow: hidden;
  width: 100%;
  transition: height .1s linear;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
#searchForm.closed {
  height: 0;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
}
#searchForm .searchQueryInput {
  font-family: 'icomoon', sans-serif !important;
  width: 100%;
  height: 70px;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  outline: none;
}
#searchForm .searchQueryInput::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
#headerNav {
  float: right;
  position: absolute;
  right: 12px;
  top: 22px;
}
#headerNav ul {
  display: block;
  float: right;
}
#headerNav li {
  display: inline-block;
  width: 48px;
  height: 40px;
  float: left;
  position: relative;
  margin-right: 2px;
}
#headerNav li a {
  background-image: url(https://ocdn.eu/files/pulscms/NGI7MDA_/721af0f4d4279a344ccba79b69958ded.png);
  background-position: 8px 0px;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding-top: 46px;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  display: block;
  margin-right: -2px;
  text-decoration: initial;
  height: 0px;
}
/*---------navigation--------*/
.bubbleMenuClass {
  background: #333333;
  border: none;
  width: auto;
  text-align: left;
  right: 0;
}
.bubbleMenuClass a {
  border: none;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 16px 25px;
}
.hoverBehavior {
  position: relative;
}
.hoverBehavior a {
  margin: 0 20px;
  position: relative;
}
.hoverBehavior:hover > a:after,
.hoverBehavior.selected > a:after {
  content: '';
  height: 4px;
  background-color: #cd9a24;
  width: 80%;
  margin-left: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hoverBehavior:hover a:after {
  background-color: #fff;
}
.hoverBehavior.selected > a:after {
  background-color: #cd9a24;
}
.hoverBehavior:first-child a {
  margin-left: 0;
}
.hoverBehavior:last-child a {
  margin-right: 0;
}
.siteNavigation {
  background: #333333;
  line-height: 1;
  position: relative;
  z-index: 4;
}
.siteNavigation #menuAds {
  visibility: hidden;
}
.siteNavigation #menuAds #onet-ad-flat-zakladka1,
.siteNavigation #menuAds #onet-ad-flat-zakladka2,
.siteNavigation #menuAds #onet-ad-flat-zakladka3,
.siteNavigation #menuAds #onet-ad-flat-zakladka4 {
  height: 40px;
  overflow: hidden;
  float: left;
}
.siteNavigation #menuAds .onet-ad-tight {
  display: inline-block;
  margin: 5px 5px 0 5px;
}
.siteNavigation #menuAds .onet-ad-wide {
  display: none;
}
.siteNavigation.container {
  max-width: 69rem;
}
@media only screen and (min-width: 1150px) {
  .siteNavigation #menuAds .onet-ad-wide {
    display: none;
  }
  .siteNavigation #menuAds .onet-ad-tight {
    display: inline-block;
  }
}
#tabMenu {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  margin: 0 auto;
  position: relative;
}
#tabMenu .mainMenu {
  height: 41px;
  z-index: 3;
  white-space: nowrap;
  font-size: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
#tabMenu .mainMenu li:hover ul,
#tabMenu .mainMenu ul:hover,
#tabMenu .mainMenu li:hover div.bubbleMenu,
#tabMenu .mainMenu div:hover,
#tabMenu .mainMenu li:hover div.bubbleGroup {
  display: block;
}
#tabMenu .mainMenu .bubbleMenu,
#tabMenu .mainMenu .bubbleGroup {
  right: 0;
  position: absolute;
  z-index: 5;
  display: none;
}
#tabMenu .mainMenu li {
  display: inline-block;
  font-size: 14px;
  vertical-align: top;
}
#tabMenu .mainMenu li > a {
  overflow: hidden;
  display: block;
}
#tabMenu .subMenu {
  position: relative;
  z-index: 2;
  height: 50px;
}
#tabMenu .subMenu li:hover ul,
#tabMenu .subMenu ul:hover,
#tabMenu .subMenu li:hover div,
#tabMenu .subMenu div:hover {
  display: block;
}
#tabMenu .subMenu .bubbleSubMenu,
#tabMenu .subMenu ul {
  position: absolute;
  width: 160px;
}
#tabMenu .subMenu li {
  position: relative;
  display: inline;
  float: left;
}
#tabMenu .subMenu ul {
  display: none;
}
#tabMenu .subMenu ul li {
  display: block;
}
#tabMenu .subMenu .bubbleSubMenu li,
#tabMenu .subMenu .bubbleGroup li {
  text-align: left;
}
#tabMenu .subMenu .bubbleSubMenu ul {
  position: static;
  display: block;
}
#tabMenu .subMenu .bubbleSubMenu ul li a {
  border: none;
}
#tabMenu .subMenu .bubbleGroup li {
  width: 100%;
}
#tabMenu .subMenu .bubbleSubMenu {
  background: #333333;
  border: none;
  width: auto;
  text-align: left;
  right: 0;
}
#tabMenu .subMenu .bubbleSubMenu a {
  border: none;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 16px 25px;
}
#tabMenu .subMenu .bubbleSubMenu ul {
  background: #333333;
  padding: 0;
}
#tabMenu .firstLevel {
  text-transform: uppercase;
  margin: 0;
  overflow: hidden;
}
#tabMenu .firstLevel .mainMenu li {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
#tabMenu .firstLevel .mainMenu li a {
  position: relative;
  color: #d0d0d0;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 0 13px 0;
}
#tabMenu .firstLevel .mainMenu li:last-child {
  border-right: none;
}
#tabMenu .firstLevel .mainMenu li.pinned .moreArrow {
  width: 0;
  height: 0;
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-top: 5px solid #d0d0d0;
  margin-left: 7px;
  display: inline-block;
}
#tabMenu .firstLevel .mainMenu li a {
  margin: 0 20px;
  position: relative;
}
#tabMenu .firstLevel .mainMenu li:hover > a:after,
#tabMenu .firstLevel .mainMenu li.selected > a:after {
  content: '';
  height: 4px;
  background-color: #cd9a24;
  width: 80%;
  margin-left: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#tabMenu .firstLevel .mainMenu li:hover a:after {
  background-color: #fff;
}
#tabMenu .firstLevel .mainMenu li.selected > a:after {
  background-color: #cd9a24;
}
#tabMenu .firstLevel .mainMenu li:first-child a {
  margin-left: 0;
}
#tabMenu .firstLevel .mainMenu li:last-child a {
  margin-right: 0;
}
#tabMenu .firstLevel .mainMenu .selected a {
  color: #d0d0d0;
}
#tabMenu .firstLevel .mainMenu .more {
  border-right: none;
}
#tabMenu .firstLevel .mainMenu .more a {
  font-size: 30px;
  line-height: 24px;
  font-weight: 400;
  padding: 0px 0px 17px 16px;
  margin: 0;
  text-align: center;
}
#tabMenu .firstLevel .mainMenu .more:hover > a:after {
  display: none;
}
#tabMenu .firstLevel .mainMenu .more.selected > a:after {
  width: 40px;
  right: 0;
  margin-left: 15px;
}
#tabMenu .firstLevel .mainMenu .bubbleMenu,
#tabMenu .firstLevel .mainMenu .bubbleGroup {
  background: #333333;
  border: none;
  width: auto;
  text-align: left;
  right: 0;
}
#tabMenu .firstLevel .mainMenu .bubbleMenu a,
#tabMenu .firstLevel .mainMenu .bubbleGroup a {
  border: none;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 16px 25px;
}
#tabMenu .firstLevel .mainMenu .bubbleMenu ul,
#tabMenu .firstLevel .mainMenu .bubbleGroup ul {
  padding: 0;
  float: left;
  box-sizing: border-box;
}
#tabMenu .firstLevel .mainMenu .bubbleMenu ul.subli,
#tabMenu .firstLevel .mainMenu .bubbleGroup ul.subli {
  border-right: 1px solid #ffffff;
}
#tabMenu .firstLevel .mainMenu .bubbleMenu ul.subli:last-child,
#tabMenu .firstLevel .mainMenu .bubbleGroup ul.subli:last-child {
  border-right: none;
}
#tabMenu .firstLevel .mainMenu .bubbleGroup li {
  width: 100%;
}
#tabMenu .firstLevel .mainMenu .bubbleGroup ul.subli {
  min-width: 100px;
}
#tabMenu .firstLevel .mainMenu > li:first-child a {
  padding-left: 0;
}
#tabMenu .secondLevel {
  background: rgba(0, 71, 92, 0.1);
  color: #d0d0d0;
  clear: both;
  height: 50px;
}
#tabMenu .secondLevel .subMenu {
  background: none;
  box-shadow: none;
  color: #d0d0d0;
  float: left;
}
#tabMenu .secondLevel .subMenu li {
  padding: 0;
}
#tabMenu .secondLevel .subMenu li:hover a {
  color: #ffffff;
}
#tabMenu .secondLevel .subMenu li a {
  border: none;
  color: #d0d0d0;
  display: block;
  font-size: 14px;
  padding: 18px;
}
#tabMenu .secondLevel .subMenu li.selected > a {
  font-weight: 400;
}
#tabMenu .secondLevel .subMenu li.more a {
  font-size: 37px;
  margin: 0;
  line-height: 28px;
  padding: 0 16px 20px;
  text-transform: uppercase;
}
#tabMenu .secondLevel .subMenu li.more:hover > a {
  background: #333333;
  color: #d0d0d0;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup {
  display: none;
  background: #333333;
  border: none;
  width: auto;
  text-align: left;
  right: 0;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu a,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup a {
  border: none;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 16px 25px;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu ul,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup ul {
  padding: 0;
  float: left;
  box-sizing: border-box;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu ul.subli,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup ul.subli {
  border-right: 1px solid #ffffff;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu ul.subli:last-child,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup ul.subli:last-child {
  border-right: none;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu li,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup li {
  text-align: left;
  width: 100%;
}
#tabMenu .secondLevel .subMenu li.more .bubbleSubMenu li a,
#tabMenu .secondLevel .subMenu li.more .bubbleGroup li a {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 18px;
  text-transform: none;
  padding: 20px 18px;
  white-space: nowrap;
}
#tabMenu .secondLevel .subMenu li.more:hover .bubbleSubMenu {
  display: block;
}
/*---------------------- ajax menu -------------------*/
/* List Pipes */
.list-pipes {
  overflow: hidden;
}
.list-pipes li {
  display: inline-block;
}
.masthead,
.masthead * {
  box-sizing: border-box;
}
.masthead > .container > .row {
  position: relative;
}
/* Retina versions */
.nav-over > div {
  text-align: center;
}
.verticals__anchor {
  display: inline-block;
}
.active:hover .verticals__anchor,
.verticals__anchor:link {
  text-decoration: none;
}
.nav-over .center-mask {
  overflow: hidden;
  position: relative;
  display: block;
  text-align: center;
}
.main-nav-dropdown .stories-container {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.main-nav-dropdown {
  display: none;
}
.main-nav-dropdown.activeNav {
  display: block;
}
.main-nav-dropdown .subsection .native {
  float: right;
  display: block;
  margin-top: -30px;
}
.main-nav-dropdown .center-mask img {
  width: 100%;
}
.main-nav-dropdown .dlbi-subcategories {
  line-height: 50px;
  position: absolute;
  width: 100%;
  background: #404040;
}
.main-nav-dropdown .dlbi-subcategories ul {
  height: 50px;
}
.main-nav-dropdown .dlbi-subcategories ul li {
  position: relative;
}
.main-nav-dropdown .dlbi-subcategories ul li a {
  color: #d0d0d0;
}
.main-nav-dropdown .dlbi-subcategories ul li a {
  margin: 0 20px;
  position: relative;
}
.main-nav-dropdown .dlbi-subcategories ul li:hover > a:after,
.main-nav-dropdown .dlbi-subcategories ul li.selected > a:after {
  content: '';
  height: 4px;
  background-color: #cd9a24;
  width: 80%;
  margin-left: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-nav-dropdown .dlbi-subcategories ul li:hover a:after {
  background-color: #fff;
}
.main-nav-dropdown .dlbi-subcategories ul li.selected > a:after {
  background-color: #cd9a24;
}
.main-nav-dropdown .dlbi-subcategories ul li:first-child a {
  margin-left: 0;
}
.main-nav-dropdown .dlbi-subcategories ul li:last-child a {
  margin-right: 0;
}
.main-nav-dropdown .sub-vertical-container {
  float: left;
  margin: 0;
  min-height: 275px;
}
.main-nav-dropdown .sub-vertical-container a {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 16px;
}
.main-nav-dropdown .sub-vertical-container a .menu-title {
  padding: 10px 0;
  display: block;
}
.bi-spinner-wrapper {
  padding-top: 50px;
  text-align: center;
  width: 100%;
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s;
}
.bi-spinner-wrapper .bi-spinner {
  display: inline-block;
}
.bi-spinner-wrapper .bi-spinner .rotating {
  width: 100px;
  height: 100px;
  display: inline-block;
  background: url('../../images/spinner.png') center / contain no-repeat;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
/*---------------------- ajax menu end -------------------*/
footer {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  box-sizing: border-box;
  text-transform: uppercase;
  margin-top: 15px;
}
footer .topFooter {
  background-color: #333;
}
footer .serviceFooterContainer {
  overflow: hidden;
  padding: 27px 0;
}
footer .portalLogo {
  float: left;
  width: 15%;
}
footer .footNav {
  overflow: hidden;
  float: right;
  width: 75%;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  line-height: 41px;
}
footer .footNav li {
  display: inline-block;
}
footer .footNav li a {
  color: #ccc;
}
footer .bottomFooter {
  background-color: #000;
}
footer .bottomFooter .footNav {
  width: 100%;
  justify-content: center;
}
footer .bottomFooter .footNav li {
  position: relative;
  margin: 0 9px;
}
footer .bottomFooter .footNav li:before {
  content: " | ";
  position: absolute;
  right: -11px;
  color: #ccc;
}
footer .bottomFooter .footNav li:last-child:before {
  display: none;
}
footer .bottomFooter .serviceFooterContainer {
  padding: 10px 0 0 0;
}
footer #socialLinks {
  /* temp */
  display: none;
}
footer #socialLinks .profileList {
  display: flex;
  justify-content: center;
}
footer #socialLinks .profileList li {
  margin: 0 20px;
}
.homePage footer {
  margin-top: 18px;
}
#copyrights {
  padding-bottom: 20px;
  text-align: center;
  color: #ccc;
  font-size: 9px;
}
#copyrights img {
  margin-right: 20px;
}
/* Slide to top */
.slideToTop {
  display: none;
  position: fixed;
  z-index: 15;
  bottom: 20px;
  right: 20px;
  height: 47px;
  background: #f5f5f5;
}
.slideToTop span {
  display: inline-block;
  width: 47px;
  height: 47px;
  background-position: 0px 0px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAAvCAYAAABzJ5OsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR5JREFUeNrs2D8LwjAQBfD0FMV/iFgRHEScxMWv4PcfHQUnwU0UN8HBK6TgUJqk3osE7+BRh9L8XtRCmxlj9ibRIZPwKF7xile84hWv+BTxZ84rRfyRc+IcUAUICL/Yzw9UAQLDDbIARYDDClAkOKQARYSLF6DIcNEC9AO4WAECwwfIAi3OCgTPOTu7xq3mvCfnzpmFbmYTvC98azFjexQvEIoPhZcDKRCCbwqHFfDFfwuHFPDBS8HFC7jw0nDRAq4FhwB4OUvO2nFOz25wo50fcTqcqzDc5xuYczac7JvffFUBCXhdASc85G7zWUASXlXAC15MO2CBBafLmYCewIr/QJ8z9YGH4o29MHJyfW+jeMUrXvGKV7zi/xX/FmAAG9BW/+pxS2gAAAAASUVORK5CYII=');
  background-repeat: no-repeat;
}
.stream {
  position: relative;
  overflow: hidden;
  font-family: NotoSans-Regular;
  font-weight: 400;
  color: #333;
}
.stream .pgMenuBlock {
  float: left;
  width: 100%;
  margin: 40px 0;
}
.stream .pgMenuBlock a {
  color: #005081;
  margin: 18px 0;
  display: block;
  font-size: 18px;
  text-align: center;
  outline: none;
  font-weight: bold;
  text-transform: uppercase;
}
.stream .pgMenuBlock .prevPage {
  float: left;
}
.stream .pgMenuBlock .prevPage::before {
  content: "\00AB";
  padding-right: 5px;
  margin-top: -2px;
  float: left;
}
.stream .pgMenuBlock .nextPage {
  float: right;
}
.stream .pgMenuBlock .nextPage::after {
  content: "\00BB";
  padding-left: 5px;
  margin-top: -2px;
  float: right;
}
.listTitle,
.editorsTitle {
  position: relative;
}
.listTitle h1,
.editorsTitle h1 {
  color: #cd9a24;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 18px;
  line-height: 33px;
  text-transform: uppercase;
  margin-right: 8px;
  background: #fff;
  display: inline-block;
  padding-right: 8px;
  position: relative;
  z-index: 1;
}
.listTitle .titleUnderlined,
.editorsTitle .titleUnderlined {
  border-bottom: 2px solid #cd9a24;
  width: 100%;
  line-height: 10px;
  display: inline-block;
  position: absolute;
  bottom: 11px;
  left: 0;
}
.boxArticleList {
  overflow: hidden;
}
.boxArticleList .listItem,
.boxArticleList .editionItem {
  display: flex;
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
}
.boxArticleList .listItem:after,
.boxArticleList .editionItem:after {
  content: '';
  height: 8px;
  width: 188px;
  background: #cd9a24;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.boxArticleList .listItem:hover .itemTitle,
.boxArticleList .editionItem:hover .itemTitle {
  color: #999999;
}
.boxArticleList .listItem a,
.boxArticleList .editionItem a {
  display: block;
  clear: both;
  width: 100%;
}
.boxArticleList .listItem .itemText,
.boxArticleList .editionItem .itemText {
  overflow: hidden;
  margin-bottom: 10px;
}
.boxArticleList .listItem .itemText .itemAuthors,
.boxArticleList .editionItem .itemText .itemAuthors {
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #999999;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
}
.boxArticleList .listItem .itemTitle,
.boxArticleList .editionItem .itemTitle {
  font-family: NotoSans-Regular;
  font-size: 17px;
  line-height: 21px;
  color: #333333;
  margin: 17px 0 7px;
  display: block;
  -webkit-transition: all 200ms;
  /* Safari */
  transition: all 200ms;
}
.boxArticleList .listItem .itemLead,
.boxArticleList .editionItem .itemLead {
  font-size: 16px;
  line-height: 22px;
  color: #4d4d4d;
  display: block;
  width: 100%;
}
.boxArticleList .listItem .imageWrapper,
.boxArticleList .editionItem .imageWrapper {
  position: relative;
}
.boxArticleList .listItem .itemImage,
.boxArticleList .editionItem .itemImage {
  width: auto;
  display: block;
  margin-top: 0;
  width: 100%;
}
.boxArticleList .listItem .flag,
.boxArticleList .editionItem .flag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  font-family: NotoSans-Bold;
  font-weight: 700;
  padding: 1px 10px;
}
.boxArticleList .listItem .tylkoOnet,
.boxArticleList .editionItem .tylkoOnet {
  background: #cd9a24;
}
.boxArticleList .listItem .goracaDyskusja,
.boxArticleList .editionItem .goracaDyskusja {
  background: #cd9a24;
}
.boxArticleList .listItem .redakcjaPoleca,
.boxArticleList .editionItem .redakcjaPoleca {
  background: #cd9a24;
}
.boxArticleList .listItem .popularne,
.boxArticleList .editionItem .popularne {
  background: #cd9a24;
}
.boxArticleList .listItem .od18plus,
.boxArticleList .editionItem .od18plus {
  background: #cd9a24;
}
.boxArticleList .listItem .sponsored,
.boxArticleList .editionItem .sponsored {
  background: #ccc;
  color: #1e1e1e;
}
.boxArticleList .listItem .mediaType,
.boxArticleList .editionItem .mediaType {
  bottom: 12px;
  right: 7px;
  z-index: 2;
  width: 40px;
  height: 40px;
  position: absolute;
}
.boxArticleList .listItem .mediaType.mediagallery,
.boxArticleList .editionItem .mediaType.mediagallery {
  background: none;
}
.boxArticleList .listItem .mediaType.mediaVideo,
.boxArticleList .editionItem .mediaType.mediaVideo,
.boxArticleList .listItem .mediaType.mediagallery,
.boxArticleList .editionItem .mediaType.mediagallery,
.boxArticleList .listItem .mediaType.shortvideo,
.boxArticleList .editionItem .mediaType.shortvideo {
  font-size: 40px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.boxArticleList .listItem .relatedMaterials_1 .itemTitle,
.boxArticleList .editionItem .relatedMaterials_1 .itemTitle {
  font-size: 23px;
  line-height: 28px;
}
.boxArticleList .listItem .relatedMaterials_1 .itemLead,
.boxArticleList .editionItem .relatedMaterials_1 .itemLead {
  width: 620px;
  font-size: 14px;
}
.boxArticleList .listItem .relatedMaterials_2 .itemTitle,
.boxArticleList .editionItem .relatedMaterials_2 .itemTitle {
  font-size: 23px;
  line-height: 28px;
  height: 87px;
  margin-bottom: 0;
}
.boxArticleList .listItem .relatedMaterials_2 .itemLead,
.boxArticleList .editionItem .relatedMaterials_2 .itemLead {
  width: 195px;
  font-size: 14px;
}
.boxArticleList .listItem.firstItem {
  margin-right: 0;
  width: 100%;
  max-width: initial;
  overflow: visible;
  margin-bottom: 20px;
}
.boxArticleList .listItem.firstItem .itemImage {
  height: auto;
  width: 100%;
}
.boxArticleList .listItem.firstItem .itemText {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 84%;
  text-align: left;
  margin: 0 0 28px 40px;
}
.boxArticleList .listItem.firstItem .itemText .itemAuthors {
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #cccccc;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
}
.boxArticleList .listItem.firstItem .itemText .partnerLogoContainer .logoImg,
.boxArticleList .listItem.firstItem .itemText .native .logoImg {
  padding: 4px;
}
.boxArticleList .listItem.firstItem .itemTitle {
  font-family: NotoSans-Regular;
  font-size: 30px;
  line-height: 39px;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.boxArticleList .listItem.firstItem:hover .itemTitle {
  color: #999999;
}
.boxArticleList .listItem.firstItem .mediaType {
  bottom: 32px;
  right: 25px;
}
.boxArticleList .onet-ad {
  width: 100%;
}
.relatedMaterials_1 {
  margin-top: 25px;
  clear: both;
  margin-bottom: 20px;
}
.relatedMaterials_1 .itemTitle {
  margin: 0 0 5px;
  padding: 0 0 10px;
  font-weight: normal;
  font-size: 23px;
  line-height: 28px;
  display: table-cell;
  vertical-align: middle;
}
.relatedMaterials_1 .imageWrapper img.itemImage {
  width: 160px;
  margin: 0;
  height: auto;
  float: left;
}
.relatedMaterials_1 .itemLead {
  width: 620px;
  font-size: 14px;
  line-height: 19px;
  float: right;
  margin-top: 0;
  padding-top: 0;
}
.relatedMaterials_1 .itemLead.noImg {
  width: 100%;
}
.relatedMaterials_2 {
  margin-top: 25px;
  clear: both;
}
.relatedMaterials_2 .itemTitle {
  margin: 0;
  padding: 0 0 10px;
  font-weight: normal;
  font-size: 23px;
  line-height: 28px;
  display: table-cell;
  vertical-align: middle;
  height: 87px;
}
.relatedMaterials_2 .imageWrapper img.itemImage {
  width: 160px;
  margin: 0;
  height: auto;
  float: left;
}
.relatedMaterials_2 .itemLead {
  width: 195px;
  font-size: 14px;
  line-height: 19px;
  float: right;
  margin-top: 0;
  padding-top: 0;
}
.relatedMaterials_2 .relatedMaterials_2_1 {
  float: left;
  width: 47%;
}
.relatedMaterials_2 .relatedMaterials_2_2 {
  float: right;
  width: 47%;
}
.hyphenate {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  text-align: left;
}
.showMore {
  float: left;
  width: 100%;
  margin: 0 0 40px;
}
.showMore .more {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background: #fff;
  text-transform: uppercase;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 12px;
  color: #666;
  padding: 10px;
  text-align: center;
  margin-top: -1px;
  width: 100%;
  cursor: pointer;
}
@media screen and (min-width: 1150px) {
  .stream {
    margin-top: 0;
  }
}
@media screen and (max-width: 1149px) {
  .boxArticleList .listItem .relatedMaterials_1 .itemTitle,
  .boxArticleList .editionItem .relatedMaterials_1 .itemTitle {
    font-size: 20px;
  }
  .boxArticleList .listItem .relatedMaterials_1 .itemLead,
  .boxArticleList .editionItem .relatedMaterials_1 .itemLead {
    width: 500px;
  }
  .boxArticleList .listItem .relatedMaterials_2 .itemTitle,
  .boxArticleList .editionItem .relatedMaterials_2 .itemTitle {
    font-size: 20px;
  }
  .boxArticleList .listItem .relatedMaterials_2 .itemLead,
  .boxArticleList .editionItem .relatedMaterials_2 .itemLead {
    width: 190px;
    font-size: 13px;
  }
  .boxArticleList .listItem .itemImage,
  .boxArticleList .editionItem .itemImage {
    height: auto;
    width: 100%;
  }
  .relatedMaterials_1 .itemTitle {
    font-size: 20px;
  }
  .relatedMaterials_1 .imageWrapper img.itemImage {
    width: 120px;
    height: auto;
  }
  .relatedMaterials_1 .itemLead {
    width: 500px;
  }
  .relatedMaterials_2 .itemTitle {
    font-size: 20px;
  }
  .relatedMaterials_2 .imageWrapper img.itemImage {
    width: 100px;
    height: auto;
  }
  .relatedMaterials_2 .itemLead {
    width: 190px;
    font-size: 13px;
    line-height: 19px;
  }
  .relatedMaterials_2 .itemLead.noImg {
    width: 100%;
  }
}
#newDetail {
  font-family: NotoSans-Regular;
  background: #fff;
  /*  a:hover, a {
        color: #000;;
    }
    */
}
#newDetail .widget .changeCity .selectedCity .cityName {
  color: #000;
  font-size: 15px;
  letter-spacing: normal;
  position: relative;
  z-index: 2;
  padding-left: 16px;
}
#newDetail .widget .changeCity .selectedCity .cityName:before {
  height: 30px;
  width: 30px;
  background: #ffd200;
  content: "";
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: -3px;
  z-index: -1;
}
#newDetail .widget .changeCity {
  border-bottom: none;
}
#newDetail #onet-ad-left {
  float: left;
  margin: 10px 25px 10px auto;
}
#newDetail #tabMenu .firstLevel .mainMenu .bubbleMenu ul.subli,
#newDetail #tabMenu .firstLevel .mainMenu .bubbleGroup ul.subli {
  border-right: solid 1px #dcdcdc;
}
#newDetail #tabMenu .secondLevel {
  background: #f8f8f8;
  height: 24px;
}
#newDetail #tabMenu .secondLevel .breadcrumbs li:after {
  top: 5px;
}
#newDetail #tabMenu .secondLevel .breadcrumbs li a {
  color: #000;
}
#newDetail #tabMenu .secondLevel .breadcrumbs:after {
  border-top: 12.5px solid transparent;
  border-left: 13px solid #eaeaea;
  border-bottom: 12px solid transparent;
  right: -13px;
}
#newDetail #tabMenu .secondLevel .subMenu li a {
  padding: 6px 18px;
  font-size: 12px;
}
#newDetail .bestOfonet {
  margin-bottom: 40px;
}
#newDetail .bestOfonet .titleBox {
  margin-bottom: 1px;
  position: relative;
  border: none;
}
#newDetail .bestOfonet .titleBox h2 {
  border-bottom: solid 1px #dcdcdc;
  position: relative;
  z-index: 2;
  padding: 3px 0 14px 15px;
  color: #000;
  font-size: 15px;
}
#newDetail .bestOfonet .titleBox h2:before {
  height: 30px;
  width: 30px;
  background: #ffd40e;
  content: "";
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: -3px;
  z-index: -1;
}
#newDetail .bestOfonet .topicList li {
  border-bottom: 1px dotted #dadada;
}
#newDetail .bestOfonet .topicList li a {
  position: relative;
  margin: 10px 0;
  padding-bottom: 7px;
}
#newDetail .bestOfonet .topicList li a .popularNewsImg img {
  width: 82px;
  height: 82px;
  float: left;
}
#newDetail .bestOfonet .topicList li a .popularNewsTitle {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  padding-left: 20px;
  color: #000;
}
#newDetail .mediaMowiaWidget .topicBlock h3 {
  border-bottom: solid 1px #dcdcdc;
  position: relative;
  z-index: 2;
  padding: 0 0 6px 16px;
}
#newDetail .mediaMowiaWidget .topicBlock h3:before {
  height: 30px;
  width: 30px;
  background: #ffd40e;
  content: "";
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: -3px;
  z-index: -1;
}
#newDetail .mediaMowiaWidget .topicBlock .mediaMowiaTopicList li {
  border-bottom-style: dotted;
}
#newDetail .mediaMowiaWidget .topicBlock .mediaMowiaTopicList li span {
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
}
#newDetail .mediaMowiaWidget .topicBlock .mediaMowiaTopicList li.lastItem {
  border: none;
}
#newDetail .mediaMowiaWidget .topicBlock img {
  margin-bottom: 0;
}
#newDetail .mediaMowiaWidget span {
  font-family: NotoSans-Regular;
  color: #000;
  font-size: 15px;
  margin-right: 5px;
  letter-spacing: normal;
}
#newDetail .mediaMowiaWidget .widget-header:after {
  display: none;
}
#newDetail .atricleTop {
  overflow: hidden;
}
#newDetail .fb_content_share {
  margin-top: 0;
  float: right;
}
#newDetail .fb_share {
  display: block;
  background: #4a6ea9 url('../../images/fbiconBig.png') no-repeat 8px 6px;
  width: 156px;
  height: 33px;
  line-height: 33px;
  position: relative;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  padding: 0 43px 0 0;
  float: left;
}
#newDetail .fb_share:after {
  content: 'Podziel się';
  color: #fff;
  margin-left: 22px;
  margin-top: 1px;
  display: inline-block;
}
#newDetail .fb_share .fb_share_counter {
  background: #fff;
  border: 1px solid #dcdcdc;
  position: absolute;
  height: 100%;
  box-sizing: border-box;
  right: 0;
  top: 0;
  width: 43px;
  padding: 0;
  text-align: center;
}
#newDetail .fb_share.fadeOutTop {
  position: fixed;
  top: 58px;
  margin-left: 18px;
}
#newDetail .talkback_comments {
  display: block;
  background: #FFD200;
  width: 147px;
  height: 33px;
  line-height: 33px;
  float: left;
  margin-right: 20px;
  position: relative;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  padding: 0 43px 0 0;
  color: #000;
}
#newDetail .talkback_comments .talkback_counter {
  background: #fff;
  border: 1px solid #dcdcdc;
  position: absolute;
  height: 100%;
  box-sizing: border-box;
  right: 0;
  top: 0;
  width: 43px;
  text-align: center;
}
#newDetail .talkback_comments .talkback_counter:after {
  background: url('../../images/comment.gif') no-repeat;
  content: "";
  width: 7px;
  height: 6px;
  position: absolute;
  bottom: -6px;
  right: -1px;
}
#newDetail .talkback_comments:hover {
  color: #000;
}
#newDetail .profileTopic .articleDetail .mainPhoto {
  margin-top: 20px;
}
#newDetail .profileTopic .articleDetail .profileChapters {
  white-space: nowrap;
  font-size: 18px;
  color: #cd9a24;
  text-transform: uppercase;
  margin: 0 0 20px 0px;
  width: 100%;
}
#newDetail .profileTopic .articleDetail .profileChapters .profileChaptersTitle {
  display: block;
}
#newDetail .profileTopic .articleDetail .profileChapters a {
  color: #cd9a24;
}
#newDetail .profileTopic .articleDetail .titleUnderlined {
  border-bottom: 2px solid #cd9a24;
  display: flex;
  position: relative;
  bottom: 10px;
}
#newDetail .profileTopic .articleDetail .profile.detailContentWrapper {
  margin: 0 0 80px 60px;
}
#newDetail .profileTopic .articleDetail .profile.detailContentWrapper .contentShareLast {
  float: left;
}
#newDetail .detailContentWrapper {
  position: relative;
}
#newDetail .detailContentWrapper .contentShareLeft {
  width: 80px;
  position: absolute;
  margin: 12px 0 0 -75px;
}
#newDetail .detailContentWrapper .contentShareLeft .fb_share {
  background: #4a6bb6;
  width: 44px;
  height: 44px;
  float: none;
  padding: 0;
  border-radius: 100%;
}
#newDetail .detailContentWrapper .contentShareLeft .fb_share svg {
  fill: #fff;
}
#newDetail .detailContentWrapper .contentShareLeft .fb_share:after {
  display: none;
}
#newDetail .detailContentWrapper .contentShareLeft .talkback_comments {
  width: 44px;
  height: 44px;
  margin-top: 24px;
  background: #fff;
  float: none;
}
#newDetail .detailContentWrapper .contentShareLeft .talkback_comments .talkback_counter {
  width: 44px;
  height: 31px;
}
#newDetail .detailContentWrapper .contentShareLeft .BackToMainPage {
  width: 44px;
  height: 44px;
  background: #ffd200;
  display: block;
  border-radius: 100%;
  font-size: 13px;
  line-height: 44px;
  padding-left: 4px;
  box-sizing: border-box;
  color: #000;
}
#newDetail .pageContent {
  padding: 0 15px;
  overflow: visible;
  position: relative;
  background: #fff;
}
#newDetail .whitelistPremium {
  margin-top: 30px;
}
#newDetail .pageContent .articleDetail {
  padding-top: 0;
}
#newDetail .pageContent .articleDetail .articleHeading {
  overflow: hidden;
  font-size: 14px;
  float: left;
  margin-bottom: 17px;
  max-width: 404px;
}
#newDetail .pageContent .articleDetail .articleHeading .authDesc {
  display: inline-block;
  height: 30px;
  vertical-align: top;
}
#newDetail .pageContent .articleDetail .articleHeading .authDesc a {
  color: #1e1e1e;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  height: 18px;
  margin-top: 8px;
  margin-right: 12px;
  text-transform: uppercase;
}
#newDetail .pageContent .articleDetail .articleHeading .authDesc a span {
  border-right: solid 1px #dcdcdc;
  padding-right: 12px;
  display: inline-block;
}
#newDetail .pageContent .articleDetail .articleHeading .breadcrumbs {
  float: left;
}
#newDetail .pageContent .articleDetail .articleHeading .breadcrumbs .breadcrumbItem {
  display: inline-block;
}
#newDetail .pageContent .articleDetail .articleHeading .breadcrumbs .breadcrumbItem:after {
  content: "\203A";
  margin-left: 5px;
  color: rgba(0, 105, 140, 0.5);
}
#newDetail .pageContent .articleDetail .articleHeading .breadcrumbs .breadcrumbItem:last-child:after {
  content: "";
}
#newDetail .pageContent .articleDetail .articleHeading .datePublished {
  display: inline-block;
  line-height: 33px;
  margin: 0 10px 0 0;
  float: none;
  vertical-align: top;
}
#newDetail .pageContent .articleDetail .articleHeading .source {
  color: #909090;
  display: inline-block;
}
#newDetail .pageContent .articleDetail .articleHeading .source img {
  display: inline;
  max-height: 30px;
  vertical-align: bottom;
}
#newDetail .pageContent .articleDetail .articleHeading .sponsored {
  color: #00698c;
  float: right;
  font-size: 12px;
  margin: 0 7px 7px;
  clear: both;
}
#newDetail .pageContent .articleDetail .mainTitle {
  font-size: 40px;
  text-decoration: none;
  color: #202427;
  line-height: 1.175;
  letter-spacing: -1px;
  margin: 22px 0 22px;
  clear: both;
  font-weight: bold;
}
#newDetail .pageContent .articleDetail .mainPhoto {
  margin-bottom: 40px;
  position: relative;
}
#newDetail .pageContent .articleDetail .mainPhoto img {
  width: 100%;
  display: block;
}
#newDetail .pageContent .articleDetail .mainPhoto .copyright {
  font-size: 13px;
  padding: 2px;
  display: block;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  right: -1px;
  transform: rotate(270deg) translateX(100%);
  transform-origin: bottom right;
  max-height: 440px;
  font-weight: 500;
}
#newDetail .pageContent .articleDetail .mainPhoto .caption {
  color: #4b4b4b;
  font-size: 14px;
  margin-top: 9px;
  position: absolute;
}
#newDetail .pageContent .articleDetail .mainPhoto .caption .imageDescription {
  display: block;
}
#newDetail .pageContent .articleDetail .lead p,
#newDetail .pageContent .articleDetail .articleBody p {
  font-size: 16px;
  line-height: 1.625;
  margin: 18px 0;
}
#newDetail .pageContent .articleDetail .lead h2,
#newDetail .pageContent .articleDetail .articleBody h2 {
  margin: 30px 0;
}
#newDetail .pageContent .articleDetail .lead h3,
#newDetail .pageContent .articleDetail .articleBody h3 {
  margin: 20px 0;
}
#newDetail .pageContent .articleDetail .lead li:before,
#newDetail .pageContent .articleDetail .articleBody li:before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #ffd200;
  position: absolute;
  top: 4px;
  left: -29px;
}
#newDetail .pageContent .articleDetail .lead {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.625;
  margin: 18px 0;
}
#newDetail .pageContent .articleDetail .promoFrame {
  float: right;
  width: 330px;
  margin: 5px 0 10px 20px;
  text-align: left;
  padding: 18px 0 18px 0;
  background: #f6f6f6;
}
#newDetail .pageContent .articleDetail .promoFrame .description {
  padding: 0 15px;
}
#newDetail .pageContent .articleDetail .promoFrame .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 5px;
  text-align: left;
  padding: 0 15px;
}
#newDetail .pageContent .articleDetail .promoFrame.imageVertical img {
  float: left;
  margin-right: 14px;
}
#newDetail .pageContent .articleDetail .promoFrame ul {
  margin-top: 5px;
  margin-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 5px 20px;
}
#newDetail .pageContent .articleDetail .promoFrame ul li {
  list-style-type: none;
}
#newDetail .pageContent .articleDetail .promoFrame ul.singleElement li {
  background: none;
  padding-left: 0;
}
#newDetail .pageContent .articleDetail .promoFrame.withQuotation {
  background: #fff;
  margin: 20px 0 20px 20px;
  padding: 15px 0 15px 15px;
}
#newDetail .pageContent .articleDetail .promoFrame.withProbe {
  background: #fff;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical {
  float: right;
  width: 342px;
  margin: 5px 0 10px 20px;
  text-align: left;
  padding: 0 8px 0 0;
  height: 284px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical img {
  float: left;
  margin-right: 15px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin: 10px 0 10px;
  text-align: left;
  position: relative;
  z-index: 1;
  padding: 10px 0 0 10px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical .description {
  font-size: 14px;
  line-height: 21px;
  position: relative;
  z-index: 1;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical .formTools.buttonLeft {
  max-width: 130px;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 !important;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical .formTools.buttonLeft a {
  padding: 0 10px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal:before {
  content: "\25C6";
  position: absolute;
  top: 187px;
  left: 5px;
  font-size: 70px;
  color: #f0f0f0;
  z-index: 1;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal {
  float: right;
  width: 342px;
  margin: 5px 0 10px 20px;
  text-align: left;
  padding: 0 8px 25px 0;
  position: relative;
  background: #f0f0f0;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin: 10px 0;
  text-align: left;
  position: absolute;
  z-index: 3;
  top: 130px;
  padding: 0 20px;
  color: #fff;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal .description {
  font-size: 14px;
  line-height: 21px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
#newDetail .pageContent .articleDetail .promoFrame blockquote {
  font-family: Georgia,Times, serif;
  font-style: italic;
  margin: 0 10px;
}
#newDetail .pageContent .articleDetail .promoFrame blockquote p {
  font-size: 21px;
  line-height: 29px;
}
#newDetail .pageContent .articleDetail .promoFrame blockquote footer {
  text-align: right;
  font-size: 15px;
}
#newDetail .pageContent .articleDetail .promoFrame .quotation {
  background: url('../../images/quote.png') no-repeat 5px 3px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 0 50px 0;
  font-size: 17px;
  font-family: Georgia;
  font-style: italic;
}
#newDetail .pageContent .articleDetail .promoFrame .quotation footer {
  text-align: left;
  font-size: 17px;
  margin-top: 16px;
  height: 35px;
  position: absolute;
  font-family: "Georgia";
  text-transform: no;
  font-style: normal;
  font-style: italic;
}
#newDetail .pageContent .articleDetail .ustCommonButtonSmall {
  background-color: #ffd200;
  display: inline-block;
  height: 30px;
  line-height: 28px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}
#newDetail .pageContent .articleDetail .preformatted pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  font-size: 16px;
  font-family: "Courier New", Courier, monospace;
  line-height: 1.7;
  margin: 28px;
}
#newDetail .pageContent .articleDetail .embeddedApp {
  text-align: center;
}
#newDetail .pageContent .articleDetail ol {
  counter-reset: li;
}
#newDetail .pageContent .articleDetail ol li {
  overflow: hidden;
  margin: 0 0 10px 23px;
}
#newDetail .pageContent .articleDetail ol li:before {
  content: counter(li);
  counter-increment: li;
  box-sizing: border-box;
  width: 25px;
  margin-right: 8px;
  padding: 4px;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 100%;
  height: 25px;
  line-height: 16px;
  font-size: 11px;
  float: left;
}
#newDetail .pageContent .articleDetail ul {
  padding-left: 48px;
  margin-top: 10px;
}
#newDetail .pageContent .articleDetail ul li {
  list-style-type: none;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  font-family: "NotoSans-Bold";
}
#newDetail .pageContent .articleDetail .interview {
  background: url('../../images/quote.png') no-repeat 5px 3px;
  padding-left: 65px;
}
#newDetail .pageContent .articleDetail .interview .question {
  font-weight: bold;
  margin: 0 0 20px;
}
#newDetail .pageContent .articleDetail .imageWrapper .author {
  font-size: 13px;
  padding: 2px;
  display: block;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  right: -1px;
  transform: rotate(270deg) translateX(100%);
  transform-origin: bottom right;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
}
#newDetail .pageContent .articleDetail .imageWrapper .author a {
  color: #bfcdd5;
}
#newDetail .pageContent .articleDetail .image {
  margin: 27px auto;
  text-align: left;
  position: relative;
  font-size: 0;
  text-align: center;
}
#newDetail .pageContent .articleDetail .image .imageWrapper {
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
#newDetail .pageContent .articleDetail .image .imageWrapper img {
  max-width: 100%;
}
#newDetail .pageContent .articleDetail .image .caption {
  color: #000;
  display: block;
  text-align: left;
  font-size: 13px;
  line-height: 15px;
  padding: 5px 8px 11px 0;
  margin: auto;
  box-sizing: border-box;
}
#newDetail .pageContent .articleDetail .paginationTiles {
  overflow: hidden;
  text-align: center;
  list-style: none;
  margin: 18px 0 15px 0;
  padding-left: 0;
}
#newDetail .pageContent .articleDetail .paginationTiles li {
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  margin: 0 2px;
  color: #666;
}
#newDetail .pageContent .articleDetail .paginationTiles li.label {
  border: none;
  width: auto;
}
#newDetail .pageContent .articleDetail .paginationTiles li.current {
  cursor: default;
  border: 1px solid #666;
  border-radius: 4px;
}
#newDetail .pageContent .articleDetail .paginationTiles li.next {
  width: auto;
}
#newDetail .pageContent .articleDetail .paginationTiles li.next a {
  background: #00698c;
  border: 1px solid #ED6400;
  color: #fff;
  padding: 0 5px;
}
#newDetail .pageContent .articleDetail .paginationTiles li.next a:hover {
  background: #fff;
  color: #ED6400;
}
#newDetail .pageContent .articleDetail .paginationTiles li a {
  color: #666;
  display: block;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
}
#newDetail .pageContent .articleDetail .paginationTiles li a:hover {
  border: 1px solid #ED6400;
}
#newDetail .pageContent .articleDetail .detailPagination {
  letter-spacing: 1px;
  font-size: 17px;
  margin-top: 17px;
}
#newDetail .pageContent .articleDetail .authorsSources {
  font-size: 11px;
  line-height: 20px;
}
#newDetail .pageContent .articleDetail .authorsSources .authorLabel,
#newDetail .pageContent .articleDetail .authorsSources .sourcesLabel {
  color: rgba(0, 105, 140, 0.5);
}
#newDetail .pageContent .articleDetail .itemAuthor {
  overflow: hidden;
  padding: 13px;
  border-bottom: solid 1px #ddd;
}
#newDetail .pageContent .articleDetail .authorProfile {
  overflow: hidden;
  margin: 10px 0;
  background: #f6f6f6;
  padding: 10px;
  display: table;
  width: 100%;
  box-sizing: border-box;
  border-bottom: solid 1px #ddd;
}
#newDetail .pageContent .articleDetail .authorProfile:last-child {
  border-bottom: none;
}
#newDetail .pageContent .articleDetail .authorProfile .photoWrapper {
  display: table-cell;
  margin-right: 17px;
  vertical-align: middle;
  width: 55px;
}
#newDetail .pageContent .articleDetail .authorProfile .photo {
  border-radius: 100%;
  border: 4px solid #F2C100;
  height: 55px;
  float: left;
  position: relative;
  margin-right: 5px;
}
#newDetail .pageContent .articleDetail .authorProfile header {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  width: 100%;
}
#newDetail .pageContent .articleDetail .authorProfile .authorInfo {
  float: left;
  clear: right;
  font-size: 15px;
}
#newDetail .pageContent .articleDetail .authorProfile .authorItemTagline {
  display: block;
  font-size: 13px;
  color: #676767;
}
#newDetail .pageContent .articleDetail .authorProfile .socials {
  padding: 0;
  margin: 5px 0 0;
  display: table-cell;
  vertical-align: middle;
  float: none;
  white-space: nowrap;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li {
  list-style-type: none;
  display: inline-block;
  float: none;
  margin-bottom: 0;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li a {
  margin-top: 0;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  overflow: hidden;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li a .twitter {
  border: solid 8px #1da1f2;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li a .facebook {
  border: solid 8px #3b5998;
}
#newDetail .pageContent .articleDetail .authorProfile .name {
  color: #212121;
  text-transform: uppercase;
  font-weight: bold;
}
#newDetail .pageContent .articleDetail .authorProfileMulti {
  overflow: hidden;
  margin: 10px 0;
  background: #f6f6f6;
}
#newDetail .pageContent .articleDetail .authorProfileMulti .authorProfile {
  margin: 0;
}
#newDetail .pageContent .articleDetail .authorProfileMulti .authorInfo {
  float: left;
  clear: right;
  font-size: 15px;
}
#newDetail .pageContent .articleDetail .authorProfileMulti .authDesc2 {
  margin-top: 5px;
}
#newDetail .pageContent .articleDetail .article_seeAlso {
  font-size: 17px;
  font-weight: bold;
  margin: 20px 10px 50px 0;
}
#newDetail .pageContent .articleDetail .article_seeAlso > div {
  position: relative;
  z-index: 1;
  padding-left: 17px;
}
#newDetail .pageContent .articleDetail .article_seeAlso > div:before {
  height: 30px;
  width: 30px;
  background: #ffd200;
  content: "";
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: -3px;
  z-index: -1;
}
#newDetail .pageContent .articleDetail .article_seeAlso ul {
  width: 600px;
  padding: 10px 0 0 20px;
  overflow: hidden;
  position: relative;
  top: -40px;
  left: 128px;
}
#newDetail .pageContent .articleDetail .article_seeAlso ul li {
  margin: 0 12px 5px;
  list-style-type: none;
  float: left;
  width: 274px;
}
#newDetail .pageContent .articleDetail .article_seeAlso ul li a {
  color: #000;
  display: inline;
  border-bottom: solid 1px #ffd200;
}
#newDetail .pageContent .articleDetail .authorSourceProfile .logo {
  margin: 0 15px 0 0;
  height: 60px;
  line-height: 60px;
}
#newDetail .pageContent .articleDetail .html_embedded_application .caption {
  display: none;
}
#newDetail .mainPhoto .galleryAnchor {
  position: relative;
  overflow: hidden;
  display: block;
}
#newDetail .mainPhoto .galleryAnchor .counter {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.37);
  border-radius: 5px;
  color: #fff;
}
#newDetail .mainPhoto .galleryAnchor .caption {
  color: #bfcdd5;
}
#newDetail .articleDetail #leadGalleryPreview {
  bottom: 30px;
}
#newDetail .articleDetail #leadGalleryPreview ul {
  padding-left: 0;
}
#newDetail .articleDetail #leadGalleryPreview ul li {
  list-style: none;
}
#newDetail .formTools {
  text-align: center;
}
#newDetail .ustCommonButtonNormal {
  background: #003F65;
  display: inline-block;
  height: 48px;
  width: auto;
  padding: 0 48px;
  line-height: 46px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
#newDetail .ustCommonButtonNormal:hover {
  color: #fff;
}
#newDetail .articleFooter .dates {
  font-size: 11px;
}
#newDetail .articleFooter .dates .dateLabel {
  color: rgba(0, 105, 140, 0.5);
}
#newDetail .articleFooter .dates .datePublishedContent,
#newDetail .articleFooter .dates .dateModifiedContent {
  color: #00698c;
}
#newDetail .specialTopicDesc #mainPhoto {
  float: left;
  padding: 0 23px 23px 0;
}
#newDetail .specialTopicDesc #mainPhoto img {
  display: block;
  height: auto;
  width: 320px;
}
#newDetail .specialTopicDesc .lead {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}
#newDetail .specialTopicDesc h3 {
  clear: both;
}
#newDetail .specialTopicDesc .hyphenate {
  hyphens: auto;
  text-align: left;
}
#newDetail #articleFooterDates {
  margin-bottom: 15px;
}
#newDetail #listicleApp .article_seeAlso ul.nonelist {
  width: 100%;
}
#newDetail #listicleApp .article_seeAlso ul.nonelist li a {
  font-size: 15px;
}
#newDetail #listicleApp .article_seeAlso ul.nonelist li a:before {
  content: none;
}
#newDetail .footer {
  clear: both;
}
#newDetail #flat-plista .image {
  margin: 0;
}
@media only screen and (max-width: 1149px) {
  #newDetail .pageContent .articleDetail .articleHeading {
    max-width: 303px;
  }
  #newDetail .pageContent .articleDetail .imageWrapper .author {
    transform: rotate(270deg) translateX(80%) scale(0.8);
  }
}
#newDetail {
  font-family: NotoSans-Regular;
  font-weight: 400;
  color: #1e1e1e;
}
#newDetail .pageContent {
  padding-top: 10px;
}
#newDetail .pageContent .articleDetail {
  padding-top: 0;
}
#newDetail .pageContent .articleDetail a {
  color: #1e1e1e;
}
#newDetail .pageContent .articleDetail a:hover {
  color: #999;
}
#newDetail .pageContent .articleDetail .tagList {
  margin-bottom: 25px;
}
#newDetail .pageContent .articleDetail .tagList .tags {
  font-size: 12px;
  padding-right: 10px;
}
#newDetail .pageContent .articleDetail .tagList .tags a {
  color: #999;
}
#newDetail .pageContent .articleDetail .detail {
  overflow: hidden;
}
#newDetail .pageContent .articleDetail .mainTitle {
  font-size: 43px;
  color: #333333;
  margin: 22px 0 39px;
  font-weight: 700;
}
#newDetail .pageContent .articleDetail .articleHeading .datePublished {
  line-height: 39px;
}
#newDetail .pageContent .articleDetail .articleHeading .sourceCopytight {
  margin-top: 4px;
  display: flex;
  align-items: center;
}
#newDetail .pageContent .articleDetail .articleHeading .sourceCopytight .source {
  float: none;
}
#newDetail .pageContent .articleDetail .articleHeading .sourceCopytight .source img {
  margin-right: 20px;
}
#newDetail .pageContent .articleDetail .articleHeading .sourceCopytight .sponsored {
  font-size: 13px;
  margin: 0;
  text-transform: uppercase;
  color: #333;
}
#newDetail .pageContent .articleDetail .articleHeading .authDesc a span {
  border-right: 1px solid #1e1e1e;
}
#newDetail .pageContent .articleDetail .lead p a,
#newDetail .pageContent .articleDetail .articleBody p a {
  color: #1e1e1e;
  border-bottom: 2px solid #1e1e1e;
}
#newDetail .pageContent .articleDetail .lead li:before,
#newDetail .pageContent .articleDetail .articleBody li:before {
  background: #cd9a24;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 100%;
  position: absolute;
  top: 4px;
  left: -29px;
}
#newDetail .pageContent .articleDetail .authorProfile {
  border-bottom: 4px solid #666;
  background: #fff;
  margin: 0;
  padding: 0;
}
#newDetail .pageContent .articleDetail .authorProfile:last-child {
  border-bottom: 4px solid #666;
  margin-bottom: 25px;
}
#newDetail .pageContent .articleDetail .authorProfile .photoWrapper {
  width: 100px;
}
#newDetail .pageContent .articleDetail .authorProfile .photoWrapper img {
  border: none;
  border-radius: initial;
  height: 91px;
  margin: 0;
}
#newDetail .pageContent .articleDetail .authorProfile header {
  padding: 14px 0 14px 30px;
}
#newDetail .pageContent .articleDetail .authorProfile .name {
  font-family: NotoSans-Regular;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#newDetail .pageContent .articleDetail .authorProfile .authorItemTagline {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}
#newDetail .pageContent .articleDetail .authorProfile .moreAbout {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  display: block;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li {
  margin-left: 34px;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li a {
  font-family: 'icomoon';
  color: #666;
  font-size: 9px;
  display: block;
  border-radius: 0;
  width: 41px;
  height: 37px;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li a .authorIcon {
  border: none;
}
#newDetail .pageContent .articleDetail .authorProfile .socials li a .authorIcon:before {
  font-size: 36px;
  margin: 3px 6px 0 0;
  display: block;
}
#newDetail .pageContent .articleDetail .mainPhoto {
  margin-bottom: 40px;
  margin-top: 20px;
  overflow: initial;
}
#newDetail .pageContent .articleDetail .mainPhoto:after {
  content: '';
  height: 8px;
  width: 188px;
  background: #cd9a24;
  position: absolute;
  bottom: -8px;
  left: 0;
}
#newDetail .pageContent .articleDetail .mainPhoto .caption {
  margin-top: 13px;
  height: 45px;
  overflow: hidden;
  font-size: 15px;
  color: #666;
}
#newDetail .pageContent .articleDetail ol {
  padding-left: 48px;
}
#newDetail .pageContent .articleDetail ol li {
  position: relative;
  overflow: inherit;
}
#newDetail .pageContent .articleDetail .image .caption {
  color: #666;
}
#newDetail .pageContent .articleDetail .promoFrame .quotation {
  font-family: NotoSans-Italic;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  background: none;
  padding: 11px 0 11px 50px;
  position: relative;
}
#newDetail .pageContent .articleDetail .promoFrame .quotation footer {
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 16px;
  text-align: right;
  font-style: normal;
  position: relative;
  display: table;
  margin-right: 0;
  margin-left: auto;
}
#newDetail .pageContent .articleDetail .promoFrame .quotation footer:before {
  content: '';
  border-bottom: 1px solid #cd9a24;
  width: 27px;
  margin-right: 12px;
  position: absolute;
  top: 12px;
  left: -38px;
}
#newDetail .pageContent .articleDetail .promoFrame .quotation:before {
  content: "\e908";
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #cd9a24;
  font-size: 28px;
  position: absolute;
  left: 0;
  top: 0;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical {
  background: #fff;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical ul.singleElement li:before {
  display: none;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageVertical .description {
  font-size: 15px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal {
  background: #fff;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal .title {
  position: relative;
  bottom: auto;
  top: auto;
  left: auto;
  right: auto;
  font-family: NotoSans-Bold;
  font-weight: 400px;
  font-size: 18px;
  color: #000;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal .buttonLeft {
  text-align: left;
  margin-left: 20px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal .buttonLeft .ustCommonButtonSmall {
  font-family: NotoSans-Bold;
  font-weight: 400;
  line-height: 32px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal .description {
  font-size: 15px;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage.imageHorizontal:before {
  display: none;
}
#newDetail .pageContent .articleDetail .promoFrame.withImage ul {
  padding: 5px 10px 5px 29px;
}
#newDetail .pageContent .articleDetail .articleBody p a {
  color: #1e1e1e;
}
#newDetail .pageContent .articleDetail .articleBody p a:hover {
  color: #999;
  border-bottom: 2px solid #999;
}
#newDetail .pageContent .articleDetail .atricleTop .talkback_comments {
  background: #666;
  color: #fff;
}
#newDetail .pageContent .articleDetail .atricleTop .talkback_comments .talkback_counter {
  color: #1e1e1e;
}
#newDetail .pageContent .articleDetail .atricleTop .talkback_comments:hover {
  color: #fff;
}
#newDetail .pageContent .articleDetail .ustCommonButtonSmall {
  background-color: #cd9a24;
  color: #1e1e1e;
}
#newDetail .pageContent .articleDetail .ustCommonButtonSmall:hover {
  color: #1e1e1e;
}
#newDetail .articleDetail .dl-gallery .dl-gallery-teaser .dl-gallery-button-see {
  font-family: NotoSans-Bold;
  background: #cd9a24;
}
#newDetail .articleDetail .dl-gallery .dl-gallery-teaser .dl-gallery-button-see:hover {
  color: #1e1e1e;
}
#newDetail .articleDetail .dl-gallery .dl-gallery-item figcaption .dl-gallery-item-counter:before {
  background: #cd9a24;
}
#newDetail .articleFooter .dates .dateLabel,
#newDetail .articleFooter .dates .datePublishedContent,
#newDetail .articleFooter .dates .dateModifiedContent {
  color: #333333;
}
@media screen and (min-width: 1150px) {
  .articleDetail .dl-gallery .dl-gallery-teaser,
  .articleDetail .dl-gallery .dl-gallery-description,
  .articleDetail .dl-gallery .dl-gallery-item {
    width: 788px;
  }
}
.editionBanner {
  display: flex;
  justify-content: space-around;
  height: 65px;
  align-items: center;
  border-bottom: 4px solid #666;
  border-top: 1px solid #666;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 10px;
}
.buyEdition {
  background: #cd9a24;
  padding: 5px 15px 5px 15px;
  font-size: 12px;
  text-align: center;
}
.buyEdition:hover {
  color: #ffffff;
}
.specialDark {
  background: #000;
}
.specialDark .boxDriver .streamBox .streamElement {
  color: #fff;
}
.boxDriver {
  font-family: NotoSans-Regular;
  font-weight: 400;
  margin: 20px auto 30px;
  max-width: 1120px;
}
.boxDriver .firstElement {
  height: 100%;
  position: relative;
  display: flex;
  margin-bottom: 20px;
}
.boxDriver .firstElement:hover .bigTitle .title {
  color: #ccc;
}
.boxDriver .firstElement .bigImage {
  max-height: 500px;
  position: relative;
  overflow: hidden;
}
.boxDriver .firstElement .bigImage .bigTitle {
  color: #fff;
  bottom: 0;
  position: absolute;
  width: 90%;
  text-align: left;
  margin: 0 0 28px 40px;
}
.boxDriver .firstElement .bigImage .bigTitle .itemAuthors {
  white-space: nowrap;
  font-size: 12px;
  margin: 0;
  word-spacing: 2px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.boxDriver .firstElement .bigImage .bigTitle .title {
  line-height: 50px;
  font-size: 42px;
  overflow: hidden;
  margin: 24px 0 16px;
  text-align: left;
  font-family: NotoSans-Regular;
  font-weight: 400;
  letter-spacing: 0px;
  max-width: 775px;
  -webkit-transition: all 200ms;
  /* Safari */
  transition: all 200ms;
}
.boxDriver .firstElement .bigImage .bigTitle .listIconGallery,
.boxDriver .firstElement .bigImage .bigTitle .listIconVideo {
  bottom: 12px;
  right: -32px;
  z-index: 2;
  width: 40px;
  height: 40px;
  position: absolute;
}
.boxDriver .firstElement .bigImage .bigTitle .listIconGallery:after,
.boxDriver .firstElement .bigImage .bigTitle .listIconVideo:after {
  font-size: 52px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.boxDriver .firstElement .bigImage .partnerLogoContainer .logoImg {
  padding: 4px;
}
.boxDriver .firstElement .bigImage img {
  max-width: 100%;
  display: block;
}
.boxDriver .firstElement:after {
  content: '';
  height: 8px;
  width: 188px;
  background: #cd9a24;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.boxDriver .streamBox {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  margin-top: 0;
}
.boxDriver .streamBox .streamElement {
  color: #000;
  width: 24%;
  max-width: 265px;
  float: left;
}
.boxDriver .streamBox .streamElement:hover .smallTitle .title {
  color: #999999;
}
.boxDriver .streamBox .streamElement .smallTitle .title {
  font-family: NotoSans-Regular;
  font-size: 17px;
  line-height: 21px;
  color: #333333;
  margin: 16px 0 9px;
  -webkit-transition: all 200ms;
  /* Safari */
  transition: all 200ms;
}
.boxDriver .streamBox .streamElement .smallTitle .itemAuthors {
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #666666;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  line-height: initial;
}
.boxDriver .streamBox .streamElement .streamImage {
  position: relative;
  max-width: 265px;
  max-height: 146px;
  overflow: hidden;
}
.boxDriver .streamBox .streamElement .streamImage img {
  max-width: 100%;
}
.boxDriver .streamBox .streamElement .streamImage .listIconGallery,
.boxDriver .streamBox .streamElement .streamImage .listIconVideo {
  bottom: 8px;
  right: 7px;
  z-index: 2;
  width: 40px;
  height: 40px;
  position: absolute;
}
.boxDriver .streamBox .streamElement .streamImage .listIconGallery:after,
.boxDriver .streamBox .streamElement .streamImage .listIconVideo:after {
  font-size: 40px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.rwd-table {
  /* Zebra striping */
}
.rwd-table a {
  color: #1e1e1e;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  font-family: NotoSans-Bold;
  display: none;
}
.rwd-table td {
  display: block;
  font-family: NotoSans-Bold;
  padding: 25px 8px;
}
@media (max-width: 700px) {
  .rwd-table td:after {
    content: attr(data-th) " ";
    width: 100%;
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
  }
}
.rwd-table td a {
  font-family: NotoSans-Bold;
}
.rwd-table th,
.rwd-table td {
  text-align: center;
}
@media (min-width: 700px) {
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
  }
}
.rwd-table tr:nth-of-type(even) {
  background: #ccc;
}
.rwd-table td,
.rwd-table th {
  text-align: left;
  font-size: 12px;
}
@media (min-width: 700px) {
  .rwd-table td,
  .rwd-table th {
    border: 1px solid #fff;
  }
}
@media (max-width: 700px) {
  .rwd-table td,
  .rwd-table th {
    text-align: center;
    border-bottom: 1px solid #333333;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0;
  }
}
.rwd-table th {
  padding: 10px;
  background: #333333;
  color: white;
  font-weight: bold;
  font-size: 12px;
}
@media (min-width: 700px) {
  .rwd-table td.number {
    text-align: right;
    white-space: nowrap;
  }
}
.rwd-table td.change {
  text-align: center;
}
@media (max-width: 700px) {
  .rwd-table td:first-child {
    background: #333333;
    color: #fff;
  }
}
td.change.increase span:after {
  content: "\e90c";
  color: #89CA5D;
  font-size: 12px;
}
td.change.decrease span:after {
  content: "\e90d";
  color: #BD3738;
  font-size: 12px;
}
.wdg {
  margin: 10px 0 20px;
  padding: 0 10px 5px;
}
.wdg .title {
  padding: 18px 0 14px;
  border-top: 1px solid #cd9a24;
  display: flex;
  align-items: flex-end;
  font-family: NotoSans-Bold;
  position: relative;
  margin-bottom: 8px;
}
.wdg .title:before {
  content: '';
  width: 90px;
  height: 4px;
  background: #cd9a24;
  position: absolute;
  top: 0px;
  left: 0px;
}
.wdg .title .titleTxt {
  font-size: 24px;
  line-height: 26px;
  color: #333333;
  position: relative;
  top: 6px;
}
.wdg .title .titleLogo {
  display: block;
  max-height: 40px;
}
.wdg .date {
  font-size: 9px;
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  text-transform: uppercase;
  margin: 10px 0 0;
}
.wdg .btnGoTo {
  display: none;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background: #fff;
  text-transform: uppercase;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 12px;
  color: #666;
  padding: 10px;
  text-align: center;
  margin-top: -1px;
}
.wdg .btnGoTo.show {
  display: block;
}
.wdg .btnShowHide {
  display: block;
  border-top: 1px solid #666;
  text-align: center;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 14px;
  position: relative;
}
.wdg .btnShowHide span {
  display: block;
  background: #fff;
  width: 110px;
  margin: -12px auto 0;
  position: relative;
}
.wdg .btnShowHide span:after {
  content: '>';
  position: absolute;
  bottom: -11px;
  left: 50%;
  margin-left: -5px;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-family: Verdana;
  width: 10px;
}
.wdg .btnShowHide.hide {
  display: none;
}
.wdg .btnShowHide:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: -16px;
  left: 0;
}
.wdg article:last-child .item,
.wdg article:last-child .item.show {
  border-bottom: none;
}
.wdg .item {
  display: block;
  padding: 0 0 15px;
  margin: 15px 0 0;
  border-bottom: 1px solid #e0e0e0;
}
.wdg .item.hide {
  display: none;
}
.wdg .item:not(.itemFirst) .itemImage {
  height: 90px;
  width: 90px;
  display: block;
}
.wdg .item .itemImage {
  position: relative;
}
.wdg .item .itemImage img {
  width: 100%;
  display: block;
}
.wdg .item .itemImage .mediaType {
  bottom: 4px;
  right: 4px;
  z-index: 2;
  width: 26px;
  height: 26px;
  position: absolute;
}
.wdg .item .itemImage .mediaType.mediagallery {
  background: none;
}
.wdg .item .itemImage .mediaType.mediaVideo,
.wdg .item .itemImage .mediaType.mediagallery,
.wdg .item .itemImage .mediaType.shortvideo {
  font-size: 26px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.wdg .item .itemImage .socialShares {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  background: rgba(0, 0, 0, 0.5);
  padding: 9px 10px 9px 20px;
  box-sizing: border-box;
  color: #fff;
  font-size: 11px;
  font-family: NotoSans-Bold;
  line-height: 20px;
}
.wdg .item .itemImage .socialShares .icon-share {
  font-size: 35px;
  float: right;
  line-height: 20px;
}
.wdg .item .itemTitle {
  font-size: 14px;
  line-height: 18px;
  color: #333;
  width: 100%;
  font-family: NotoSans-Bold;
  margin-bottom: 8px;
}
.wdg .item .itemAuthors {
  display: block;
  width: 100%;
  font-size: 9px;
  color: #999999;
  text-transform: uppercase;
  line-height: 14px;
  margin-bottom: 4px;
}
.wdg .item .itemDesc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.wdg .item.itemFirst {
  margin-top: 0;
  border-bottom: none;
}
.wdg .item.itemFirst .itemImage {
  margin-bottom: 10px;
}
.wdg .item.itemFirst .mediaType {
  bottom: 20px;
  right: 20px;
}
.wdg .item.itemFirst .partnerLogoContainer .logoImg,
.wdg .item.itemFirst .native .logoImg {
  padding: 0;
}
.wdg.dark .title .titleTxt {
  color: #fff;
}
.wdg article {
  width: 100%;
}
.wdg.wdgImage img {
  width: 100%;
}
@media only screen and (min-width: 360px) and (max-width: 767px) {
  .imageBox {
    max-width: 104px;
  }
}
.wdgWrapper {
  width: 100%;
  padding: 0;
}
.wdg {
  margin: 0 0 30px;
  padding: 0;
}
.wdg .title {
  border-top: 0;
  padding: 0 0 5px;
}
.wdg .title:before {
  display: none;
}
.wdg .title .titleTxt {
  white-space: nowrap;
  font-family: NotoSans-Bold;
  font-size: 18px;
  color: #cd9a24;
  text-transform: uppercase;
  margin-right: 9px;
}
.wdg .title .titleLogo {
  margin: 0 5px 0 0;
}
.wdg .title .titleUnderlined {
  border-bottom: 2px solid #cd9a24;
  width: 100%;
  line-height: 10px;
}
.wdg .title .date {
  font-family: NotoSans-Regular;
  color: #cd9a24;
  font-size: 12px;
  text-transform: uppercase;
  position: absolute;
  top: 6px;
  right: 0;
  background: #fff;
  padding-left: 10px;
  width: auto;
  margin: 0;
}
.wdg .wdgItems .row a {
  display: flex;
}
.wdg .item {
  border-bottom: none;
  padding: 0;
  margin: 0;
}
.wdg .item:hover .itemTitle {
  color: #999999;
}
.wdg .item:not(.itemFirst) .itemImage {
  width: auto;
  height: auto;
  max-height: inherit;
}
.wdg .item .itemImage .mediaType {
  bottom: 12px;
  right: 7px;
  width: 40px;
  height: 40px;
  position: absolute;
}
.wdg .item .itemImage .mediaType.mediaVideo,
.wdg .item .itemImage .mediaType.mediagallery,
.wdg .item .itemImage .mediaType.shortvideo {
  font-size: 40px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.wdg .item .itemTitle {
  font-family: NotoSans-Regular;
  font-size: 17px;
  line-height: 21px;
  color: #333333;
  -webkit-transition: all 200ms;
  /* Safari */
  transition: all 200ms;
}
.wdg .item .itemAuthors {
  margin-top: 7px;
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #666666;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
}
.wdg .item .itemDesc {
  margin-top: 15px;
}
.wdg .item.itemFirst {
  position: relative;
  margin-bottom: 20px;
}
.wdg .item.itemFirst:hover .itemTitle {
  color: #999999;
}
.wdg .item.itemFirst .itemDesc {
  position: absolute;
  bottom: 0;
  height: auto;
  margin-bottom: 41px;
  margin-left: 41px;
  width: 90%;
}
.wdg .item.itemFirst .itemImage {
  margin-bottom: 0;
}
.wdg .item.itemFirst .itemImage img {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
  max-height: 445px;
}
.wdg .item.itemFirst .itemTitle {
  font-family: NotoSans-Regular;
  font-size: 30px;
  line-height: 39px;
  color: #ffffff;
  letter-spacing: 0.5px;
  -webkit-transition: all 200ms;
  /* Safari */
  transition: all 200ms;
}
.wdg .item.itemFirst .itemAuthors {
  color: #fff;
}
.wdg .item.itemFirst .smallUnderline {
  margin: 0;
  border-top: none;
}
.wdg .item.itemFirst:after {
  content: '';
  height: 8px;
  width: 188px;
  background: #cd9a24;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.wdg .item.itemFirst .mediaType {
  bottom: 32px;
  right: 25px;
}
.rightColWrapper .col-md-6 {
  max-width: 100%;
  flex-basis: 100%;
}
.rightColWrapper .wdg {
  margin-top: 0;
  margin-bottom: 20px;
}
.rightColWrapper .wdg .item .itemDesc {
  margin-bottom: 20px;
}
.rightColWrapper .wdg .item .itemImage {
  position: relative;
}
.rightColWrapper .wdg .item .itemImage:after {
  content: '';
  width: 150px;
  height: 5px;
  background: #cd9a24;
  position: absolute;
  bottom: -5px;
  left: 0px;
}
.rightColWrapper .wdg .item .itemAuthors {
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #999999;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  line-height: 17px;
  margin-top: 2px;
}
.rightColWrapper .wdg.wdgSpecial {
  margin-top: 10px;
}
@media only screen and (max-width: 1080px) {
  .wdg .item {
    margin-bottom: 20px;
  }
}
.wdg.wdgSpecial {
  background-size: cover !important;
  padding: 15px;
  margin-bottom: 35px;
  margin-top: 0;
}
.wdg.wdgSpecial .wdgItems {
  background: rgba(0, 0, 0, 0.5);
}
.wdg.wdgSpecial .items {
  padding: 10px;
}
.wdg.wdgSpecial .items article:last-child .item {
  border-bottom: none;
}
.wdg.wdgSpecial a .item {
  border-bottom: 1px solid #e0e0e0;
}
.wdg.wdgSpecial .itemFirst {
  border-bottom: none !important;
}
.wdg.wdgSpecial .itemFirst .itemTitle {
  font-size: 24px;
  line-height: 26px;
  padding: 20px 10px 0;
}
.wdg.wdgSpecial .itemFirst .itemImage {
  margin-bottom: 4px;
  position: relative;
}
.wdg.wdgSpecial .itemFirst .itemImage:after {
  content: '';
  width: 90px;
  height: 4px;
  background: #cd9a24;
  position: absolute;
  bottom: -4px;
  left: 0px;
}
.wdg.wdgSpecial .itemFirst .itemLicense,
.wdg.wdgSpecial .itemFirst .native {
  margin-left: 10px;
}
.wdg.wdgSpecial.dark {
  color: #ffffff;
}
.wdg.wdgSpecial.dark .items article:last-child .item {
  border-bottom: none;
}
.wdg.wdgSpecial.dark .item {
  border-bottom: 1px solid #fff;
}
.wdg.wdgSpecial.dark .item .itemTitle {
  color: #ffffff;
}
.wdg.wdgSpecial.dark .item .partnerLogoContainer .logoImg,
.wdg.wdgSpecial.dark .item .native .logoImg {
  padding: 2px;
}
.wdg.wdgSpecial.dark .title {
  border-top: 1px solid #fff;
}
.wdg.wdgSpecial.dark .title:before {
  background: #fff;
}
.wdg.wdgSpecial.dark .itemFirst .itemImage:after {
  background: #fff;
}
.wdgTitleSpecial {
  border-top: 0;
  padding: 18px 0 14px;
  display: flex;
  font-family: NotoSans-Bold;
  align-items: center;
  margin: 0px 15px;
  border-top: 1px solid #cd9a24;
  top: -1px;
  position: relative;
}
.wdgTitleSpecial:before {
  content: '';
  width: 90px;
  height: 4px;
  background: #cd9a24;
  position: absolute;
  top: 0px;
  left: 0px;
}
.wdgTitleSpecial .titleTxt {
  white-space: nowrap;
  font-family: NotoSans-Bold;
  font-size: 18px;
  color: #666666;
  text-transform: uppercase;
  margin-right: 9px;
}
.wdgTitleSpecial .titleLogo {
  margin: 0 5px 0 0;
  max-height: 40px;
}
.wdgTitleSpecial .titleUnderlined {
  border-bottom: 2px solid #666;
  width: 100%;
  line-height: 10px;
}
.wdg.wdgSpecial {
  padding: 1.2rem;
}
.wdg.wdgSpecial .title {
  border-top: 0;
}
.wdg.wdgSpecial .wdgItems .row {
  padding: 0 1.2rem;
}
.wdg.wdgSpecial .itemFirst .itemImage {
  max-width: 762px;
  max-height: 416px;
  width: 100%;
  height: auto;
  overflow: initial;
}
.wdg.wdgSpecial .itemFirst .itemTitle {
  padding: 0;
  font-size: 18px;
}
.wdg.wdgSpecial .itemFirst:after {
  content: '';
  height: 8px;
  width: 188px;
  background: #ffffff;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.wdg.wdgSpecial .itemImage {
  max-width: 350px;
  max-height: 202px;
  overflow: hidden;
}
.wdg.wdgSpecial .item {
  border-bottom: none;
  margin-bottom: 10px;
}
.wdg.wdgSpecial .item:hover .itemTitle {
  color: #999999;
}
.wdg.wdgSpecial .item.itemFirst {
  margin-bottom: 20px;
  position: relative;
}
.wdg.wdgSpecial .item.itemFirst .itemDesc {
  margin-left: 20px;
  margin-bottom: 16px;
}
.wdg.wdgSpecial .item.itemFirst .itemDesc .itemTitle {
  font-family: NotoSans-Regular;
  font-size: 30px;
  line-height: 39px;
  color: #333333;
  letter-spacing: 0.5px;
}
.wdg.wdgSpecial .item.itemFirst:hover .itemDesc .itemTitle {
  color: #999999;
}
.wdg.wdgSpecial .item .itemAuthors {
  color: #ccc;
}
.wdg.wdgSpecial.dark a .item {
  border-bottom: none;
}
.wdg.wdgSpecial.dark .title {
  border-top: 0;
}
.wdg.wdgSpecial.dark .title .titleTxt {
  color: #fff;
}
.wdg.wdgSpecial.dark .title .titleUnderlined {
  border-bottom: 2px solid #fff;
}
.wdg.wdgSpecial.dark .item:hover .itemDesc .itemTitle {
  color: #999999;
}
.wdg.wdgSpecial.dark .item.itemFirst .itemDesc .itemTitle {
  font-family: NotoSans-Regular;
  font-size: 30px;
  line-height: 39px;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.wdg.wdgSpecial.dark .item.itemFirst .itemDesc .itemLicense {
  margin-left: 0px;
}
.wdg.wdgSpecial.dark .item.itemFirst:hover .itemDesc .itemTitle {
  color: #999999;
}
.rightColWrapper .wdg.wdgSpecial .wdgItems .row {
  padding: 0;
}
.rightColWrapper .wdg.wdgSpecial .itemDesc {
  padding: 0 0.5rem;
}
.rightColWrapper .wdg.wdgSpecial.dark .itemAuthors {
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #cccccc;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  line-height: 17px;
}
.rightColWrapper .wdg.wdgSpecial .itemImage {
  overflow: visible;
  position: relative;
}
.rightColWrapper .wdg.wdgSpecial .itemImage:after {
  content: '';
  width: 150px;
  height: 5px;
  background: #cd9a24;
  position: absolute;
  bottom: -5px;
  left: 0px;
}
.rightColWrapper .wdg.wdgSpecial.dark .itemImage {
  position: relative;
}
.rightColWrapper .wdg.wdgSpecial.dark .itemImage:after {
  content: '';
  width: 150px;
  height: 5px;
  background: #ffffff;
  position: absolute;
  bottom: -5px;
  left: 0px;
}
@media only screen and (max-width: 1024px) {
  .wdg.wdgSpecial .itemImage {
    max-width: 100%;
    max-height: auto;
  }
}
.wdgTitleSpecial {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  border-top: none;
}
.wdgTitleSpecial:before {
  display: none;
}
.wdg.wdgSponsors {
  border-top: solid 4px #cccccc;
  border-bottom: solid 4px #cccccc;
  font-family: NotoSans-Bold;
  font-size: 12px;
  color: #333333;
  padding-top: 5px;
  padding-bottom: 20px;
}
.wdg.wdgSponsors .wdgItems {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wdg.wdgSponsors .wdgItems div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
}
.wdg.wdgSponsors .wdgItems div span {
  max-width: 170px;
  max-height: 20px;
  overflow: hidden;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.wdg.wdgSponsors .wdgItems div img {
  max-width: 150px;
  max-height: 100px;
}
.wdg.wdgSponsors .wdgItems .sponsorContainerOuter {
  margin-top: 0;
  min-width: 190px;
}
.wdg.wdgReviews .item {
  padding: 0;
  background: #ccc;
  border-bottom: 6px solid #cd9a24;
  margin-bottom: 10px;
  margin-top: 0;
  display: block;
}
.wdg.wdgReviews .item .itemBox {
  display: flex;
  justify-content: flex-end;
}
.wdg.wdgReviews .item .itemImageBottom {
  display: flex;
  align-items: flex-end;
}
.wdg.wdgReviews .item .itemImage {
  width: auto;
  height: auto;
}
.wdg.wdgReviews .item .plugWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 172px;
}
.wdg.wdgReviews .item .itemDesc {
  border-top: 5px solid #333;
  padding: 10px 0;
  justify-content: initial;
}
.wdg.wdgReviews .item .itemDesc .itemTitle {
  font-size: 14px;
  line-height: 21px;
  color: #666;
  text-transform: uppercase;
}
.wdg.wdgReviews .item .itemDesc .itemTitle small {
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #666666;
  line-height: 18px;
  text-transform: uppercase;
  display: block;
  line-height: 17px;
}
.wdg.wdgReviews .item .itemDesc .itemTitle span {
  display: block;
}
.wdg.wdgReviews .item .itemDesc .articleTitle {
  font-family: NotoSans-Regular;
  font-size: 17px;
  line-height: 21px;
  color: #333333;
  font-family: NotoSans-Bold;
  max-height: 53px;
  overflow: hidden;
  font-size: 14px;
  line-height: 18px;
  margin-right: 10px;
}
.wdg.wdgReviews .btnShowHide.reviewsBtn {
  margin-top: 30px;
}
.wdg.wdgReviews .row {
  -ms-flex: 1;
  flex: 1;
}
.wdg.wdgReviews article:last-child .item,
.wdg.wdgReviews article:last-child .item.show {
  border-bottom: 6px solid #cd9a24;
}
.wdg.wdgReviews .item {
  height: 172px;
  background-position: 40px 27px;
  display: flex;
  overflow: hidden;
}
.wdg.wdgReviews .item .itemTitle {
  margin-top: 20px;
  font-size: 17px;
}
.wdg.wdgReviews .item .itemDesc {
  margin-top: 0;
  padding: 0;
  padding-right: 5px;
  justify-content: space-between;
}
.wdg.wdgReviews .item .itemDesc .itemTitle {
  font-family: NotoSans-Regular;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wdg.wdgReviews .item .itemDesc .articleTitle {
  font-family: NotoSans-Regular;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 21px;
  max-height: 64px;
  overflow: hidden;
}
.wdg.wdgReviews .item .itemImage img {
  max-width: 90%;
  width: auto;
  display: block;
}
.wdg.wdgReviews .btnShowHide.reviewsBtn {
  margin-top: 30px;
}
.rightColWrapper .wdg.wdgReviews .item {
  height: auto;
}
.rightColWrapper .wdg.wdgReviews .item .articleTitle {
  margin-top: 0;
  margin-bottom: 5px;
}
.rightColWrapper .wdg.wdgReviews .item .itemTitle {
  margin-top: 5px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .wdg.wdgReviews .item .itemDesc .articleTitle {
    max-height: 62px;
  }
}
@media only screen and (max-width: 1024px) {
  .wdg.wdgReviews .item .itemDesc .articleTitle {
    max-height: 83px;
  }
}
.wdg.wdgBigPhoto .title {
  margin-bottom: 5px;
}
.wdg.wdgBigPhoto .title .titleLogo {
  height: 24px;
  max-height: initial;
  padding-right: 6px;
}
.wdg.wdgBigPhoto .title .titleUnderlined {
  line-height: 29px;
}
.wdg.wdgBigPhoto .item .itemAuthors {
  color: #cd9a24;
}
.wdg.wdgBigPhoto .item.itemFirst:hover {
  color: #ccc;
}
.wdg.wdgBigPhoto .item .itemImage:after {
  content: '';
  display: block;
  height: 4px;
  width: 90px;
  background: #cd9a24;
  position: absolute;
  left: 0;
  top: auto;
  bottom: -4px;
}
.wdg.wdgBigPhoto .title {
  margin-bottom: 5px;
}
.wdg.wdgBigPhoto .title .titleLogo {
  height: 34px;
  max-height: initial;
  padding-right: 6px;
}
.wdg.wdgBigPhoto .title .titleUnderlined {
  line-height: 29px;
}
.wdg.wdgBigPhoto .item .itemAuthors {
  color: #fff;
}
.rightColWrapper .wdg.wdgBigPhoto .itemDesc {
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
}
.rightColWrapper .wdg.wdgBigPhoto .itemDesc .itemTitle {
  font-size: 14px;
  line-height: 17px;
}
.rightColWrapper .wdg.wdgBigPhoto .itemDesc .itemAuthors {
  margin-bottom: 10px;
}
.wdg.wdgLinks {
  background-color: #CCCCCC;
}
.wdg.wdgLinks a {
  border-right: solid 1px #787878;
  padding-right: 9px;
  padding-left: 10px;
  font-family: NotoSans-Regular;
  font-size: 12px;
  color: #787878;
  text-transform: uppercase;
  line-height: 12px;
  display: inline-block;
}
.wdg.wdgLinks a:first-child {
  padding-left: 0;
}
.wdg.wdgLinks a:last-child {
  border-right: none;
}
.wdg.wdgLinks .wdgItems {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 13px;
  padding-right: 13px;
}
.wdg.wdgEditionLinks {
  margin-bottom: 10px;
}
.wdg.wdgEditionLinks .editionHeader {
  font-size: 42px;
  font-family: NotoSans-Bold;
}
.wdg.wdgEditionLinks .wdgItems {
  display: flex;
  justify-content: space-around;
  font-family: NotoSans-Regular;
}
.wdg.wdgEditionLinks .editionName {
  font-size: 14px;
  color: #949494;
  padding-top: 2px;
}
.wdg.wdgEditionLinks .editionYears {
  padding-top: 9px;
}
.wdg.wdgEditionLinks .editionYear {
  border-right: solid 1px #cd9a24;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 16px;
  color: #cd9a24;
  line-height: 14px;
  display: inline-block;
  top: -9px;
  position: relative;
}
.wdg.wdgEditionLinks .editionYears > *:last-child {
  border-right: none;
}
.wdg.wdgEditionLinks .titleUnderlined {
  border-bottom: 2px solid #cd9a24;
  flex: 1;
  position: relative;
  bottom: 15px;
}
.wdg.wdgEditionLinks .active {
  font-family: NotoSans-Bold;
}
.wdg.wdgEditionLinks .editionSubtitle {
  font-family: NotoSans-Bold;
  font-size: 15px;
  margin: 20px 0;
}
.wdg.wdgEditionLinks .editionContent {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .wdg.wdgEditionLinks .titleUnderlined {
    display: none;
  }
  .wdg.wdgEditionLinks .wdgItems {
    justify-content: flex-start;
  }
}
.editionContainer {
  margin-top: 10px;
  margin-bottom: 20px;
}
.editionContainer .editionTitle {
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 20px;
}
.editionContainer .editionImages {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.editionContainer .editionImages .currentEdition {
  display: inline-block;
  padding-right: 5px;
  padding-bottom: 5px;
  width: 50%;
}
.editionContainer .editionImages .currentEdition img {
  width: 100%;
}
.editionContainer .editionImages .mobileVersions {
  display: inline-block;
  padding-left: 5px;
  width: 50%;
}
.editionContainer .editionImages .mobileVersions img {
  width: 100%;
}
.editionContainer .downloadContainer {
  display: flex;
  justify-content: space-around;
  font-family: NotoSans-Regular;
  font-size: 14px;
  padding-top: 20px;
}
.editionContainer .downloadContainer .downloadItem {
  max-width: 25%;
  overflow: hidden;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.editionContainer .downloadContainer .downloadItem .downloadItemHeading {
  padding-bottom: 5px;
  text-align: center;
}
.editionContainer .downloadContainer .downloadItem .downloadItemButton {
  display: block;
  height: 40px;
  width: 145px;
  background-repeat: no-repeat;
  background-position: center;
}
.editionContainer .downloadContainer .downloadItem #googlePlayBadge {
  background-image: url('../../images/google_play_badge.png');
}
.editionContainer .downloadContainer .downloadItem #appStoreBadge {
  background-image: url('../../images/app_store_badge.png');
}
.editionContainer .downloadContainer .downloadItem #ekioskBadge {
  background-image: url('../../images/ekiosk_badge.png');
}
.editionContainer .downloadContainer .downloadItem #prenumerataBadge {
  background-image: url('../../images/prenumerata_badge.png');
}
@media only screen and (max-width: 1023px) {
  .editionContainer .downloadContainer {
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .editionContainer .downloadContainer .downloadItem {
    width: 50%;
    max-width: none;
    padding-top: 5px;
  }
}
.editionChangerContainer {
  font-family: NotoSans-Bold;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  background-color: #cccccc;
  height: 35px;
  align-items: center;
}
.editionChangerContainer .editionChangerContainer__div {
  display: flex;
}
.editionChangerContainer .editionChangerContainer__div .editionChanger__button {
  position: relative;
  top: 2px;
  padding-left: 10px;
  padding-right: 10px;
}
.editionChangerContainer .editionChangerContainer__div .editionChanger__button span {
  color: #999999;
  font-size: 15px;
  cursor: pointer;
}
.editionChangerContainer .editionChangerContainer__div .rotatedIconArrow {
  -ms-transform: scaleX(-1);
  /* IE 9 */
  -webkit-transform: scaleX(-1);
  /* Chrome, Safari, Opera */
  transform: scaleX(-1);
}
.editionChangerContainer .editionChangerContainer__div .editionChangerContainerDiv__title {
  color: #767676;
  font-family: NotoSans-Regular;
  padding-left: 15px;
}
.editionChangerContainer .editionChangerContainer__div .editionsContainer {
  display: flex;
  width: 120px;
  height: 20px;
  overflow: hidden;
  background-color: white;
  left: 0;
}
.editionChangerContainer .editionChangerContainer__div .editionsContainer #editionsContainerSlider {
  position: relative;
  display: flex;
  left: 0;
  transition: left 0.5s ease;
}
.editionChangerContainer .editionChangerContainer__div .editionsContainer #editionsContainerSlider .currentEditionSpan {
  width: 50px;
  padding-left: 35px;
  padding-right: 35px;
  color: #999999;
}
.editionChangerContainer #editionsChangerButton {
  background-color: #999999;
  color: #ffffff;
  width: 70px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.newsletterTitle {
  font-size: 14px;
  margin-bottom: 12px;
  font-family: NotoSans-Regular;
  text-transform: uppercase;
}
.newsletterTitle span {
  border-bottom: 1px solid white;
}
.wdg.wdgNewsletter {
  font-family: NotoSans-Regular;
  background-color: #666666;
  color: #ffffff;
  transition: height 0.5s ease;
  padding: 0 25px;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop {
  padding-top: 20px;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form {
  height: 35px;
  margin-bottom: 15px;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-input {
  background-color: #cccccc;
  width: 145px;
  height: 35px;
  font-size: 11px;
  padding-left: 15px;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-input::placeholder {
  /* Chrome/Opera/Safari */
  text-transform: uppercase;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  text-transform: uppercase;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-input::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: uppercase;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-input::-ms-input-placeholder {
  /* IE 10+ */
  text-transform: uppercase;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-input::-moz-placeholder {
  /* Firefox 18- */
  text-transform: uppercase;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .newsletterContainer__form .newsletter-submit {
  background-color: #ffffff;
  width: 90px;
  height: 35px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: auto;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .nmsg {
  display: none;
  font-size: 11px;
  padding-bottom: 10px;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterTop .nmsg .msgerr {
  text-align: center;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterBottom {
  top: 0;
  left: auto;
  position: relative;
  transition: top 0.5s ease;
  padding-bottom: 20px;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterBottom .newsletterContainer__termsDiv {
  display: flex;
  align-items: center;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterBottom .newsletterContainer__termsDiv .newsletterContainer__checkbox {
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.wdg.wdgNewsletter .newsletterContainer .newsletterBottom .newsletterContainer__termsDiv .newsletterContainer__terms {
  width: 200px;
  font-size: 9px;
  margin-left: 15px;
}
.wdg.wdgDiamondLaureates {
  text-align: center;
  padding: 0;
}
.wdg.wdgDiamondLaureates .dropdownHeader {
  text-transform: uppercase;
  color: #3e3e3e;
  font-size: 12px;
  margin-bottom: 5px;
  font-family: NotoSans-Bold;
}
.wdg.wdgDiamondLaureates #diamondLaureatesDropdown {
  width: 100%;
}
.wdg.wdgDiamondLaureates .dropbtn {
  text-transform: uppercase;
  width: 100%;
  background-color: #d1d1d1;
  color: #666666;
  padding: 14px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  border-top: 2px solid #666666;
  border-bottom: 2px solid #666666;
  font-family: NotoSans-Bold;
}
.wdg.wdgDiamondLaureates .dropbtn:after {
  content: "\25BC";
  height: 16px;
  width: 16px;
  margin-left: 5px;
  position: absolute;
}
.wdg.wdgDiamondLaureates #diamondLaureatesDropdownWrapper.show .dropbtn:after {
  content: "\25B2";
}
.wdg.wdgDiamondLaureates .dropbtn:hover,
.wdg.wdgDiamondLaureates .dropbtn:focus {
  background-color: #ccc;
}
.wdg.wdgDiamondLaureates .dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.wdg.wdgDiamondLaureates .dropdown-content {
  display: none;
  position: absolute;
  background-color: #757575;
  z-index: 1;
  border-bottom: 2px solid #666666;
}
.wdg.wdgDiamondLaureates .dropdown-content a {
  display: none;
  color: #cccccc;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  font-family: NotoSans-Bold;
  font-size: 12px;
}
.wdg.wdgDiamondLaureates .dropdown-content a:hover {
  background-color: #656565;
}
.wdg.wdgDiamondLaureates .show {
  display: block;
}
.wdg.wdgMostPopular .wdgItems {
  background: #262626;
}
.rankWrapper {
  -webkit-transition: all 125ms linear;
  -moz-transition: all 125ms linear;
  -ms-transition: all 125ms linear;
  -o-transition: all 125ms linear;
  transition: all 125ms linear;
  height: 500px;
  position: relative;
  overflow: hidden;
  margin-bottom: 118px;
  padding-bottom: 40px;
}
.rankWrapper.inited {
  overflow: hidden;
  margin-bottom: 40px !important;
  padding-bottom: 0;
}
.rankWrapper table {
  width: 100%;
}
.rankWrapper .linear-gradient {
  background: transparent;
  /* Old browsers */
  background: -moz-linear-gradient(top, transparent 0%, #ffffff 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, transparent 0%, #ffffff 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, transparent 0%, #ffffff 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, transparent 0%, #ffffff 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr=#ffffff, GradientType=0);
  /* IE6-9 */
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.001) 0%, #ffffff 100%);
  width: 100%;
  position: absolute;
}
.rankWrapper .linear-gradient {
  height: 65px;
}
.rankWrapper .showmore {
  width: 100%;
  position: absolute;
  height: 46px;
  line-height: 46px;
  cursor: pointer;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background: #fff;
  text-transform: uppercase;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 12px;
  color: #666;
  padding: 10px;
  text-align: center;
  margin-top: -1px;
  margin-top: 0;
  padding: 0;
}
.searchForm .searchInput {
  color: #444444;
  padding: 3px 131px 6px 10px;
  width: 380px;
  background: none repeat scroll 0 0 transparent;
  font: 19px arial;
  border-radius: 3px 0 0 3px;
  text-align: left;
  -webkit-appearance: none;
  outline: none;
  border: 1px solid #DDDDDD;
}
.searchForm .searchButton {
  background-image: none;
  background-color: #ee9902;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  font: bold 14px arial;
  margin-left: -5px;
  height: 33px;
  width: 88px;
  outline: none;
}
.searchitem {
  margin-bottom: 1em;
  overflow: hidden;
}
.searchitem .imgHolder {
  background: none;
  float: left;
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 3px;
  text-align: center;
  width: 15%;
  max-height: 67px;
  overflow: hidden;
  position: relative;
  display: block;
  background: #ececec;
  outline: none;
}
.searchitem .imgHolder img {
  border: 1px solid #e2e2e2;
  width: 120px;
  height: 67px;
}
.searchitem .desc {
  color: #000;
  float: left;
  margin-left: 1%;
  width: 80%;
}
.searchitem .desc .title {
  color: #005081;
  font-size: 16px;
  min-height: 1.4em;
  overflow: hidden;
  padding-right: 5px;
  text-decoration: underline;
}
.searchitem .desc .subTitle {
  font-size: 13px;
  line-height: 17px;
  overflow: hidden;
}
.searchitem .desc .url {
  color: #888888;
  line-height: 16px;
  float: left;
  margin-top: 3px;
  font-size: 13px;
}
.searchResaultText,
.searchNoResults h3,
.searchNoResults strong {
  margin: 10px 0;
}
.searchNoResults ul {
  margin-bottom: 10px;
}
.searchResults .showMore {
  display: flex;
}
.dl-gallery {
  margin-left: -15px;
}
.dl-gallery.dl-gallery-art .dl-gallery-teaser {
  margin-bottom: 15px;
}
.dl-gallery .dl-gallery-teaser {
  position: relative;
  overflow: hidden;
}
.dl-gallery .dl-gallery-teaser .dl-gallery-teaser-image {
  width: 100%;
  display: block;
  min-height: 180px;
}
.dl-gallery .dl-gallery-teaser .dl-gallery-slides-count {
  position: absolute;
  color: #fff;
  bottom: 13px;
  left: 25px;
  background: url('../../images/mobile/gallery/photoIconWhite.svg') no-repeat 0 0;
  text-align: right;
  width: 54px;
  height: 30px;
  box-sizing: border-box;
  padding-top: 5px;
}
.dl-gallery .dl-gallery-teaser .dl-gallery-button-see {
  position: absolute;
  bottom: 15px;
  right: 20px;
  background: #ffd200;
  color: #000;
  padding: 7px 35px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}
.dl-gallery .dl-gallery-teaser ul {
  display: none !important;
}
.dl-gallery .dl-gallery-teaser .dl-gallery-copyright {
  padding: 2px 4px;
  background: #222;
  color: #fff;
  position: absolute;
  transform: rotate(270deg) translateY(-100%);
  transform-origin: 100% 0;
  top: 0;
  right: 0;
  font-size: 70%;
}
.dl-gallery .dl-gallery-description {
  margin: 20px 15px;
}
.dl-gallery .dl-gallery-item {
  border-top: 3px solid #ededed;
  margin: 10px 0px 20px;
}
.dl-gallery .dl-gallery-item figcaption {
  overflow: hidden;
  font-weight: 500;
  margin: 20px;
  color: #000;
  text-align: left;
}
.dl-gallery .dl-gallery-item figcaption .dl-gallery-item-counter {
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding-left: 6px;
  display: inline-block;
}
.dl-gallery .dl-gallery-item figcaption .dl-gallery-item-counter:before {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background: #ffd200;
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
}
.dl-gallery .dl-gallery-item figcaption .dl-gallery-item-title {
  font-size: 15px;
}
.dl-gallery .dl-gallery-item .dl-gallery-item-content {
  position: relative;
}
.dl-gallery .dl-gallery-item .dl-gallery-item-content img {
  width: 100%;
  display: block;
}
.dl-gallery .dl-gallery-item .dl-gallery-item-content .dl-gallery-item-copyright {
  padding: 2px 4px;
  background: #222;
  color: #fff;
  position: absolute;
  transform: rotate(270deg) translateX(100%);
  transform-origin: 100% 100%;
  bottom: 0;
  right: 0;
  font-size: 70%;
}
.dl-gallery .dl-gallery-item .dl-gallery-item-description {
  margin: 10px 20px 20px;
}
.dl-gallery .dl-gallery-item .dl-gallery-item-description p {
  font-weight: normal !important;
}
@media only screen and (min-width: 960px) {
  .dl-gallery-button-see {
    padding: 0;
  }
}
.dl-gallery {
  margin-left: 0;
  /*.dl-gallery-item {
            float: left;
            width: 708px;
        }*/
}
.dl-gallery .dl-gallery-teaser .dl-gallery-slides-count {
  left: 15px;
  bottom: 24px;
  right: auto;
  top: auto;
}
.dl-gallery .dl-gallery-teaser ul {
  display: block !important;
  position: absolute;
  bottom: 10px;
  left: 93px;
  list-style: none;
  max-width: calc(100% - 320px);
  max-height: 70px;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}
.dl-gallery .dl-gallery-teaser ul li {
  display: inline-block;
  border: 1px solid #222;
}
.dl-gallery .dl-gallery-teaser ul li img {
  height: 70px;
  width: auto !important;
}
.dl-gallery .dl-gallery-teaser .dl-gallery-button-see {
  height: 70px;
  box-sizing: border-box;
  padding-top: 27px;
  bottom: 10px;
}
.dl-gallery .dl-gallery-item.vertical-content .dl-gallery-item-content {
  width: 60%;
  margin: 0 auto;
}
.dl-gallery .aside-column {
  float: right;
  width: 300px;
}
.dl-gallery {
  width: 970px;
  overflow: hidden;
  /*.columns-breaker {
            min-height: 100px;
            margin: 10px 0;
            background: magenta;
        }*/
}
.dl-gallery .dl-gallery-items-group {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.dl-gallery .dl-gallery-teaser,
.dl-gallery .dl-gallery-description,
.dl-gallery .dl-gallery-item {
  width: 630px;
  float: left;
  margin-bottom: 30px;
}
.dl-gallery .dl-gallery-description p:first-child {
  font-family: NotoSans-Bold;
}
.dl-gallery .dl-gallery-description p {
  font-size: 16px;
  line-height: 1.625;
  margin: 18px 0;
}
.dl-gallery .columns-breaker .onet-ad {
  margin: 30px auto 60px auto;
}
.dl-gallery .aside-column .onet-ad.fixed {
  position: fixed;
  top: 10px;
}
.dl-gallery .aside-column .onet-ad.bottom {
  position: absolute;
  bottom: 0;
  margin-bottom: 25px;
}
#newDetail.verticalGallery .pageWrapper {
  width: 100%;
}
#newDetail.verticalGallery .pageContent {
  width: 970px;
}
#newDetail.verticalGallery .pageContent .articleDetail {
  float: left;
  width: 630px;
}
#newDetail.verticalGallery .pageContent .rightColWrapper {
  float: right;
}
@media (min-width: 1150px) {
  .dl-gallery {
    width: 1125px;
  }
  .dl-gallery .dl-gallery-teaser,
  .dl-gallery .dl-gallery-description,
  .dl-gallery .dl-gallery-item {
    width: 788px;
  }
  #newDetail.verticalGallery .pageContent {
    width: 1140px;
  }
  #newDetail.verticalGallery .pageContent .articleDetail {
    width: 788px;
  }
}
/* authors page */
.boxAuthorsList {
  display: flex;
  flex-wrap: wrap;
  font-family: NotoSans-Regular;
  color: #333333;
  margin-top: 28px;
}
.boxAuthorsList .authorsItem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  margin-bottom: 20px;
  overflow: hidden;
}
.boxAuthorsList .authorsItem .authorsImage {
  margin-bottom: 15px;
  display: flex;
  max-width: 100%;
}
.boxAuthorsList .authorsItem .authorsName {
  color: #333333;
  font-size: 18px;
  line-height: 21px;
  height: auto;
  font-family: NotoSans-Bold;
  font-weight: 700;
}
.boxAuthorsList .authorsItem .authorsFunction {
  color: #333333;
  font-size: 14px;
  line-height: 18px;
  margin-top: 5px;
}
.boxAuthorsList .showMore {
  display: flex;
  flex-wrap: wrap;
}
.boxAuthorsList .showMore .more {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  background: #fff;
  text-transform: uppercase;
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 12px;
  color: #666;
  padding: 10px;
  text-align: center;
  margin-top: -1px;
  margin-top: 40px;
}
/* author detail */
.authorHeading {
  font-family: NotoSans-Regular;
  margin: 0 auto 25px;
  border-bottom: 2px solid #666;
  padding-bottom: 20px;
}
.authorHeading.infoPerson {
  margin: 0 15px 20px;
}
.authorHeading .authorProfileDetail {
  overflow: hidden;
  margin-bottom: 20px;
}
.authorHeading .authorProfileDetail .logo {
  float: left;
  margin-right: 20px;
}
.authorHeading .authorProfileDetail .logo img {
  display: block;
}
.authorHeading .authorProfileDetail .profileDetails {
  float: left;
}
.authorHeading .authorProfileDetail .profileDetails .authorInfo .name {
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 28px;
}
.authorHeading .authorProfileDetail .profileDetails .authorInfo .authorItemTagline {
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  color: #999;
  max-width: 450px;
  width: 90%;
}
.authorHeading .authorProfileDetail .profileDetails .socials {
  margin-top: 20px;
  overflow: hidden;
}
.authorHeading .authorProfileDetail .profileDetails .socials li {
  margin-right: 10px;
  float: left;
  position: relative;
}
.authorHeading .authorProfileDetail .profileDetails .socials li a {
  font-family: 'icomoon';
  color: #666;
  font-size: 1px;
  display: block;
  border-radius: 0;
  width: 41px;
  height: 37px;
}
.authorHeading .authorProfileDetail .profileDetails .socials li a .authorIcon {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
.authorHeading .authorProfileDetail .profileDetails .socials li a .authorIcon:before {
  font-size: 36px;
  margin: 3px 6px 0 0;
  display: block;
}
.authorHeading .authorDescription {
  font-size: 16px;
  line-height: 24px;
}
/* sources page */
.boxSourcesList {
  display: flex;
  flex-wrap: wrap;
  font-family: NotoSans-Regular;
  color: #333333;
  margin: 28px auto 0;
}
.boxSourcesList .listItem {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 2px solid #666;
  margin-bottom: 20px;
}
.boxSourcesList .listItem a {
  color: #333;
  display: flex;
  justify-content: space-between;
}
.boxSourcesList .listItem a .itemTitleContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.boxSourcesList .listItem a .itemTitleContainer .itemTitle {
  font-family: NotoSans-Bold;
}
.boxSourcesList .listItem a .itemTitleContainer .itemTitle,
.boxSourcesList .listItem a .itemTitleContainer .itemLead {
  display: flex;
}
.boxSourcesList .listItem a .itemImage {
  display: flex;
  justify-content: flex-end;
}
/* source detail */
.sourceHeading {
  margin-bottom: 20px;
}
.sourceHeading .sourceTitle h1 {
  font-family: NotoSans-Bold;
  font-weight: 700;
  font-size: 28px;
}
.sourceHeading .sourceImage {
  margin: 10px 0;
}
.infoSources {
  margin: 0 15px 20px;
}
@media only screen and (max-width: 768px) {
  .boxSourcesList .listItem a {
    display: block;
  }
  .boxSourcesList .listItem a .itemTitleContainer {
    flex-direction: column;
    align-items: center;
  }
  .boxSourcesList .listItem a .itemTitleContainer .itemLead {
    margin-top: 10px;
    text-align: center;
  }
  .boxSourcesList .listItem a .itemImage {
    margin: 20px auto 0;
    justify-content: center;
    display: block;
    text-align: center;
  }
  .boxSourcesList .listItem a .itemImage img {
    margin: 0 auto;
    max-width: 100%;
  }
}
.sourcesPremium .authorSourceProfile {
  margin: 16px 0 27px;
}
.sourcesPremium .mainTitle {
  padding: 34px 0;
  overflow: hidden;
}
.sourcesPremium .mainTitle h1 {
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0;
}
.sourcesPremium .platformAbout #lead {
  font-weight: normal;
  padding-right: 170px;
  margin-bottom: 35px;
}
.sourceBodyV2 {
  font-family: NotoSans-Regular;
  font-weight: 400;
}
.sourceBodyV2 .mainTitle {
  padding: 34px 0;
  overflow: hidden;
}
.sourceBodyV2 .mainTitle h1 {
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0;
}
.sourceBodyV2 .boxSourcesList {
  margin: 0 auto;
}
.sourceBodyV2 .boxSourcesList li {
  display: block;
  margin: 5px 0;
  width: 100%;
}
.sourceBodyV2 .boxSourcesList li a {
  display: block;
  line-height: 90px;
  overflow: hidden;
  color: #0555ad;
  display: flex;
  align-items: center;
}
.sourceBodyV2 .boxSourcesList li a .imageWrapper {
  overflow: hidden;
  width: 170px;
  float: left;
  margin: 0 30px 0 10px;
  text-align: center;
}
.sourceBodyV2 .boxSourcesList li a .imageWrapper img {
  max-height: 90px;
  max-width: 140px;
  vertical-align: middle;
}
.sourceBodyV2 .boxSourcesList li a h3 {
  font-size: 35px;
  line-height: 45px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.sourceBodyV2 .boxSourcesList li a h3:after {
  content: "Mówi";
  color: #059be8;
  font-family: NotoSans-Italic;
  font-weight: 400;
  margin-left: 5px;
  padding-bottom: 4px;
}
.sourceHeading {
  border-bottom: 2px solid #666;
}
.sourceHeading .sourceImage {
  overflow: hidden;
}
.sourceHeading .sourceImage .logosWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sourceHeading .sourceTitle {
  padding: 15px 0;
  overflow: hidden;
}
.sourceHeading .sourceTitle h1 {
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0;
  color: #000;
}
.sourcePremiumDetail {
  clear: both;
}
.sourcePremiumDetail .logosWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.wdg.wdgRankFirstPlace {
  text-align: left;
  margin-top: 30px;
  overflow: hidden;
}
.wdg.wdgRankFirstPlace a {
  color: #333333;
}
.wdg.wdgRankFirstPlace a:hover {
  color: #999;
}
.wdg.wdgRankFirstPlace .itemImage {
  float: left;
  margin: 5px 23px 0 0;
  position: relative;
}
.wdg.wdgRankFirstPlace .itemImage:after {
  content: '';
  width: 151px;
  height: 4px;
  background: #cd9a24;
  position: absolute;
  bottom: 3px;
  left: 0px;
}
.wdg.wdgRankFirstPlace .itemImage .placeMarker {
  position: absolute;
  bottom: 29px;
  left: 48px;
  font-size: 23px;
}
.wdg.wdgRankFirstPlace .itemImage img {
  width: 100%;
}
.wdg.wdgRankFirstPlace .itemDesc {
  display: inline;
  float: right;
  width: 38%;
}
.wdg.wdgRankFirstPlace .itemTitle {
  font-family: NotoSans-Bold;
  line-height: 30px;
  margin-left: 8px;
}
.wdg.wdgRankFirstPlace .itemDescription {
  font-family: NotoSans-Regular;
  padding-top: 30px;
  padding-left: 8px;
  line-height: 26px;
}
.wdg.wdgRankFirstPlace .placeMarker {
  font-family: NotoSans-Bold;
  color: #FFF;
}
.lpsInitialized .itemAuthors img {
  height: 25px;
  vertical-align: bottom;
}
.lpsInitialized .itemAuthors .recommendAuthorName {
  line-height: 25px;
  margin-right: 10px;
}
.desktop .wdgStandard .lpsInitialized .itemFirst .itemImage:after,
.desktop .wdgSpecial .lpsInitialized .itemFirst .itemImage:after,
.desktop .wdgBigPhoto .lpsInitialized .itemFirst .itemImage:after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
  /* IE6-9 */
}
.desktop .wdgBigPhoto .lpsInitialized .itemAuthors .recommendAuthorName {
  line-height: 35px;
}
.desktop .wdgBigPhoto .lpsInitialized .itemAuthors .recommendAuthorImg {
  height: 35px;
}
.desktop .lpsInitialized .itemFirst .itemAuthors .recommendAuthorName {
  line-height: 35px;
}
.desktop .lpsInitialized .itemFirst .itemAuthors .recommendAuthorImg {
  height: 35px;
}
#googleAdsCont {
  text-align: center;
  margin: 40px auto;
}
#extraAdsBlock {
  margin-bottom: 50px;
}
#extraAdsBlock .ad_adInfo.asideTitle {
  display: none;
  border-bottom: 1px solid #dddce1;
  color: #898989;
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-weight: normal;
}
#extraAdsBlock .onet-ad .ad_adInfo {
  display: none;
}
#extraAdsBlock .ad_adInfoEnd {
  border-top: 1px solid #dddce1;
  color: #898989;
  font-size: 11px;
  line-height: 12px;
  margin-top: 10px;
  padding-top: 5px;
  text-align: right;
}
#onet-ad-top {
  text-align: center;
  margin: 10px auto;
  padding: 20px 0;
}
.screening .customSize {
  width: 98%;
}
.screening .boxDriver {
  width: 98%;
}
.screening .listTitle,
.screening .editorsTitle {
  margin-top: 10px;
}
.screening #onet-ad-top {
  padding: 0;
}
@media only screen and (max-width: 1300px) {
  #newDetail.screening .containerCustom .rightColWrapper {
    padding-right: 10px;
  }
}
#onet-ad-left {
  float: left;
}
#extraAdsBlock .onet-ad .ad_box,
#extraAdsBlock .onet-ad .ad_spons_box,
#extraAdsBlock .onet-ad .ad_wizytowka,
#extraAdsBlock .onet-ad .ad_boxright1,
#extraAdsBlock .onet-ad .ad_boxright2,
#extraAdsBlock .onet-ad .ad_boxright3,
#extraAdsBlock .onet-ad .ad_boxright4,
#extraAdsBlock .onet-ad .ad_boxright5,
#extraAdsBlock .onet-ad .ad_boxright6,
#extraAdsBlock .onet-ad .ad_boxright7,
#extraAdsBlock .onet-ad .ad_boxright8,
#extraAdsBlock .onet-ad .ad_halfpage,
#extraAdsBlock .onet-ad .ad_boks1,
#extraAdsBlock .onet-ad .ad_boksnavi,
#extraAdsBlock .onet-ad .ad_panel1,
#extraAdsBlock .onet-ad .ad_pasekart,
#extraAdsBlock .onet-ad .ad_efektcenter,
#extraAdsBlock .onet-ad .ad_efektright {
  margin: 0 auto 5px;
}
[data-slot="nativeinfeed"] {
  clear: both;
}
[id^="onet-ad-flat-boxleft"],
[id^="flat-boxleft"] {
  margin-top: 20px;
  margin-bottom: 20px !important;
}
#onet-ad-right {
  margin-bottom: 20px !important;
}
#onet-ad-rectangle1,
#onet-ad-rectangle3 {
  display: inline-block;
  margin: 0 5px;
}
@media screen and (min-width: 1160px) {
  #onet-ad-rectangle1,
  #onet-ad-rectangle3 {
    margin: 0 30px;
  }
}
.partnerLogoContainer,
.native {
  margin-top: 3px;
}
.partnerLogoContainer .logoImg,
.native .logoImg {
  height: 20px;
  width: auto;
  background: #fff;
  padding: 0px;
  display: inline-block;
}
.partnerLogoContainer .logoImg img,
.native .logoImg img {
  max-height: 100%;
}
@media only screen and (max-width: 768px) {
  .partnerLogoContainer,
  .native {
    margin-top: 0px;
  }
}
.relatedTitle,
.seeAlsoTitle {
  position: relative;
  margin-top: 25px;
}
.relatedTitle .title,
.seeAlsoTitle .title {
  font-family: NotoSans-Bold;
  font-size: 18px;
  color: #cd9a24;
  text-transform: uppercase;
  margin-right: 9px;
  background: #fff;
  padding-right: 24px;
  display: inline-block;
}
.relatedTitle .titleUnderlined,
.seeAlsoTitle .titleUnderlined {
  border-bottom: 2px solid #cd9a24;
  width: 100%;
  margin-top: -10px;
  display: block;
}
.article_seeAlso ul {
  margin-left: 154px;
}
#newDetail .pageContent .articleDetail .article_seeAlso ul {
  position: inherit;
}
#newDetail .pageContent .articleDetail .article_seeAlso ul li a {
  border: none;
  font-size: 20px;
  color: #1e1e1e;
}
.relatedMaterials_1 a,
.relatedMaterials_2 a {
  color: #1e1e1e;
}
@media only screen and (max-width: 1024px) {
  .wdg .item.itemFirst .itemDesc,
  .wdg.wdgSpecial .item.itemFirst .itemDesc,
  .wdg.wdgSpecial.dark .item.itemFirst .itemDesc {
    margin-bottom: 2vw;
    margin-left: 3vw;
  }
  .wdg .item.itemFirst .itemDesc .itemTitle,
  .wdg.wdgSpecial .item.itemFirst .itemDesc .itemTitle,
  .wdg.wdgSpecial.dark .item.itemFirst .itemDesc .itemTitle {
    font-size: 3vw;
    line-height: 3.9vw;
  }
  .wdg .item.itemFirst .itemAuthors,
  .wdg.wdgSpecial .item.itemFirst .itemAuthors,
  .wdg.wdgSpecial.dark .item.itemFirst .itemAuthors {
    font-size: 1.2vw;
  }
  .boxArticleList .listItem.firstItem .itemText {
    margin-bottom: 2vw;
    margin-left: 3vw;
  }
  .boxArticleList .listItem.firstItem .itemTitle {
    font-size: 3vw;
    line-height: 3.9vw;
  }
}
.wdg.wdgRankInfluentialSportsman .mainPhoto {
  margin-bottom: 40px;
  overflow: initial;
  position: relative;
}
.wdg.wdgRankInfluentialSportsman .mainPhoto:after {
  content: '';
  height: 8px;
  width: 188px;
  background: #cd9a24;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.wdg.wdgRankInfluentialSportsman .mainPhoto img {
  width: 100%;
  display: block;
}
.wdg.wdgRankInfluentialSportsman .mainPhoto .copyright {
  font-size: 13px;
  padding: 2px;
  display: block;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  right: -1px;
  transform: rotate(270deg) translateX(100%);
  transform-origin: bottom right;
  max-height: 440px;
  font-weight: 500;
}
.wdg.wdgRankInfluentialSportsman .mainPhoto .caption {
  color: #4b4b4b;
  font-size: 15px;
  margin-top: 13px;
  position: absolute;
  height: 45px;
}
.wdg.wdgRankInfluentialSportsman .mainPhoto .caption .imageDescription {
  display: block;
}
#contentBody404 {
  clear: left;
  float: left;
  width: 100%;
}
#contentBody404 p a.recommend404 {
  border-bottom: medium none;
  font-size: 10pt;
  line-height: 11pt;
  margin-bottom: 24px;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
}
#contentBody404 .recommend404 img {
  height: 90px;
  margin: 0;
  width: 150px;
}
#contentBody404 .recommend404 {
  display: block;
  float: left;
  height: 155px;
  margin-right: 25px;
  width: 150px;
}
#contentBody404 .recommend404 span {
  clear: both;
  display: block;
  padding-top: 5px;
  color: #333333;
}
#contentBody404 .recommend404 span:hover {
  color: #999;
}
