html {
  font-size: 16px; }

body {
  font-family: 'Product Sans', 'Open Sans';
  background-color: #f2f2f2;
  margin: 6rem 0 0; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.container {
  padding: 0 4rem;
  max-width: 520px;
  margin: 0 auto; }

#carousel {
  width: 100%; }
  #carousel h3 {
    font-size: 2.125rem;
    color: #7e7e7e;
    margin-top: 0; }

.content {
  overflow: hidden;
  color: #bfbfbf; }
  .content span {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.500rem; }

.description {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 180ms ease-in-out;
  -o-transition: 180ms ease-in-out;
  transition: 180ms ease-in-out;
  -webkit-transform: translateY(-1rem);
  -ms-transform: translateY(-1rem);
  transform: translateY(-1rem); }

#items {
  width: 100%; }

.item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
  margin-bottom: 2.500rem;
  cursor: pointer;
  padding: 0 0 0 1.500rem; }
  .item.active .content {
    color: #7e7e7e; }
  .item.active .description {
    max-height: 100px;
    opacity: 0.75;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset; }
  .item.active .timer {
    height: 100%;
    background-color: #7e7e7e; }
    .item.active .timer > div {
      opacity: 1; }

.timer {
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 1.5rem;
  background-color: #d8d8d8;
  overflow: hidden; }
  .timer > div {
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    position: absolute;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 0; }
