.yle-livefeed {
  height: 100%;
  min-height: 100%;
  margin: 0;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
  font-size: var(--body-font-size);
  box-sizing: border-box;
}
.yle-livefeed *,
.yle-livefeed *::before,
.yle-livefeed *::after {
  box-sizing: inherit;
}
.yle-livefeed__close-button {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 8px;
  right: 8px;
  height: 32px;
  width: 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background-color: var(--text-color);
}
.yle-livefeed__close-button:hover {
  background-color: var(--text-color-placeholder);
}
.yle-livefeed__close-button .close-image {
  stroke: var(--background-color);
}
.yle-livefeed__messages {
  background-color: var(--background-color);
  background-image: var(--background-image);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  color: var(--message-text-color);
  flex: 1 1 auto;
  padding-top: 0.45rem;
  font-family: "Open Sans", sans-serif;
  transform: translateZ(0);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.yle-livefeed__messages__container {
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex: 1;
  position: relative;
}
.yle-livefeed__messages__loading-indicator {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.yle-livefeed__messages__loading-indicator--active {
  transition: opacity 0.25s linear;
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.yle-livefeed__messages__loading-indicator__spinner {
  display: inline-block;
  background-color: #009cb5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  margin-top: 20px;
}
.yle-livefeed__messages__message {
  background-color: var(--message-background-color);
  line-height: 1.5em;
  padding: 16px 16px 16px;
  margin: 0;
  overflow-wrap: break-word;
  display: block;
  flex: 1;
  position: relative;
  z-index: 2;
  border-radius: 16px 16px 16px 0;
}
.yle-livefeed__messages__message__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.yle-livefeed__messages__message__header__user {
  font-size: var(--user-font-size);
  font-weight: bold;
}
.yle-livefeed__messages__message__header__avatar {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  vertical-align: middle;
  margin-right: 8px;
  background-color: var(--avatar-background-color);
}
.yle-livefeed__messages__message__header__time {
  font-size: var(--time-font-size);
  color: var(--time-color);
  font-weight: var(--time-font-weight);
  white-space: nowrap;
}
.yle-livefeed__messages__message__content__buttons {
  float: right;
  display: flex;
}
.yle-livefeed__messages__message__content__clear {
  clear: both;
}
.yle-livefeed__messages__message__likes {
  font-size: var(--likes-font-size);
  color: var(--likes-color);
  font-weight: var(--likes-font-weight);
  white-space: nowrap;
  display: inline-flex;
}
.yle-livefeed__messages__message__likes__button {
  margin: 0;
  padding: 0 0 1px 0;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  outline: none;
  cursor: pointer;
  min-height: 21px;
}
.yle-livefeed__messages__message__likes__value {
  display: inline;
  margin-left: 0.2em;
}
.yle-livefeed__messages__message__quote {
  font-style: italic;
  color: var(--quote-color);
  border-left: 2px solid var(--quote-border-color);
  padding-left: 16px;
  margin-bottom: 8px;
  width: 100%;
}
.yle-livefeed__messages__message__quote__user {
  font-weight: bold;
  font-size: var(--quote-user-font-size);
  line-height: 18px;
}
.yle-livefeed__messages__message__quote__content {
  font-weight: normal;
  font-size: var(--quote-body-font-size);
  transition: 250ms ease-in-out;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 18px;
  cursor: pointer;
}
.yle-livefeed__messages__message__quote__content--contracted {
  text-overflow: ellipsis;
  cursor: pointer;
}
.yle-livefeed__messages__message__reply-button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  display: inline-flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.8em 0 0;
}
.yle-livefeed__messages__message__reply-button .reply-image {
  height: 18px;
  fill: var(--reply-button-color);
}
.yle-livefeed__messages__message .thumb-icon {
  stroke: var(--reply-button-color);
}
.yle-livefeed__messages__message .thumb-icon--active {
  stroke: none;
  fill: var(--reply-button-color);
}
.yle-livefeed__messages__message--moderator {
  background: var(--moderator-background-color);
  color: var(--moderator-text-color);
  font-weight: var(--moderator-font-weight);
}
.yle-livefeed__messages__message--moderator .yle-livefeed__messages__message__quote {
  border-left-color: var(--moderator-quote-border-color);
  color: var(--moderator-quote-color);
}
.yle-livefeed__messages__message--moderator .yle-livefeed__messages__message__header__time {
  color: var(--moderator-text-color);
}
.yle-livefeed__messages__message--moderator .yle-livefeed__messages__message__likes__value {
  color: var(--moderator-text-color);
}
.yle-livefeed__messages__message--moderator .thumb-icon {
  stroke: var(--moderator-text-color);
}
.yle-livefeed__messages__message--moderator .thumb-icon--active {
  stroke: none;
  fill: var(--moderator-text-color);
}
.yle-livefeed__messages__message--moderator a {
  color: var(--moderator-text-color);
}
.yle-livefeed__messages__message--moderator .yle-livefeed__messages__message__reply-button {
  background-color: var(--moderator-background-color);
}
.yle-livefeed__messages__message--moderator .yle-livefeed__messages__message__reply-button .reply-image {
  fill: var(--moderator-text-color);
}
.yle-livefeed__messages__message--guest {
  background: var(--guest-background-color);
  color: var(--guest-text-color);
}
.yle-livefeed__messages__message--guest .yle-livefeed__messages__message__quote {
  border-left-color: var(--guest-quote-border-color);
  color: var(--guest-quote-color);
}
.yle-livefeed__messages__message--guest .yle-livefeed__messages__message__header__time {
  color: var(--guest-text-color);
}
.yle-livefeed__messages__message--guest .yle-livefeed__messages__message__likes__value {
  color: var(--guest-text-color);
}
.yle-livefeed__messages__message--guest .thumb-icon {
  stroke: var(--guest-text-color);
}
.yle-livefeed__messages__message--guest .thumb-icon--active {
  stroke: none;
  fill: var(--guest-text-color);
}
.yle-livefeed__messages__message--guest a {
  color: var(--guest-text-color);
}
.yle-livefeed__messages__message--guest .yle-livefeed__messages__message__reply-button {
  background-color: var(--guest-background-color);
}
.yle-livefeed__messages__message--guest .yle-livefeed__messages__message__reply-button .reply-image {
  fill: var(--guest-text-color);
}
.yle-livefeed__messages__message--self {
  border-bottom: solid 6px #07ca84;
  border-radius: 16px 16px 0 16px;
}
@media (hover: hover) {
  .yle-livefeed__messages__message:hover .yle-livefeed__messages__message__reply-button {
    visibility: visible;
  }
}
.yle-livefeed__messages__reply-container {
  position: relative;
}
.yle-livefeed__messages__reply-container__reply-indicator {
  height: 48px;
  line-height: 48px;
  width: 48px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  /* stylelint-disable-next-line no-descending-specificity */
}
.yle-livefeed__messages__reply-container__reply-indicator .reply-image {
  fill: var(--reply-indicator-color);
  flex: 0 0 32px;
}
.yle-livefeed__messages__reply-container--initial .yle-livefeed__messages__message {
  transition: left 0.2s ease-in-out;
}
.yle-livefeed__messages__reply-container--initial .yle-livefeed__messages__reply-container__reply-indicator {
  transition: opacity 0.2s linear;
}
.yle-livefeed__messages__reply-container--quoting .yle-livefeed__messages__reply-container__reply-indicator {
  transition: opacity 0.2s linear;
}
.yle-livefeed__messages > .yle-livefeed__messages__message,
.yle-livefeed__messages > .yle-livefeed__messages__reply-container {
  margin: 8px 16px 0;
}
.yle-livefeed__messages > .yle-livefeed__messages__message:last-child,
.yle-livefeed__messages > .yle-livefeed__messages__reply-container:last-child {
  margin-bottom: 8px;
}
.yle-livefeed__messages__header {
  text-align: center;
  color: #ffffff;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.yle-livefeed__messages__empty {
  color: #ffffff;
  flex-grow: 1;
  display: flex;
  background-color: var(--background-color);
  align-items: center;
  justify-content: center;
}
.yle-livefeed__messages__more__indicator {
  background-color: #000000;
  border-radius: 9999px;
  border: none;
  bottom: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  font-family: inherit;
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 40px;
  margin: auto;
  opacity: 0;
  outline: none;
  padding: 0 16px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  z-index: -1;
}
.yle-livefeed__messages__more__indicator__active {
  transition: 0.25s opacity;
  opacity: 1;
  z-index: 3;
}
.yle-livefeed__quoted-message {
  padding: 0 16px 4px 16px;
  margin: 8px 0 0 16px;
  border-left: 2px solid var(--quote-border-color);
  background-color: var(--background-color);
  color: var(--text-color);
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  grid-template-rows: 20px 20px;
}
.yle-livefeed__quoted-message__user {
  font-size: 12px;
  font-weight: bold;
}
.yle-livefeed__quoted-message__content {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.yle-livefeed__quoted-message__close {
  cursor: pointer;
  border: 0;
  width: 32px;
  height: 32px;
  grid-row-end: span 2;
  background-color: transparent;
  border-radius: 50%;
  margin: -4px -8px 0 0;
  display: flex;
  align-items: center;
  align-content: center;
}
.yle-livefeed__quoted-message__close .close-image {
  width: 20px;
  color: var(--text-color);
}
.yle-livefeed__quoted-message__close:hover {
  background-color: rgba(0, 0, 0, 0.09);
}
.yle-livefeed__status {
  font-style: italic;
  font-size: 14px;
  line-height: 40px;
  vertical-align: top;
  color: var(--text-color);
  background-color: var(--background-color);
  padding: 0;
  display: inline-flex;
  white-space: nowrap;
}
.yle-livefeed__status__button {
  display: block;
  border: none;
  padding: 0;
  text-align: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  flex: 0 0 auto;
  margin: 0 0 0 10px;
}
.yle-livefeed__status__message {
  color: var(--text-color);
  flex: 0 1 100%;
  line-height: 48px;
}
.yle-livefeed__status__message--best {
  line-height: 24px;
}
.yle-livefeed__statuses__status__indicator {
  background-color: #009cb5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  color: #ffffff;
  font-weight: bold;
  float: right;
  margin: 4px 14px 4px 0;
  padding: 5px;
  vertical-align: top;
}
.yle-livefeed__statuses__status__indicator__ready {
  background-color: #00809c;
  padding: 0;
}
.yle-livefeed__statuses__status__indicator__ready--disabled {
  background-color: #5ddbe9;
}
.yle-livefeed__statuses__status__indicator__moderating {
  background-color: #00637d;
}
.yle-livefeed__statuses__status__indicator__accepted {
  background-color: var(--feedback-success-color);
}
.yle-livefeed__statuses__status__indicator__failed,
.yle-livefeed__statuses__status__indicator__rejected {
  background-color: var(--feedback-error-color);
}
.yle-livefeed__reaction {
  position: absolute;
  width: 40px;
  height: 40px;
}
.yle-livefeed.onboarding .yle-livefeed__messages__container,
.yle-livefeed.onboarding .yle-livefeed__statuses,
.yle-livefeed.onboarding .yle-livefeed__tabs {
  filter: blur(1px);
}
.yle-livefeed__input__textarea {
  color: var(--text-color);
  background-color: var(--input-background-color);
  font-family: "Open Sans", sans-serif;
  border: none;
  line-height: 26px;
  border-radius: 24px;
  vertical-align: top;
  font-size: 16px;
  width: 100%;
  padding: 11px 50px 11px 16px;
  resize: none;
  caret-color: #009cb5;
  overflow-x: hidden;
}
.yle-livefeed__input__textarea__container {
  position: relative;
  display: inline-block;
  width: calc(100% - 130px);
  transition: width 0.3s ease-in-out;
}
.yle-livefeed__input__textarea__container--full-width {
  width: calc(100% - 61px);
}
.yle-livefeed__input__textarea__length {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  color: var(--text-color-placeholder);
  font-style: normal;
}
.yle-livefeed__input__textarea__cover {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.yle-livefeed__input__textarea::placeholder {
  margin-left: 16px;
}
.yle-livefeed__input__textarea:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px var(--text-color);
  background-color: var(--background-color);
}
.yle-livefeed__input__button {
  border: none;
  padding: 0;
  margin-left: 5px;
  margin-top: 4px;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  vertical-align: top;
  text-align: center;
}
.yle-livefeed__input__button:last-child {
  margin-right: 14px;
}
.yle-livefeed__input__button__image {
  width: 40px;
  height: 40px;
  transition: all 0.15s ease-in-out;
}
.yle-livefeed__input__button--clicked .yle-livefeed__input__button__image {
  margin-top: 4px;
  width: 32px;
  height: 32px;
}
.yle-livefeed__input__send-button {
  background-color: transparent;
}
.yle-livefeed__input__send-button .send-image {
  fill: var(--text-color);
}
.yle-livefeed__input__send-button:last-child {
  margin-right: 0;
}
.yle-livefeed__fixed-footer--2 .yle-livefeed__input__textarea__container {
  width: calc(100% - 106px);
}
.yle-livefeed__fixed-footer--2 .yle-livefeed__input__textarea__container--full-width {
  width: calc(100% - 61px);
}
.yle-livefeed__fixed-footer--1 .yle-livefeed__input__textarea__container,
.yle-livefeed__fixed-footer--0 .yle-livefeed__input__textarea__container {
  width: calc(100% - 61px);
}
.yle-livefeed__scrollable-footer .yle-livefeed__input__textarea__container {
  width: calc(100% - 80px);
}
.yle-livefeed__scrollable-footer .yle-livefeed__input__textarea__container--full-width {
  width: calc(100% - 61px);
}
.yle-livefeed__scrollable-footer .yle-livefeed__input__button {
  margin-left: 8px;
}
.modal {
  width: 100%;
  background-color: var(--modal-background-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  z-index: 11;
}
.modal__close-button {
  border: 0;
  display: flex;
  align-items: center;
  align-content: center;
  background-color: transparent;
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  padding: 8px;
  border-radius: 50%;
}
.modal__close-button .close-image {
  color: var(--text-color);
  padding: 0;
  margin: 0;
}
.modal__close-button:hover {
  background-color: var(--action-secondary-variant-color);
}
.modal__backdrop {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: var(--modal-background-overlay-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 16px;
}
.blocked-modal__header {
  margin: 0;
}
.poll-modal {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.poll-modal__header {
  font-size: 24px;
  margin: 0 0 8px;
  flex: 0 0 auto;
}
.poll-modal__subheader {
  font-size: 20px;
  margin: 0;
  font-weight: normal;
}
.poll-modal--results {
  justify-content: center;
}
.poll-modal--results .poll-modal__header {
  margin-top: 20px;
}
.poll-modal__options {
  display: inline-flex;
  flex-direction: column;
  align-self: center;
}
.poll-modal__option {
  flex: 0 1 auto;
  border: 2px solid var(--text-color);
  border-radius: 9999px;
  margin-top: 18px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background-color: transparent;
  color: var(--text-color);
  display: block;
  width: 100%;
  padding: 12px 32px;
}
.poll-modal__option:hover {
  background-color: var(--action-secondary-variant-color);
}
.poll-modal--slider {
  justify-content: center;
  padding: 48px 24px;
}
.poll-modal--slider .poll-modal__header {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 36px;
}
.poll-modal__slider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.poll-modal__slider__texts {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
}
.poll-modal__slider__container {
  max-width: 360px;
}
.poll-modal__slider__submit {
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.poll-modal__slider__handle {
  position: absolute;
  font-size: 48px;
  height: 48px;
  width: 48px;
  margin-left: -24px;
  margin-top: -30px;
  cursor: grab;
  touch-action: pan-x;
}
.poll-modal__slider__handle--disabled {
  cursor: not-allowed;
  touch-action: none;
}
.poll-result {
  margin: 8px 0;
  font-size: 16px;
}
.poll-result__text {
  display: flex;
  justify-content: space-between;
}
.poll-result__bar {
  width: 100%;
  height: 16px;
  border-radius: 400px;
  background-color: var(--action-secondary-variant-color);
  margin: 2px 0;
  overflow: hidden;
}
.poll-result__bar--value {
  height: 100%;
  background-color: var(--text-color);
  border-radius: 400px 0 0 400px;
}
.yle-livefeed__footer {
  background-color: var(--footer-background-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  height: 90px;
  padding: 0 16px;
}
.yle-livefeed__footer__login {
  line-height: inherit;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--background-color);
  flex: 0 1 auto;
  background-color: var(--text-color);
  height: 48px;
  padding: 8px 30px;
  border-radius: 24px;
  border: 0;
  margin: 0;
  font-weight: bold;
  cursor: pointer;
}
.yle-livefeed__footer__login:hover,
.yle-livefeed__footer__login:active {
  background-color: var(--action-primary-variant-color);
}
.yle-livefeed__footer .blocked-image {
  flex: 0 0 auto;
  margin-left: 0;
}
.yle-livefeed__footer__text {
  flex: 0 1 100%;
}
.yle-livefeed__footer__info-button {
  display: block;
  border: none;
  padding: 0;
  text-align: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  flex: 0 0 auto;
  background-color: #d8d9db;
  color: #000000;
  font-weight: bold;
  font-size: 16px;
}
.yle-livefeed__scrollable-footer {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: var(--footer-background-color);
  min-height: 50px;
}
.yle-livefeed__scrollable-footer__contents {
  white-space: nowrap;
  padding: 8px 0 8px 16px;
  position: relative;
  transition: left 0.3s ease-out;
}
.yle-livefeed__scrollable-footer__contents--panning {
  transition-property: none;
}
.yle-livefeed__fixed-footer {
  background-color: var(--footer-background-color);
  min-height: 50px;
  padding: 8px 0 8px 16px;
  overflow: hidden;
  white-space: nowrap;
}
.yle-livefeed__fixed-footer--2 .yle-livefeed__input__textarea__container {
  width: calc(100% - 106px);
}
.yle-livefeed__fixed-footer--2 .yle-livefeed__input__textarea__container--full-width {
  width: calc(100% - 61px);
}
.yle-livefeed__fixed-footer--1 .yle-livefeed__input__textarea__container,
.yle-livefeed__fixed-footer--0 .yle-livefeed__input__textarea__container {
  width: calc(100% - 61px);
}
@keyframes status-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes status-spinner-animation {
  0% {
    stroke-dasharray: 1px, 250px;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 175px, 250px;
    stroke-dashoffset: -20px;
  }
  100% {
    stroke-dasharray: 125px, 250px;
    stroke-dashoffset: -250px;
  }
}
.animated-spinner {
  stroke-dasharray: 80px, 250px;
  stroke-dashoffset: 0;
  animation: status-spinner-rotate 1.5s linear infinite, status-spinner-animation 1.5s ease-in-out infinite;
}
.message-status-icon {
  fill: none;
  width: 30px;
  height: 30px;
  stroke: #ffffff;
}
.messages-loading-indicator,
.most-liked-messages-loading-indicator {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
}
.loading-indicator {
  width: 30px;
  height: 30px;
  stroke: var(--text-color);
}
.anonymous-image {
  fill: #ffffff;
  width: 24px;
  height: 24px;
}
.thumb-icon {
  width: 16px;
  height: 16px;
  margin: 0 0 0 8px;
}
.send-image {
  width: 26px;
  height: 22px;
  margin-top: 9px;
  fill: #ffffff;
}
.blocked-image {
  width: 24px;
  height: 24px;
  margin: 8px;
  display: block;
}
.timer-image {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.devices-image {
  width: 202px;
  height: 78px;
  fill: #ffffff;
}
.check-image {
  width: 64px;
  height: 64px;
  fill: #06b173;
}
.close-image {
  width: 24px;
  color: #ffffff;
}
.selected-image {
  margin: 0 11px;
}
.star-image {
  width: 16px;
  height: 17px;
  margin-left: 5px;
  vertical-align: text-top;
}
#yle-livefeed .yle-livefeed__tabs {
  flex: 0 0 40px;
  display: flex;
  justify-content: space-between;
  background-color: var(--background-color);
}
#yle-livefeed .yle-livefeed__tabs__close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--background-color);
  border: none;
  border-radius: 999px;
  margin-right: 12px;
}
#yle-livefeed .yle-livefeed__tabs__close-button:hover {
  background-color: var(--background-color-variant);
}
#yle-livefeed .yle-livefeed__tabs__close-button .close-image {
  stroke: var(--text-color);
}
#yle-livefeed .yle-livefeed__tabs__select {
  margin-left: 12px;
  outline: none;
}
#yle-livefeed .yle-livefeed__tabs__select__dropdown-indicator {
  color: var(--text-color);
  transition: transform 100ms;
}
#yle-livefeed .yle-livefeed__tabs__select__control {
  border: none;
  height: 40px;
  box-sizing: border-box;
  box-shadow: none;
  padding: 0 2px;
  transition: all 100ms, padding 0s, border 0s;
  background-color: var(--background-color);
}
#yle-livefeed .yle-livefeed__tabs__select__control:hover {
  background-color: var(--action-secondary-variant-color);
  border-radius: 9999px;
  cursor: pointer;
}
#yle-livefeed .yle-livefeed__tabs__select__control--menu-is-open .yle-livefeed__tabs__select__dropdown-indicator {
  transform: scaleY(-1);
}
#yle-livefeed .yle-livefeed__tabs__select__control--is-focused:not(.yle-livefeed__tabs__select__control--menu-is-open) {
  border: 2px solid var(--text-color);
  border-radius: 9999px;
  padding: 0;
}
#yle-livefeed .yle-livefeed__tabs__select__indicator-separator {
  display: none;
}
#yle-livefeed .yle-livefeed__tabs__select__value-container {
  padding-right: 0;
  padding-left: 16px;
  outline: none;
}
#yle-livefeed .yle-livefeed__tabs__select__single-value {
  font-weight: bold;
  color: var(--text-color);
}
#yle-livefeed .yle-livefeed__tabs__select__menu {
  background-color: var(--background-color-variant);
  border-radius: 8px;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.15));
  padding: 8px;
  width: auto;
  min-width: 219px;
  max-width: 260px;
  margin-top: 0;
}
#yle-livefeed .yle-livefeed__tabs__select__option {
  color: var(--text-color);
  background-color: var(--background-color-variant);
  fill: var(--feedback-highlight-color);
  font-size: 16px;
  line-height: 48px;
  padding: 0 8px 0 40px;
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
}
#yle-livefeed .yle-livefeed__tabs__select__option:hover {
  background-color: var(--action-secondary-variant-color);
  border-radius: 4px;
}
#yle-livefeed .yle-livefeed__tabs__select__option--is-focused {
  border-radius: 4px;
  border: 2px solid var(--text-color);
  line-height: 44px;
  padding: 0 6px 0 38px;
}
#yle-livefeed .yle-livefeed__tabs__select__option--is-focused .selected-image {
  margin-left: 9px;
}
#yle-livefeed .yle-livefeed__tabs__select__option--is-selected {
  padding-left: 0;
}
.yle-livefeed__messages--most-liked .yle-livefeed__info {
  text-align: center;
  color: #131415;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 1px;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message {
  background-color: #ffffff;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__content {
  font-weight: normal;
  color: #131415;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__likes {
  font-size: 20px;
  font-weight: bold;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__likes__value {
  color: #131415;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__likes .thumb-icon {
  height: 16px;
  width: 16px;
  fill: #131415;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__time {
  color: #949697;
  font-weight: normal;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__user {
  color: #131415;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__star {
  height: 64px;
  width: 64px;
  position: absolute;
  opacity: 0;
  animation: twinkle-animation 3s ease-out infinite;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__star--1 {
  top: -32px;
  left: -32px;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__star--2 {
  top: -32px;
  right: 5%;
  animation-delay: 1s;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__star--3 {
  bottom: -32px;
  left: 30%;
  animation-delay: 2s;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message__quote {
  color: #4a4f54;
  border-left: 3px solid #009cb5;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__message:first-child {
  border: 3px solid #ff8f33;
  background: linear-gradient(#ffffff, #ffffff 75%, #ff8f33);
  position: relative;
}
.yle-livefeed__messages--most-liked .yle-livefeed__messages__loading-indicator__spinner {
  display: block;
  margin: 20px auto;
}
@keyframes twinkle-animation {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0);
  }
  15% {
    opacity: 1;
    transform: rotate(90deg) scale(1);
  }
  60% {
    opacity: 0;
    transform: rotate(270deg) scale(0);
  }
  100% {
    opacity: 0;
    transform: rotate(270deg) scale(0);
  }
}
.yle-livefeed__vote-banner {
  background-color: #f5517a;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  position: relative;
  transition: height 0.2s ease-out;
  overflow: hidden;
  height: 100px;
}
.yle-livefeed__vote-banner--closed {
  height: 0;
}
.yle-livefeed__vote-banner__vote-text {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  margin: 10px 0;
}
.yle-livefeed__vote-banner__vote-button {
  color: #ffffff;
  background-color: transparent;
  height: 45px;
  margin: 0 20px 12px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #ffffff;
}
.yle-livefeed__vote-banner__close-button {
  position: absolute;
  top: 0;
  right: 8px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  padding: 0;
  text-align: center;
  color: #ffffff;
  background-color: transparent;
  border: none;
}
.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}
.rc-slider-handle {
  position: absolute;
  margin-left: -7px;
  margin-top: -5px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  touch-action: pan-x;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.rc-slider-handle:focus {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
  outline: none;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
  background-color: transparent; /* custom modification */
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  margin-bottom: -7px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}

.yle-livefeed--theme-abitreenit-dark,
.yle-livefeed--theme-abitreenit-light {
  --footer-background-color: #ffffff;
  --text-color: #000000;
  --text-color-placeholder: #4a4f54;
  --action-primary-variant-color: rgba(0, 0, 0, 0.7);
  --action-secondary-variant-color: rgba(0, 0, 0, 0.09);
  --body-font-size: 14px;
  --user-font-size: 14px;
  --time-font-size: 14px;
  --likes-font-size: 14px;
  --quote-user-font-size: 12px;
  --quote-body-font-size: 12px;
  --time-font-weight: normal;
  --likes-font-weight: bold;
  --message-text-color: #000000;
  --time-color: #222222;
  --likes-color: #222222;
  --quote-color: #444;
  --quote-border-color: #d6817d;
  --reply-button-color: #000000;
  --reply-indicator-color: #d6817d;
  --background-color: #000000;
  --background-color-variant: #f8f9fa;
  --input-background-color: #f1f2f4;
  --message-background-color: #ffffff;
  --avatar-background-color: #d6817d;
  --moderator-background-color: #d6817d;
  --moderator-text-color: #ffffff;
  --moderator-quote-border-color: #ffffff;
  --moderator-quote-color: #ebebeb;
  --moderator-font-weight: bold;
  --guest-background-color: #d6817d;
  --guest-text-color: #ffffff;
  --guest-quote-border-color: #ffffff;
  --guest-quote-color: #ebebeb;
  --guest-font-weight: bold;
  --feedback-error-color: #d10b3d;
  --feedback-success-color: #06b173;
  --feedback-highlight-color: #009cb5;
  --modal-background-color: #ffffff;
  --modal-background-overlay-color: rgba(0, 0, 0, 0.41);
}
.yle-livefeed--theme-chat-light {
  --footer-background-color: #ffffff;
  --text-color: #131415;
  --text-color-placeholder: #4a4f54;
  --body-font-size: 14px;
  --user-font-size: 14px;
  --time-font-size: 14px;
  --likes-font-size: 14px;
  --quote-user-font-size: 12px;
  --quote-body-font-size: 12px;
  --action-primary-variant-color: rgba(0, 0, 0, 0.7);
  --action-secondary-variant-color: rgba(0, 0, 0, 0.09);
  --time-font-weight: normal;
  --likes-font-weight: normal;
  --message-text-color: #131415;
  --time-color: #131415;
  --likes-color: #131415;
  --quote-color: #131415;
  --quote-border-color: rgba(0, 0, 0, 0.29);
  --reply-button-color: #131415;
  --reply-indicator-color: #131415;
  --background-color: #ffffff;
  --background-color-variant: #f8f9fa;
  --input-background-color: #f1f2f4;
  --message-background-color: #f1f2f4;
  --avatar-background-color: #00b4c8;
  --moderator-background-color: #c7f4fa;
  --moderator-text-color: #131415;
  --moderator-quote-border-color: #00b4c8;
  --moderator-quote-color: #131415;
  --moderator-font-weight: normal;
  --guest-background-color: #c7f4fa;
  --guest-text-color: #131415;
  --guest-quote-border-color: #00b4c8;
  --guest-quote-color: #131415;
  --guest-font-weight: normal;
  --self-quote-border-color: #07ca84;
  --self-background-color: #a1f9dd;
  --feedback-error-color: #d10b3d;
  --feedback-success-color: #06b173;
  --feedback-highlight-color: #009cb5;
  --modal-background-color: #ffffff;
  --modal-background-overlay-color: rgba(0, 0, 0, 0.41);
}
.yle-livefeed--theme-chat-light .yle-livefeed__messages__message--self {
  border-bottom: none;
  background-color: var(--self-background-color);
}
.yle-livefeed--theme-chat-light .yle-livefeed__messages__message__quote {
  font-style: normal;
}
.yle-livefeed--theme-chat-light .yle-livefeed__messages__message--self .yle-livefeed__messages__message__quote {
  font-style: normal;
  border-left: 2px solid var(--self-quote-border-color);
}
.yle-livefeed--theme-chat-dark {
  --footer-background-color: #ffffff;
  --text-color: #131415;
  --text-color-placeholder: #4a4f54;
  --body-font-size: 14px;
  --user-font-size: 14px;
  --time-font-size: 14px;
  --likes-font-size: 14px;
  --quote-user-font-size: 12px;
  --quote-body-font-size: 12px;
  --action-primary-variant-color: rgba(0, 0, 0, 0.7);
  --action-secondary-variant-color: rgba(0, 0, 0, 0.09);
  --time-font-weight: normal;
  --likes-font-weight: normal;
  --message-text-color: #131415;
  --time-color: #131415;
  --likes-color: #131415;
  --quote-color: #131415;
  --quote-border-color: rgba(0, 0, 0, 0.29);
  --reply-button-color: #131415;
  --reply-indicator-color: #131415;
  --background-color: #ffffff;
  --background-color-variant: #f8f9fa;
  --input-background-color: #f1f2f4;
  --message-background-color: #f1f2f4;
  --moderator-background-color: #c7f4fa;
  --moderator-text-color: #131415;
  --moderator-quote-border-color: #00b4c8;
  --moderator-quote-color: #131415;
  --moderator-font-weight: normal;
  --guest-background-color: #c7f4fa;
  --guest-text-color: #131415;
  --guest-quote-color: #131415;
  --guest-font-weight: normal;
  --self-quote-border-color: #07ca84;
  --self-background-color: #a1f9dd;
  --feedback-error-color: #d10b3d;
  --feedback-highlight-color: #009cb5;
  --modal-background-color: #ffffff;
  --modal-background-overlay-color: rgba(0, 0, 0, 0.41);
  --footer-background-color: #131415;
  --text-color: #f8f9fa;
  --text-color-placeholder: #949697;
  --message-text-color: #f8f9fa;
  --action-primary-variant-color: rgba(255, 255, 255, 0.71);
  --action-secondary-variant-color: rgba(255, 255, 255, 0.17);
  --time-color: #f8f9fa;
  --likes-color: #f8f9fa;
  --quote-color: #f8f9fa;
  --quote-border-color: rgba(255, 255, 255, 0.3);
  --reply-button-color: #f8f9fa;
  --reply-indicator-color: #f8f9fa;
  --background-color: #131415;
  --background-color-variant: #1f2123;
  --input-background-color: #292b2d;
  --message-background-color: #292b2d;
  --avatar-background-color: #00b4c8;
  --moderator-background-color: #00637d;
  --moderator-text-color: #f8f9fa;
  --moderator-quote-border-color: #009cb5;
  --moderator-quote-color: #f8f9fa;
  --guest-background-color: #00637d;
  --guest-text-color: #f8f9fa;
  --guest-quote-border-color: #00b4c8;
  --guest-quote-color: #f8f9fa;
  --self-quote-border-color: #06b173;
  --self-background-color: #046240;
  --feedback-error-color: #f5517a;
  --feedback-success-color: #06b173;
  --feedback-highlight-color: #29ccde;
  --modal-background-color: #323639;
  --modal-background-overlay-color: rgba(0, 0, 0, 0.83);
}
.yle-livefeed--theme-chat-dark .yle-livefeed__messages__message--self {
  border-bottom: none;
  background-color: var(--self-background-color);
}
.yle-livefeed--theme-chat-dark .yle-livefeed__messages__message__quote {
  font-style: normal;
}
.yle-livefeed--theme-chat-dark .yle-livefeed__messages__message--self .yle-livefeed__messages__message__quote {
  font-style: normal;
  border-left: 2px solid var(--self-quote-border-color);
}
.yle-livefeed--theme-umk-dark,
.yle-livefeed--theme-umk-light {
  --footer-background-color: #ffffff;
  --text-color: #131415;
  --text-color-placeholder: #4a4f54;
  --body-font-size: 14px;
  --user-font-size: 14px;
  --time-font-size: 14px;
  --likes-font-size: 14px;
  --quote-user-font-size: 12px;
  --quote-body-font-size: 12px;
  --action-primary-variant-color: rgba(0, 0, 0, 0.7);
  --action-secondary-variant-color: rgba(0, 0, 0, 0.09);
  --time-font-weight: normal;
  --likes-font-weight: bold;
  --message-text-color: #131415;
  --time-color: #131415;
  --likes-color: #131415;
  --quote-color: #131415;
  --quote-border-color: #b5b5b5;
  --reply-button-color: #131415;
  --reply-indicator-color: #00b4c8;
  --background-color: #ebebeb;
  --background-color-variant: #f8f9fa;
  --input-background-color: #f1f2f4;
  --background-image: url('/images/umk-bg.jpg');
  --message-background-color: #ffffff;
  --avatar-background-color: #00b4c8;
  --moderator-background-color: #fd2b77;
  --moderator-text-color: #ffffff;
  --moderator-quote-border-color: #ffffff;
  --moderator-quote-color: #ebebeb;
  --moderator-font-weight: normal;
  --guest-background-color: #fd2b77;
  --guest-text-color: #ffffff;
  --guest-quote-border-color: #ffffff;
  --guest-quote-color: #ebebeb;
  --guest-font-weight: normal;
  --feedback-error-color: #d10b3d;
  --feedback-success-color: #06b173;
  --feedback-highlight-color: #009cb5;
  --modal-background-color: #ffffff;
  --modal-background-overlay-color: rgba(0, 0, 0, 0.41);
}
.yle-livefeed--theme-umk-dark .yle-livefeed__tabs,
.yle-livefeed--theme-umk-light .yle-livefeed__tabs {
  border-bottom: 1px solid #e8e9eb;
}
