:host {
    display: block;
    width: 100%;
}

.dot {
    display: block;
    width: 8px;
    height: 8px;
    background: none;
    border: 1px solid #fff;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    background: #fff;
}
.press-dots {
    display: none;
    -webkit-flex-direction: row;

    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 30px 0 0 0;
}

.press-logos {
    width: 100%;
     display: -webkit-flex;
      display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;

}
.press-logo {
    cursor: pointer;
    height: 42px;
    width: 231px !important;
    opacity: 0.2;
    margin: 0 20px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Fix glitchy opacity bug in chrome */
}
.press-logo.active {
    opacity: 1;
}
.press-logo:hover {
    opacity: 1;
}
.press-logo.forbes {
    background: url('assets/forbes.svg') no-repeat center;
    background-size: contain;
    width: 161px; height: 42px;
}
.press-logo.wired {
    background: url('assets/wired.svg') no-repeat center;
    background-size: contain;
    width: 310px; height: 42px;
}
.press-logo.abc {
    background: url('assets/abc.svg') no-repeat center;
    background-size: contain;
    width: 244px; height: 42px;
}
.press-logo.cnbc {
    background: url('assets/cnbc.svg') no-repeat center;
    background-size: contain;
    width: 210px; height: 42px;
}
.press-logo.us {
    background: url('assets/us.svg') no-repeat center;
    background-size: contain;
    width: 210px; height: 42px;
}
.disable-pointer-events, .disable-pointer-events * {
    pointer-events: none !important;
}
#quote {
    width: 100%;
    height: 250px;
    font-size: 30px;
    line-height: 250px;
    color: #fff;
    font-weight: 400;
    display: table;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
#quote > span {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: normal;
}

/* Logos for mobile view (shown one at a time) */
.quote-logos {
    display: none;
    width: 231px;
    height: 42px;
    margin: 30px auto;
    position: relative;
}
.quote-logo {
    display: none;
    position: absolute;
    cursor: default;
    pointer-events: none;
    opacity: 0;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.fade {
    opacity: 0;
}

.fadeInUp {
    opacity: 1 !important;
}


@media (max-width: 400px) {
    #quote {
        height: 400px;
   }
}
/*
 * Hide logos, show dots
 */

@media (max-width: 1200px) {
    #quote {
        padding-top: 70px;
    }
    .quote-logos, .quote-logo {
        display: block;
   }
   .press-logos {
       display: none;
  }
  .press-dots {
      display: -webkit-flex;
      display: flex;
 }
}
/*
 * Shrink logos
 */

@media (max-width: 1300px) {
    .press-logo {
         margin: 0 auto;
   }
}