@import 'https://fonts.googleapis.com/css?family=Abel|Heebo:100,300,400,500,700&subset=hebrew';
.label-as-badge {
  -webkit-border-radius: 1em;
          border-radius: 1em; }

.inline {
  display: inline; }

.block {
  display: block; }

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

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

.clickable {
  cursor: pointer; }

.no-padding {
  padding: 0; }

.transition {
  -webkit-transition: .15s all ease-in;
  transition: .15s all ease-in; }

a {
  color: #191919;
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: none;
    color: #333333; }

body {
  color: #191919;
  font-family: "Heebo"; }
  body:not(.layout-desktop) {
    background-color: #eee; }
  body.invertedColors {
    background-color: #fafafa; }

.tline-background {
  min-height: 100%;
  background-color: #eee;
  background-image: url("../images/background.svg");
  background-size: 100px;
  background-repeat: space; }

.white-background {
  background-color: white; }

.messages-box {
  cursor: pointer;
  position: absolute;
  top: -100px;
  left: 50%;
  z-index: 300;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 2px solid #05B4C6;
  padding: 10px 30px;
  -webkit-border-radius: 100px;
          border-radius: 100px;
  font-size: 1.1em;
  color: #05B4C6;
  background-color: #fff; }
  .messages-box--visible {
    top: 22px; }
  .messages-box::after {
    content: "\d7";
    font-size: 1.5em;
    line-height: 1em;
    vertical-align: middle;
    padding-left: 7px; }
  .messages-box:hover::after {
    color: #05c2d5; }

.header-menu {
  background-color: #F4F4F4;
  display: block;
  width: 100%;
  position: fixed;
  z-index: 300;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  height: 87px;
  color: #878787; }
  .invertedColors .header-menu {
    background-color: #eee; }
  .header-menu + .main {
    padding-top: 87px; }
  .header-menu__actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .header-menu__container {
    padding: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%; }
    .header-menu__container::before, .header-menu__container::after {
      content: none; }
  .header-menu__link {
    margin-left: 30px;
    text-transform: uppercase;
    letter-spacing: .3px; }
    @media all and (max-width: 600px) {
      .header-menu__link {
        margin-left: 15px; } }
    .header-menu__link:hover {
      color: #e73958; }
  .header-menu__seperator::before {
    content: "|";
    padding: 0 3px;
    margin-left: 10px; }
  .header-menu__seperator + .header-menu__link {
    margin-left: 10px; }

.user-actions {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer; }
  .user-actions__name {
    cursor: initial; }
    .user-actions__name:hover {
      color: inherit; }
  .user-actions__icon {
    padding-left: 5px; }
  .user-actions__dropdown {
    display: block;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
    opacity: 0;
    height: 0;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    position: absolute;
    top: 25px;
    right: 0;
    width: 130px;
    padding: 20px 10px; }
  .user-actions:hover .user-actions__dropdown {
    opacity: 1;
    height: auto; }

.btn {
  background: #05B4C6;
  color: #ffffff;
  border: 0;
  padding: 6px 25px;
  font-size: 16px; }
  .btn:hover, .btn:focus, .btn:active, .btn.active {
    background: #05bdd0;
    color: #fff; }
  .btn--round {
    -webkit-border-radius: 2em;
            border-radius: 2em; }
  .btn--inverted {
    background-color: transparent;
    border: 2px solid #e73958;
    color: #e73958;
    text-transform: uppercase;
    padding: 3px 15px;
    letter-spacing: 0.2px; }
    .btn--inverted:hover, .btn--inverted:focus, .btn--inverted:active, .btn--inverted.active {
      background-color: #e73958;
      color: #fff; }
  .btn--sharp {
    -webkit-border-radius: 0;
            border-radius: 0; }
  .btn--small {
    font-size: 15px; }
  .btn--large {
    font-size: 18px;
    padding: 10px 25px; }
  .btn--card-action {
    margin: 10px -15px -22px;
    padding: 10px;
    width: -webkit-calc(100% + 30px) !important;
    width: calc(100% + 30px) !important;
    -webkit-border-top-left-radius: 0;
            border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
            border-top-right-radius: 0; }
  .btn--color-action {
    background-color: #e73958; }
    .btn--color-action:hover, .btn--color-action:focus, .btn--color-action:active, .btn--color-action.active {
      background-color: #e94b67; }
  .btn--color-facebook {
    background-color: #3b5998; }
    .btn--color-facebook:hover, .btn--color-facebook:focus, .btn--color-facebook:active, .btn--color-facebook.active {
      background-color: #4162a7; }
  .btn--color-google-plus {
    background-color: #d34836; }
    .btn--color-google-plus:hover, .btn--color-google-plus:focus, .btn--color-google-plus:active, .btn--color-google-plus.active {
      background-color: #d75747; }
  .btn--color-danger {
    background-color: white; }
    .btn--color-danger:hover, .btn--color-danger:focus, .btn--color-danger:active, .btn--color-danger.active {
      background-color: white; }
  .btn--color-current, .btn--color-current:hover, .btn--color-current:focus, .btn--color-current:active, .btn--color-current.active {
    background-color: currentColor;
    color: currentColor; }
  .btn--color-current > * {
    color: white; }
  .btn--color-danger {
    color: #e73958;
    border: 3px solid #e73958;
    padding: 7px 25px; }
    .btn--color-danger:hover, .btn--color-danger:focus, .btn--color-danger:active, .btn--color-danger.active {
      color: white;
      background-color: #e73958; }
  .btn--fab {
    border: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 27.5px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    color: white;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
            box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24); }
    .btn--fab:hover {
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }
  .btn--fab-large {
    font-size: 33px;
    line-height: 60px;
    width: 60px;
    height: 60px; }
  .btn--fab-small {
    font-size: 19.25px;
    line-height: 35px;
    width: 35px;
    height: 35px;
    padding: 7px; }
  .btn--fab-smaller {
    font-size: 13.75px;
    line-height: 25px;
    width: 25px;
    height: 25px;
    padding: 5px; }
    .btn--fab-smaller .fa {
      vertical-align: text-top; }
    .btn--fab-smaller:hover {
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
  .btn--full {
    margin-top: 10px; }
  .btn--nospace {
    margin: 0;
    margin-top: 0; }
  .btn--wider {
    padding-right: 50px;
    padding-left: 50px; }
  .btn--block {
    margin-top: 10px;
    display: block; }
  .btn__icon {
    margin-right: 8px;
    -webkit-transition-delay: 0s;
            transition-delay: 0s; }

.hr-divider {
  border-color: #05B4C6;
  margin: 30px 0 20px; }
  .hr-divider--or {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center; }
    .hr-divider--or::before {
      content: "or";
      text-transform: uppercase;
      color: #05B4C6;
      background-color: #fff;
      padding: 0 10px; }

.drop-zone {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .drop-zone--disabled {
    cursor: not-allowed;
    pointer-events: none; }
  .drop-zone__select {
    border: 2px dashed #05B4C6;
      border-right: 0;
    width: 100%;
    color: #A9A9AE;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 300;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    cursor: pointer; }
  .drop-zone__description {
    width: 100%;
    margin-top: 26px; }
  .drop-zone__upload-btn {
    float: right;
    font-size: 26px;
    padding: 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-border-radius: 0;
            border-radius: 0; }
  .drop-zone__drag-area {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px dashed #05B4C6;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #05B4C6;
    font-size: 16px;
    display: none;
    background-color: white; }
    .drop-zone__drag-area.show {
      display: -webkit-box !important;
      display: -webkit-flex !important;
      display: -ms-flexbox !important;
      display: flex !important; }
    .drop-zone__drag-area--file-over {
      background-color: #C2EBEF; }
    .drop-zone__drag-area .fa {
      color: #05B4C6;
      font-size: 35px;
      margin-bottom: 10px; }

.file-upload {
  display: inline;
  float: right; }
  .file-upload__icon {
    color: #05B4C6;
    font-size: 18px !important;
    padding-left: 10px; }
  .file-upload__label {
    cursor: pointer;
    color: #05B4C6;
    font-weight: 400; }

.main__container {
  padding: 0px 15px; }

.main__ng-view {
  display: block;
  padding: 15px 0;
  display: none; }
  .main__ng-view:last-of-type {
    display: block; }

#loading-bar .bar {
  background-color: #05B4C6; }

#loading-bar-spinner .spinner-icon {
  border-top-color: #05B4C6;
  border-left-color: #05B4C6; }

.logo img {
  width: 94px; }
  @media (max-width: 499px) {
    .logo img {
      width: 40px; } }
  .logo img.fixed-size-phone {
    width: 40px; }

.logo::after {
  content: "Beta";
  vertical-align: bottom;
  text-transform: lowercase;
  background-color: #05B4C6;
  color: white;
  padding: 1px 4px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  font-size: 12px; }
  @media (max-width: 499px) {
    .logo::after {
      font-size: 9px;
      padding: 0 2px;
      margin-left: 2px; } }
  .logo::after.fixed-size-phone {
    font-size: 9px;
    padding: 0 2px;
    margin-left: 2px; }

@media all and (max-width: 350px) {
  .logo {
    width: 56px; } }

.page-title {
  font-size: 108px;
  font-family: "Abel";
  margin-top: 15px;
  text-transform: uppercase; }
  .page-title--small {
    font-size: 42px; }

.screen-title {
  font-weight: 100;
  font-size: 40px;
  margin-bottom: 40px;
  color: #e73958;
  text-align: left;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-top: 5px; }

.section-title {
  font-weight: 400;
  font-size: 18px;
  color: #191919;
  text-align: left;
  display: inline-block;
  width: auto;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-top: 5px;
  margin-bottom: 20px; }
  .section-title::after {
    content: "";
    display: block; }

.thin-title {
  color: #191919;
  display: block;
  font-weight: 100;
  font-size: 18px;
  border-bottom: 1px solid;
  padding-bottom: 7px;
  margin-bottom: 15px; }

.timeline-illustration {
  text-align: center;
  margin-top: 22px; }
  .timeline-illustration__img {
    max-width: 80%;
    width: 660px; }
  .timeline-illustration--small__img {
    width: 380px; }

.tabs__wrap {
  margin-top: 20px;
  margin-bottom: 20px; }

.tabs__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-left: 0;
  border: 1px solid #05B4C6;
    -webkit-border-radius: 5px;
            border-radius: 5px; }

.tabs__tab {
  padding: 5px 15px;
  font-size: 18px;
  cursor: pointer;
  color: #05B4C6;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center; }
  .tabs__tab:first-child:not(.active) {
    border-right: 1px solid #05B4C6; }
  .tabs__tab.active {
    color: #fff;
    background-color: #05B4C6; }
  .tabs__tab:hover:not(.active) {
    color: #05B4C6; }

.mobile-unsupport {
  display: none; }
  @media all and (max-width: 992px) {
    .mobile-unsupport {
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      width: 100vw;
      height: 100vh;
      background-color: #05B4C6;
      z-index: 300;
      color: white;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 4vh 3vw; }
      .mobile-unsupport__title {
        font-size: 7vw; }
      .mobile-unsupport__text {
        font-size: 5vw;
        font-weight: 300; } }

.landing-page {
  text-align: center; }
  .landing-page__title {
    font-family: "Abel";
    text-transform: uppercase;
    font-size: 80px;
    text-shadow: -1px -1px 0, 1px -1px 0, -1px 1px 0, 1px 1px 0;
    margin-top: 30px; }
    @media all and (max-width: 600px) {
      .landing-page__title {
        font-size: 48px;
        text-shadow: -0.5px -0.5px 0, 0.5px -0.5px 0, -0.5px 0.5px 0, 0.5px 0.5px 0; } }
  .landing-page__illustration {
    margin: 35px 0;
    width: 80%;
    max-width: 600px; }
  .landing-page__subtitle {
    font-size: 23px;
    max-width: 600px;
    margin: 10px auto 45px;
    font-weight: 400; }
    @media all and (max-width: 600px) {
      .landing-page__subtitle {
        font-size: 18px; } }
  .landing-page--product-hunt__ph-logo {
    max-width: 130px; }
  .landing-page--product-hunt__title {
    color: #05B4C6;
    font-family: "Heebo";
    font-weight: 100;
    font-size: 80px;
    margin-top: 0; }
  .landing-page--product-hunt__subtitle {
    margin-bottom: 20px;
    max-width: 580px;
    line-height: 1.3; }

.featured-on {
  margin-top: 30px;
  background-color: #F4F4F4;
  padding: 30px 0; }
  .featured-on__title {
    font-weight: 400;
    font-size: 18px;
    margin: 0;
      margin-bottom: 15px; }
  .featured-on__location {
    margin: 15px 30px;
    display: inline-block; }
  .featured-on__logo {
    height: auto;
    max-width: 100%;
    -webkit-transition: .15s all ease-in;
    transition: .15s all ease-in;
    max-height: 35px; }
    .featured-on__logo:not(:hover) {
      -webkit-filter: contrast(0%) brightness(122%);
              filter: contrast(0%) brightness(122%); }
  .featured-on__tnw-logo {
    max-height: 30px;
    margin-top: 4px; }
    .featured-on__tnw-logo:not(:hover) {
      -webkit-filter: grayscale(100%) brightness(150%);
              filter: grayscale(100%) brightness(150%); }

.examples {
  margin: 0 -15px 50px;
  padding-top: 30px;
  background-color: #fff; }
  .examples__column {
    text-align: left; }
  .examples__column-title {
    font-weight: 100;
    font-size: 22px;
    margin-bottom: 35px;
    margin-top: 0; }
  .examples__card {
    display: block;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
    margin-bottom: 50px;
    max-width: 100%; }

.team-members {
  padding: 30px 0;
  border-bottom: 1px solid #dadada;
  margin-bottom: 20px; }

.team-member {
  padding: 0 20px;
  margin-top: 10px;
  margin-bottom: 40px; }
  @media (max-width: 499px) {
    .team-member {
      padding: 0 10px; } }
  .team-member.fixed-size-phone {
    padding: 0 10px; }
  .team-member__picture {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden; }
    .team-member__picture img {
      -webkit-border-radius: 100%;
              border-radius: 100%;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      -webkit-transition: none;
      transition: none; }
      .team-member__picture img:last-child {
        z-index: 100; }
    .team-member__picture--interactive:hover img:last-child {
      opacity: 0; }
  .team-member__name {
    margin: 18px 0 10px;
    font-weight: 300;
    color: #e73958; }
    @media (max-width: 499px) {
      .team-member__name {
        font-size: 14px; } }
    .team-member__name.fixed-size-phone {
      font-size: 14px; }
  .team-member__position {
    font-size: 13px;
    font-weight: 400; }
    @media (max-width: 499px) {
      .team-member__position {
        font-size: 10px; } }
    .team-member__position.fixed-size-phone {
      font-size: 10px; }

.footer {
  color: #191919; }
  .footer a {
    text-decoration: underline; }
  .footer .twitter-follow-button {
    vertical-align: bottom; }

.startup-box {
  border-bottom: 1px solid #dadada;
  margin-bottom: 10px;
  padding: 20px 15px;
  height: 290px; }
  .startup-box:hover {
    background-color: #F4F4F4; }
  .startup-box__logo {
    height: 100px;
    margin-bottom: 30px; }
  .startup-box__title {
    margin-top: 30px;
    font-size: 24px; }
  .startup-box__meta {
    font-weight: 100;
    font-size: 16px;
    margin-top: 0; }

.example-timeline {
  padding-top: 30px;
  padding-bottom: 75px; }
  .example-timeline:nth-child(2n) {
    background-color: white; }
  .example-timeline__timeline {
    display: block;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
    max-width: 500px;
    margin: 0 auto; }

.signup-form-container {
  display: block;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px; }
  .signup-form-container__form {
    margin-top: 20px; }
  .signup-form-container__status {
    margin: 0;
      margin-top: 10px;
    color: #e73958; }

.input-field__input.ng-invalid.ng-dirty.ng-not-empty {
  border-color: red; }

.input-field__error {
  color: red; }

.forgot-password {
  display: block;
  margin-top: 10px;
  color: #191919; }

.timeline-box {
  display: block;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  background-color: #fff;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  height: 280px;
  overflow: hidden;
  padding-top: 16px;
  margin-bottom: 30px;
  position: relative; }
  .timeline-box__title {
    padding: 0 16px;
    height: 2.1em;
    overflow: hidden;
    color: #191919;
    font-weight: 400; }
  .timeline-box__line {
    display: block;
    padding: 0 8px;
    min-height: 35px; }
  .timeline-box__trapeze {
    border-bottom: 14px solid currentColor;
    border-left: 8px solid transparent;
    margin-top: 14px;
    width: 60%;
    z-index: 999;
    margin-left: auto; }
    .rtl .timeline-box__trapeze {
      margin-right: auto;
      margin-left: 0;
      border-left: 0px solid transparent;
      border-right: 8px solid transparent; }
  .timeline-box__cover {
    max-width: 100%;
    height: 155px;
    background-position: center; }
  .timeline-box--add {
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #05B4C6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    height: 280px; }
    .timeline-box--add__plus {
      font-size: 60px;
      line-height: 60px;
      background-color: #e73958;
      color: white;
      width: 60px;
      height: 60px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      margin-bottom: 20px;
      font-weight: 100;
      -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
              box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24); }
      .timeline-box--add__plus:hover {
        -webkit-transform: scale(1.05);
            -ms-transform: scale(1.05);
                transform: scale(1.05); }
    .timeline-box--add__title {
      font-size: 18px;
      color: #e73958; }
  .timeline-box:hover .timeline-box__actions {
    opacity: 1; }
  .timeline-box__actions {
    opacity: 0;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    padding: 0 20px; }
    @media (max-width: 991px) {
      .timeline-box__actions {
        top: auto;
        height: 80px;
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.8); } }

.overlay-action__caption {
  color: #e73958;
  margin-top: 5px;
  text-shadow: 0 1px 1.5px white;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; }
  @media (min-width: 992px) {
    .overlay-action__caption:not(.fixed-size):not(.layout-desktop) {
      opacity: 0;
      -webkit-transform: translateY(-20px);
          -ms-transform: translateY(-20px);
              transform: translateY(-20px); } }

.overlay-action:hover .overlay-action__caption {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1; }

.list-grid__loader {
  font-size: 50px;
  color: #05B4C6; }

.filter-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: -10px;
  margin-bottom: 30px; }
  .filter-row__title {
    font-size: 18px;
    font-weight: 100;
    padding-right: 10px; }
  .filter-row__select {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 50%;
    background-color: #eee;
    border: 0;
      -webkit-border-radius: 0;
              border-radius: 0;
    font-size: 18px;
    font-weight: 100; }

.timeline-info {
  padding-bottom: 5px; }
  .timeline-info__cover {
    padding-top: 40%;
    margin-bottom: 15px; }
  .timeline-info__title {
    margin-top: 0;
    font-weight: 300; }
    .timeline-info__title::after {
      content: "";
      display: block;
      height: 2px;
      width: 20px;
      background-color: #05B4C6;
      margin: 13px 0; }
  .timeline-info__meta {
    font-size: 14px;
    font-weight: 100; }

.numbers-strip {
  margin: 20px -15px;
  background-color: #eee;
  padding: 10px 0 30px;
  text-align: center; }
  @media (min-width: 992px) {
    .numbers-strip__unit:not(.fixed-size):not(.layout-desktop) {
      padding: 0 30px; } }
  @media all and (min-width: 1300px) {
    .numbers-strip__unit {
      padding: 0 50px; } }

.number-unit__number {
  font-size: 40px;
  font-weight: 100;
  color: #05B4C6;
  line-height: 1;
  padding: 20px 0; }

.number-unit__caption {
  border-top: 1px solid #191919;
  padding-top: 20px; }

.number-unit__icon {
  color: #05B4C6;
  font-size: 20px;
  padding-top: 5px; }

.number-unit--compact {
  display: inline-block;
  text-align: center; }
  .number-unit--compact__number {
    font-size: 24px;
    padding: 7px 0;
    font-weight: 300; }
  .number-unit--compact__caption {
    font-size: 14px;
    padding-top: 7px; }

.chart-section__container {
  position: relative;
  padding: 20px 0; }
  .chart-section__container + .chart-section__container {
    border-top: 1px solid #eee;
    padding-top: 46px; }

.chart-section__part {
  padding: 0 50px; }
  @media (min-width: 768px) and (max-width: 991px) {
    .chart-section__part:not(.fixed-size):not(:last-child) {
      border-right: 1px solid #eee; } }
  @media (min-width: 992px) {
    .chart-section__part:not(.fixed-size):not(.layout-desktop) {
      padding: 0 100px; } }

.chart-section__title {
  padding-bottom: 10px; }

.chart-section__actions {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 10px; }
  .chart-section__actions label {
    margin-bottom: 0;
    font-weight: normal; }
  .chart-section__actions input {
    margin-right: 6px; }

.doughnut-infographic {
  position: relative; }
  .doughnut-infographic__info {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .doughnut-infographic__number {
    color: #05B4C6;
    font-size: 45px;
    font-weight: 100; }
  .doughnut-infographic__caption {
    padding: 10px;
    font-size: 20px; }
  .doughnut-infographic__divider {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 1px solid #e73958; }

.chart-legend {
  margin-top: 20px;
  text-align: center; }
  .chart-legend__item {
    display: inline-block;
    padding: 5px; }
  .chart-legend__color {
    width: 20px;
    height: 10px;
    display: inline-block; }
  .chart-legend__label {
    display: inline; }

.funnel-chart {
  padding-right: 60px;
  margin: 0 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .funnel-chart > *, .funnel-chart > * > * {
    margin: 10px 0; }
  .funnel-chart__names {
    font-weight: 100;
    font-size: 20px;
    padding-right: 20px; }
  .funnel-chart__bars {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-image: -webkit-repeating-linear-gradient(right, #eee 0, #eee 1px, #fafafa 1px, #fafafa 20px);
    background-image: repeating-linear-gradient(to left, #eee 0, #eee 1px, #fafafa 1px, #fafafa 20px);
    min-width: 170px; }
  .funnel-chart__bar {
    background-color: #05B4C6;
    width: 100%;
    min-width: 70px;
    text-align: right;
    padding: 0 5px;
    font-size: 20px;
    color: #fafafa;
    position: relative;
    border-right: 2px solid #e73958; }
    .funnel-chart__bar::after {
      content: attr(data-percentage);
      display: inline-block;
      -webkit-transform: translateX(-webkit-calc(-100% + 10px));
          -ms-transform: translateX(calc(-100% + 10px));
              transform: translateX(calc(-100% + 10px));
      width: 0;
      overflow: visible;
      color: #e73958;
      font-weight: 100; }

.youtube-video-stats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 150px;
  padding: 20px 0; }
  .youtube-video-stats:not(:last-child) {
    border-bottom: 1px solid #ccc; }
  .youtube-video-stats__media {
    width: 200px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
  .youtube-video-stats__info {
    padding: 0 25px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .youtube-video-stats__title {
    font-size: 20px;
    color: #4F5151; }
    .youtube-video-stats__title::before {
      content: "";
      display: block;
      width: 30px;
      height: 2px;
      background-color: #05B4C6;
      margin-bottom: 5px; }

.youtube-section {
  margin-bottom: 40px; }
  .youtube-section__totals {
    margin-bottom: 10px; }

.number-data {
  display: inline-block; }
  .number-data + .number-data {
    margin-left: 20px; }
  .number-data--centered {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 250px;
    text-align: left;
    margin: 30px auto 10px; }
    .number-data--centered__desc {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1; }
  .number-data__number {
    display: inline-block;
    font-size: 50px;
    font-weight: 100;
    line-height: 1;
    padding-right: 10px;
    color: #05B4C6; }
  .number-data__desc {
    display: inline-block;
    vertical-align: center;
    max-width: 200px;
    line-height: 1.1;
    font-size: 20px;
    font-weight: 100; }

.blank-space {
  height: 50px;
  margin-bottom: -20px;
  background-color: #eee; }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(30%);
            transform: translateY(30%); }
  60% {
    -webkit-transform: translateY(15%);
            transform: translateY(15%); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  40% {
    -webkit-transform: translateY(30%);
            transform: translateY(30%); }
  60% {
    -webkit-transform: translateY(15%);
            transform: translateY(15%); } }

.tline-element {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: relative; }
  html.strech-mode.display-mode-view.safari .tline-element {
    height: -webkit-calc(100vh - 130px);
    height: calc(100vh - 130px); }
    @media (min-width: 992px) {
      html.strech-mode.display-mode-view.safari .tline-element:not(.fixed-size):not(.layout-desktop) {
        height: -webkit-calc(100vh - 180px);
        height: calc(100vh - 180px); } }
  .tline-element--display-mode-embed {
    height: 100%; }
  .tline-element__timeline {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-height: 470px; }
  .tline-element__footer {
    background-color: #fff;
    padding: 10px;
      padding-top: 0; }
  .tline-element__powered-by {
    text-align: right;
    direction: ltr;
    font-size: 10px;
    color: darkgrey;
    margin: 1px;
    padding: 0 15px; }
    @media (min-width: 500px) and (max-width: 767px) {
      .tline-element__powered-by:not(.fixed-size) {
        font-size: 13px; } }
    .tline-element__powered-by.fixed-size-phablet {
      font-size: 13px; }
    @media (min-width: 992px) {
      .tline-element__powered-by:not(.fixed-size):not(.layout-desktop) {
        font-size: 13px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .tline-element__powered-by:not(.fixed-size) {
        font-size: 14px; } }
    .tline-element__powered-by img {
      height: 16px;
      margin-left: 4px;
      vertical-align: baseline; }

.timeline-element {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Heebo";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
    padding-bottom: 5px;
  text-align: left;
  direction: ltr;
  color: #05B4C6;
  background-color: white; }
  @media (min-width: 992px) {
    .timeline-element.layout-desktop {
      padding: 10px 20px;
      max-width: 1020px; } }
  .timeline-element.rtl {
    text-align: right;
    direction: rtl; }
  .timeline-element__head .publisher-logo {
    margin-bottom: 10px; }
  .timeline-element__head .share-button {
    display: inline;
    border: 0;
    background: none;
    float: right;
    color: currentColor;
    font-size: 20px;
    margin: 0;
    padding: 0; }
    .timeline-element__head .share-button.rtl {
      float: left; }
  .timeline-element__head .timeline-title::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor; }
  .timeline-element__head .timeline-title__text {
    font-size: 14pt;
    margin-top: 6px;
    margin-bottom: 20px;
    color: #191919;
    font-weight: 400; }
    .timeline-element__head .timeline-title__text--placeholder {
      color: #dadada; }
    @media (min-width: 500px) and (max-width: 767px) {
      .timeline-element__head .timeline-title__text:not(.fixed-size) {
        font-size: 17pt;
        margin-bottom: 25px; } }
    .timeline-element__head .timeline-title__text.fixed-size-phablet {
      font-size: 17pt;
      margin-bottom: 25px; }
    @media (min-width: 992px) {
      .timeline-element__head .timeline-title__text:not(.fixed-size):not(.layout-desktop) {
        font-size: 17pt;
        margin-bottom: 25px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .timeline-element__head .timeline-title__text:not(.fixed-size) {
        font-size: 20pt;
        margin-bottom: 30px; } }
    @media (min-width: 992px) {
      .timeline-element__head .timeline-title__text.layout-desktop {
        font-size: 28px;
        margin-bottom: 40px; } }
  .timeline-element__articles {
    list-style: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    padding: 0 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    margin-top: 10px;
    padding-bottom: 1px;
    margin-bottom: 0; }
    @media (min-width: 992px) {
      .timeline-element__articles.layout-desktop {
        margin-top: 30px; } }
    .timeline-element__articles .timeline-cover {
      width: 100%;
      overflow: hidden;
      -webkit-transition: -webkit-transform 0s ease-in-out;
      transition: -webkit-transform 0s ease-in-out;
      transition: transform 0s ease-in-out;
      transition: transform 0s ease-in-out, -webkit-transform 0s ease-in-out;
      position: relative;
      margin-bottom: 10px; }
      @media (min-width: 992px) {
        .timeline-element__articles .timeline-cover.layout-desktop {
          margin-bottom: 0; } }
      .timeline-element__articles .timeline-cover__arrows {
        position: absolute;
        bottom: 26px;
        font-size: 34px;
        color: white;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
        -webkit-animation: bounce 1.4s infinite;
                animation: bounce 1.4s infinite;
        width: 100%;
        text-align: center;
        background: none;
        border: 0; }
        .timeline-element__articles .timeline-cover__arrows:focus {
          outline: 0; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .timeline-cover__arrows:not(.fixed-size) {
            font-size: 40px;
            bottom: 30px; } }
        .timeline-element__articles .timeline-cover__arrows.fixed-size-phablet {
          font-size: 40px;
          bottom: 30px; }
        @media (min-width: 992px) {
          .timeline-element__articles .timeline-cover__arrows:not(.fixed-size):not(.layout-desktop) {
            font-size: 40px;
            bottom: 30px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .timeline-element__articles .timeline-cover__arrows:not(.fixed-size) {
            font-size: 48px;
            bottom: 35px; } }
        @media (min-width: 992px) {
          .timeline-element__articles .timeline-cover__arrows.layout-desktop {
            font-size: 50px;
            bottom: 50px; } }
      .timeline-element__articles .timeline-cover__image {
        position: relative;
        background-position: center;
        width: 100%;
        clear: both;
        padding-top: 41.4250207%;
        display: block; }
        .timeline-element__articles .timeline-cover__image--placeholder {
          background-color: white;
          border: 2px solid #05B4C6; }
      .timeline-element__articles .timeline-cover__shape {
        border-bottom: 14px solid currentColor;
        border-left: 8px solid transparent;
        width: 60%;
        z-index: 100;
        float: right;
        right: 0;
        position: relative; }
        .timeline-element__articles .timeline-cover__shape.rtl {
          border-left: 0px solid transparent;
          border-right: 8px solid transparent;
          float: left;
          left: 0;
          right: auto; }
    .timeline-element__articles li.pointless {
      color: #dadada;
      text-align: center; }
    .timeline-element__articles li.lazy-loading {
      padding: 20px;
      font-size: 30px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; }
    .timeline-element__articles li.creator-credit {
      padding: 10px 0;
      border-bottom: 2px solid #dadada;
      color: #191919;
      font-weight: 100;
      font-size: 18px; }
      .timeline-element__articles li.creator-credit .publisher-logo {
        display: block; }
    .timeline-element__articles .article {
      width: 100%;
      height: auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      position: relative;
      border-bottom: 2px solid #dadada;
      padding: 10px 0; }
      @media (min-width: 500px) and (max-width: 767px) {
        .timeline-element__articles .article:not(.fixed-size) {
          padding: 14px 0; } }
      .timeline-element__articles .article.fixed-size-phablet {
        padding: 14px 0; }
      @media (min-width: 992px) {
        .timeline-element__articles .article:not(.fixed-size):not(.layout-desktop) {
          padding: 14px 0; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .timeline-element__articles .article:not(.fixed-size) {
          padding: 18px 0; } }
      @media (min-width: 992px) {
        .timeline-element__articles .article.layout-desktop {
          padding: 0;
          border-bottom: 0;
          border-top: 0; }
          .timeline-element__articles .article.layout-desktop.embed {
            display: block;
            padding: 10px 0; }
          .timeline-element__articles .article.layout-desktop:nth-child(2n+1) {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
            -webkit-flex-direction: row-reverse;
                -ms-flex-direction: row-reverse;
                    flex-direction: row-reverse; } }
      .timeline-element__articles .article:nth-child(2) {
        border-top: 2px solid #dadada; }
        @media (min-width: 992px) {
          .timeline-element__articles .article:nth-child(2).layout-desktop {
            border-top-width: 0; } }
      .timeline-element__articles .article__indicator {
        content: "";
        position: absolute;
        z-index: 200;
        display: block;
        height: -webkit-calc(100% - 20px);
        height: calc(100% - 20px);
        top: 10px;
        left: 0;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
        border-left-color: currentColor;
        border-right-color: white;
        border-style: solid;
        border-width: 0px;
        border-top: 0;
        border-bottom: 0; }
        .timeline-element__articles .article__indicator.rtl {
          border-right-color: currentColor;
          border-left-color: white;
          right: 0;
          left: auto; }
        .timeline-element__articles .article__indicator.active {
          border-width: 6px; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__indicator.layout-desktop {
            height: 100%;
            top: 0;
            border-right: 0; }
            .timeline-element__articles .article__indicator.layout-desktop.active {
              border-left-width: 11px; }
            .timeline-element__articles .article__indicator.layout-desktop.rtl {
              border-left-width: 0; }
              .timeline-element__articles .article__indicator.layout-desktop.rtl.active {
                border-right-width: 11px;
                border-right-style: solid; } }
      .timeline-element__articles .article__link {
        position: absolute;
        right: 10px;
        color: #dadada; }
        .timeline-element__articles .article__link.rtl {
          left: 10px;
          right: auto; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .article__link:not(.fixed-size) {
            font-size: 17px; } }
        .timeline-element__articles .article__link.fixed-size-phablet {
          font-size: 17px; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__link:not(.fixed-size):not(.layout-desktop) {
            font-size: 17px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .timeline-element__articles .article__link:not(.fixed-size) {
            font-size: 20px; } }
        @media (min-width: 992px) {
          .timeline-element__articles .article__link.layout-desktop {
            display: none; } }
      .timeline-element__articles .article__media {
        -webkit-box-flex: 5;
        -webkit-flex: 5;
            -ms-flex: 5;
                flex: 5;
        padding-right: 13px; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .article__media:not(.fixed-size) {
            padding-right: 19px; } }
        .timeline-element__articles .article__media.fixed-size-phablet {
          padding-right: 19px; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__media:not(.fixed-size):not(.layout-desktop) {
            padding-right: 19px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .timeline-element__articles .article__media:not(.fixed-size) {
            padding-right: 25px; } }
        @media (min-width: 992px) {
          .timeline-element__articles .article__media.layout-desktop {
            width: 50%;
            -webkit-box-flex: 1;
            -webkit-flex: auto;
                -ms-flex: auto;
                    flex: auto;
            padding-right: 0; } }
        .timeline-element__articles .article__media.rtl {
          padding-right: 0;
          padding-left: 13px; }
          @media (min-width: 500px) and (max-width: 767px) {
            .timeline-element__articles .article__media.rtl:not(.fixed-size) {
              padding-left: 17px; } }
          .timeline-element__articles .article__media.rtl.fixed-size-phablet {
            padding-left: 17px; }
          @media (min-width: 992px) {
            .timeline-element__articles .article__media.rtl:not(.fixed-size):not(.layout-desktop) {
              padding-left: 17px; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .timeline-element__articles .article__media.rtl:not(.fixed-size) {
              padding-left: 25px; } }
          @media (min-width: 992px) {
            .timeline-element__articles .article__media.rtl.layout-desktop {
              padding-left: 0; } }
      .timeline-element__articles .article__media-image {
        width: 100%;
        padding-top: 61.8046972%;
        display: block; }
      @media (min-width: 992px) {
        .timeline-element__articles .article__media-credit.layout-desktop {
          display: none; } }
      .timeline-element__articles .article__content {
        -webkit-box-flex: 6;
        -webkit-flex: 6;
            -ms-flex: 6;
                flex: 6; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .article__content:not(.fixed-size) {
            -webkit-box-flex: 7;
            -webkit-flex: 7;
                -ms-flex: 7;
                    flex: 7; } }
        .timeline-element__articles .article__content.fixed-size-phablet {
          -webkit-box-flex: 7;
          -webkit-flex: 7;
              -ms-flex: 7;
                  flex: 7; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__content:not(.fixed-size):not(.layout-desktop) {
            -webkit-box-flex: 7;
            -webkit-flex: 7;
                -ms-flex: 7;
                    flex: 7; } }
        @media (min-width: 992px) {
          .timeline-element__articles .article__content.layout-desktop {
            width: 50%;
            -webkit-box-flex: 1;
            -webkit-flex: auto;
                -ms-flex: auto;
                    flex: auto;
            padding: 10px 10%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        .timeline-element__articles .article__content:first-child {
          padding-left: 14px; }
          .timeline-element__articles .article__content:first-child.rtl {
            padding-left: 0;
            padding-right: 14px; }
      .timeline-element__articles .article__date {
        color: #191919;
        font-size: 16px;
        line-height: 14px;
        margin: 0;
        font-weight: 500;
        color: #484947; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .article__date:not(.fixed-size) {
            font-size: 21px;
            line-height: 1.1; } }
        .timeline-element__articles .article__date.fixed-size-phablet {
          font-size: 21px;
          line-height: 1.1; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__date:not(.fixed-size):not(.layout-desktop) {
            font-size: 21px;
            line-height: 1.1; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .timeline-element__articles .article__date:not(.fixed-size) {
            font-size: 26px;
            line-height: 1.2; } }
        @media (min-width: 992px) {
          .timeline-element__articles .article__date.layout-desktop {
            font-size: 17px;
            font-weight: 400;
            line-height: 1; } }
        .timeline-element__articles .article__date small {
          font-weight: lighter;
          color: #8a8a8a;
          font-size: .6em;
          padding: 0 4px; }
      .timeline-element__articles .article__event-title {
        color: #929292;
        font-weight: 300;
        font-size: 13px;
        line-height: 1.3;
        padding-top: 4px;
        width: 100%; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .article__event-title:not(.fixed-size) {
            font-size: 15px; } }
        .timeline-element__articles .article__event-title.fixed-size-phablet {
          font-size: 15px; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__event-title:not(.fixed-size):not(.layout-desktop) {
            font-size: 15px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .timeline-element__articles .article__event-title:not(.fixed-size) {
            font-size: 17px; } }
        @media (min-width: 992px) {
          .timeline-element__articles .article__event-title.layout-desktop {
            font-size: 17px;
            font-weight: 100; } }
        .timeline-element__articles .article__event-title--html {
          padding: 4px 15px;
          color: #191919;
          line-height: 1.2;
          font-size: 14px;
          font-weight: 400; }
          @media (min-width: 500px) and (max-width: 767px) {
            .timeline-element__articles .article__event-title--html:not(.fixed-size) {
              font-size: 17px; } }
          .timeline-element__articles .article__event-title--html.fixed-size-phablet {
            font-size: 17px; }
          @media (min-width: 992px) {
            .timeline-element__articles .article__event-title--html:not(.fixed-size):not(.layout-desktop) {
              font-size: 17px; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .timeline-element__articles .article__event-title--html:not(.fixed-size) {
              font-size: 20px; } }
      .timeline-element__articles .article__title {
        color: inherit; }
        .timeline-element__articles .article__title span {
          color: #191919;
          line-height: 1.2; }
          @media (min-width: 500px) and (max-width: 767px) {
            .timeline-element__articles .article__title span:not(.fixed-size) {
              font-size: 17px; } }
          .timeline-element__articles .article__title span.fixed-size-phablet {
            font-size: 17px; }
          @media (min-width: 992px) {
            .timeline-element__articles .article__title span:not(.fixed-size):not(.layout-desktop) {
              font-size: 17px; } }
          @media (min-width: 768px) and (max-width: 991px) {
            .timeline-element__articles .article__title span:not(.fixed-size) {
              font-size: 20px; } }
          @media (min-width: 992px) {
            .timeline-element__articles .article__title span.layout-desktop {
              font-size: 17px; } }
        .timeline-element__articles .article__title::before, .timeline-element__articles .article__title::after {
          content: "";
          display: block;
          width: 20px;
          background-color: #dadada;
          height: 3px;
          margin: 8px 0;
          -webkit-transition: background-color .6s ease;
          transition: background-color .6s ease; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__title.layout-desktop::before, .timeline-element__articles .article__title.layout-desktop::after {
            background-color: currentColor; } }
      .timeline-element__articles .article__author {
        color: #484947;
        font-weight: 300;
        font-size: 10px; }
        @media (min-width: 500px) and (max-width: 767px) {
          .timeline-element__articles .article__author:not(.fixed-size) {
            font-size: 13px; } }
        .timeline-element__articles .article__author.fixed-size-phablet {
          font-size: 13px; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__author:not(.fixed-size):not(.layout-desktop) {
            font-size: 13px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .timeline-element__articles .article__author:not(.fixed-size) {
            font-size: 16px; } }
        @media (min-width: 992px) {
          .timeline-element__articles .article__author.layout-desktop {
            font-size: 12px;
            font-weight: 400;
            color: #929292; } }
      .timeline-element__articles .article__html {
        width: 100%;
        overflow-x: scroll;
        color: #929292;
        padding: 0; }
        @media (min-width: 992px) {
          .timeline-element__articles .article__html.layout-desktop {
            max-width: 500px;
            margin: 0 auto;
            display: block; } }
        .timeline-element__articles .article__html iframe, .timeline-element__articles .article__html twitterwidget, .timeline-element__articles .article__html .fb_iframe_widget, .timeline-element__articles .article__html .fb_iframe_widget span {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden; }
  .timeline-element__scroll-buttons {
    padding-top: 10px; }

.timelineline {
  list-style: none;
  padding: 0;
  position: relative;
  height: 10px;
  margin: 15px 5px 0; }
  .timelineline::before {
    content: "";
    display: block;
    height: 3px;
    width: -webkit-calc(100% - 6px);
    width: calc(100% - 6px);
    background: #05B4C6;
    position: absolute;
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    left: 0; }
  .timelineline .timelineline__point {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    .timelineline .timelineline__point .point {
      -webkit-border-radius: 50%;
              border-radius: 50%;
      -webkit-transition: all .1s ease-out;
      transition: all .1s ease-out;
      background-color: currentColor;
      width: 10px;
      height: 10px; }
      .timelineline .timelineline__point .point::after {
        content: "";
        position: absolute;
        padding: 20px 5px;
        top: -14px; }
    .timelineline .timelineline__point .date-tooltip {
      -webkit-transform: translateX(-2px) translateY(-webkit-calc(-100% - 20px));
          -ms-transform: translateX(-2px) translateY(calc(-100% - 20px));
              transform: translateX(-2px) translateY(calc(-100% - 20px)); }
    .timelineline .timelineline__point.aligned .date-tooltip {
      -webkit-transform: translateX(-webkit-calc(-100% + 11px)) translateY(-webkit-calc(-100% - 20px));
          -ms-transform: translateX(calc(-100% + 11px)) translateY(calc(-100% - 20px));
              transform: translateX(calc(-100% + 11px)) translateY(calc(-100% - 20px)); }
    .timelineline .timelineline__point.rtl .date-tooltip {
      -webkit-transform: translateX(-webkit-calc(100% - 11px)) translateY(-webkit-calc(-100% - 20px));
          -ms-transform: translateX(calc(100% - 11px)) translateY(calc(-100% - 20px));
              transform: translateX(calc(100% - 11px)) translateY(calc(-100% - 20px)); }
    .timelineline .timelineline__point.rtl.aligned .date-tooltip {
      -webkit-transform: translateX(0) translateY(-webkit-calc(-100% - 20px));
          -ms-transform: translateX(0) translateY(calc(-100% - 20px));
              transform: translateX(0) translateY(calc(-100% - 20px)); }
    .timelineline .timelineline__point.active {
      z-index: 200; }
      .timelineline .timelineline__point.active .point {
        -webkit-transform: scale(1.5);
            -ms-transform: scale(1.5);
                transform: scale(1.5);
        background-color: #fff;
        border: 2px solid; }
      .timelineline .timelineline__point.active:not(.hide_dates)::before {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        top: -10px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 2px 0 2px;
        border-color: currentColor transparent transparent transparent; }
      .timelineline .timelineline__point.active .date-tooltip {
        opacity: 1; }
    .timelineline .timelineline__point.future .point {
      background-color: white;
      border: 3px solid currentColor;
      border-style: dotted; }
  @media (min-width: 992px) {
    .timelineline.layout-desktop {
      list-style: none;
      padding: 0;
      position: relative;
      height: 15px;
      margin: 23px 7.5px 0; }
      .timelineline.layout-desktop::before {
        content: "";
        display: block;
        height: 3px;
        width: -webkit-calc(100% - 8.5px);
        width: calc(100% - 8.5px);
        background: #05B4C6;
        position: absolute;
        top: -webkit-calc(50% - 1px);
        top: calc(50% - 1px);
        left: 0; }
      .timelineline.layout-desktop .timelineline__point {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); }
        .timelineline.layout-desktop .timelineline__point .point {
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          -webkit-transition: all .1s ease-out;
          transition: all .1s ease-out;
          background-color: currentColor;
          width: 15px;
          height: 15px; }
          .timelineline.layout-desktop .timelineline__point .point::after {
            content: "";
            position: absolute;
            padding: 20px 5px;
            top: -14px; }
        .timelineline.layout-desktop .timelineline__point .date-tooltip {
          -webkit-transform: translateX(-2px) translateY(-webkit-calc(-100% - 30px));
              -ms-transform: translateX(-2px) translateY(calc(-100% - 30px));
                  transform: translateX(-2px) translateY(calc(-100% - 30px)); }
        .timelineline.layout-desktop .timelineline__point.aligned .date-tooltip {
          -webkit-transform: translateX(-webkit-calc(-100% + 11px)) translateY(-webkit-calc(-100% - 30px));
              -ms-transform: translateX(calc(-100% + 11px)) translateY(calc(-100% - 30px));
                  transform: translateX(calc(-100% + 11px)) translateY(calc(-100% - 30px)); }
        .timelineline.layout-desktop .timelineline__point.rtl .date-tooltip {
          -webkit-transform: translateX(-webkit-calc(100% - 11px)) translateY(-webkit-calc(-100% - 30px));
              -ms-transform: translateX(calc(100% - 11px)) translateY(calc(-100% - 30px));
                  transform: translateX(calc(100% - 11px)) translateY(calc(-100% - 30px)); }
        .timelineline.layout-desktop .timelineline__point.rtl.aligned .date-tooltip {
          -webkit-transform: translateX(0) translateY(-webkit-calc(-100% - 30px));
              -ms-transform: translateX(0) translateY(calc(-100% - 30px));
                  transform: translateX(0) translateY(calc(-100% - 30px)); }
        .timelineline.layout-desktop .timelineline__point.active {
          z-index: 200; }
          .timelineline.layout-desktop .timelineline__point.active .point {
            -webkit-transform: scale(1.5);
                -ms-transform: scale(1.5);
                    transform: scale(1.5);
            background-color: #fff;
            border: 3px solid; }
          .timelineline.layout-desktop .timelineline__point.active:not(.hide_dates)::before {
            content: "";
            display: block;
            position: absolute;
            left: 50%;
            -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                    transform: translateX(-50%);
            top: -15px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 4px 2px 0 2px;
            border-color: currentColor transparent transparent transparent; }
          .timelineline.layout-desktop .timelineline__point.active .date-tooltip {
            opacity: 1; }
        .timelineline.layout-desktop .timelineline__point.future .point {
          background-color: white;
          border: 3px solid currentColor;
          border-style: dotted; } }
  .timelineline.layout-model {
    list-style: none;
    padding: 0;
    position: relative;
    height: 8px;
    margin: 12px 4px 0; }
    .timelineline.layout-model::before {
      content: "";
      display: block;
      height: 2px;
      width: -webkit-calc(100% - 5px);
      width: calc(100% - 5px);
      background: #05B4C6;
      position: absolute;
      top: -webkit-calc(50% - 1px);
      top: calc(50% - 1px);
      left: 0; }
    .timelineline.layout-model .timelineline__point {
      display: inline-block;
      position: absolute;
      top: 0;
      left: 0;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
      .timelineline.layout-model .timelineline__point .point {
        -webkit-border-radius: 50%;
                border-radius: 50%;
        -webkit-transition: all .1s ease-out;
        transition: all .1s ease-out;
        background-color: currentColor;
        width: 8px;
        height: 8px; }
        .timelineline.layout-model .timelineline__point .point::after {
          content: "";
          position: absolute;
          padding: 20px 5px;
          top: -14px; }
      .timelineline.layout-model .timelineline__point .date-tooltip {
        -webkit-transform: translateX(-2px) translateY(-webkit-calc(-100% - 16px));
            -ms-transform: translateX(-2px) translateY(calc(-100% - 16px));
                transform: translateX(-2px) translateY(calc(-100% - 16px)); }
      .timelineline.layout-model .timelineline__point.aligned .date-tooltip {
        -webkit-transform: translateX(-webkit-calc(-100% + 11px)) translateY(-webkit-calc(-100% - 16px));
            -ms-transform: translateX(calc(-100% + 11px)) translateY(calc(-100% - 16px));
                transform: translateX(calc(-100% + 11px)) translateY(calc(-100% - 16px)); }
      .timelineline.layout-model .timelineline__point.rtl .date-tooltip {
        -webkit-transform: translateX(-webkit-calc(100% - 11px)) translateY(-webkit-calc(-100% - 16px));
            -ms-transform: translateX(calc(100% - 11px)) translateY(calc(-100% - 16px));
                transform: translateX(calc(100% - 11px)) translateY(calc(-100% - 16px)); }
      .timelineline.layout-model .timelineline__point.rtl.aligned .date-tooltip {
        -webkit-transform: translateX(0) translateY(-webkit-calc(-100% - 16px));
            -ms-transform: translateX(0) translateY(calc(-100% - 16px));
                transform: translateX(0) translateY(calc(-100% - 16px)); }
      .timelineline.layout-model .timelineline__point.active {
        z-index: 200; }
        .timelineline.layout-model .timelineline__point.active .point {
          -webkit-transform: scale(1.5);
              -ms-transform: scale(1.5);
                  transform: scale(1.5);
          background-color: #fff;
          border: 1.6px solid; }
        .timelineline.layout-model .timelineline__point.active:not(.hide_dates)::before {
          content: "";
          display: block;
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: -8px;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 4px 2px 0 2px;
          border-color: currentColor transparent transparent transparent; }
        .timelineline.layout-model .timelineline__point.active .date-tooltip {
          opacity: 1; }
      .timelineline.layout-model .timelineline__point.future .point {
        background-color: white;
        border: 3px solid currentColor;
        border-style: dotted; }
  .timelineline__point .date-tooltip {
    opacity: 0;
    pointer-events: none;
    border-bottom: 2px solid currentColor;
    width: auto;
    position: absolute;
    font-size: 12px; }
    .timelineline__point .date-tooltip span {
      color: #484947;
      line-height: 1.1; }
    @media (min-width: 500px) and (max-width: 767px) {
      .timelineline__point .date-tooltip:not(.fixed-size) {
        font-size: 15px; } }
    .timelineline__point .date-tooltip.fixed-size-phablet {
      font-size: 15px; }
    @media (min-width: 992px) {
      .timelineline__point .date-tooltip:not(.fixed-size):not(.layout-desktop) {
        font-size: 15px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .timelineline__point .date-tooltip:not(.fixed-size) {
        font-size: 18px; } }
    @media (min-width: 992px) {
      .timelineline__point .date-tooltip.layout-desktop {
        font-size: 15px; } }

.datesWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  direction: ltr;
  padding: 3px 4px 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .datesWrapper::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 2px;
    background-image: -webkit-repeating-linear-gradient(left, transparent, transparent 5%, #dadada 5%, #dadada -webkit-calc(1px + 5%));
    background-image: repeating-linear-gradient(to right, transparent, transparent 5%, #dadada 5%, #dadada calc(1px + 5%));
    border-left: 1px solid #dadada; }
  .datesWrapper span {
    margin: 0 -4px; }
  .datesWrapper span {
    font-weight: 100;
    color: #191919;
    font-size: 11px; }
    @media (min-width: 500px) and (max-width: 767px) {
      .datesWrapper span:not(.fixed-size) {
        font-size: 13px; } }
    .datesWrapper span.fixed-size-phablet {
      font-size: 13px; }
    @media (min-width: 992px) {
      .datesWrapper span:not(.fixed-size):not(.layout-desktop) {
        font-size: 13px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .datesWrapper span:not(.fixed-size) {
        font-size: 15px; } }
    @media (min-width: 992px) {
      .datesWrapper span.layout-desktop {
        font-size: 15px; } }
    .datesWrapper span.layout-model {
      display: none; }
  @media (min-width: 992px) {
    .datesWrapper.layout-desktop {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      direction: ltr;
      padding: 3px 7px 0;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .datesWrapper.layout-desktop::before {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        margin-bottom: 2px;
        background-image: -webkit-repeating-linear-gradient(left, transparent, transparent 5%, #dadada 5%, #dadada -webkit-calc(1px + 5%));
        background-image: repeating-linear-gradient(to right, transparent, transparent 5%, #dadada 5%, #dadada calc(1px + 5%));
        border-left: 1px solid #dadada; }
      .datesWrapper.layout-desktop span {
        margin: 0 -7px; } }

.image-credit {
  color: #888;
  font-size: 9px;
  padding: 1px 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 10px;
  max-height: 10px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  word-wrap: break-word; }
  @media (min-width: 992px) {
    .image-credit.layout-desktop {
      display: none; } }

.publisher-logo {
  height: 30px; }

.share-timeline-section {
  text-align: center;
  padding: 10px 60px;
  border-bottom: 2px solid #dadada; }
  .share-timeline-section__title {
    font-weight: 100;
    display: inline-block;
    font-size: 24px;
    color: #221F1F;
    margin-bottom: 10px;
    margin-top: 10px; }
  .share-timeline-section .embed-option {
    margin-bottom: 10px !important; }
    .share-timeline-section .embed-option__link {
      background-color: #05B4C6; }

.footer-suggestions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px; }
  .footer-suggestions__column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 5px; }
  .footer-suggestions__timeline {
    background-color: #F5F5F5;
    padding: 5px 10px; }

.timeline-model__title span {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 14px;
  max-height: 28px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 28px;
  color: #191919; }

.timeline-model__title.rtl {
  text-align: right;
  direction: rtl; }

.timeline-model__title::before {
  content: "";
  display: block;
  height: 2px;
  width: 14px;
  margin-bottom: 5px;
  background-color: currentColor; }

.timeline-model__coverImage {
  position: relative;
  background-position: center;
  width: 100%;
  height: 60px;
  clear: both; }

.timeline-model__coverLabel {
  background-color: #eee;
  color: #191919;
  font-weight: 300;
  font-size: 11px;
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 2px 4px; }
  .timeline-model__coverLabel.rtl {
    left: auto;
    right: 0; }

.timeline-model__coverShape {
  border-bottom: 6px solid currentColor;
  border-left: 5px solid transparent;
  width: 60%;
  z-index: 100;
  float: right;
  right: 0; }
  .timeline-model__coverShape.rtl {
    border-left: 0px solid transparent;
    border-right: 5px solid transparent;
    float: left;
    left: 0;
    right: auto; }

@-webkit-keyframes slide-up {
  0% {
    padding-top: 500px; }
  100% {
    padding-top: 0; } }

@keyframes slide-up {
  0% {
    padding-top: 500px; }
  100% {
    padding-top: 0; } }

.popup-timeline {
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: -webkit-calc(100% - 200px);
  height: calc(100% - 200px);
  overflow: hidden;
  -webkit-animation: slide-up .4s ease-in 1;
          animation: slide-up .4s ease-in 1; }
  .popup-timeline__inner {
    background-color: white;
    height: 100%;
    width: 100%; }

.poll {
  border-top: 3px currentColor solid;
  min-height: 187px;
  background-color: white;
  background-size: cover;
  background-position: center;
  position: relative; }
  .poll.rtl {
    direction: rtl;
    text-align: right; }
  .poll::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 0; }
  .poll__loader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 40px; }
  .poll__vote {
    position: relative;
    padding: 8px 10px;
    max-width: 500px;
    margin: 0 auto; }
  .poll__title {
    color: white;
    font-size: 26px;
    margin: 5px 0; }
    @media (max-width: 499px) {
      .poll__title {
        font-size: 20px; } }
    .poll__title.fixed-size-phone {
      font-size: 20px; }
  .poll__options {
    padding: 0px 0px 25px;
    margin-bottom: 0; }
  .poll__option {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .poll__option.clickable:hover {
      background-color: rgba(255, 255, 255, 0.2); }
    @media (max-width: 499px) {
      .poll__option {
        font-size: 16px; } }
    .poll__option.fixed-size-phone {
      font-size: 16px; }
  .poll__option-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-weight: 300;
    padding: 4px; }
  .poll__option-percentage {
    font-weight: 300;
    padding: 4px; }
  .poll__option-bar {
    height: 3px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
  .poll__option-bar-inner {
    height: 100%;
    width: 0%;
    -webkit-transition: width 1s ease;
    transition: width 1s ease;
    background-color: currentColor; }

@media (max-width: 499px) {
  .embed-timeline__title.screen-title {
    font-size: 30px; } }

.embed-timeline__title.screen-title.fixed-size-phone {
  font-size: 30px; }

.embed-timeline__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 280; }

.embed-timeline__popup {
  z-index: 290;
  display: block;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  padding: 40px 60px; }
  @media (max-width: 499px) {
    .embed-timeline__popup {
      padding: 20px 30px; } }
  .embed-timeline__popup.fixed-size-phone {
    padding: 20px 30px; }

.embed-timeline__close {
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #e73958;
  line-height: 16px; }

.embed-timeline__options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px; }
  @media (min-width: 500px) and (max-width: 767px) {
    .embed-timeline__options:not(.fixed-size) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .embed-timeline__options.fixed-size-phablet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  @media (min-width: 992px) {
    .embed-timeline__options:not(.fixed-size):not(.layout-desktop) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media (max-width: 499px) {
    .embed-timeline__options {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .embed-timeline__options.fixed-size-phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }

.embed-option {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 20px; }
  @media (min-width: 500px) and (max-width: 767px) {
    .embed-option:not(.fixed-size) {
      margin-bottom: 30px; } }
  .embed-option.fixed-size-phablet {
    margin-bottom: 30px; }
  @media (min-width: 992px) {
    .embed-option:not(.fixed-size):not(.layout-desktop) {
      margin-bottom: 30px; } }
  @media (max-width: 499px) {
    .embed-option {
      margin-bottom: 30px; } }
  .embed-option.fixed-size-phone {
    margin-bottom: 30px; }
  .embed-option__title {
    font-size: 20px;
    color: #05B4C6;
    margin-bottom: 20px; }
    @media (min-width: 500px) and (max-width: 767px) {
      .embed-option__title:not(.fixed-size) {
        margin-bottom: 10px; } }
    .embed-option__title.fixed-size-phablet {
      margin-bottom: 10px; }
    @media (min-width: 992px) {
      .embed-option__title:not(.fixed-size):not(.layout-desktop) {
        margin-bottom: 10px; } }
    @media (max-width: 499px) {
      .embed-option__title {
        margin-bottom: 10px; } }
    .embed-option__title.fixed-size-phone {
      margin-bottom: 10px; }
  .embed-option__icon {
    color: #e73958;
    padding-right: 10px;
    width: 30px; }
  .embed-option__links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 20px;
    color: white;
    max-width: 180px;
    margin: 0 auto; }
  .embed-option__link {
    height: 30px;
    width: 30px;
    background-color: #e73958;
    color: white;
    padding: 5px;
    text-align: center;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3); }
    .embed-option__link:hover, .embed-option__link:active {
      -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.4);
              box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.4);
      color: white; }

.copy-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .copy-field__input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    padding: 0 7px; }
  .copy-field__button {
    text-transform: lowercase;
    padding-right: 15px;
    padding-left: 15px; }

.custom-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 10px; }
  .custom-height__title {
    padding-right: 15px; }
  .custom-height__input {
    width: 25%;
    padding: 0 7px;
    margin-top: -3px; }

.actions-row {
  margin-top: 15px; }

.title-line {
  font-weight: 100;
  font-size: 22px;
  margin-bottom: 15px;
  color: #e73958;
  text-align: left;
  border-bottom: 1px solid;
  padding-bottom: 10px; }

.edit-timeline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .edit-timeline__editor {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .edit-timeline__timeline {
    display: block;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
    width: 400px;
    min-height: 500px;
    margin: 15px 0 5px;
    position: relative; }

.points-list {
  overflow-x: visible;
  width: 180px;
  padding-left: 10px; }
  .points-list, .points-list * {
    -webkit-transition: .15s all ease-in;
    transition: .15s all ease-in; }
  .points-list__scrollable {
    max-height: -webkit-calc(100vh - 200px);
    max-height: calc(100vh - 200px);
    padding-bottom: 23px;
    overflow-y: scroll;
    overflow-x: hidden; }
  .points-list__point {
    padding-bottom: 4em;
    position: relative; }
    .points-list__point::after {
      content: "";
      height: 40px;
      position: absolute;
      right: 0;
      top: 0; }
    .points-list__point--active::after {
      border-right: 5px solid #e73958; }
    .points-list__point--active.points-list__point--new-footer::after {
      border-color: #05B4C6; }
    .points-list__point:not(.points-list__point--active):hover::after {
      border-right: 3px solid rgba(231, 57, 88, 0.3); }
    .points-list__point--new {
      padding-bottom: 0;
      padding-top: 12px; }
      .points-list__point--new:not(:hover) .object-type-chooser__type {
        opacity: 0; }
    .points-list__point--new-footer:not(.points-list__point--active):hover::after {
      border-color: rgba(5, 180, 198, 0.3); }
    .points-list__point--new-footer:hover .points-list__circle::before {
      background-color: #05B4C6;
      color: white;
      border-style: solid; }
    .points-list__point--header {
      padding-bottom: 10px; }
      .points-list__point--header .points-list__circle {
        display: none; }
      .points-list__point--header .points-list__title {
        color: #05B4C6;
        padding-left: 35px;
        font-size: 15px;
        line-height: 1.2;
        position: relative;
        max-height: none;
        margin-bottom: 24px;
        overflow: visible;
        text-overflow: initial;
        display: block;
        -webkit-line-clamp: initial;
        -webkit-box-orient: initial; }
        .points-list__point--header .points-list__title::before {
          border-bottom: 7px solid #05B4C6;
          border-right: 3px solid transparent;
          width: 55px;
          background-color: transparent;
          margin-bottom: 3px; }
  .points-list__circle {
    height: 100%;
    position: absolute;
    left: 26px; }
    .points-list__circle::before {
      content: "";
      background-color: #05B4C6;
      background-size: cover;
      background-position: center;
      border: 6px solid #05B4C6;
        -webkit-border-radius: 50%;
                border-radius: 50%;
      height: 20px;
      width: 20px;
      display: block;
      cursor: pointer; }
    .points-list__circle:not(.points-list__circle--new)::after {
      content: "";
      display: block;
      height: 100%;
      background-color: #05B4C6;
      position: absolute;
      width: 2px;
      left: -webkit-calc(50% - 1px);
      left: calc(50% - 1px); }
    .points-list__circle--new {
      height: auto; }
      .points-list__circle--new::before {
        height: 30px;
        width: 30px;
        -webkit-transform: translateX(-5px);
            -ms-transform: translateX(-5px);
                transform: translateX(-5px);
        content: "+";
        font-size: 20px;
        color: white;
        background-color: #e73958;
        border-color: #e73958;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center; }
    .points-list__circle--new-footer::before {
      background-color: transparent;
      color: #05B4C6;
      -webkit-transition: all .4s;
      transition: all .4s;
      border-width: 2px;
      border-color: #05B4C6;
      border-style: dashed; }
    .points-list__circle--poll::before {
      background-color: #05B4C6;
      border-color: #05B4C6;
      font-family: 'FontAwesome';
      font-size: 16px;
      font-weight: 100;
      content: "\f0ca"; }
    .points-list__circle--active::before {
      background-color: #e73958; }
  .points-list__circle-addon {
    position: absolute;
    left: 0px;
    line-height: 20px;
    text-align: right;
    width: 20px; }
  .points-list__circle-num {
    font-size: 9pt;
    font-weight: 100;
    color: #b1b1b1; }
  .points-list__circle-warning {
    font-size: 20px;
    color: #DF574F; }
  .points-list__title {
    padding-left: 55px;
    padding-right: 15px;
    word-wrap: break-word;
    cursor: pointer;
    font-size: 14px;
    width: 170px;
    -webkit-transition: none;
    transition: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 15px;
    max-height: 56px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }
    .points-list__title::before {
      content: "";
      display: block;
      width: 15px;
      height: 3px;
      margin-bottom: 8px;
      background-color: #05B4C6; }
    .points-list__title--placeholder {
      color: #a7a7a7; }
    .points-list__title--new {
      color: #e73958;
      max-height: 54px;
      padding-bottom: 20px; }
      .points-list__title--new::before {
        background-color: #e73958; }
    .points-list__title--new-footer {
      color: #05B4C6; }
      .points-list__title--new-footer::before {
        background-color: #05B4C6; }

.object-type-chooser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-height: 100px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 1;
  padding-right: 10px; }
  .object-type-chooser__type:nth-child(1) {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms; }
  .object-type-chooser__type:nth-child(2) {
    -webkit-transition-delay: 80ms;
            transition-delay: 80ms; }
  .object-type-chooser__type:nth-child(3) {
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms; }
  .object-type-chooser__button {
    margin-bottom: 3px; }
  .object-type-chooser__name {
    padding-top: 5px;
    font-size: 12px; }

.editing-wrapper {
  width: 100%;
  margin: 0 20px; }

.editing-form {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: 35px; }
  .editing-form__title {
    color: #05B4C6;
    margin: 0;
      margin-bottom: 23px;
    line-height: 40px; }
    .editing-form__title::before, .editing-form__title::after {
      content: "";
      width: 20px;
      height: 3px;
      background-color: #05B4C6;
      display: block; }
  .editing-form__right-action {
    float: right;
    padding-right: 20px; }
    .editing-form__right-action, .editing-form__right-action:hover, .editing-form__right-action:active {
      color: #05B4C6;
      text-decoration: underline; }
    .editing-form__right-action:hover {
      color: #048794; }

.form-field {
  display: block;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: normal;
  position: relative; }
  .form-field--file {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .form-field--file__label {
      font-weight: normal; }
  .form-field__checkbox[type="checkbox"] {
    margin-top: 0px;
    margin-right: 10px; }
  .form-field__input {
    display: block;
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #dadada;
    min-height: 40px;
    background-color: white; }
    .form-field__input:not(.form-control) {
      margin-top: 5px; }
    .form-field__input.ng-invalid {
      border-color: #e73958;
      border-width: 2px; }
    .form-field__input[disabled] {
      color: #dadada;
      cursor: not-allowed; }
  .form-field__button {
    font-size: 20px;
    height: 40px;
    padding: 5px 15px;
    margin-top: 5px; }
  .form-field .color-picker-wrapper {
    margin-top: 5px; }
  .form-field__datetimepicker {
    z-index: 10;
    position: absolute;
    left: 15px;
    background-color: white;
    padding: 10px;
    border: 1px solid #dadada;
      -webkit-border-radius: 3px;
              border-radius: 3px;
    margin-bottom: 30px;
    -webkit-box-shadow: 1px 1px 1px 1px #F4F4F4;
            box-shadow: 1px 1px 1px 1px #F4F4F4; }
    .form-field__datetimepicker--right {
      right: 15px;
      left: auto; }

.content-type-list__item {
  font-size: 16px;
  font-weight: 100;
  margin-bottom: 15px; }

.content-type-list__icon {
  color: #05B4C6;
  font-size: 1.3em !important;
  margin-right: 10px; }

.content-type-list__name {
  font-weight: 400; }
