/* Fonts */

/* ----------------------------------------
    Config Files
---------------------------------------- */

/* ----------------------------------------
    Typography
---------------------------------------- */

/* ----------------------------------------
    Branding Color Function
---------------------------------------- */

/**
 * Example usage
 *
 * .demo-class {
 *    background: color('primary');
 * }
 *
 */

/* ----------------------------------------
    Branding Color Level Function
---------------------------------------- */

/**
 * Example usage
 *
 * .demo-class {
 *    background: color-lvl('primary', 5);
 * }
 *
 */

/* ----------------------------------------
    Breakpoints
---------------------------------------- */

/**
 * Example for this mixin
 *
 * .demo-class {
 *    padding: 20px;
 *
 *    @include mq('tablet-wide') {
 *      padding: 30px;
 *    }
 * }
 *
 */

/* ----------------------------------------
    Hidden Responsive
---------------------------------------- */

/* ----------------------------------------
    Aspect Ratio
---------------------------------------- */

/**
 * Example for this mixin
 *
 * .demo-class {
 *    @include aspect-ratio(16,9);
 * }
 *
 */

/* ----------------------------------------
    Subscription
---------------------------------------- */

.subscription {
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 10%;
  right: 0;
  margin: 1rem 1.6rem;
  z-index: -5;
  opacity: 0;
  display: none;
  transition: opacity 0.15s ease-in-out;
  color: #FFF;
  padding: 1.4rem;
  min-height: 13.5rem;
  width: 25rem;
}

@media (min-width: 0px) and (max-width: 939px) {
  .subscription {
    margin: 0;
    z-index: 1000001;
    width: 100%;
    bottom: 0;
  }
}

@media (min-width: 0px) and (min-width: 1280px) {
  .subscription {
    bottom: 7%;
  }
}

.subscription.red {
  background-color: #E85151;
}

.subscription.is-active {
  display: block;
  opacity: 1;
  z-index: 1000001;
}

.subscription__title {
  font-family: "Brown", sans-serif;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 8px;
  line-height: 23px;
}

.subscription__text {
  font-size: 18px;
  font-family: "Aldine721", serif;
  line-height: 23px;
  margin-bottom: 16px;
  font-weight: 300;
}

.subscription__label {
  display: flex;
  align-items: center;
  max-width: 93%;
}

.subscription__label span {
  font-family: "Brown", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  flex: 20;
  margin-left: 16px;
}

.subscription__label input[type="checkbox"] {
  margin: 0;
  flex: 1;
  position: relative;
  height: auto;
}

@media (min-width: 0px) and (min-width: 940px) {
  .subscription__label {
    margin-top: 16px;
    margin-bottom: 0;
  }
}

.subscription input {
  width: 85%;
  height: 60px;
  box-shadow: none;
  padding: 1em;
  color: rgba(0, 0, 0, 0.9);
}

@media (min-width: 0px) and (max-width: 939px) {
  .subscription input {
    max-width: 75%;
  }
}

.subscription .btn {
  margin: 0px;
  padding: 1.35em;
  border: none;
  position: absolute;
  outline: none;
  height: 60px;
  width: 60px;
  border-radius: 0;
  background: #000;
}

.subscription .btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.subscription .btn:before {
  content: '';
  width: 1.2em;
  height: 1.2em;
  background: url(images/arrow-right-icon.27c0.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
}

.subscription__close_button {
  background: #FFF;
  position: absolute;
  right: 0;
  border: 0;
  padding: 0;
  margin-right: 10px;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 2.3rem;
}

.subscription__close_button svg {
  transform: translate(0, 3px);
}

@media (min-width: 0px) and (max-width: 939px) {
  .subscription .input-holder {
    max-width: 100%;
  }
}

/* ------------------------
  Slide
------------------------ */

.home-dossiers .swiper-slide {
  border-bottom: 10px solid #ffc43e;
}

/* ------------------------
  Buttons
------------------------ */

.home-dossiers .swiper-button-prev,
.home-dossiers .swiper-button-next {
  background: none;
  text-align: center;
  top: 40%;
  background: #FFF;
  width: 53px;
  height: 53px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding-top: 17px;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.home-dossiers .swiper-button-prev:hover,
.home-dossiers .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.home-dossiers .swiper-button-prev svg,
.home-dossiers .swiper-button-next svg {
  width: 13px;
  height: 15px;
}

.home-dossiers .swiper-button-prev svg *,
.home-dossiers .swiper-button-next svg * {
  fill: #000;
}

@media (min-width: 0px) and (max-width: 459px) {
  .home-dossiers .swiper-button-prev,
  .home-dossiers .swiper-button-next {
    top: 35%;
  }
}

@media (min-width: 0px) and (min-width: 940px) {
  .home-dossiers .swiper-button-prev svg *,
  .home-dossiers .swiper-button-next svg * {
    transition: all 0.3s ease;
    fill: #000;
  }
}

.swiper-button-prev svg {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media (min-width: 0px) and (max-width: 759px) {
  .swiper-button-prev {
    left: 20px;
    padding-left: 0;
    padding-right: 4px;
  }
}

@media (min-width: 0px) and (min-width: 940px) {
  .swiper-button-prev {
    left: 40px;
  }
}

@media (min-width: 0px) and (max-width: 759px) {
  .swiper-button-next {
    right: 20px;
  }
}

@media (min-width: 0px) and (min-width: 940px) {
  .swiper-button-next {
    right: 40px;
  }
}

/* ------------------------
  Pagination
------------------------ */

.home-dossiers > .swiper-pagination {
  bottom: 20px;
}

.home-dossiers .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 1;
}

.home-dossiers .swiper-pagination-bullet-active {
  background: #ffc43e;
}

html,
body {
  font-family: 'Aldine721', serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  color: #000;
  height: 100%;
}

body {
  background: url(images/background-tile.e6d4.jpg) repeat;
  overflow-y: scroll;
}

body.mceForceColors {
  background: #fff;
  color: #000;
  height: 484px;
}

.navmenu {
  z-index: 1;
}

.canvas {
  position: relative;
  min-height: 100%;
  z-index: 2;
  background: url(images/background-tile.e6d4.jpg) repeat;
}

a,
a:hover,
a:active,
a:focus {
  color: inherit;
}

a:focus {
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Brown', sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

h1 {
  font-size: 35px;
  line-height: 42px;
}

h2 {
  font-size: 28px;
  line-height: 34px;
}

h3 {
  font-size: 24px;
  line-height: 28px;
}

h4 {
  font-size: 20px;
  line-height: 24px;
}

h5 {
  font-size: 16px;
  line-height: 22px;
}

h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.text-small {
  font-size: 14px;
  line-height: 18px;
}

.text-large {
  font-size: 20px;
  line-height: 26px;
}

.intro {
  font-family: 'Brown', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}

@media (min-width: 0px) and (max-width: 459px) {
  .intro {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
  }
}

.intro.default-page a {
  text-decoration: underline;
}

.quote {
  font-style: italic;
  font-size: 28px;
  line-height: 34px;
  margin: 20px 0 20px 0;
}

.dropcap:first-letter {
  float: left;
  font-family: 'Brown', sans-serif;
  font-size: 80px;
  line-height: 60px;
  font-weight: 700;
  padding-top: 18px;
  padding-right: 10px;
  margin-bottom: -10px;
  margin-top: -15px;
  margin-left: -5px;
}

.citation {
  font-style: italic;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px dotted #000;
}

.category {
  font-family: 'Brown', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
}

.category a {
  font-size: 16px;
  margin-left: 5px;
}

.category a.news,
.category.news {
  color: #453199;
}

.category a.opinion,
.category.opinion {
  color: #E85151;
}

.category a.science,
.category.science {
  color: #14D03C;
}

.category a.practical,
.category.practical {
  color: #808080;
}

.category a.dossier,
.category.dossier {
  color: #ffc43e;
}

.category a.international,
.category.international {
  color: #ffa589;
}

.category.category-small {
  font-size: 16px;
  line-height: 20px;
}

.name {
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.name.normal {
  font-weight: normal;
}

.timestamp,
.author,
.comment-cnt,
.highlight-cnt {
  font-family: 'Brown', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
}

.timestamp {
  font-family: 'Droid Sans', sans-serif;
}

.comment-cnt {
  font-size: 12px;
}

.timestamp-large,
.author-large {
  font-family: 'Brown', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
}

.timestamp-large img,
.author-large img {
  max-width: 120px;
}

.timestamp-large {
  text-transform: lowercase;
  font-family: 'Brown', sans-serif;
}

.author-large {
  font-weight: 700;
  padding-top: 10px;
}

.author-large img {
  margin: -10px 15px -10px 0;
  float: left;
}

.author-large a {
  text-decoration: none !important;
}

.author-large a:hover {
  text-decoration: underline !important;
}

.dossier-title {
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 55px;
  line-height: 42px;
}

.highlight {
  background: #453199;
  color: #fff;
  padding: 4px 0;
  white-space: pre-wrap;
  box-shadow: 3px 0 0 #453199, -3px 0 0 #453199;
}

.item.opinion .highlight,
.highlight.opinion {
  background: #E85151;
  box-shadow: 3px 0 0 #E85151, -3px 0 0 #E85151;
}

.item.science .highlight,
.highlight.science {
  background: #14D03C;
  box-shadow: 3px 0 0 #14D03C, -3px 0 0 #14D03C;
}

.caption {
  font-family: 'Droid Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
}

.clear {
  clear: both;
}

.dotted-sep {
  width: 100%;
  height: 1px;
  border-top: 1px dotted #000;
  margin-top: 25px;
  padding-bottom: 5px;
}

@media (min-width: 0px) and (max-width: 459px) {
  .embed iframe {
    max-width: 100%;
    height: auto;
  }
}

/* Page config */

#ajax-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -22px;
  z-index: 99999;
  font-size: 50px;
  color: #808080;
  display: none;
}

#nav-main {
  visibility: hidden;
}

/* Icons rotate */

.ion-rotate-45:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ion-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ion-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ion-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}

.ion-rotate {
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Btns */

.btn {
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  background: none;
  color: #000;
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  border-radius: 0;
  border: 1px solid #5a5a64;
  transition: all 0.3s ease;
}

.btn.btn-news {
  color: #fff;
  background: #453199;
  border-color: #453199;
}

.btn.btn-opinion {
  color: #fff;
  background: #E85151;
  border-color: #E85151;
}

.btn.btn-science {
  color: #fff;
  background: #14D03C;
  border-color: #14D03C;
}

.btn.btn-full {
  width: 100%;
}

.btn.focus,
.btn:focus,
.btn:hover,
.btn.active,
.btn:active {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: none;
}

.btn.btn-select:hover {
  background: #b9b9be;
  border-color: #b9b9be;
  color: #000;
}

.btn.btn-select:hover.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

.btn.next svg,
.btn.prev svg {
  width: 9px;
  height: 10px;
}

.btn.prev svg {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.btn.next svg *,
.btn.prev svg * {
  fill: #000;
  transition: all 0.3s ease;
}

.btn.next:hover svg *,
.btn.prev:hover svg * {
  fill: #fff;
}

.btn.btn-select.next:hover svg *,
.btn.btn-select.prev:hover svg * {
  fill: #000;
}

.btn-filled {
  background: #333;
  color: #FFF;
}

.btn-filled:hover {
  background: #FFF;
  color: #333;
}

/* Participate */

.participate {
  display: block;
  font-family: 'Brown', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #b9b9be;
  max-width: 520px;
  /*margin: 0 auto;*/
  transition: all 0.3s ease;
  cursor: pointer;
}

.participate strong {
  color: #5a5a64;
  transition: all 0.3s ease;
}

.participate:hover,
.participate:hover strong {
  color: #000;
  text-decoration: none;
}

.participate svg {
  width: 60px;
  height: 60px;
  margin: 6px 20px 0 0;
  float: left;
}

.participate svg .st0 {
  fill: #FFC43E;
  transition: all 0.3s ease;
}

.participate:hover svg .st0 {
  fill: #000;
}

/* Participate popup */

/*.participate-popup {*/

/*position: fixed;*/

/*top: 0;*/

/*left: 0;*/

/*width: 100%;*/

/*height: 100%;*/

/*background: #000;*/

/*background: rgba(0,0,0,0.7);*/

/*z-index: 999;*/

/*/!*display: none;*!/*/

/*}*/

/*.participate-popup .form {*/

/*background: #fff;*/

/*margin: 150px auto 0 auto;*/

/*width: 100%;*/

/*max-width: 700px;*/

/*padding: 40px 50px;*/

/*}*/

/*.participate-popup .form input,*/

/*.participate-popup .form textarea {*/

/*border-color: #b9b9be;*/

/*}*/

.participate-wrapper .form {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.5s ease;
}

.participate-wrapper .form.active {
  padding-top: 30px;
  max-height: 9999px;
}

/* Lists */

ul {
  padding: 0 0 0 18px;
  margin: 0 0 0 0;
}

ul li {
  padding: 0 0 0 20px;
  margin: 0;
}

ol {
  position: relative;
  padding: 0 0 0 2px;
  margin: 0 0 0 0;
}

ol li {
  padding: 0 0 0 40px;
  margin: 0;
  list-style-type: none;
  counter-increment: ol-counter;
}

ol li:before {
  position: absolute;
  left: 0;
  display: block;
  width: 36px;
  height: auto;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  content: counter(ol-counter) ".";
}

ol.list-large {
  border-top: 1px dotted #000;
}

ol.list-large li {
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  padding: 20px 0 20px 60px;
  margin: 0;
  border-bottom: 1px dotted #000;
  list-style-type: none;
  counter-increment: ol-large-counter;
  transition: all 0.3s ease;
  min-height: 130px;
}

ol.list-large li .cnt {
  font-weight: 400;
}

ol.list-large li:before {
  position: absolute;
  left: 0;
  display: block;
  width: 40px;
  height: 40px;
  padding: 7px 0 0 2px;
  margin: 15px 20px 0 0;
  background: #453199;
  color: #fff;
  border-radius: 50%;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  line-height: 30px;
  text-align: center;
  content: counter(ol-large-counter);
  transition: all 0.3s ease;
}

ol.list-large li.opinion:before {
  background: #E85151;
}

ol.list-large li.science:before {
  background: #14D03C;
}

ol.list-large li .type {
  font-weight: 500;
}

ol.list-large li.news .type,
ol.list-large li.news .cnt {
  color: #453199;
}

ol.list-large li.opinion .type,
ol.list-large li.opinion .cnt {
  color: #E85151;
}

ol.list-large li.science .type,
ol.list-large li.science .cnt {
  color: #14D03C;
}

ol.list-large li .timestamp {
  color: #91919b;
}

ol.list-large li a:hover {
  text-decoration: none;
}

/*ol.list-large li:hover {*/

/*cursor: pointer;*/

/*}*/

ol.list-large li:hover .desc {
  text-decoration: underline;
}

ol.list-large li:hover:before {
  background: #000;
}

/* Input */

input,
textarea {
  width: 100%;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  border: none;
  outline: none;
  border: 1px solid #fff;
}

input {
  line-height: 40px;
  padding: 0 15px;
}

input:focus {
  border: 1px solid #91919b;
}

textarea:focus {
  border: 1px solid #91919b;
}

input.error,
textarea.error {
  border-color: #E85151;
}

textarea {
  line-height: 20px;
  padding: 10px 15px;
}

.select-style {
  display: inline-block;
  overflow: hidden;
  height: 20px;
  margin-bottom: -6px;
  line-height: 20px;
  background: #e1e1e8 url("data:image/png;base64,R0lGODlhDwAUAIABAAAAAP///yH5BAEAAAEALAAAAAAPABQAAAIXjI+py+0Po5wH2HsXzmw//lHiSJZmUAAAOw==") no-repeat 95% 50%;
}

.select-style select {
  height: 20px;
  line-height: 20px;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  padding: 0 25px 0 5px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}

.select-style select:focus {
  outline: none;
}

/* Dropdown */

.dropdown {
  display: inline-block;
  line-height: 20px;
  height: 20px;
  padding: 0 5px;
  border: none;
  cursor: pointer;
  background: #e1e1e8;
  font-family: 'Droid Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
}

.dropdown .icon {
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #CED7DB;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.dropdown ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #CED7DB;
  border-top: none;
  margin: 0 -21px;
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s ease;
  z-index: 1000;
}

.dropdown.active ul {
  max-height: 1000px;
  transition: all 0.5s ease;
}

.dropdown ul li {
  border-top: 1px solid #CED7DB;
  padding: 0 20px;
  background: #fff;
}

.dropdown ul li:hover,
.dropdown:hover .icon,
.dropdown.active .icon {
  background: #EBEEF0;
}

.dropdown .droplabel.active .value,
.dropdown .droplabel.active .valuelabel {
  display: inline;
}

.dropdown .droplabel .value,
.dropdown .droplabel .valuelabel {
  display: none;
}

.dropdown .droplabel.active {
  line-height: 20px;
  padding: 5px 0;
}

/* Tags */

.tag {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  background: #e1e1e8;
  padding: 0 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.tag.dossier {
  background-color: #FFC43E;
}

.tag:hover {
  background: #91919b;
  color: #fff;
  text-decoration: none;
}

/* Navbar */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 67px;
  background: #fff;
  color: #000;
  border-bottom: 7px solid #000;
  z-index: 9999;
  -webkit-transform: translateZ(0);
}

nav .wrapper {
  position: relative;
  z-index: 2000;
  background: #fff;
}

nav .container {
  position: relative;
  width: 100%;
  height: 60px;
  padding-top: 10px;
}

nav ul {
  margin: 0;
}

nav .nav-main {
  display: none;
}

.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main li {
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;
  height: 60px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid #E5E5E5;
}

.nav-main li > ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s linear;
}

.nav-main li > ul > li > a {
  color: #5A5A64;
  border-bottom: none;
}

.nav-main li:hover > ul {
  max-height: 1000px;
}

.nav-main li.news:hover {
  background: #453199;
  color: #fff;
}

.nav-main li.opinion:hover {
  background: #E85151;
  color: #fff;
}

.nav-main li.science:hover {
  background: #14D03C;
  color: #fff;
}

.nav-main li.dossier:hover {
  background: #FFC43E;
  color: #fff;
}

.nav-main li.practical:hover {
  background: #B9B9BE;
  color: #fff;
}

.nav-main li > a,
.nav-main li > span {
  display: block;
  padding: 0 15px;
  border-left: 7px solid #000;
  /*border-bottom: 7px solid #000;*/
}

.nav-main li.news a,
.nav-main li.news span {
  border-color: #453199;
}

.nav-main li.opinion a,
.nav-main li.opinion span {
  border-color: #E85151;
}

.nav-main li.science a,
.nav-main li.science span {
  border-color: #14D03C;
}

.nav-main li.dossier a,
.nav-main li.dossier span {
  border-color: #FFC43E;
}

.nav-main li.practical a,
.nav-main li.practical span {
  border-color: #B9B9BE;
}

.nav-main li > a:hover,
.nav-main li > span:hover {
  text-decoration: none;
}

.nav-main li > a:hover span,
.nav-main li > span:hover span {
  /*border-bottom: 1px solid #000;*/
  padding-bottom: 3px;
}

nav .nav-brand {
  width: 115px;
  height: 30px;
  line-height: 60px;
}

nav .nav-search {
  position: absolute;
  right: 160px;
  top: 0;
  width: 0;
  transition: all 0.5s ease;
  visibility: hidden;
  z-index: 999;
  height: 67px;
  border-bottom: 7px solid #000;
}

nav .nav-search.active {
  width: 100%;
  padding-left: 155px;
  visibility: visible;
}

nav .nav-search input {
  font-family: 'Brown', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  width: 100%;
  border: none;
  height: 60px;
  padding: 0 0 0 20px;
}

nav .nav-search input::-ms-clear {
  display: none;
}

nav .nav-search input:focus {
  outline: 0;
}

nav .nav-search input::-webkit-input-placeholder {
  color: #E1E1E8;
}

nav .nav-search input:-moz-placeholder {
  color: #E1E1E8;
}

nav .nav-search input::-moz-placeholder {
  color: #E1E1E8;
}

nav .nav-search input:-ms-input-placeholder {
  color: #E1E1E8;
}

nav .nav-right {
  position: absolute;
  top: 0;
  right: 60px;
  list-style: none;
}

nav .nav-right li {
  width: 60px;
  height: 60px;
  border-left: 1px solid #E5E5E5;
  text-align: center;
  padding: 15px 0 0 0;
  float: left;
}

nav .nav-right .start-search {
  cursor: pointer;
}

nav .nav-right .start-search svg {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  fill: #808080;
  transition: all 0.3s ease;
}

nav .nav-right li.start-search:hover svg {
  fill: #000;
}

nav .nav-right .start-search .search-deactivate,
nav .nav-right .start-radio .radio-deactivate,
nav .nav-right .start-radio.inactive .radio-activate {
  display: none;
  margin-top: 5px;
}

nav .nav-right .start-search .search-deactivate .ion-close,
nav .nav-right .start-radio .radio-deactivate .ion-minus-circled,
nav .nav-right .start-radio .radio-activate .ion-plus-circled {
  font-size: 20px;
  margin-bottom: 4px;
}

nav .nav-right .start-search.active .search-activate,
nav .nav-right .start-radio.active .radio-activate,
nav .nav-right .start-radio.inactive .radio-activate svg,
nav .nav-right .start-radio .radio-activate .ion-plus-circled {
  display: none;
}

nav .nav-right .start-search.active .search-deactivate,
nav .nav-right .start-radio.active .radio-deactivate,
nav .nav-right .start-radio.inactive .radio-activate,
nav .nav-right .start-radio.inactive .radio-activate .ion-plus-circled {
  display: block;
}

nav .nav-mobile {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  padding: 27px 18px 0 18px;
  border-left: 1px solid #E5E5E5;
}

nav .nav-mobile span,
nav .nav-mobile span:before,
nav .nav-mobile span:after {
  height: 5px;
  width: 24px;
  position: absolute;
  display: block;
  content: '';
  background: #808080;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

nav .nav-mobile span:before {
  top: -8px;
}

nav .nav-mobile span:after {
  bottom: -8px;
}

nav .nav-mobile.active span {
  background-color: transparent;
}

nav .nav-mobile.active span:before,
nav .nav-mobile.active span:after {
  top: 0;
}

nav .nav-mobile.active span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav .nav-mobile.active span:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

nav .nav-mobile:hover span,
nav .nav-mobile:hover span:before,
nav .nav-mobile:hover span:after {
  background: #000;
}

.navmenu {
  background: #fff;
  display: none;
}

.navmenu.in {
  display: block;
}

.navmenu ul {
  list-style: none;
}

/*.mm-menu {*/

/*background: #fff;*/

/*}*/

/*.mm-panel.mm-hasnavbar .mm-navbar {*/

/*display: none;*/

/*}*/

/*.mm-menu > .mm-panel.mm-hasnavbar {*/

/*padding: 0 20px;*/

/*}*/

/*.mm-listview > li > a, .mm-listview > li > span {*/

/*font-family: 'Brown', sans-serif;*/

/*font-size: 18px;*/

/*font-weight: 400;*/

/*line-height: 45px;*/

/*}*/

/* Content wrapper */

section.content-wrapper {
  padding-top: 90px;
}

/* Social */

.social {
  display: inline-block;
}

.social a {
  text-decoration: none !important;
}

.social svg {
  width: 25px;
  height: 25px;
}

.social svg .st0 {
  fill: #000;
}

.social svg .st1 {
  fill: #fff;
}

.social a:hover svg * {
  transition: all 0.2s ease;
}

.social a:hover svg .st0 {
  fill: #5a5a64;
}

.social a.facebook:hover svg .st0 {
  fill: #3b5998;
}

.social a.twitter:hover svg .st0 {
  fill: #55acee;
}

.social a:hover svg .st1 {
  fill: #fff;
}

/* Footer */

footer {
  background: #000;
  color: #fff;
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  padding: 40px 0;
}

footer .brand {
  width: 115px;
  height: 30px;
}

footer .brand svg * {
  fill: #fff;
}

footer .subscribe {
  margin-top: 5px;
}

footer .social {
  margin-top: 20px;
}

footer .social svg .st0 {
  fill: #fff;
}

footer .social svg .st1 {
  fill: #000;
}

footer .social a svg {
  width: 40px;
  height: 40px;
  margin-right: 5px;
}

footer .subscribe input[type="email"] {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border: none;
  float: left;
  color: #000;
  width: 200px;
  font-size: 13px;
}

footer .subscribe .btn {
  width: 40px;
  padding: 1px 0 0 4px;
  display: inline-block;
  background: #91919b;
  color: #fff;
  border: none;
  font-size: 16px;
}

footer .subscribe .btn:hover {
  background: #5a5a64;
}

footer .footermenu {
  margin-top: 40px;
  padding-left: 10px;
  border-left: 1px dotted #fff;
}

footer .footermenu.auteurs {
  max-width: 196px;
  overflow-x: visible;
}

footer .footermenu.auteurs a {
  white-space: nowrap;
}

/* Masonry */

.masonry > div[class^="col-"] {
  display: inline-block;
}

/* Articles */

.article {
  display: block;
  background: #fff;
  border-bottom: 10px solid #453199;
  text-align: center;
}

.article.article-international {
  background: #ffa589;
  color: #000;
}

.article .title {
  font-family: 'Brown', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: #453199;
  margin-bottom: 5px;
}

.article .timestamp,
.article .comment-cnt {
  color: #453199;
}

.article .comment-cnt {
  position: relative;
  padding-left: 30px;
}

.article .comment-cnt:before {
  position: absolute;
  left: 0;
  top: -4px;
  display: block;
  content: url(images/comments-news.4a1b.svg);
  width: 27px;
  height: 17px;
}

.article svg {
  margin-right: -5px;
}

.article.article-fill {
  background: #453199;
  border-bottom: none;
}

.article.article-fill .st0 {
  fill: #FFFFFF !important;
}

.article.article-fill .st1 {
  fill: #453199 !important;
}

.article.article-fill:hover .st1 {
  fill: black !important;
}

.article.article-fill .author,
.article.article-fill .title,
.article.article-fill .timestamp,
.article.article-fill .comment-cnt,
.article.article-fill .text-small {
  color: #fff !important;
}

.article.article-fill .comment-cnt:before {
  content: url(images/comments-news-white.8756.svg);
}

.article {
  padding: 15px 12px 25px 12px;
  margin-top: 20px;
}

.article.article-small {
  padding-bottom: 15px;
}

.article.article-small .st0 {
  fill: #453199;
}

.article.article-small .st1 {
  fill: #FFFFFF;
}

.article.article-small:hover .st0 {
  fill: black;
}

.article.article-horizontal {
  border-bottom-width: 0;
}

.article .image {
  position: relative;
  margin: -15px -12px 0 -12px;
}

.article.article-horizontal .image {
  display: none;
}

.article .title {
  font-size: 22px;
  line-height: 26px;
  padding: 0 10px 0 10px;
}

.article .text-small {
  padding-top: 13px;
}

.article .author {
  position: relative;
  text-align: center;
  color: #fff;
  margin: -25px 0 10px 0;
}

.article.article-horizontal .author {
  margin-top: 0;
}

.article .author img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 5px auto;
  border-radius: 50%;
  border: 5px solid #fff;
}

.article .image .title {
  position: relative;
  padding: 20px 20px 0 20px;
  margin: -20px 25px 15px 25px;
  background: #fff;
}

.article .live {
  background: #000;
  color: #fff;
  height: 40px;
  line-height: 40px;
  margin: -15px -12px 15px -12px;
  padding: 2px 15px 0 15px;
  text-align: left;
}

.article .live .live-title {
  padding-left: 20px;
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.article .live .update {
  color: #fff !important;
}

.article .live .live-title:before {
  content: ' ';
  width: 12px;
  height: 12px;
  position: absolute;
  margin: 12px 0 0 -20px;
  border-radius: 50%;
  background: #fff;
}

.article.article-small .title {
  font-size: 18px;
  line-height: 22px;
}

.article.article-small.article-title .title {
  font-size: 22px;
  line-height: 26px;
}

.article.article-small .image .title {
  padding: 10px 10px 0 10px;
  margin-bottom: 5px;
}

.article.article-fill .image .title {
  background: #453199;
  color: #fff;
}

.article.article-fill.article-dossier .image .title {
  background: #ffc43e;
}

.article.article-opinion.article-fill,
.article.article-opinion.article-fill .image .title {
  background: #E85151;
}

.article.article-science.article-fill,
.article.article-science.article-fill .image .title {
  background: #14D03C;
}

.article.article-international {
  border-color: #000;
}

.article.article-fill .author img {
  border-color: #453199;
}

.article.article-fill.article-opinion .author img,
.article.article-opinion {
  border-color: #E85151;
}

.article.article-fill.article-science .author img,
.article.article-science {
  border-color: #14D03C;
}

.article.article-fill.article-dossier .author img,
.article.article-dossier {
  border-color: #ffc43e;
}

.article-dossier.article-fill {
  background: #ffc43e;
  color: #FFF;
}

.article-dossier:not(.article-fill):hover .title {
  text-decoration: underline;
}

.article-dossier:not(.article-fill) .desc {
  font-family: "Droid Sans", sans-serif;
  font-size: 14px;
}

.article-dossier:not(.article-fill) .desc p {
  min-height: 32px;
}

.article-dossier:not(.article-fill).article-small .title {
  font-size: 20px;
  line-height: 20px;
  margin-left: 25px;
  margin-right: 25px;
  min-height: 50px;
  margin-top: -30px;
}

.article-dossier:not(.article-fill).article-small .desc {
  color: #ffc43e;
}

.article.article-international .title,
.article.article-international .author,
.article.article-international .timestamp,
.article.article-international .comment-cnt {
  color: #000;
}

.article.article-opinion .title,
.article.article-opinion .author,
.article.article-opinion .timestamp,
.article.article-opinion .comment-cnt {
  color: #E85151;
}

.article.article-science .title,
.article.article-science .author,
.article.article-science .timestamp,
.article.article-science .comment-cnt {
  color: #14D03C;
}

.article.article-dossier .title,
.article.article-dossier .author,
.article.article-dossier .timestamp,
.article.article-dossier .comment-cnt {
  color: #000;
}

.article.article-international .comment-cnt:before {
  content: url(images/comments-international.b77e.svg);
}

.article.article-opinion .comment-cnt:before {
  left: 0;
  top: -8px;
  content: url(images/comments-opinion.57e7.svg);
  width: 23px;
  height: 25px;
}

.article.article-opinion.article-fill .comment-cnt:before {
  content: url(images/comments-opinion-white.7d50.svg);
}

.article.article-science .comment-cnt:before {
  left: 0;
  top: -10px;
  content: url(images/comments-science.16ce.svg);
  width: 26px;
  height: 25px;
}

.article.article-science.article-fill .comment-cnt:before {
  content: url(images/comments-science-white.fcb3.svg);
}

.article,
.article .title,
.article .author,
.article .author img,
.article .timestamp,
.article .comment-cnt,
.article.article-fill .author img,
.article.article-horizontal .title,
.article.article-science .comment-cnt:before {
  transition: all 0.2s ease;
}

.article:hover,
.article:hover .title,
.article:hover .author,
.article:hover .author img,
.article:hover .timestamp,
.article:hover .comment-cnt,
.article.article-fill:hover .author img,
.article.article-horizontal:hover .title {
  color: #000;
  border-color: #000;
  cursor: pointer;
  text-decoration: none;
}

.article.article-horizontal:hover .author img {
  border-color: #fff;
}

.article.article-fill:hover,
.article.article-fill:hover .image .title {
  background: #000;
}

.article.article-international:hover {
  background: #bf7c67;
}

.article:hover:not(.article-fill) .comment-cnt:before {
  content: url(images/comments-news-black.b77e.svg);
}

.article:hover.article-opinion:not(.article-fill) .comment-cnt:before {
  content: url(images/comments-opinion-black.9e74.svg);
}

.article:hover.article-science:not(.article-fill) .comment-cnt:before {
  content: url(images/comments-science-black.6040.svg);
}

.article.article-related {
  position: relative;
  width: 100%;
  padding-top: 66.6666667%;
  padding-bottom: 0;
}

.article.article-related .image {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.article.article-related .title {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  transform: translateY(-50%);
  width: 100%;
}

.article.article-related .image .title {
  background: none;
  margin: 0;
}

.article-read {
  font-family: "Brown", sans-serif;
  background-color: #F2F3F5;
  margin-bottom: 20px;
}

.article-read .article-link {
  text-decoration: none;
}

.article-read .article-link:hover .article-title {
  text-decoration: underline;
}

@media (min-width: 0px) and (max-width: 459px) {
  .article-read .article-link {
    display: flex;
    flex-direction: column;
  }
}

.article-read .article-image {
  float: left;
  width: auto;
  height: 128px;
}

@media (min-width: 0px) and (max-width: 459px) {
  .article-read .article-image {
    width: 100%;
    height: auto;
  }
}

.article-read .article-type {
  font-size: 17px;
  line-height: 17px;
  text-transform: lowercase;
  margin: 20px 100px 0 280px;
  font-weight: 500;
}

@media (min-width: 0px) and (max-width: 459px) {
  .article-read .article-type {
    margin-left: 0;
  }
}

.article-read .article-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 21px;
  margin: 5px 200px 30px 280px;
}

@media (min-width: 0px) and (max-width: 459px) {
  .article-read .article-title {
    margin-left: 0;
    margin-right: 0;
  }
}

.article-read .article-news {
  color: #453199;
}

.article-read .article-news.live {
  color: #ffc43e;
}

.article-read .article-science {
  color: #14D03C;
}

.article-read .article-opinion {
  color: #E85151;
}

/* News item */

.item {
  background: #fff;
  padding: 30px 20px 50px 20px;
  margin: -20px -15px 60px -15px;
}

.item iframe {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .item.mobile-top {
    padding-top: 0;
    margin-top: -23px;
  }
}

.item a {
  text-decoration: underline;
}

.item .meta {
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.item .meta .metalabel {
  width: 70px;
  float: left;
  margin-bottom: 10px;
}

.metadata {
  padding-left: 70px;
  margin-bottom: 10px;
}

.item .topimage {
  margin: 0 -20px 60px -20px;
}

.item .image.topimage.visible-xs {
  margin-bottom: 20px;
}

.info-link {
  color: #666666;
  text-decoration: underline;
  /*cursor: pointer;*/
}

.info-popup {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #929292;
  padding: 30px 0 40px 0;
  display: none;
}

.info-popup.active {
  display: block;
}

.item .highlight:hover,
.item .highlight.hover {
  box-shadow: 3px 0 0 #000, -3px 0 0 #000;
}

.item .highlight-cnt {
  content: '';
  display: block;
  width: 65px;
  height: 40px;
  background: #453199;
  position: absolute;
  right: -85px;
  margin-top: -60px;
  padding-left: 42px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}

.item.opinion .highlight-cnt {
  background: #E85151;
}

.item.science .highlight-cnt {
  background: #14D03C;
}

.item .load-comments {
  transition: all 0.3s ease;
}

.item .load-comments:hover,
.item .load-comments.hover {
  cursor: pointer;
  background: #000;
}

.item .highlight-cnt:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 15px;
  bottom: -8px;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #453199;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.item.opinion .highlight-cnt:after {
  border-color: transparent transparent transparent #E85151;
}

.item.science .highlight-cnt:after {
  border-color: transparent transparent transparent #14D03C;
}

.item .load-comments:hover:after,
.item .load-comments.hover:after {
  border-color: transparent transparent transparent #000;
}

.item .highlight-cnt:before {
  position: absolute;
  left: 10px;
  top: 5px;
  display: block;
  content: url(images/comments-news-white.8756.svg);
  width: 27px;
  height: 17px;
}

.item.opinion .highlight-cnt:before {
  left: 14px;
  top: 5px;
  content: url(images/comments-opinion-white.7d50.svg);
  width: 23px;
  height: 25px;
}

.item.science .highlight-cnt:before {
  left: 10px;
  top: 5px;
  content: url(images/comments-science-white.fcb3.svg);
  width: 26px;
  height: 25px;
}

.item .caption {
  color: #666666;
}

.item .image {
  position: relative;
}

.image.topimage .credit {
  max-width: 215px;
}

.item .image .credit {
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-family: 'Droid Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  text-shadow: 0 0 8px #000;
}

.item .quote-left {
  display: none;
}

.item .text-center {
  text-align: center;
}

.item .text-center img {
  margin: 0 auto;
}

.item.live .timestamp {
  color: #453199;
}

.item.live.opinion .timestamp {
  color: #E85151;
}

.item.live.science .timestamp {
  color: #14D03C;
}

.item.live .timestamp .date {
  color: #000;
}

.item.live .longtext .social svg {
  width: 15px;
  height: 15px;
  margin-bottom: -3px;
}

.item.live .message {
  border-bottom: 1px dotted #000;
  margin-bottom: 35px;
  padding-bottom: 35px;
}

.message > .twitter,
.message.twitter {
  background: #f7f7f7;
  padding: 20px;
  font-family: 'Brown', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.message > .twitter > a,
.message.twitter > a {
  color: #55acee;
}

.message > .twitter .title,
.message.twitter .title {
  color: #55acee;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.message > .twitter > img,
.message.twitter > img {
  margin-top: 20px;
}

.item.live .message > .twitter {
  border: none;
}

/* Magazines */

.magazines .timestamp {
  color: #666666;
  margin-bottom: 30px;
}

.magazines a:hover {
  text-decoration: none;
}

.magazines a:hover h3 {
  text-decoration: underline;
}

.magazines > div > img,
.magazines > div > a > img {
  margin-bottom: 20px;
}

/* Author group */

.author-group,
.author-profile {
  background: #fff;
  padding: 25px;
  margin: 40px -15px 0 -15px;
  overflow: hidden;
}

.author-profile {
  margin-top: -20px;
}

.author-group > .row > div > a > img {
  margin: 40px 0 5px 0;
}

.author-profile .subtitle {
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  font-weight: 500;
}

.author-profile .social {
  margin-top: 5px;
}

.author-profile .mail {
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.author-profile .mail span {
  vertical-align: top;
}

.author-profile .mail:hover span {
  /*color: #808080;*/
  text-decoration: underline;
  transition: all 0.3s ease;
}

/* Events */

.event .meta {
  padding: 5px 0 10px 0;
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #5a5a64;
}

.event .meta strong {
  color: #000;
}

/* Search */

.search .timestamp {
  color: #91919b;
}

.filter .btn {
  margin-bottom: 5px;
}

.search-results .search a:hover h3 {
  text-decoration: underline;
}

/* Comments */

.data_holder .item {
  margin-bottom: 100px;
  padding-bottom: 0px;
}

@media (max-width: 767px) {
  .data_holder .item {
    margin-bottom: 20px;
  }
}

.comments-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: all 1s ease;
  margin: 0px -20px 30px -20px;
  padding: 30px 20px 0 20px;
}

.comments-wrapper.comments-science .hide_reaction .btn {
  background-color: #14d03c !important;
}

.comments-wrapper.comments-news .hide_reaction .btn {
  background-color: #453199;
}

.comments-wrapper input,
.comments-wrapper textarea {
  border: 1px solid #e1e1e8;
  height: 50px;
  line-height: 50px;
  transition: height, .5s, ease;
}

.comments-wrapper textarea {
  line-height: 27px;
  resize: none;
  margin-bottom: 14px;
}

.comments-wrapper .sub_comments {
  height: 0px;
  overflow: hidden;
  transition: height, .5s, ease;
}

.comments-wrapper .btn {
  border: 0px;
  font-size: 17px;
  font-weight: 700;
  padding: 0px 25px;
  height: 50px;
}

.comments-wrapper .place-reaction {
  display: none;
}

.comments-wrapper .comments {
  max-height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: opacity, .5s, ease;
}

.comments-wrapper .comments .timestamp {
  color: #666666;
}

.comments-wrapper .comments .actions {
  margin-top: 23px;
}

.comments-wrapper .comments .actions .reply {
  margin-left: 6px;
}

.comments-wrapper .comments .actions .reply .ion-reply:before {
  content: "\F21E";
}

.comments-wrapper .comments .actions .report .ion-flag:before {
  content: "\F279";
}

.comments-wrapper .hide_reaction {
  position: absolute;
  width: 100%;
  display: none;
}

.comments-wrapper .hide_reaction .btn {
  width: 200px;
  position: absolute;
  right: -190px;
}

.comments-wrapper .hide_reaction.fixed {
  position: fixed;
  top: 100px;
  width: 686px;
}

.comments-wrapper.active .hide_reaction {
  display: block;
}

.comments-wrapper.active .commenttexteara {
  height: 200px;
}

.comments-wrapper.active .sub_comments {
  height: 50px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .comments-wrapper.active .sub_comments {
    height: 120px;
  }
}

.comments-wrapper.active .place-reaction {
  display: block;
}

.comments-wrapper.active .show-reaction {
  display: none;
}

.comments-wrapper.active .comments {
  position: relative;
  overflow: visible;
  max-height: 100%;
  opacity: 1;
}

.comments-wrapper .comments-reply textarea {
  height: 200px;
}

.comments-wrapper .comments-reply .show-reaction {
  display: none;
}

.comments-wrapper .comments-reply .place-reaction {
  display: block;
}

.comments-wrapper .comments-reply .hide_reaction {
  display: none;
}

.comments {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  line-height: 22px;
}

.comments .timestamp {
  color: #91919b;
}

.item .actions,
.comments-news .actions {
  color: #453199;
}

.item-opinion .actions,
.comments-opinion .actions {
  color: #E85151;
}

.item-science .actions,
.comments-science .actions {
  color: #14D03C;
}

.comments .actions > span {
  cursor: pointer;
}

.comments .actions > a > span,
.comments .actions > span > span {
  font-size: 18px;
}

.comments-reply {
  padding: 30px 0 0;
}

/* Dossiers slider */

.dossiers-slide,
.dossiers-overview {
  position: relative;
  width: 100%;
}

.dossiers-slide.top {
  padding-top: 48.936170212%;
}

.dossiers-overview {
  padding-top: 66.666666667%;
}

.dossiers-slide.top {
  margin-top: -25px;
}

.dossiers-overview img,
.dossiers-slide img {
  position: absolute;
  top: 0;
  left: 0;
}

.dossiers-overview .overlay,
.dossiers-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 196, 62, 0.65);
  z-index: 0;
}

.dossiers-overview .title,
.dossiers-slide .title {
  position: absolute;
  max-width: 75%;
  left: 2%;
  bottom: 28%;
  padding: 0 40px 20px;
  text-align: center;
  font-family: 'Brown', sans-serif;
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  z-index: 1;
}

@media (min-width: 0px) and (max-width: 939px) {
  .dossiers-overview .title,
  .dossiers-slide .title {
    padding-bottom: 0;
    bottom: 22%;
  }
}

@media (min-width: 0px) and (max-width: 459px) {
  .dossiers-overview .title,
  .dossiers-slide .title {
    bottom: 20%;
  }
}

.dossiers-overview .title--no-subtitle,
.dossiers-slide .title--no-subtitle {
  bottom: 15%;
}

@media (min-width: 0px) and (max-width: 459px) {
  .dossiers-overview .title--no-subtitle,
  .dossiers-slide .title--no-subtitle {
    bottom: 12%;
  }
}

.dossiers-slide .title {
  background: white;
}

@media (min-width: 0px) and (max-width: 459px) {
  .dossiers-slide .title {
    left: 0;
    padding: 15px 30px 15px 20px;
    font-size: 20px;
    line-height: 20px;
    max-width: 90%;
  }
}

a:hover .dossiers-overview .title,
.dossiers-slide a:hover .title {
  text-decoration: underline;
}

.dossiers-detail .title {
  bottom: 0;
  left: 0;
  padding-left: 8.3% !important;
}

@media (min-width: 0px) and (max-width: 459px) {
  .dossiers-detail .title {
    bottom: -1%;
  }
}

.dossiers-slide .articles-count {
  position: absolute;
  width: 100%;
  background: white;
  left: 0;
  bottom: 10%;
  font-family: "Droid Sans", sans-serif;
  text-align: left;
  padding: 15px 60px 40px;
  color: #ffc43e;
}

.dossiers-slide .articles-count svg {
  margin-right: 0;
  transform: translateY(3px);
}

@media (min-width: 0px) and (max-width: 939px) {
  .dossiers-slide .articles-count {
    bottom: 15%;
  }
}

@media (min-width: 0px) and (max-width: 459px) {
  .dossiers-slide .articles-count {
    padding: 0;
    padding-left: 20px;
    z-index: 1;
  }
}

.dossiers-slide .articles-count--no-subtitle {
  bottom: 0%;
}

.dossiers-detail .title {
  display: inline-block;
  font-size: 35px;
  font-family: "Brown", sans-serif;
  font-weight: bold;
  line-height: 34px;
  background: white;
  margin-top: -50px;
  position: absolute;
  left: 15px;
  padding: 30px 30px 0 8.3%;
}

@media (min-width: 0px) and (max-width: 759px) {
  .dossiers-detail .title {
    bottom: 12%;
    padding-top: 20px;
    font-size: 30px;
  }
}

@media (min-width: 0px) and (min-width: 940px) {
  .dossiers-detail .title {
    bottom: -1%;
  }
}

/* Timeline */

.timeline {
  background: #fff;
  padding: 25px;
  margin: 0 -15px 0 -15px;
}

.timeline .body {
  display: table;
  min-height: 100px;
}

.timeline .body .left-side {
  position: relative;
  float: none;
  width: 20px;
  display: table-cell;
  border-right: 1px solid #868686;
}

.timeline .body .left-side .end {
  position: absolute;
  right: -1px;
  bottom: 0;
  background: url(images/timeline.94e0.png) no-repeat right bottom;
  width: 1px;
  height: 81px;
}

.timeline .body .right-side {
  float: none;
  display: table-cell;
  padding-left: 40px;
}

.timeline .body .right-side .timestamp {
  color: #91919b;
}

.timeline .message {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #000;
}

.timeline .message.twitter {
  background: #fff;
  padding: 0 0 20px 0;
}

.timeline .message a:hover h3 {
  text-decoration: underline;
}

.timeline-pointer {
  position: absolute;
  width: 25px;
  left: -25px;
  margin-top: 10px;
  border-top: 1px dotted #453199;
}

.timeline-pointer.opinion {
  border-color: #E85151;
}

.timeline-pointer.science {
  border-color: #14D03C;
}

.timeline-pointer.dossier {
  border-color: #FFC43E;
}

.timeline-pointer.twitter {
  border-color: #55acee;
}

.timeline-pointer:before {
  position: absolute;
  width: 15px;
  height: 15px;
  top: -8px;
  left: -9px;
  display: block;
  content: ' ';
  border-radius: 50%;
  background: #453199;
}

.timeline-pointer.opinion:before {
  background: #E85151;
}

.timeline-pointer.science:before {
  background: #14D03C;
}

.timeline-pointer.dossier:before {
  background: #FFC43E;
}

.timeline-pointer.twitter:before {
  background: #55acee;
}

/* Selected comments */

.selected-comments .balloon {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 25px;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  box-shadow: 0px 0px 6px #B2B2B2;
}

.selected-comments .balloon.balloon-small {
  font-size: 14px;
  line-height: 20px;
}

.selected-comments .balloon:before {
  position: absolute;
  left: 45px;
  bottom: -19px;
  width: 20px;
  height: 40px;
  content: '';
  display: block;
  background: #fff;
  border-radius: 2px;
  /*border-style: solid;*/
  /*border-width: 19px 0 19px 45px;*/
  /*border-color: transparent transparent transparent #fff;*/
  box-shadow: 2px 2px 2px rgba(178, 178, 178, 0.5);
  /*z-index: -1;*/
  -webkit-transform: rotate(90deg) skew(25deg);
  -moz-transform: rotate(90deg) skew(25deg);
  -ms-transform: rotate(90deg) skew(25deg);
  -o-transform: rotate(90deg) skew(25deg);
  transform: rotate(90deg) skew(25deg);
}

.selected-comments .about {
  display: block;
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #453199;
  padding: 35px 0 0 60px;
  cursor: pointer;
}

.selected-comments .about.opinion {
  color: #E85151;
}

.selected-comments .about.science {
  color: #14D03C;
}

.selected-comments .about .name {
  color: #000;
  font-weight: normal;
  font-size: 16px;
}

.selected-comments .about:hover {
  text-decoration: none;
}

.selected-comments .about:hover .link {
  text-decoration: underline;
}

.selected-comments .about:before {
  position: absolute;
  left: 30px;
  margin-top: 6px;
  display: block;
  content: url(images/comments-news.4a1b.svg);
  width: 27px;
  height: 17px;
}

.selected-comments .about.opinion:before {
  content: url(images/comments-opinion.57e7.svg);
  width: 23px;
  height: 25px;
}

.selected-comments .about.science:before {
  content: url(images/comments-science.16ce.svg);
  width: 26px;
  height: 25px;
}

/* Soundcloud */

#soundcloud {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}

#soundcloud .player {
  margin: 150px auto 0 auto;
  width: 100%;
  max-width: 500px;
  height: 300px;
}

/* Notification */

.notification {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 63px;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: none;
}

.notification.hide {
  opacity: 0;
}

.notification-btn {
  cursor: pointer;
}

.notification .icon {
  display: block;
  float: left;
  width: 60px;
  height: 60px;
  padding: 12px;
  margin-right: 25px;
}

.notification .icon svg {
  width: 35px;
  height: 35px;
}

.notification .icon svg .st0 {
  fill: #FCC33F;
}

.notification .icon.red svg .st0 {
  fill: #E85151;
}

.notification .icon.red {
  cursor: pointer;
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */

/* Extra Small Devices, Phones */

/* Small Devices, Tablets */

@media only screen and (min-width: 768px) {
  /* Btn */

  .participate.event svg {
    margin-top: -6px;
  }

  .author-large {
    /* padding-top: 20px; */
    padding-bottom: 30px;
    display: inline-block;
  }

  .author-large img {
    margin-top: -20px;
  }

  /* Lists */

  ol.list-large li {
    padding-left: 80px;
  }

  ol.list-large li:before {
    width: 60px;
    height: 60px;
    font-size: 35px;
    line-height: 60px;
    line-height: 45px;
  }

  /* Navbar */

  .container,
  nav .container {
    width: 768px;
  }

  nav .container {
    margin: 0 auto;
  }

  nav .nav-main {
    display: block;
  }

  .nav-main {
    position: absolute;
    right: 175px;
    top: 0;
    display: block;
  }

  .nav-main li {
    font-size: 14px;
    height: 67px;
    float: left;
    border-left: 1px solid #E5E5E5;
    border-bottom: none;
  }

  .nav-main li > a,
  .nav-main li > span {
    display: block;
    padding: 0 15px;
    border-left: none;
    border-bottom: 7px solid #000;
  }

  .nav-main li > ul {
    position: absolute;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s linear, padding 1s linear;
    box-shadow: 0px 2px 10px #B2B2B2;
  }

  .nav-main li:hover > ul {
    padding-bottom: 10px;
    max-height: 1000px;
    transition: max-height 0.7s linear, padding 0.4s linear;
  }

  .nav-main li > ul > li {
    font-size: 14px;
    line-height: 18px;
    border: none;
    width: 100%;
    height: auto;
    padding-top: 12px;
    padding-left: 10px;
    cursor: default;
  }

  .nav-main li > ul > li:before {
    display: block;
    content: url(images/arrow.b2bb.svg);
    width: 4px;
    height: 5px;
    margin: 0 0 -4px 3px;
  }

  .nav-main li > ul > li > a:hover {
    text-decoration: underline;
  }

  nav .nav-right {
    right: 15px;
    border-right: 1px solid #E5E5E5;
  }

  nav .nav-right li {
    font-family: 'Droid Sans', sans-serif;
    font-size: 10px;
    color: #808080;
    line-height: 15px;
    padding-top: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 80px;
    height: 67px;
  }

  nav .nav-right li:hover {
    color: #000;
  }

  nav .nav-right .start-radio {
    cursor: pointer;
  }

  nav .nav-right .start-radio svg {
    width: 20px;
    height: 20px;
    margin-top: 5px;
  }

  nav .nav-right .start-radio svg * {
    fill: #808080;
    transition: all 0.2s ease;
  }

  nav .nav-right li.start-radio:hover svg * {
    fill: #000;
  }

  nav .nav-mobile {
    display: none;
  }

  nav .nav-search {
    right: 175px;
  }

  nav .nav-search.active {
    width: 449px;
    padding-left: 0;
  }

  /* Content wrapper */

  section.content-wrapper {
    width: 768px;
  }

  /* Articles */

  .article .title {
    font-size: 30px;
    line-height: 36px;
  }

  .article .author,
  .article.article-horizontal .author {
    margin-top: -35px;
  }

  .article .author img {
    width: 70px;
    height: 70px;
  }

  .article.article-horizontal .image {
    display: block;
    min-height: 45px;
  }

  .article .image .title {
    margin-top: -40px;
    min-height: 40px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .article.article-related .image .title {
    padding: 0 10px;
    color: #fff;
    text-shadow: 0 0 8px #000;
  }

  /* Footer */

  footer .info {
    float: left;
  }

  footer .subscribe input[type="email"] {
    width: 140px;
  }

  footer .footermenu {
    height: 200px;
    margin-top: 0;
    margin-left: 30px;
    float: left;
  }

  /* News item */

  .item {
    padding-left: 0;
    padding-right: 0;
  }

  .item-related {
    margin: 0 -30px;
    position: relative;
  }

  .item .topimage {
    margin: 0;
  }

  .item .longtext {
    padding: 20px 20px 0 20px;
    margin: -40px 0 0 -20px;
    background: #fff;
  }

  .info-popup {
    position: absolute;
    display: block;
    padding: 0;
    right: -170px;
    width: 150px;
    margin-top: -18px;
  }

  .item .quote-left {
    display: block;
    float: left;
    width: 220px;
    padding: 0 15px 60px 0;
    margin-left: -25px;
  }

  .item .quote-left.right {
    float: right;
    padding-right: 0;
    padding-left: 15px;
    margin-right: -25px;
    margin-left: 0;
  }

  .item .inline-image {
    width: 50%;
    float: left;
    padding: 0 40px 30px 0;
  }

  .item .inline-image.right {
    float: right;
    padding-right: 0;
    padding-left: 40px;
  }

  .item .comments-wrapper {
    margin-left: -70px;
    margin-right: -200px;
    padding-left: 70px;
    padding-right: 200px;
  }

  /* Author group */

  .author-group {
    padding: 25px 65px;
  }

  .author-profile {
    padding: 70px 45px 50px 45px;
  }

  .dossiers-slide.dossiers-overview .title {
    font-size: 55px;
    line-height: 60px;
    margin-top: -45px;
    padding: 26px 80px 0 43px;
  }

  .dossiers-slide .title {
    font-size: 20px;
    line-height: 24px;
    padding: 0 20px;
    margin-top: -10px;
    bottom: 25%;
    padding-top: 15px;
    left: 5%;
  }

  .dossiers-slide .title--no-subtitle {
    bottom: 15%;
  }

  .dossiers-overview.large .title {
    font-size: 28px;
    line-height: 34px;
    padding: 0 50px;
  }

  .dossiers-overview .desc,
  .dossiers-slide .desc {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px 20px 20px 60px;
    text-align: left;
    background: #FFF;
  }

  .dossiers-overview .desc {
    padding: 25px 50px 0 50px;
  }

  .dossiers-slide.top .title {
    margin-top: -85px;
  }

  .dossiers-overview .desc,
  .dossiers-slide.top .desc {
    margin-top: -50px;
    font-family: 'Brown', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    vertical-align: middle;
  }

  .dossiers-overview .desc {
    margin-top: -25px;
  }

  .dossiers-overview .desc > span,
  .dossiers-slide.top .desc > span {
    font-size: 24px;
  }

  /* Timeline */

  .timeline .body .left-side {
    width: 40px;
  }

  .timeline .body .right-side {
    padding-left: 70px;
  }

  .timeline-pointer {
    width: 49px;
    left: -54px;
  }

  /* Participate */

  .participate-wrapper.participate-dossier {
    margin-left: -15px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {
  /* Navbar */

  nav {
    border-bottom-width: 10px;
  }

  .container,
  nav .container {
    width: 970px;
  }

  .nav-main {
    right: 215px;
  }

  .nav-main li {
    font-size: 18px;
  }

  .nav-main li > a,
  .nav-main li > span {
    padding: 0 19px;
    border-bottom-width: 10px;
    line-height: 57px;
  }

  nav .nav-search {
    right: 215px;
    border-bottom: 10px solid #000;
  }

  nav .nav-search.active {
    width: 573px;
  }

  nav .nav-search input {
    line-height: 57px;
    height: 57px;
  }

  nav .nav-right li {
    width: 100px;
  }

  .nav-main li > ul > li {
    padding-left: 15px;
  }

  .nav-main li > ul > li:before {
    margin-left: 8px;
  }

  .nav-main li > ul > li > a {
    line-height: 18px;
  }

  /* Content wrapper */

  section.content-wrapper {
    width: 970px;
  }

  /* Articles */

  .article .title {
    font-size: 35px;
    line-height: 42px;
  }

  .article .image .title {
    margin-top: -55px;
    min-height: 55px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .article-dossier .intro {
    font-family: "Aldine721", serif;
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
  }

  .article-dossier .desc {
    font-size: 14px;
    font-weight: 300;
    font-family: "Droid Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 11px 0;
  }

  .article-dossier .desc span {
    font-size: 20px;
  }

  .article-small.article-dossier .title {
    font-size: 20px;
    line-height: 24px;
    margin-left: 25px;
    margin-right: 25px;
  }

  .article-small.article-dossier .margin-auto {
    margin: auto !important;
  }

  .article-small.article-dossier.article-title .title {
    font-size: 20px;
    line-height: 20px;
  }

  .article-small.article-dossier.article-fill {
    color: #FFF;
  }

  .article-small.article-dossier.article-fill:hover {
    color: #FFF;
  }

  .article-small.article-dossier.article-fill .title {
    margin: -30px 25px 5px 25px;
    background: #ffc43e;
    min-height: 0;
  }

  .article.article-horizontal {
    padding: 20px 20px 10px 20px;
    border-bottom-width: 10px;
    text-align: left;
  }

  .article.article-horizontal .title {
    font-size: 24px;
    line-height: 28px;
    padding: 0 85px 0 0;
  }

  .article.article-horizontal .image {
    min-height: 0;
    margin: -20px 20px 35px -20px;
    float: left;
  }

  .article.article-horizontal .image img {
    width: 225px;
    height: auto;
  }

  .article.article-horizontal .author {
    float: right;
    width: 70px;
    margin: -10px 0 0 0;
  }

  /* Footer */

  footer .subscribe input[type="email"] {
    width: 200px;
  }

  footer .footermenu {
    margin-left: 70px;
    padding-left: 20px;
    margin-top: 40px;
  }

  footer .footermenu.first {
    margin-left: 0;
  }

  footer .info {
    width: 100%;
  }

  /* News item */

  .item .longtext {
    margin-top: -65px;
  }

  .info-popup {
    right: -210px;
    width: 190px;
  }

  .item .quote-left {
    margin-left: -40px;
  }

  .item .quote-left.right {
    margin-left: 0;
    margin-right: -40px;
  }

  .item .comments-wrapper {
    margin-left: -85px;
    margin-right: -251px;
    padding-left: 85px;
    padding-right: 251px;
  }

  /* Author group */

  .author-profile {
    padding-left: 65px;
    padding-right: 65px;
  }

  .dossiers-intro {
    position: relative;
    width: 67%;
    padding-top: 20px;
  }

  /* Timeline */

  .timeline .body .left-side {
    width: 50px;
  }

  .timeline .body .right-side {
    padding-left: 90px;
  }

  .timeline-pointer {
    width: 69px;
    left: -74px;
  }
}

/* Resets */

.margin-auto {
  margin: auto !important;
}

/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {
  footer .info {
    max-width: 28%;
  }
}

/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */

/* Medium Devices, Desktops */

/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
  .article.article-related {
    background: none;
    border-width: 0;
    text-align: left;
    padding: 15px 0;
    margin-top: 0;
    border-top: 1px dotted #000;
  }

  div:last-child > .article.article-related {
    border-bottom: 1px dotted #000;
  }

  .article.article-related .title {
    position: relative;
    top: 0;
    font-size: 14px;
    line-height: 18px;
    padding: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .article.article-related .image {
    position: relative;
    background-image: none !important;
  }

  .article.article-related .image img {
    display: none;
  }

  .author-profile h1,
  .author-profile .subtitle {
    text-align: center;
  }

  .author-profile .profile-img {
    margin: 0 auto;
  }
}

/* Extra Small Devices, Phones */

/* Custom, iPhone Retina */

.message img.left {
  max-width: 50%;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.article.article-small.international-home {
  position: relative;
  padding-bottom: 37px;
  overflow-x: hidden;
}

.article.article-small.international-home,
.article.article-small.international-home .title {
  font-family: 'Brown';
  font-size: 14px;
  line-height: 18px;
}

@media only screen and (min-width: 992px) {
  .article.article-small.international-home,
  .article.article-small.international-home .title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .article.article-small.international-home,
  .article.article-small.international-home .title {
    font-size: 20px;
    line-height: 24px;
  }
}

.article.article-small.international-home .title {
  font-weight: 300;
  padding: 0;
}

.article.article-small.international-home .left,
.article.article-small.international-home .right {
  position: absolute;
  width: 100%;
  left: 0;
  white-space: nowrap;
}

.article.article-small.international-home .left span,
.article.article-small.international-home .left b,
.article.article-small.international-home .right span,
.article.article-small.international-home .right b {
  display: inline-block;
}

.article.article-small.international-home .left {
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.article.article-small.international-home .left .url {
  visibility: hidden;
}

.article.article-small.international-home .right .goto {
  -webkit-transition: max-width 0.4s ease;
  -moz-transition: max-width 0.4s ease;
  -ms-transition: max-width 0.4s ease;
  -o-transition: max-width 0.4s ease;
  transition: max-width 0.4s ease;
  visibility: hidden;
  max-width: 0;
}

.article.article-small.international-home:hover {
  background: #ffa589;
}

.article.article-small.international-home:hover .right .goto {
  max-width: 50px;
}

.article.article-small.international-home:hover .left {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.sidenote,
.sidenote-image {
  right: 40px;
  max-width: 190px;
  width: 100%;
  position: absolute;
  z-index: 9998;
}

.sidenote-image img {
  max-width: 190px;
}

.sidenote {
  top: 106px;
  background-color: #e1e1e8;
  padding: 18px;
}

.sidenote a {
  text-decoration: none;
}

.sidenote .title {
  font-size: 12px;
  font-family: 'Droid Sans', sans-serif;
}

.sidenote .readmore {
  font-family: 'Brown', sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.content-wrapper + .content-wrapper {
  margin-top: -120px;
}

.content-wrapper .loader {
  margin: 0 auto;
}

.content-wrapper .loader img {
  top: 40px;
  width: 100%;
  position: absolute;
  max-width: 32px;
  text-align: center;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.play-button {
  max-width: 50px;
}

.kort-holder {
  background: #000;
  max-height: 250px;
  color: #fff;
  overflow: auto;
  margin-top: 20px;
  padding: 0 20px 20px 20px;
}

.kort-holder a {
  font-family: 'Brown', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 5px;
}

.kort-holder .kort-item {
  padding: 15px 0 0;
}

.kort-holder .kort-item .timestamp {
  margin-top: 5px;
}

.kort-holder .kort-item + .kort-item {
  border-top: 1px dotted white;
  margin-top: 15px;
}

.intro-time {
  font-weight: 300;
}

.kort-detail {
  margin: 0 -15px;
  background: #fff;
  padding: 35px 0;
}

.kort-detail .kort-subtitle {
  margin-bottom: 20px;
  font-weight: 500;
}

.kort-detail .kort-title {
  margin-bottom: 10px;
}

.kort-detail .kort-date {
  margin-bottom: 40px;
}

.kort-detail a {
  text-decoration: underline;
}

.sidenote-text {
  display: inline-block;
  border-style: solid;
  border-width: 1px;
  padding: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .sidenote-text {
    width: 300px;
    float: right;
    margin: 0 -16.66667% 20px 20px;
  }
}

.sidenote-text .title {
  font-family: 'Brown', sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
}

.sidenote-text.smaller {
  font-size: 14px;
  line-height: 18px;
}

.sidenote-text.smaller .title {
  font-size: 16px;
  line-height: 20px;
}

.sidenote-text.large {
  font-size: 16px;
  line-height: 22px;
}

.sidenote-text.large .title {
  font-size: 20px;
  line-height: 24px;
}

.sidenote-text.white {
  border-color: #e1e1e8;
}

.sidenote-text.purple {
  border-color: #453199;
}

.sidenote-text.white.fill {
  background: #e1e1e8;
}

.sidenote-text.purple.fill {
  background: #453199;
  color: #fff;
}

.sidenote-text.purple.invert {
  background: #fff;
  color: #453199;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.overlay .overlay_box {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 500px;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  text-align: center;
}

.nodisplay {
  display: none;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.1s ease;
}


/*# sourceMappingURL=app.css.map*/