/* Landing Page Styling */
.landing .timer {
  max-width: 140px;
  margin-right: 20px;
  position: absolute;
}
.landing .timer.js-timer {
  top: -50px;
  right: 0;
  height: 40px;
  padding: 0;
  border-radius: 40px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  background: #fff;
  width: 50%;
  text-align: center;
  opacity: 1;
  animation: 1s ease-out 0s 1 slideInFromRight;
  -webkit-animation: 1s ease-out 0s 1 slideInFromRight;
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.landing .timer .minutes {
  left: -2px;
}
.landing .timer .seconds {
  left: 2px;
  position: relative;
}
.landing .timer .seconds:before {
  content: ":";
  position: absolute;
  left: -8px;
}
.landing .timer h3.subheadline {
  color: #000;
  font-size: 11px;
  text-align: left;
  margin: -8px 0 6px 13px;
}
.landing .timer h3.subheadline i.fa.fa-clock-o {
  position: relative;
  left: -5px;
  font-size: 27px;
  font-weight: 100;
  top: 15px;
}
.landing .timer .expiredText {
  max-width: 60px;
  display: inline-block;
}
.landing .timer .expiredText .number {
  font-size: 16px;
  padding-right: 15px;
  position: relative;
  background: transparent;
  color: #000;
  top: -18px;
  font-weight: bold;
  max-width: 60px;
}
.landing .timer .expiredText .number span.text {
  display: none;
}

/********* Other Page Styling **********/
.page-survey .timer {
  top: 0;
}

.timer {
  padding: 5px 10px 10px;
  position: relative;
  text-align: center;
  max-width: 350px;
  top: -9px;
  margin: 0 auto;
}
.timer h3.subheadline {
  font-size: 18px;
  margin: 0;
  color: #994c4c;
}
.timer .seconds {
  position: relative;
}
.timer .seconds:before {
  content: ":";
  position: absolute;
  left: -9px;
}
.timer .number {
  display: inline-block;
  width: 15%;
  text-align: center;
  margin: 5px;
  background-color: transparent;
  color: #994c4c;
  padding: 5px 0;
  font-size: 28px;
  font-weight: 700;
  max-width: 65px;
}
.timer .number .text {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: -5px;
}

@media (min-width: 768px) {
  .landing .desktop-hero .timer.js-timer {
    width: 650px;
    text-align: left;
    animation: none;
  }
  .landing .desktop-hero .timer.js-timer .seconds:before {
    display: none;
  }
  .landing .desktop-hero .timer.js-timer .expiredText {
    max-width: none;
  }
  .landing .desktop-hero .timer.js-timer .expiredText span.text {
    display: initial;
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: 2px;
  }

  .page-survey .timer {
    z-index: 1;
  }

  .timer {
    max-width: 140px;
    margin-right: 20px;
    position: absolute;
  }
  .timer.js-timer {
    top: -90px;
    right: 0;
    height: 40px;
    padding: 0;
    border-radius: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background: #994c4c;
    width: 50%;
    text-align: center;
    opacity: 1;
    animation: 1s ease-out 0s 1 slideInFromRight;
    -webkit-animation: 1s ease-out 0s 1 slideInFromRight;
  }
  .timer .minutes {
    left: -2px;
  }
  .timer .seconds {
    position: relative;
    left: 2px;
  }
  .timer .seconds:before {
    content: ":";
    position: absolute;
    left: -8px;
  }
  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .timer h3.subheadline {
    color: #fff;
    font-size: 11px;
    text-align: left;
    margin: -8px 0 6px 13px;
  }
  .timer h3.subheadline i.fa.fa-clock-o {
    position: relative;
    left: -5px;
    font-size: 27px;
    font-weight: 100;
    top: 15px;
  }
  .timer .expiredText {
    max-width: 60px;
    display: inline-block;
  }
  .timer .expiredText .number {
    font-size: 16px;
    padding-right: 15px;
    position: relative;
    background: transparent;
    color: #fff;
    top: -18px;
    font-weight: bold;
    max-width: 60px;
  }
  .timer .expiredText .number span.text {
    display: none;
  }
}
@media (min-width: 992px) {
  .timer.js-timer {
    background-color: #fff;
  }
  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .timer h3.subheadline {
    color: #000000;
  }
  .timer .expiredText .number {
    color: #000000;
  }
}
@media (min-width: 1200px) {
  .timer.js-timer {
    top: -91px;
  }
}