/* Front Site essentials
------------------------------ */
h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

@media (min-width: 576px) {
  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 2.8rem;
  }

  h4 {
    font-size: 1.8rem;
  }
}

p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #7f7fa5;
  margin-top: 20px;
}

p:first-child {
  margin-top: 0;
}

/* --- Animations --- */
@keyframes fadeInY {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(-15px);
  }
}

@keyframes fadeOutY {
  0% {
    opacity: 1;
    transform: translateY(-15px);
  }

  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

@keyframes scale {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideBottom {
  0% {
    transform: translate3d(0, -100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideTop {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideRight {
  0% {
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideRightTop {
  0% {
    transform: translate3d(-100%, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideRightBottom {
  0% {
    transform: translate3d(-100%, -100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideLeft {
  0% {
    transform: translate3d(100%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideLeftTop {
  0% {
    transform: translate3d(100%, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideLeftBottom {
  0% {
    transform: translate3d(100%, -100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* --- Site --- */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex-grow: 1;
}

/* --- Site header --- */
.site-header {
  display: flex;
  background-color: rgba(125, 161, 248, 1);
}

.site-header__inner {
  align-content: stretch;
  width: 100%;
  z-index: auto !important;
}

/* Site header contents */
.site-navigation {
  height: 55px;
  padding: 0;
  position: relative;
  z-index: 9999;
}

.site-navigation__inner {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
}

.site-navigation__bar {
  position: fixed;
  top: 0;
  background-color: rgba(125, 161, 248, 1);
  display: flex;
  width: 100%;
  height: 65px;
  align-items: center;
  z-index: 3;
}

.site-navigation__bar > .container {
  min-width: 320px;
}

.handheld .site-navigation__bar {
  height: 65px;
}

.-fixed .site-navigation__bar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}

.-fx .site-navigation__bar {
  background-color: rgba(125, 161, 248, 1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05), 0 1px 1px -2px rgba(0, 0, 0, 0.07);
}

@media (min-width: 360px) {
  .site-navigation__bar > .container {
    min-width: 360px;
  }
}

@media (min-width: 375px) {
  .site-navigation__bar > .container {
    min-width: 375px;
  }
}

@media (min-width: 412px) {
  .site-navigation__bar > .container {
    min-width: 412px;
  }
}

@media (min-width: 414px) {
  .site-navigation__bar > .container {
    min-width: 414px;
  }
}

@keyframes siteHeader {
  0% {
    background-color: rgba(125, 161, 248, 0);
  }

  100% {
    background-color: rgba(125, 161, 248, 1);
  }
}

.site-logo {
  display: block;
  width: 220px;
  max-height: 100px;
  z-index: 30;
}

@media all and (-ms-high-contrast: none) {
  .site-logo {
    height: 33px;
  }
}

.site-logo svg {
  display: block;
  fill: #fff;
}

.site-nav {
  position: relative;
  white-space: nowrap;
}

.site-nav__items {
  display: none;
}

.site-nav__items:hover .-current:hover a {
  color: #fff;
}

.site-nav__items__inner {
  align-items: baseline;
}

.handheld .site-nav__items__inner {
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 99.9%;
}

.site-nav__items__inner .site-nav__item:last-child {
  border-bottom: 0;
}

.site-nav__item a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  transition: color 0.2s ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.site-nav__item a:hover {
  color: rgba(255, 255, 255, 1);
}

.site-nav__item > a {
  padding: 30px 10px;
  font-size: 1.3rem;
}

.site-nav__item.-current a {
  color: rgba(255, 255, 255, 1);
}

.site-nav__btn {
  font-weight: 400;
  font-size: 1.3rem;
  display: none;
  text-transform: uppercase;
  padding-left: 12px;
  padding-right: 12px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-nav__btn:hover {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-home .site-navigation__bar {
  background-color: rgba(125, 161, 248, 0);
}

.page-home .-fixed .site-navigation__bar {
  background-color: rgba(125, 161, 248, 1);
}

@media (min-width: 576px) {
  .site-navigation {
    height: 105px;
  }

  .site-logo {
    width: 212px;
  }
}

@media (min-width: 768px) {
  .site-navigation__bar {
    background-color: rgba(125, 161, 248, 0);
  }

  .-fx .site-navigation__bar {
    animation: forwards siteHeader 0.4s ease-out;
  }

  .site-logo {
    width: 245px;
  }

  .site-nav__items__inner {
    display: flex;
  }

  .handheld .site-nav__items__inner {
    display: block;
  }

  .site-nav__items {
    display: inline-flex;
  }

  .site-nav__btn {
    display: inline-flex;
    margin-left: 20px;
  }
}

@media (min-width: 992px) {
  .site-logo {
    width: 265px;
  }
}

/* Modal overlay */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(27, 37, 56, 0.98);
  position: fixed;
  opacity: 0;
  z-index: -9999;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
  font-size: 0;
  overflow: hidden;
}

.modal__window {
  z-index: 2;
  position: relative;
  background: #fff;
  width: 480px;
  border-radius: 5px;
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
}

/* Sub navigation contents */
.handheld .site-nav__dropdown > a {
  display: none;
}

.site-nav__dropdown > a {
  position: relative;
}

.site-nav__dropdown > a:after {
  background-position: -130px -130px;
  opacity: 0.55;
  transition: opacity 0.25s ease-in-out;
  display: none;
}

.site-nav__dropdown > a:hover:after,
.site-nav__dropdown.-current > a:after {
  opacity: 1;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site-nav__dropdown > a svg {
    display: none;
  }
}

.site-nav__dropdown:hover .site-nav__dropdown-content,
.site-nav__dropdown.-active .site-nav__dropdown-content {
  display: block;
}

.site-nav__dropdown-content {
  position: absolute;
  display: none;
  left: -10px;
  right: -20px;
  z-index: 101;
  animation: zoomIn 0.1s ease-out forwards;
}

.site-nav__dropdown-content:before {
  display: none;
  border-bottom-color: rgba(35, 45, 52, 0.97);
  opacity: 0.98;
  content: "";
  position: absolute;
  left: 55px;
  bottom: 100%;
  margin-bottom: -1px;
  margin-left: -14px;
  border-width: 14px;
  border-style: solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top: 0;
}

@media (min-width: 992px) {
  .site-nav__dropdown > a:after {
    display: block;
  }

  .site-nav__dropdown-content {
    left: 15px;
  }

  .site-nav__dropdown-content:before {
    bottom: 100%;
  }
}

.site-nav__dropdown:hover .site-nav__dropdown-content:before,
.site-nav__dropdown.-active .site-nav__dropdown-content:before {
  display: block;
}

.site-nav__dropdown-content .section-topic {
  display: none;
}

.site-nav__dropdown-content__inner {
  background-color: rgba(35, 45, 52, 0.97);
  margin: 0 20px 20px;
  border-radius: 6px;
  box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.01), 0 9px 12px 1px rgba(0, 0, 0, 0.09), 0 3px 16px 2px rgba(0, 0, 0, 0.05);
}

.site-nav__dropdown-content__lists {
  display: flex;
}

.site-nav__dropdown-content__lists h3 {
  margin: 0 0 15px;
  font-size: 1.4rem;
  color: #a5a7a9;
  text-transform: uppercase;
  font-weight: 600;
}

.site-nav__dropdown-content__lists h3.-break {
  padding-bottom: 15px;
}

.site-nav__dropdown-content__lists h3.-break:after {
  background: #393c3e;
}

.site-nav__dropdown-content__lists ul {
  padding: 20px;
  flex: 1;
  position: relative;
}

.site-nav__dropdown-content__lists ul:first-child:after {
  border: 0;
  padding: 0;
}

.site-nav__dropdown-content__lists ul:after {
  top: 0;
  bottom: 0;
  left: -1px;
  position: absolute;
  content: "";
  border-left: 1px solid #393c3e;
  padding-left: 20px;
}

.site-nav__dropdown-content__lists li a {
  position: relative;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 30px;
  text-transform: inherit;
  color: rgba(255, 255, 255, 0.55) !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
  padding-left: 20px;
  margin-left: -20px;
}

.site-nav__dropdown-content__lists li a:before {
  transform: scale(0);
  background: #f3a527;
  width: 2px;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.25s ease;
}

.site-nav__dropdown-content__lists li a:hover:before,
.site-nav__dropdown-content__lists li.-current a:before {
  transform: scale(1);
}

.site-nav__dropdown-content__lists li.-current a {
  color: #fff !important;
}

.site-nav__dropdown-content__lists:hover li a {
  color: rgba(255, 255, 255, 0.55) !important;
}

.site-nav__dropdown-content__lists:hover li.-current a:before {
  opacity: 0;
}

.site-nav__dropdown-content__lists:hover li a:hover {
  color: #fff !important;
}

.handheld .site-nav__dropdown:hover .site-nav__dropdown-content:before,
.handheld .site-nav__dropdown.-active .site-nav__dropdown-content:before {
  display: none;
}

.handheld .site-nav__dropdown-content {
  top: 0 !important;
  left: 0;
  right: 0;
}

.handheld .site-nav__dropdown-content__lists h3.-break {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  margin: 0;
  background-color: #192235;
  color: #fff;
}

.handheld .site-nav__dropdown-content__lists h3.-break:after {
  display: none;
}

.handheld .site-nav__dropdown-content__lists ul {
  width: 100%;
}

.handheld .site-nav__dropdown-content__lists li a {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff !important;
  max-width: 100%;
  margin: 0;
}

.handheld .site-nav__dropdown-content__lists li:last-child a {
  border-bottom: 0;
}

.handheld .site-nav__dropdown-content__lists li a:hover:before,
.handheld .site-nav__dropdown-content__lists li.-current a:before {
  transform: scale(0);
}

@media (min-width: 992px) {
  .site-nav__item > a {
    padding: 22px 28px;
  }

  .site-nav__dropdown:before {
    bottom: -1px;
  }
}

/* Site header Mobile */
.handheld .site-nav__btn,
.handheld .site-nav__items {
  display: none;
}

.handheld .site-nav__items.-active {
  display: block;
}

.handheld .site-nav__items {
  z-index: 25;
  position: fixed;
  padding: 70px 0 40px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: fadeIn 0.4s ease, slideBottom 0.4s ease;
  background-color: rgba(27, 37, 56, 0.98);
  text-align: center;
  font-size: 1.4em;
  box-shadow: 0 14px 24px 0 rgba(50, 48, 57, 0.25);
}

.handheld .site-nav__item,
.handheld .site-nav__item a {
  color: #fff;
  opacity: 1 !important;
  text-transform: inherit;
  font-size: 2rem;
}

.handheld .site-nav__dropdown ul,
.handheld .site-nav__dropdown li,
.handheld .site-nav__dropdown div {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  position: relative !important;
  display: block !important;
  flex: none;
}

.handheld .site-nav__dropdown-content__inner {
  background-color: transparent;
  margin-bottom: 0;
  animation: none;
  box-shadow: none;
}

.handheld .site-nav__dropdown:hover:before,
.handheld .site-nav__dropdown.-active:before {
  display: none;
}

.handheld .site-nav__dropdown .browse-nav:hover .browse-nav__item {
  opacity: 1;
}

.handheld .site-nav__dropdown .browse-nav__item,
.handheld .site-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.handheld .site-nav__item-break {
  position: relative;
  padding-top: 40px;
}

.handheld .site-nav__item-break:before {
  content: "Company";
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  margin: 0;
  background-color: #192235;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.handheld .site-nav__dropdown .browse-nav__item:last-child {
  border-bottom: 0;
}

.handheld .site-nav__dropdown .browse-nav__item a,
.handheld .site-nav__item > a {
  padding: 15px;
}

.handheld .site-nav__dropdown .browse-nav__item a div {
  margin: 0;
  padding: 0;
}

.handheld .site-nav__dropdown .browse-nav__item [class^="-font-icon__"]:before {
  display: none;
}

.site-nav__items-call {
  display: none;
  height: 45px;
  line-height: 45px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  text-transform: uppercase;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 15px;
  color: #fff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px -2px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.handheld .site-nav__items-call {
  display: inline-block;
  z-index: 30;
}

/* site hero */
.hero {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 40px 0;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.hero .section-topic {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 5px 15px rgba(50, 48, 57, 0.2);
  margin-bottom: 30px;
}

.hero-title {
  margin: 0;
  color: #fff;
  text-shadow: 0 5px 15px rgba(50, 48, 57, 0.2);
}

.hero-lead {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 5px 15px rgba(50, 48, 57, 0.2);
  margin-top: 1rem;
  margin-bottom: 0;
}

.hero-lead br {
  display: none;
}

.hero-paragraph {
  font-size: 1.4rem;
  color: #cbdcff;
  text-shadow: 0 5px 5px rgba(50, 48, 57, 0.2);
  margin-top: 2rem;
}

/* --- */

/* --- */

.hero-content__install-extension {
  border-radius: 5px;
  text-align: center;
  top: 0;
  margin: auto;
  margin-top: 20px;
  height: 52px;
  width: 313px;
  border: 1px solid rgba(255, 255, 255, 0.67);
  padding: 10px 15px;
  position: relative;
}

.hero-content__install-extension__button {
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(118, 137, 224, 0.58);
  border-radius: 4px;
  color: #fff !important;
  margin: 0;
  padding: 0 22px;
  transition: background 0.2s ease;
}

.hero-content__install-extension__button:hover {
  background: rgba(135, 151, 226, 0.58);
}

.hero-content__install-extension__title {
  margin: 0;
  float: left;
  color: #fff;
  line-height: 50px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-content__install-extension__chrome {
  float: right;
  line-height: 50px;
  position: relative;
  display: block;
  color: #fff !important;
  margin: 0;
  padding: 0;
  transition: background 0.2s ease;
}

.hero-content__install-extension__chrome:before {
  position: absolute;
  content: "";
  left: -26px;
  top: 15px;
  background: url(../img/icon-chrome.svg) no-repeat center;
  width: 20px;
  height: 20px;
}

.hero-content__install-extension.heartbeat {
  animation-name: heartbeat_animation;
  animation-duration: 5s;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-delay: 1s;
}

@keyframes heartbeat_animation {
  0%,
  40% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.08);
  }

  44% {
    transform: scale(1);
  }

  46% {
    transform: scale(1);
  }

  48% {
    transform: scale(1.05);
  }

  50%,
  100% {
    transform: scale(1);
  }
}

/* --- */

/* --- */

/* --- */

/* --- */

@media (min-width: 576px) {
  .hero-content {
    padding: 40px 0 110px;
  }

  .hero-lead {
    font-size: 2.2rem;
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-lead br {
    display: block;
  }

  .hero-paragraph {
    font-size: 1.6rem;
  }
}

/* Backgrounds */
.bg {
  background-color: #f2f6fa;
}

.bg-img {
  position: relative;
  background-repeat: no-repeat;
}

.bg-img > * {
  z-index: 1;
}

.bg.-inner-shade {
  background: linear-gradient(to bottom, rgba(251, 251, 251, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.bg-img.-gradient-dark {
  background: linear-gradient(to bottom, #232d34 0%, #2b3238 100%);
  color: #fff;
}

/* Dynamic logo clients */
.logo-showcase-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .logo-showcase--wrapper .logo-showcase__logo {
    top: calc(100% - 56px);
  }
}

.logo-showcase--wrapper {
  position: relative;
  height: 56px;
  width: 160px;
  display: flex;
  align-items: center;
  margin: 40px 25px 0;
  top: -40px;
}

.logo-showcase--wrapper .logo-showcase__logo {
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: 100%;
  filter: grayscale(100%);
  position: absolute;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.logo-showcase--wrapper .logo-showcase__logo.-active {
  opacity: 0.5;
}

.logo-showcase:hover .logo-showcase--wrapper .logo-showcase__logo.-active {
  filter: grayscale(0);
  opacity: 1;
}

.logo-showcase--colored .logo-showcase__logo {
  filter: grayscale(0);
}

.logo-showcase--colored .logo-showcase__logo.-active {
  opacity: 1;
}

.logo-showcase--nowrap .logo-showcase--wrapper {
  margin: 0 10px;
  top: 0;
}

@media (min-width: 768px) {
  .logo-showcase {
    display: block;
  }

  .logo-showcase--nowrap .logo-showcase--wrapper {
    margin: 0 25px;
  }
}

/* section styles */
.section-topic {
  color: #84859e;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.section-sub-title {
  font-size: 2rem;
}

.section-lead {
  font-size: 1.6rem;
  margin-bottom: 3.5rem;
}

.section-lead .link {
  color: #7f7fa5;
  border-bottom: 1px dotted rgba(127, 127, 165, 0.5);
  transition: color 0.2s ease-out, border-bottom 0.2s ease-out;
}

.section-lead .link:hover {
  color: #6d8ac6;
  border-bottom: 1px solid rgba(109, 138, 198, 1);
}

@media (min-width: 576px) {
  .section-lead {
    font-size: 2rem;
  }
}

.-four-columns {
  column-count: 1;
  column-gap: 60px;
  -moz-column-count: 1;
  -moz-column-gap: 60px;
  -webkit-column-count: 1;
  -webkit-column-gap: 60px;
}

@media (min-width: 768px) {

  .-four-columns {
    column-count: 2;
    column-gap: 60px;
    -moz-column-count: 2;
    -moz-column-gap: 60px;
    -webkit-column-count: 2;
    -webkit-column-gap: 60px;
  }
}

@media (min-width: 1200px) {

  .-four-columns {
    column-count: 4;
    -moz-column-count: 4;
    -webkit-column-count: 4;
  }
}

/* call to actions */
.hr-btn {
  position: relative;
  display: flex;
}

.hr-btn:before {
  content: "";
  position: absolute;
  border-top: 1px solid #f2f2f2;
  width: 100%;
  top: 50%;
}

.hr-btn .btn {
  margin: 0 auto;
}

/* call to action chrome extension */
.cta-chrome-extension {
  display: none;
  padding: 30px 0;
  text-align: center;
}

.cta-chrome-extension .btn + a {
  font-weight: 300;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .cta-chrome-extension {
    display: block;
  }
}

/* footer styles */
.site-footer {
  background-color: #232d34;
}

.site-footer,
.site-footer a {
  color: #bbb;
}

.site-footer a {
  display: block;
}

.site-footer .btn {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

/* --- */
.site-footer__newsletter {
  color: #fff;
  text-shadow: 0 5px 15px rgba(50, 48, 57, 0.2);
}

.site-footer__newsletter h3 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem !important;
}

.site-footer__newsletter p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0 !important;
}

.site-footer__newsletter .form-group {
  width: 510px;
  margin: 0 auto;
  position: relative;
}

.site-footer__newsletter__input {
  flex: 1;
  line-height: 22px;
  height: 44px;
  font-size: 16px;
  background-color: #1e262c;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  color: #fff !important;
  transition: all 0.2s ease-in-out !important;
}

.site-footer__newsletter__input:hover,
.site-footer__newsletter__input:focus {
  background-color: #343d44;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.site-footer__newsletter__input::-webkit-input-placeholder {
  font-weight: 300;
  color: #686f73;
  transition: color 0.3s ease-in-out;
}

.site-footer__newsletter__input::-moz-placeholder {
  font-weight: 300;
  color: #686f73;
  transition: color 0.3s ease-in-out;
}

.site-footer__newsletter__input:-moz-placeholder {
  font-weight: 300;
  color: #686f73;
  transition: color 0.3s ease-in-out;
}

.site-footer__newsletter__input:-ms-input-placeholder {
  font-weight: 300;
  color: GrayText;
  transition: color 0.3s ease-in-out;
}

.site-footer__newsletter input[type="submit"] {
  line-height: 1;
  font-size: 14px;
  height: 44px;
}

/* --- */
.site-footer .site-logo {
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.site-footer .site-logo:hover {
  opacity: 1;
}

.sprite__social-icons {
  margin: 28px 0 5px;
}

.sprite__social-icons li {
  display: inline-block;
  margin-left: 20px;
}

.sprite__social-icons li:first-child {
  margin-left: 0;
}

[class*="sprite__social-icon__"] {
  opacity: 0.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
  background-image: url(../img/sprite-social-colored.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  text-indent: -999em;
  transform: scale(1.3);
}

[class*="sprite__social-icon__"]:hover {
  opacity: 1;
  transform: scale(1.4);
}

header [class*="sprite__social-icon__"],
footer [class*="sprite__social-icon__"] {
  background-image: url(../img/sprite-social-light.svg);
}

.sprite__social-icon__twitter {
  background-position: 3px 4px;
}

.sprite__social-icon__linkedin {
  background-position: -34px 3px;
}

.sprite__social-icon__facebook {
  background-position: -65px 4px;
}

.sprite__social-icon__google-plus {
  background-position: -99px 4px;
}

.sprite__social-icon__instagram {
  background-position: -137px 4px;
}

.site-footer__links {
  font-size: 1.4rem;
  font-weight: 300;
}

.site-footer__links-inner {
  display: block;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__links-inner ul {
  margin: 0 0 40px;
}

.site-footer__links-inner li {
  line-height: 25px;
}

.site-footer__topic {
  color: #656c71;
  font-weight: 600;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.site-footer__install-extension {
  position: absolute;
  display: none !important;
  border-radius: 5px;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  height: 107px;
}

.site-footer__install-extension__title {
  margin: 4px 0 12px;
}

.site-footer__install-extension__button {
  width: 130px;
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: #fff !important;
  line-height: 2rem;
  margin: 0 0 8px;
  padding: 5px 5px 5px 22px;
  transition: background 0.2s ease;
}

.site-footer__install-extension__button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-footer__install-extension__button:before {
  position: absolute;
  content: "";
  left: 9px;
  top: 8px;
  background: url(../img/icon-chrome.svg) no-repeat center;
  width: 14px;
  height: 14px;
}

.site-footer__install-extension__info {
  font-size: 1.2rem;
}

.site-footer__bottom {
  margin: 0 0 60px;
  font-size: 1.4rem;
  font-weight: 300;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: center;
}

.site-footer__copyright span {
  display: none;
}

.site-footer__bottom,
.site-footer__bottom a {
  color: #656c71;
}

.site-footer__bottom-links {
  display: flex;
}

.site-footer__bottom-links > a {
  margin: 0 5px;
  color: #bbb;
}

.site-footer__bottom-links span {
  display: none;
}

@media (min-width: 576px) {
  .site-footer__copyright span {
    display: inline;
  }

  .site-footer__bottom-links span {
    display: inline;
  }
}

@media (min-width: 768px) {
  .site-footer__links-inner {
    display: flex;
  }

  .site-footer__links-inner ul {
    margin: 0;
  }
}

@media (min-width: 992px) {

  .site-footer__install-extension {
    position: relative;
    display: block !important;
    top: -10px;
  }
}

/* --- Home --- */
.page-home .hero {
  min-height: 360px;
}

.page-home .hero-content.-interaction {
  padding: 40px 0 85px;
}

.page-home .hero-title {
  margin: 30px 0 0;
  padding-left: 40px;
  padding-right: 40px;
}

.page-home .hero-content {
  padding: 0;
}

.page-home .hero-lead {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .hero-paragraph {
  margin-top: 20px;
}

@media (min-width: 576px) {
  .page-home .hero {
    height: 590px;
  }

  .page-home .hero-title {
    margin: 50px 0 0;
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .hero-lead {
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .hero-paragraph {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .page-home .hero-content.-interaction {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .page-home .hero-lead {
    padding-left: 70px;
    padding-right: 70px;
  }
}

/* quick-lookup */
.quick-lookup {
  display: flex;
  margin: 0 auto;
  max-width: 510px;
  position: relative;
  flex-direction: column;
  z-index: 20;
  animation: fadeIn 2s ease forwards;
}

.quick-lookup__insert {
  height: 60px;
  transition: height 0.25s ease;
}

.quick-lookup__box {
  position: relative;
  display: flex;
  width: 100%;
  background-color: rgba(42, 53, 88, 1);
  border-radius: 6px;
  box-shadow: 0 5px 40px 0 rgba(50, 48, 57, 0.25);
  transition: box-shadow 0.5s ease, height 0.5s ease;
}

.hero .quick-lookup__box {
  background-color: rgba(42, 53, 88, 0.85);
}

.-interaction .quick-lookup__insert {
  /* height: 520px; */
  height: 300px;
  transition: height 1s ease;
  overflow: hidden;
}

.page-home .-interaction .quick-lookup__insert {
  /* height: 490px; */
  height: 270px;
}

.quick-lookup__insert .quick-lookup__main {
  padding-top: 60px;
}

.quick-lookup__favicon,
.quick-lookup__input[type="text"] {
  background-color: transparent;
  color: #fff;
  font-weight: 300;
  font-size: 2.2rem;
  border: 0;
  height: 60px;
}

.quick-lookup__favicon {
  justify-content: center;
  display: flex;
  border-radius: 6px 0 0 6px;
  width: 100%;
}

.quick-lookup__favicon > * {
  font-size: 18px;
  align-self: center;
  width: 16px;
  height: 16px;
}

.quick-lookup__favicon > *:before {
  display: block;
}

.quick-lookup--light .quick-lookup__favicon > .icon {
  color: #799adc;
}

.quick-lookup__input[type="text"] {
  border-radius: 0 6px 6px 0;
  width: 100%;
  padding: 15px;
}

.quick-lookup__input[type="text"]::-webkit-input-placeholder {
  color: #adbfe2;
}

.quick-lookup__input[type="text"]::-moz-placeholder {
  color: #adbfe2;
}

.quick-lookup__input[type="text"]:-moz-placeholder {
  color: #adbfe2;
}

.quick-lookup__input[type="text"]:-ms-input-placeholder {
  color: #adbfe2;
}

.quick-lookup__submit[type="submit"] {
  padding: 0;
  font-size: 24px;
  margin: 2px;
  border-radius: 4px;
  min-width: 71px;
  width: 71px;
  height: 56px;
}

.quick-lookup__submit[type="submit"]:hover,
.quick-lookup__submit[type="submit"]:active,
.quick-lookup__submit[type="submit"]:focus {
  transform: scale(1);
}

.quick-lookup__submit[type="submit"]:before {
  margin: 0;
}

.quick-lookup__submit[type="submit"] i {
  display: inline-block;
  background: url(../img/ui/loop.svg) no-repeat -1px -96px;
  width: 20px;
  height: 20px;
}

.quick-lookup__submit[type="submit"].btn-loading i {
  display: none;
}

.quick-lookup__side {
  display: flex;
  justify-content: center;
  width: 70px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-lookup__main {
  display: flex;
  align-items: center;
  width: 100%;
}

.quick-lookup__side + .quick-lookup__main {
  width: calc(100% - 70px);
}

.handheld .quick-lookup__side {
  display: none;
}

.handheld .quick-lookup__main {
  width: 100%;
}

.quick-lookup__form {
  display: flex;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 5;
  box-shadow: none;
  transition: box-shadow 0.4s ease-in-out;
}

.quick-lookup__side + .quick-lookup__main .quick-lookup__form {
  width: calc(100% - 70px);
}

.handheld .quick-lookup__form {
  width: 100%;
}

.handheld .quick-lookup__side + .quick-lookup__main .quick-lookup__form {
  width: 100%;
}

.quick-lookup__results {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  color: #cdf;
  font-weight: 300;
  font-size: 1.4rem;
}

.quick-lookup__results__inner {
  padding: 20px;
  visibility: hidden;
}

.-interaction .quick-lookup__results__inner {
  visibility: visible;
  height: 100%;
}

.quick-lookup__result {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
}

.quick-lookup__result:first-child {
  border-top: 0;
}

.quick-lookup__result__label,
.quick-lookup__result__output {
  width: 50%;
  align-self: flex-start;
}

.quick-lookup__result--items {
  width: 100%;
}

.quick-lookup__result--items--expand .quick-lookup__result--item-children {
  display: block;
}

.quick-lookup__result--item-parent .quick-lookup__result__label {
  width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.quick-lookup__result--item-parent .quick-lookup__result__output {
  width: 20%;
}

.quick-lookup__result--item {
  flex-direction: column;
  display: flex;
  margin-top: 10px;
}

.quick-lookup__result--item-head,
.quick-lookup__result--item-parent,
.quick-lookup__result--item-children {
  display: flex;
  line-height: 20px;
  width: 100%;
}

.quick-lookup__result--item-head {
  margin-bottom: 10px;
}

.quick-lookup__result--item-parent {
  padding: 5px 0;
  border-top: 1px solid #ececec;
  cursor: pointer;
}

.quick-lookup__result--item-parent:hover {
  color: #000;
}

.quick-lookup__result--item-parent--blurred {
  color: transparent;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.quick-lookup__result--item-parent--blurred .legend-item {
  filter: blur(3px);
}

.quick-lookup__result--item-parent--blurred > a {
  color: transparent;
  pointer-events: none;
}

.quick-lookup__result--item-children {
  background-color: #f7f7f7;
  flex-direction: column;
  display: none;
}

.quick-lookup__result--item-row:first-child {
  border-top: 0;
}

.quick-lookup__result--item-row {
  display: flex;
  border-top: 1px solid #ececec;
  padding: 5px 10px;
}

.quick-lookup__result--item-cta {
  margin: -100px auto 0;
  border: 0;
}

.quick-lookup__result--item-cta .btn {
  margin-left: auto;
  margin-right: auto;
}

.quick-lookup__result__output {
  display: flex;
  justify-content: space-between;
}

.quick-lookup__result__output .bar {
  display: flex;
  align-self: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(50, 68, 100, 0.9);
  width: 100px;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
}

.quick-lookup__result__output .bar__fill {
  background-color: #ffa800;
}

.quick-lookup__result__output .bar__count {
  display: flex;
  margin-left: 10px;
}

.quick-lookup__result__inner {
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  padding: 0 10px 0 20px;
}

.heartbeat__bars {
  display: flex;
  width: 100%;
  height: 100px;
  justify-content: space-between;
  padding: 20px 0 30px;
}

.heartbeat__bar {
  position: relative;
  width: 10px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.heartbeat__bar [class*="color-"] {
  display: flex;
  width: 6px;
  border-radius: 4px;
}

.-interaction .heartbeat__bar [class*="color-"] {
  transform: scale(0);
  animation: scale 0.25s ease forwards;
}

.-interaction .heartbeat__bar:nth-child(1) [class*="color-"] {
  animation-delay: 0.2s;
}

.-interaction .heartbeat__bar:nth-child(2) [class*="color-"] {
  animation-delay: 0.25s;
}

.-interaction .heartbeat__bar:nth-child(3) [class*="color-"] {
  animation-delay: 0.3s;
}

.-interaction .heartbeat__bar:nth-child(4) [class*="color-"] {
  animation-delay: 0.35s;
}

.-interaction .heartbeat__bar:nth-child(5) [class*="color-"] {
  animation-delay: 0.4s;
}

.-interaction .heartbeat__bar:nth-child(6) [class*="color-"] {
  animation-delay: 0.45s;
}

.-interaction .heartbeat__bar:nth-child(7) [class*="color-"] {
  animation-delay: 0.5s;
}

.-interaction .heartbeat__bar:nth-child(8) [class*="color-"] {
  animation-delay: 0.55s;
}

.-interaction .heartbeat__bar:nth-child(9) [class*="color-"] {
  animation-delay: 0.6s;
}

.-interaction .heartbeat__bar:nth-child(10) [class*="color-"] {
  animation-delay: 0.65s;
}

.-interaction .heartbeat__bar:nth-child(11) [class*="color-"] {
  animation-delay: 0.7s;
}

.-interaction .heartbeat__bar:nth-child(12) [class*="color-"] {
  animation-delay: 0.75s;
}

.heartbeat__month {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  font-size: 10px;
  text-align: center;
}

.heartbeat__year {
  position: absolute;
  padding-right: 5px;
  right: -3px;
  bottom: -20px;
  top: -15px;
  font-size: 10px;
  text-align: right;
  border-right: 1px dotted rgba(255, 255, 255, 0.15);
}

.quick-lookup__extension {
  display: none;
  margin-top: 10px;
  z-index: 10;
}

.-interaction .quick-lookup__extension {
  display: none;
}

.quick-lookup__extension__title {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
}

.quick-lookup__extension__browser-icon {
  position: relative;
  content: "";
  background: url(../img/icon-chrome.svg) no-repeat center;
  width: 50%;
  background-size: 99%;
}

.quick-lookup__result__image {
  height: 60px;
  padding: 15px;
  background: url(../img/bg-canvas.png) repeat;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.2) inset;
}

.quick-lookup__result__image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.page-home .hero-content .hero-title,
.page-home .hero-content .hero-lead,
.page-home .hero-content .hero-paragraph {
  height: 100%;
  transition: opacity 0.25s, margin 0.5s, padding 0.5s, height 0.5s, line-height 0.5s;
}

.page-home .hero-content.-interaction .hero-title,
.page-home .hero-content.-interaction .hero-lead,
.page-home .hero-content.-interaction .hero-content__install-extension,
.page-home .hero-content.-interaction .hero-paragraph {
  opacity: 0;
  margin: 0;
  padding: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}

.page-home .hero-content .quick-lookup {
  transform: translate3d(0, 0, 0);
  transition: transform 0.5s ease;
}

.page-home .hero-content.-interaction .quick-lookup {
  transform: translate3d(0, 0, 0);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .quick-lookup__input[type="text"] {
    width: 405px;
  }
}

@media (min-width: 992px) {
  .-interaction .quick-lookup__extension {
    display: flex;
  }

  .quick-lookup__input[type="text"] {
    font-size: 2rem;
  }
}

.quick-lookup--light .quick-lookup__side,
.quick-lookup--light .quick-lookup__result {
  border-color: #ececec;
}

.quick-lookup--light .quick-lookup__box {
  background-color: #fff;
}

.quick-lookup--light .quick-lookup__input[type="text"] {
  color: #000;
  text-shadow: none;
}

.quick-lookup--light .quick-lookup__results {
  color: #7f7fa5;
}

.quick-lookup--light .quick-lookup__extension__title {
  color: #000;
}

.quick-lookup .quick-lookup__close-window {
  display: none;
  text-indent: -999em;
  color: #fff;
  background: url(../img/ui/cross-light.svg) no-repeat center;
  background-size: 33%;
  position: absolute;
  right: -50px;
  top: 15px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.quick-lookup .quick-lookup__close-window:hover {
  opacity: 1;
}

.site-header .-interaction .quick-lookup__close-window {
  display: block;
}

.quick-lookup__no-results {
  width: 100%;
  padding: 0;
  color: #cdf;
  opacity: 0;
  text-align: center;
}

.quick-lookup__no-results .quick-lookup__results__inner {
  text-align: left;
  width: 100%;
}

.-interaction .quick-lookup__no-results {
  animation: fadeIn 0.5s 1s forwards ease;
}

.quick-lookup__no-results h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  color: #fff;
}

.quick-lookup--light .quick-lookup__no-results {
  color: #7f7fa5;
}

.quick-lookup--light .quick-lookup__no-results h2 {
  color: #000;
}

.quick-lookup [class*="sprite__social-icon__"] {
  opacity: 1;
}

.quick-lookup .sprite__social-icons {
  margin: 3px 0;
}

.quick-lookup .tooltip.-animate {
  animation: upDown 1.5s 0.5s infinite linear, fadeIn 1.5s 3s forwards;
  opacity: 0;
}

.quick-lookup--multiple-inputs .quick-lookup__input,
.quick-lookup--multiple-inputs .quick-lookup__select {
  font-size: 16px;
  font-weight: 400;
  width: 50%;
}

.quick-lookup__select {
  white-space: nowrap;
  align-self: center;
  padding-right: 15px;
  position: relative;
  color: #8080a6;
  transition: all 0.2s ease;
  cursor: pointer;
}

.quick-lookup__select--no-prefix:before {
  display: none;
}

.quick-lookup__select--no-prefix .quick-lookup__select-label:after {
  right: 0;
}

.quick-lookup__select:before {
  content: "in";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #8080a6;
}

.quick-lookup__select-label:after {
  position: absolute;
  top: 11px;
  right: 15px;
  content: " ";
  margin: 0 0 0 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #8080a6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  opacity: 0.66;
  transition: all 0.2s ease;
}

.quick-lookup__select-label {
  display: flex;
  align-self: center;
  font-weight: 100;
  padding-left: 25px;
  outline: 0;
}

.quick-lookup__select-options {
  position: absolute;
  z-index: 1;
  top: 47px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.quick-lookup__select-options.-hidden {
  opacity: 0;
}

.quick-lookup__select-options:after {
  border: solid rgba(0, 0, 0, 0);
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  top: -20px;
  pointer-events: none;
  border-width: 10px;
  border-bottom-color: rgba(35, 45, 52, 0.97);
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
}

.quick-lookup__select-options--left:after {
  left: 35px;
}

.quick-lookup__select-options-inner {
  margin-left: 15px;
  border-radius: 5px;
  box-shadow: 0 8px 29px rgba(0, 0, 0, 0.25);
  background-color: rgba(35, 45, 52, 0.97);
  min-width: 210px;
  overflow: hidden;
  text-align: left;
}

.quick-lookup__select-options ul {
  max-height: 210px;
  overflow-y: auto;
}

.quick-lookup__select-option {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-lookup__select-option:first-child {
  border-top: 0;
}

.quick-lookup__select-option a {
  display: block;
  padding: 8px 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  transition: padding 0.2s ease;
}

.quick-lookup__select-options:hover a {
  color: rgba(255, 255, 255, 0.5);
}

.quick-lookup__select-option a:hover {
  color: rgba(255, 255, 255, 1);
}

.quick-lookup__select:hover,
.quick-lookup__select:focus {
  color: #000;
}

.quick-lookup__select:hover:after,
.quick-lookup__select:focus:after {
  opacity: 1;
}

.quick-lookup__select-option:hover a {
  padding-left: 22px;
}

.quick-lookup__result__output-sub {
  color: #b7b7c9;
  font-size: 12px;
}

.quick-lookup__result__label .legend-item {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
  background-color: #eee;
}

.quick-lookup__result__label .legend-item--green {
  background-color: #4ad150;
}

.quick-lookup__output {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.quick-lookup__options {
  margin: 20px 0 60px;
}

.quick-lookup__options__checkboxes .form-checkbox {
  display: block;
}

.quick-lookup__table__wrapper {
  font-size: 0;
  box-shadow: 0 5px 40px 0 rgba(50, 48, 57, 0.25);
  border-radius: 6px;
  background-color: #fff;
  white-space: nowrap;
  overflow: hidden;
}

.quick-lookup__table__wrapper--active .quick-lookup__table {
  transform: translateX(-100%);
}

.quick-lookup__table {
  transition: transform 0.2s ease-in-out;
  transform: translateX(0);
  font-size: initial;
  color: #7f7fa5;
  font-weight: 100;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.quick-lookup__table__head {
  position: relative;
  font-weight: 400;
  color: #000;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.quick-lookup__table__head + .quick-lookup__table__body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.quick-lookup__table__head .quick-lookup__table__row {
  padding-top: 10px;
  padding-bottom: 10px;
}

.quick-lookup__table__body {
  border-radius: 6px;
}

.quick-lookup__table__body--scroll {
  max-height: 400px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.quick-lookup__table__row {
  position: relative;
  line-height: 30px;
  display: flex;
  width: 100%;
  padding: 4px 20px;
  align-items: center;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.quick-lookup__table__row .cta {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
}

.quick-lookup__table__row .cta .btn {
  margin: 0 auto;
}

.quick-lookup__table__body .quick-lookup__table__row:first-child {
  border-top: 0;
}

.quick-lookup__table__head .quick-lookup__table__row {
  border-bottom: 1px solid #ececec;
}

.quick-lookup__table__body .quick-lookup__table__row {
  border-top: 1px solid #ececec;
}

.quick-lookup__table__head .back {
  z-index: 2;
  position: absolute;
  cursor: pointer;
  background-color: #fff;
  border-right: 1px solid #ececec;
  bottom: 1px;
  left: 0;
  top: 0;
  width: 30px;
  text-align: center;
}

.quick-lookup__table__head .back:hover {
  background-color: #f7f9ff;
}

.quick-lookup__table__head .back i {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url(../img/ui/arrows.svg);
  background-position: -71px -71px;
  background-repeat: no-repeat;
  margin-top: calc(50% + 5px);
}

.quick-lookup__table__head .back ~ .quick-lookup__table__row {
  padding-left: 50px;
}

.quick-lookup__table__item {
  flex: 1;
  overflow: hidden;
}

.quick-lookup__table__item--fixed-width {
  max-width: 220px;
  flex: none;
}

.quick-lookup__table .tag {
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  font-size: 12px;
  position: relative;
  top: 4px;
  margin-left: 10px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  border-radius: 4px;
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  border: 1px solid #ddd;
  background-color: #eee;
  color: #7f7fa5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.quick-lookup__table .tag--available {
  border-color: #56cc8f;
  background-color: #56cc8f;
  color: #fff;
}

/* .quick-lookup__table__row:hover .tag--available { border-color: #FFA800; background-color: #FFA800; } */

.quick-lookup__table .tag--unavailable {
  border-color: #cc5655;
  background-color: #cc5655;
  color: #fff;
}

/* .quick-lookup__table__row:hover .tag--available > span:last-child, */
.quick-lookup__table .tag--available > span:first-child {
  opacity: 1;
  position: relative;
}

/* .quick-lookup__table__row:hover .tag--available > span:first-child, */
.quick-lookup__table .tag--available > span:last-child {
  opacity: 0;
  position: absolute;
}

.quick-lookup__table .more {
  font-size: 12px;
  display: inline-block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.quick-lookup__table__body .quick-lookup__table__row:hover {
  background-color: #f7f9ff;
}

.quick-lookup__table__item__url {
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  width: 100%;
  padding-right: 10px;
}

.quick-lookup__output__count {
  margin: 40px 0 10px;
  padding: 0 20px;
  color: #7f7fa5;
}

/* content nav */
.content-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
}

.content-nav__item {
  line-height: 3.75em;
  display: block;
  margin-left: 20px;
}

.content-nav__item:first-child {
  margin-left: 0;
}

.content-nav__link {
  position: relative;
  display: block;
  padding: 10px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.content-nav__link:hover,
.content-nav__item.-current .content-nav__link {
  color: #000;
}

.content-nav__item .content-nav__link:after {
  transform: scale(0);
  background: #f3a527;
  width: 100%;
  height: 3px;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  transition: all 0.25s ease;
}

.content-nav__item.-current .content-nav__link:after,
.content-nav__item .content-nav__link:hover:after {
  transform: scale(1);
}

.content-nav--small .content-nav__item {
  font-size: 1.4rem;
  line-height: 2.5em;
}

.content-nav--icon .content-nav__link .icon {
  stroke: none;
  margin: 0 auto 10px;
}

.content-nav--icon .content-nav__link .icon + div {
  line-height: 30px;
}

/* Illustration on hover and current state */
.icon [class*="fill-"] {
  transition: fill 0.2s ease-in-out;
}

.icon [class*="stroke-"] {
  transition: stroke 0.2s ease-in-out;
}

.icon--alt .fill-0 {
  fill: #fff;
}

.icon--alt .fill-1 {
  fill: #000;
}

.icon--alt .fill-2 {
  fill: #ffa800;
}

.icon--alt .stroke-0 {
  stroke: #fff;
  stroke-width: 1px;
}

.icon--alt .stroke-1 {
  stroke: #000;
  stroke-width: 1px;
}

.icon--alt .stroke-2 {
  stroke: #ffa800;
  stroke-width: 1px;
}

.icon--glyph {
  fill: currentColor;
  stroke-width: 0;
}

/* Showcase products */
.showcase {
  overflow: hidden;
}

.showcase .section-topic {
  display: none;
  height: 0;
  overflow: hidden;
}

.showcase-item {
  display: none;
  flex-direction: column;
}

.showcase-item.-active {
  display: flex;
}

.showcase-item__about {
  order: 2;
  width: 100%;
  padding: 10px 0 40px;
  animation: fadeIn 0.4s ease;
}

.showcase-item__screenshots {
  order: 1;
  position: relative;
  width: 100%;
}

.showcase-item__screenshots-inner {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.showcase-item__screenshot {
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px 4px 0 0;
  max-width: 70%;
  max-height: 70%;
}

.showcase-item__screenshot + .showcase-item__screenshot {
  z-index: 1;
  display: none;
}

.showcase-item__screenshot-api {
  width: 350px;
  height: 142px;
  left: 20px;
  bottom: -22px;
}

.showcase-item__screenshot-1 {
  bottom: -50px;
}

.showcase-item__illustration {
  order: 1;
  position: relative;
  width: 100%;
  animation: fadeIn 0.4s ease;
}

.showcase-item__illustration img {
  max-height: calc(100% - 60px);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .showcase .section-topic {
    display: block;
    height: auto;
  }

  .showcase-item {
    flex-direction: row;
  }

  .showcase-item__about {
    order: 1;
    min-height: 500px;
    padding: 60px 0 70px;
    width: 50%;
  }

  .showcase-item__screenshots {
    width: 50%;
    order: 2;
  }

  .showcase-item__screenshots-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    overflow: inherit;
    border-bottom: none;
  }

  .showcase-item__screenshot {
    position: absolute;
    z-index: 2;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px 4px 0 0;
    width: 683px;
    height: 540px;
    max-width: inherit;
    max-height: inherit;
  }

  .showcase-item__screenshot + .showcase-item__screenshot {
    z-index: 1;
    display: block;
  }

  .showcase-item__screenshot-api {
    width: 700px;
    height: 284px;
  }

  .showcase-item__screenshot-1 {
    left: 25%;
    bottom: -128px;
  }

  .showcase-item__screenshot-2 {
    left: 20px;
    bottom: -278px;
  }

  .showcase-item__screenshot {
    animation: forwards slideTop 0.5s ease;
    transform: translate3d(0, 100%, 0);
    animation-delay: 0.125s;
  }

  .showcase-item__screenshot + .showcase-item__screenshot {
    animation-delay: 0.25s;
  }

  .showcase-item__illustration {
    width: 50%;
    order: 2;
  }
}

/* sneak peek */
.sneakpeek {
  display: none;
}

.sneakpeek__inner {
  position: relative;
  width: 100%;
  height: 70vw;
  overflow: hidden;
  text-align: left;
}

.sneakpeek .sneakpeek-item__content {
  opacity: 0.5;
}

.sneakpeek .sneakpeek-item__content.-active,
.sneakpeek .sneakpeek-item__content:hover {
  opacity: 1;
}

.sneakpeek-items {
  background-color: transparent;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sneakpeek-item:nth-child(odd) .sneakpeek-item__content {
  left: 0;
}

.sneakpeek-item:nth-child(even) .sneakpeek-item__content {
  right: 0;
}

.sneakpeek-item:nth-child(1) .sneakpeek-item__content,
.sneakpeek-item:nth-child(2) .sneakpeek-item__content {
  top: 0;
}

.sneakpeek-item:nth-child(3) .sneakpeek-item__content,
.sneakpeek-item:nth-child(4) .sneakpeek-item__content {
  bottom: 30px;
}

.sneakpeek-item__screenshots {
  display: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  animation: fadeIn 1s forwards;
}

.sneakpeek-item__screenshot {
  display: block;
  border-radius: 6px 6px 0 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.sneakpeek-item__screenshot-zoomed {
  border: 1px solid #fff;
  position: absolute;
  z-index: 3;
  border-radius: 6px;
  box-shadow: 0 22px 43px rgba(0, 0, 0, 0.2);
  opacity: 0;
  left: -30px;
  top: 90px;
}

.sneakpeek-item__content {
  display: none;
  position: absolute;
  width: 180px;
  height: 160px;
}

.sneakpeek-item__title {
  font-size: 1.4rem;
  color: #000;
  margin: 0 0 1rem;
}

.sneakpeek-item__text {
  font-size: 1.2rem;
}

.sneakpeek-item__content.-active {
  z-index: 2;
}

.sneakpeek-item__content.-active ~ .sneakpeek-item__screenshots {
  z-index: 2;
  display: block;
}

.sneakpeek-item__content.-active + .sneakpeek-item__screenshots .sneakpeek-item__screenshot-zoomed {
  animation: fadeInY 0.3s forwards;
  animation-delay: 0.1s;
}

.sneakpeek-item:hover .sneakpeek-item__screenshots {
  display: block;
}

@media (min-width: 768px) {
  .sneakpeek {
    display: block;
  }

  .sneakpeek__inner {
    height: 360px;
  }

  .sneakpeek-item__content {
    display: none;
  }

  .sneakpeek-item__screenshots {
    display: block;
    width: 455px;
  }
}

@media (min-width: 992px) {
  .sneakpeek-item__content {
    display: block;
  }

  .sneakpeek-item:nth-child(1) .sneakpeek-item__screenshot-zoomed {
    left: -18px;
    top: 50px;
  }

  .sneakpeek-item:nth-child(2) .sneakpeek-item__screenshot-zoomed {
    left: calc(100% - 305px);
    top: 55px;
  }

  .sneakpeek-item:nth-child(3) .sneakpeek-item__screenshot-zoomed {
    left: -18px;
    top: 140px;
  }

  .sneakpeek-item:nth-child(4) .sneakpeek-item__screenshot-zoomed {
    left: calc(100% - 305px);
    top: 140px;
  }
}

@media (min-width: 1200px) {
  .sneakpeek__inner {
    height: 540px;
  }

  .sneakpeek-items {
    width: 683px;
    height: 540px;
  }

  .sneakpeek-item__screenshots {
    width: 683px;
    height: 540px;
  }

  .sneakpeek-item__content {
    display: block;
  }

  .sneakpeek-item__text {
    font-size: 1.4rem;
    display: block;
  }

  .sneakpeek-item:nth-child(1) .sneakpeek-item__content:after,
  .sneakpeek-item:nth-child(2) .sneakpeek-item__content:after {
    position: absolute;
    content: "";
    border-bottom: 1px solid #e5e5e5;
    width: 50px;
    height: 1px;
    left: 0;
    bottom: -30px;
  }

  .sneakpeek-item:nth-child(3) .sneakpeek-item__content,
  .sneakpeek-item:nth-child(4) .sneakpeek-item__content {
    bottom: 130px;
  }

  .sneakpeek-item:nth-child(1) .sneakpeek-item__screenshot-zoomed {
    left: -18px;
    top: 50px;
  }

  .sneakpeek-item:nth-child(2) .sneakpeek-item__screenshot-zoomed {
    left: calc(100% - 305px);
    top: 55px;
  }

  .sneakpeek-item:nth-child(3) .sneakpeek-item__screenshot-zoomed {
    left: -18px;
    top: 240px;
  }

  .sneakpeek-item:nth-child(4) .sneakpeek-item__screenshot-zoomed {
    left: calc(100% - 305px);
    top: 240px;
  }
}

/* quickbrowse */
.browse {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 50px 0 60px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.browse-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}

.browse-nav.-handheld-scroll-x {
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.browse .section-topic {
  display: block;
  margin-bottom: 20px;
}

.site-header .browse {
  border: 0;
  padding: 20px 0 40px;
}

.site-header .browse .section-topic {
  display: none;
}

:not(.site-header) .browse-nav .browse-nav__item {
  margin: 0 5.5%;
}

:not(.site-header) .browse-nav .browse-nav__item:first-child {
  margin-left: 0;
}

:not(.site-header) .browse-nav .browse-nav__item:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  :not(.site-header) .browse-nav .browse-nav__item {
    margin: 0 auto;
  }
}

/* blur effect */
.page-home .hero.bg-blur-active .hero-title,
.page-home .hero.bg-blur-active .hero-lead,
.page-home .hero.bg-blur-active .hero-paragraph,
.page-home .hero.bg-blur .hero-title,
.page-home .hero.bg-blur .hero-lead,
.page-home .hero.bg-blur .hero-paragraph {
  opacity: 0.3;
  transition: all 0.5s ease;
}

.page-home .hero.bg-blur-active .quick-lookup__box,
.page-home .hero.bg-blur .quick-lookup__box {
  box-shadow: 0 5px 40px 0 rgba(50, 48, 57, 0.95);
}

.browse-nav__item {
  transition: all 0.2s ease;
  flex: 1;
}

.browse-nav:hover .browse-nav__item {
  opacity: 0.4;
}

.browse-nav:hover .browse-nav__item.-current {
  opacity: 0.4;
}

.browse-nav:hover .browse-nav__item.-current:hover {
  opacity: 1;
}

.handheld .browse-nav:hover .browse-nav__item {
  opacity: 1;
}

.browse-nav .browse-nav__item:hover {
  opacity: 1;
}

.browse-nav__item .-icon__circle .icon__wrapper {
  display: inline-flex;
  border-radius: 100%;
  transition: all 0.2s ease;
  justify-content: center;
  align-items: center;
}

.browse-nav__item:hover .-icon__circle .icon__wrapper {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.browse-nav__item > a {
  display: block;
}

.hero .browse {
  padding: 0;
  display: none;
  margin-bottom: 60px;
}

.hero .-icon__circle .icon__wrapper {
  background-color: transparent;
}


.hero .-icon__circle .icon__wrapper {
  color: #fff;
}


.hero .-icon__circle > div {
  color: #fff;
}

.hero .browse-nav {
  padding-bottom: 10px;
}

.hero .browse-nav__item:hover .-icon__circle .icon__wrapper {
  box-shadow: none;
}

.hero .browse-nav__item {
  opacity: 0.4;
}

.hero .browse-nav__item.-current {
  opacity: 1;
}


.hero .browse-nav__item.-current .-icon__circle .icon__wrapper .icon {
  stroke: #fff;
}

.hero .browse-nav__item .icon__wrapper {
  box-shadow: none;
  border: transparent;
}

.hero .browse-nav__item .icon {
  stroke: #fff;
}

@media (min-width: 768px) {
  .hero .browse {
    display: flex;
  }
}

/* coverage */
.section-coverage {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 60px;
  min-height: 520px;
}

.section-coverage .row > div {
  z-index: 2;
}

.bg .bg-globe {
  background: url(../img/bg-globe.svg) no-repeat center top;
  background-size: cover;
  width: 940px;
  height: 430px;
}

.bg-globe-dots {
  position: relative;
  height: 100%;
  width: 100%;
}

.bg-globe-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 0;
  top: 0;
  background-color: #fff;
  border: 2px solid #c1c1c1;
  border-radius: 100px;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.18);
}

.bg-globe-dot--color-1 {
  border-color: #33c4c2;
}

.bg-globe-dot--color-2 {
  border-color: #ffa800;
}

.section-coverage .bg-globe {
  position: absolute;
  left: 0;
  right: 0;
  top: 129px;
  margin: 0 auto;
  z-index: 1 !important;
  opacity: 0.8;
}

.list-coverage {
  font-weight: 400;
}

/* section api */
.section-api {
  background: #232d34;
  color: #fff;
  overflow: hidden;
  padding-top: 60px;
  text-align: center;
}

.section-api .section-title {
  color: #fff;
}

.section-api .section-lead {
  font-family: monospace;
  font-weight: 300;
}

.section-api .section-topic {
  color: #87d9d8;
}

.section-api img {
  box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
  border-radius: 4px 4px 0 0;
}

.section-api .box {
  border: none;
  background-color: rgb(48, 54, 62);
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
}

.section-api .box p {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/* more features */
.list-features {
  display: flex;
  flex-flow: row wrap;
  margin: 30px 0;
}

.list-features__feature-item {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.list-features__feature-item.-active .icon__wrapper .icon {
  stroke: #ffa800;
}

.-text-left .list-features__feature-item {
  text-align: left;
}

.-text-center .list-features__feature-item {
  text-align: center;
}

.-text-right .list-features__feature-item {
  text-align: right;
}

@media (min-width: 576px) {
  .list-features__feature-item {
    text-align: left;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .list-features__feature-item {
    width: 45%;
    margin: 0 auto 45px;
    align-self: stretch;
  }

  .list-features__feature-item:nth-child(even) {
    margin-left: 10%;
  }
}

.list-features--nav {
  margin: 20px 0 0;
}

.list-features--nav .list-features__feature-item {
  width: 100%;
}

.list-features--nav .list-features__feature-item.-active a .icon__wrapper .icon {
  stroke: #ffa800;
}

.list-features--nav .list-features__feature-item a {
  display: none;
}

.list-features--nav .list-features__feature-item a:hover .icon__wrapper .icon {
  stroke: #ffa800;
}


.list-features--nav .list-features__feature-item.-active a .list-features__feature-item .icon__wrapper {
  transition: transform 0.2s ease-in-out;
}

.list-features--nav .list-features__feature-item .icon__wrapper .icon {
  stroke: #d0d5df;
}

@media (min-width: 992px) {
  .list-features--nav {
    min-height: 540px;
    padding-top: 55px;
  }

  .list-features--nav .list-features__feature-item {
    width: auto;
  }

  .list-features--nav .list-features__feature-item a {
    display: flex;
  }
}

/* -- box -- */
.box {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}

.box + .box {
  margin-top: 2rem;
}

.box__title {
  margin: 0 0 1.5rem;
  font-size: 2rem;
}

.box__sub-title {
  margin: 3.5rem 0 1rem;
  font-size: 1.6rem;
}

.box__paragraph {
  font-size: 1.6rem;
  margin: 0;
}

.box__paragraph + .box__paragraph {
  margin-top: 1.5rem;
}

.box .list {
  font-weight: 300;
  margin: 0 0 0 30px;
}

/* -- box list -- */

/* -- box list -- */
.box-extends .box {
  transition: border 0.1s ease-in-out;
}

.box-extends .box__title {
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
  padding: 2rem;
}

.box__title--icon {
  display: flex;
}

.box-extends .box--extend .box__title--icon > i {
  transform: rotate(45deg);
}

.box-extends .box__title--icon > i {
  user-select: none;
  font-style: normal;
  color: #799adc;
  position: relative;
  top: -1px;
  display: inline-block;
  border: 1px solid #c9ccd4;
  line-height: 32px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  font-weight: 600;
  margin-right: 5px;
  text-align: center;
  transition: transform 0.25s ease-in-out;
}

.box-extends .box__title--icon > i + span {
  flex: 1 1 0;
  margin-left: 10px;
}

.box-extends .box--extend .box__title--icon ~ .box__paragraph {
  margin-left: 70px;
}

.box-extends .box--extend {
  border: 1px solid #f3a527;
}

.box-extends .box__paragraph {
  height: 0;
  opacity: 0;
  margin-top: 0;
  transition: opacity 0s ease-in-out;
  overflow: hidden;
}

.box-extends .box--extend .box__paragraph {
  height: auto;
  opacity: 1;
  margin: 0 2rem 2rem;
  transition: opacity 0.25s ease-in-out;
  overflow: initial;
}

/* --- cta box --- */
.box--split {
  display: block;
  background-size: 120%;
  background-image: url(../img/bg-shapes-2.png);
  background-color: #fff;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.box--split .box__inner {
  padding: 30px;
}

.box--split h3 {
  margin-top: 0;
}

@media (min-width: 992px) {
  .box--split {
    display: flex;
  }

  .box--split .box__inner {
    flex: 0 0 50%;
    padding: 40px;
  }

  .box--split h3 {
    margin-top: 35px;
  }
}

.box--split .box__inner--bg {
  background-color: rgba(125, 161, 248, 0.07);
}

/* table pricing */
.table-pricing {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.table-pricing th {
  text-align: left;
}

.table-pricing td {
  height: 40px;
  line-height: 40px;
  padding: 5px 0;
}

.table-pricing__label {
  color: #4ead5f;
  text-overflow: ellipses;
  white-space: nowrap;
  position: relative;
  padding-left: 35px;
  font-weight: 600;
}

.table-pricing__label:after {
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #68cc7a url(../img/ui/tick.svg) no-repeat center;
  background-size: 66%;
}

.table-pricing__currency {
  font-size: 20px;
  top: -6px;
}

.table-pricing__price {
  text-align: right;
  font-size: 30px;
  font-weight: 600;
  display: block;
  white-space: nowrap;
}

.table-pricing__description {
  line-height: 1.5;
  font-size: 12px;
}

/* --- Contact --- */
.contact-info {
  margin: 80px 0;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-info__label,
.contact-info__output {
  font-size: 1.4rem;
}

.contact-info__label {
  color: #000;
}

.contact-info__output {
  margin-bottom: 30px;
  color: #7f7fa5;
  font-weight: 100;
}

.contact-info__output__icon {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 4px;
  border-radius: 2px;
}

.contact-form {
  margin: 60px 0 0;
}

@media (min-width: 992px) {
  .contact-info {
    padding-left: 20px;
    margin: 119px 0 0;
  }
}

.box-form {
  position: relative;
}

.box-form > h2 {
  margin-top: 0;
}

.box-form .form {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .box-form {
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 7px 9px -4px rgba(0, 0, 0, 0.07), 0 14px 21px 2px rgba(0, 0, 0, 0.07), 0 5px 20px 4px rgba(0, 0, 0, 0.06);
  }
}

.list-offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list-offices-item {
  text-align: left;
}

.list-offices-item .adr {
  color: #7f7fa5;
  font-size: 1.6rem;
  font-weight: 300;
}

.list-offices__mini-map {
  display: none;
  background-image: url(../img/office-locations.svg);
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
  position: relative;
  text-indent: -999em;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list-offices__mini-map {
    background-image: url(../img/office-locations.png);
  }
}

.list-offices__mini-map--usa {
  background-position: -260px -29px;
}

.list-offices__mini-map--operations {
  background-position: -260px -289px;
}

.list-offices__mini-map--international {
  background-position: 0 -29px;
}

.list-offices .vcard {
  width: 250px;
  margin: 0 auto 60px;
  font-size: 1.4rem;
}

.list-offices .org {
  color: #000;
  font-size: 2rem;
  margin: 0 0 10px;
}

@media (min-width: 768px) {
  .list-offices-item {
    text-align: center;
  }

  .list-offices__mini-map {
    display: block;
    width: 250px;
    height: 250px;
  }

  .section-offices {
    padding-bottom: 100px;
  }
}

/* About page */
.list-funfacts {
  display: flex;
  justify-content: space-between;
}

.list-funfacts .section-topic {
  font-size: 1.18rem;
}

.list-funfacts__item {
  color: #aeb5c1;
}

.list-funfacts--colored .list-funfacts__item {
  color: #ffa800;
}

.list-funfacts--colored .section-topic {
  color: #000;
}

@media (min-width: 576px) {
  .list-funfacts .section-topic {
    font-size: 1.2rem;
  }
}

/* Clients */

/* Team members */
.list-team-members {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 50px 0 20px;
}

.list-team-members__item {
  width: 47.5%;
  margin: 0 5% 45px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.list-team-members__item:nth-child(2n + 2) {
  margin-right: 0;
}

.list-team-members__profile {
  display: block;
  width: 100%;
}

.list-team-members__profile__links {
  display: flex;
  margin: 10px auto 20px;
  min-height: 24px;
  justify-content: center;
}

.list-team-members__profile__link {
  display: flex;
  margin: 0 5px;
  width: 24px;
  height: 24px;
  background-color: #bdc2ce;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-size: calc(100% - 8px);
  transition: background-color 0.2s ease-in-out !important;
}

.list-team-members__profile__link .icon {
  margin: auto;
  color: #fff;
}

.list-team-members__profile__link--linkedin:hover {
  background-color: #0077b5;
}

.list-team-members__profile__link--blog:hover {
  background-color: #ffa800;
}

.list-team-members__profile__pic,
.list-team-members__profile__img {
  width: 140px;
  height: 140px;
}

.list-team-members__profile__pic {
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-team-members__profile__img {
  display: block;
}

.list-team-members__profile__name,
.list-team-members__profile__role {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.list-team-members__profile__name {
  font-size: 2rem;
  margin: 0 0 5px;
  color: #000;
}

.list-team-members__profile__role {
  font-size: 1.6rem;
  color: #7b99eb;
}

@media (min-width: 768px) {

  .list-team-members__item {
    width: 30%;
    align-items: center;
  }

  .list-team-members__item:nth-child(2n + 2) {
    margin: 0 5% 45px 0;
  }

  .list-team-members__item:nth-child(3n + 3) {
    margin-right: 0;
  }

  .list-team-members__profile__pic,
  .list-team-members__profile__img {
    width: 180px;
    height: 180px;
  }
}

/* Terms */
.section-terms .decimal-topics {
  margin: 10px 0 25px 40px;
}

.section-terms .decimal-topics {
  margin: 10px 0 25px 40px;
}

.section-terms .decimal-topics li {
  margin: 0 0 20px;
  font-size: 1.4rem;
}

.section-terms .decimal-topics i {
  font-style: normal;
  width: 30px;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 -40px;
}

.section-terms .decimal-topics span {
  display: inline-block;
  vertical-align: top;
}

/* Careers */

/* Container split layout */
.container-split {
  position: relative;
  display: flex;
}

.container-split__content {
  width: 100%;
  z-index: 2;
}

.container-split__img {
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.08;
}

.container-split__img + .container-split__img {
  right: 0;
}

@media (min-width: 768px) {
  .container-split__img {
    width: 50%;
    opacity: 1;
  }

  .container-split__content + .container-split__img {
    right: 0;
    z-index: 3;
  }
}

/* Container split Hero img */

/* Whole image */
.container-whole__img-hero {
  width: 100%;
  display: flex;
  align-items: center;
}

.container-whole__img-hero .screen {
  top: 0;
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
  position: absolute;
}

.container-whole__img-hero .screen.-active {
  opacity: 1;
}

.container-whole__img-hero > img {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .container-whole__img-hero {
    display: block;
    height: 380px;
  }

  .container-whole__img-hero > img {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container-whole__img-hero .screen {
    top: inherit;
    margin-top: 9px !important;
  }

  .container-whole__img-hero > img {
    width: auto;
    margin: auto;
  }
}

@media (min-width: 1200px) {
  .container-whole__img-hero > img {
    width: auto;
  }
}

/* Branding */
.branding-logo {
  background-image: url(../img/dataprovider-com.svg);
  background-repeat: no-repeat;
  background-size: 85%;
  background-position: center calc(50% - 55px);
}

.branding-logo--dark {
  background-image: url(../img/branding/dataprovider-logo-dark.svg);
}

.branding-logo--blue {
  background-image: url(../img/branding/dataprovider-logo-blue.svg);
}

.branding-color__swatch {
  color: #7f7fa5;
  font-weight: 300;
  flex: 1;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.04), 0 2px 1px -1px rgba(0, 0, 0, 0.04);
}

.branding-color__swatch > div > div {
  z-index: 1;
  position: relative;
}

.branding-color__swatch__name {
  color: #000;
  font-weight: 400;
  margin: 0 0 5px;
}

.branding-color__swatch:after {
  content: "";
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  z-index: 0;
}

.branding-color__inner {
  padding: 110px 20px 20px;
}

.branding-color__primary-1 {
  background-color: #7da1f8;
}

.branding-color__primary-2 {
  background-color: #ffa800;
}

.branding-color__secondary-1 {
  background-color: #5ac45e;
}

.branding-color__secondary-2 {
  background-color: #eb486a;
}

.branding-color__secondary-3 {
  background-color: #33c4c2;
}

.branding-color__secondary-4 {
  background-color: #8c33b1;
}

.branding-color__paragraph-1 {
  background-color: #000;
}

.branding-color__paragraph-2 {
  background-color: #7f7fa5;
}

.branding-color__paragraph-3 {
  background-color: #799adc;
}

.branding-color__paragraph-4 {
  background-color: #fff;
}

.copy-text {
  height: 28px;
  font-size: 14px;
  font-weight: 300;
  background: none;
  margin: 0;
  padding: 5px;
  display: block;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  resize: none;
  color: #7f7fa5;
  box-shadow: none !important;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0);
  white-space: nowrap;
}

.copy-text:hover {
  padding: 5px;
}

.copy-text:focus {
  padding: 5px;
  cursor: text;
  background: #fff;
  border: 1px solid #d3dbdb;
  color: #222;
  outline: none;
}

.branding-color__swatch .copy-text {
  margin-left: -5px;
  width: calc(100% + 10px);
}

/* extension  */
.img-wrapper {
  overflow: hidden;
  width: 100%;
}

.img-wrapper img,
.img-wrapper video {
  display: block;
}

.extension-hero {
  width: 100%;
  position: relative;
  z-index: 51;
  display: flex;
  margin: -10px auto 0;
}

@media (min-width: 576px) {
  .extension-hero {
    margin: -105px auto 0;
    width: 80%;
  }
}

/* btn-more  */
.btn-more {
  padding-left: 0;
  padding-right: 0;
}

.btn-more > i {
  font-style: normal;
  position: relative;
  top: -1px;
  display: inline-block;
  border: 1px solid #c9ccd4;
  line-height: 32px;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  font-weight: 600;
  margin-right: 5px;
  text-align: center;
  transition: 0.25s transform ease-in-out;
}

.btn-more {
  background-color: transparent;
  border-color: transparent;
  color: #799adc !important;
  text-shadow: none;
  transform: scale(1) !important;
}

.btn-more:hover,
.btn-more:focus,
.btn-more:active {
  color: #6d8ac6 !important;
  background-color: transparent;
  border-color: transparent;
}

.btn-more.-active:after {
  content: "Close";
}

.btn-more.-active > i {
  transform: rotate(45deg);
}

.btn-more.-active > span {
  display: none;
}

/* section additional */
.section-additional {
  position: relative;
  height: auto;
  max-height: 0;
  overflow: hidden;
  padding: 20px 0 0;
  margin: -40px 0 0;
  transition: 0.25s max-height ease-in-out;
}


.section-additional.-active {
  max-height: 380px !important;
}

.section-additional .browse-nav {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0;
}

.section-additional .browse-nav__item {
  padding: 0 20px;
}

.section-additional .browse-nav__item div {
  color: #000;
  font-size: 2rem;
}

.section-additional .browse-nav__item .btn {
  display: inline-block;
  color: #fff;
  font-size: 16px;
}

.section-additional .browse-nav__item:hover .btn {
  transform: scale(1.05);
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.06), 0 7px 10px 1px rgba(0, 0, 0, 0.11);
}

.section-additional .browse-nav__item .btn:hover {
  color: #fff;
}

.section-additional .browse-nav .btn:hover,
.section-additional .browse-nav .btn:visited,
.section-additional .browse-nav .btn:active,
.section-additional .browse-nav .btn:focus {
  transform: scale(1);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 1px -2px rgba(0, 0, 0, 0.1);
}

.section-additional .browse-nav__item p {
  font-size: 1.4rem;
}

.section-additional .-icon__circle .icon__wrapper {
  background-color: #fff;
  margin-bottom: 7px;
}

.section-additional + hr {
  opacity: 1;
  transition: 0.25s opacity ease-in-out;
}

.section-additional.-active + hr {
  opacity: 0;
}

.section-additional .browse-nav__item:hover .-icon__circle .icon__wrapper {
  transform: scale(1);
  box-shadow: none;
}

/* --- API Page --- */
.api-menu .api-menu-title {
  font-size: 2.2rem;
}

.api-menu .api-topic-title {
  margin-top: 10px;
}

.api-menu .api-topic-lead {
  font-size: 2rem;
}

.api-menu .container--fixed,
.api-menu .container--fixed .row:first-child {
  min-height: 900px;
}

.api-menu__list .api-menu__list-item {
  position: relative;
  text-transform: uppercase;
}

.api-menu__list .api-menu__list-item a {
  color: #84859e;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 30px;
  position: relative;
}

.api-menu__list .api-menu__list-item .-open a:after {
  display: none;
}

.api-menu__list .api-menu__list-item.-open > a {
  color: #000;
}

.api-menu__list .api-menu__list-item.-current > a {
  color: #000;
}

.api-menu__list .api-menu__list-item:first-child {
  margin-bottom: 20px;
}

.api-menu__list .api-menu__list-item:first-child.-current {
  margin-top: 0;
}

.api-menu__list .api-menu__list-item:last-child.-current {
  margin-bottom: 0;
}

.api-menu__list .api-menu__list-item.-current a:after,
.api-menu__list .api-menu__list-item a:hover:after {
  background-color: #ffa800;
  content: "";
  height: 100%;
  position: absolute;
  right: -16px;
  top: 0;
  width: 2px;
}

.api-menu__list .api-menu__list-item.-open > .api-submenu__list {
  display: block;
}

.api-submenu__list {
  display: none;
  margin: 4px 0 10px 16px;
}

.api-submenu__list .api-submenu__list-item {
  position: relative;
  text-transform: none;
}

.api-submenu__list .api-submenu__list-item a {
  color: #799adc;
  display: block;
  line-height: 30px;
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
}

.api-submenu__list .api-submenu__list-item.-current a {
  color: #000;
  margin: 0;
}

.api-submenu__list .api-submenu__list-item a:after {
  display: none;
}

.api-submenu__list .api-submenu__list-item.-current a:after,
.api-submenu__list .api-submenu__list-item a:hover:after {
  background-color: #ffa800;
  content: "";
  height: 100%;
  position: absolute;
  right: -16px;
  top: 0;
  width: 2px;
  display: block;
}

.topic-item {
  margin: 30px 0;
  display: inline-block;
  width: 100%;
}

.topic-item .topic-item-title:first-child {
  margin-top: 0;
}

.box .topic-item .topic-item-title {
  margin: 1.5rem 0 1rem;
  font-size: 1.6rem;
}

.topic-item.topic-item__list ul li {
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  height: 75px;
  justify-content: space-between;
}

.topic-item.topic-item__list .topic-item__list-label {
  color: #000;
  display: flex;
}

.topic-item.topic-item__list .topic-item__list-control {
  display: flex;
}

.topic-item.topic-item__snippet {
  margin-top: 0;
}

.topic-item.topic-item__snippet .topic-item-title {
  font-size: 1.8rem;
}

.topic-item.topic-item__snippet [class*="editor-lang__"]:after {
  background-color: rgba(36, 97, 137, 1);
}

.topic-item.topic-item__snippet .editor__badge--copy {
  background-color: rgba(49, 59, 66, 1);
}

.topic-item.topic-item__snippet .editor__badge--copy:hover {
  background-color: rgba(71, 80, 86, 1);
}

.topic-item.topic-item__snippet .editor__badge--try:hover {
  background-color: rgba(81, 195, 127, 0.9);
}

.topic-item.topic-item__table {
  display: table;
  table-layout: fixed;
}

.topic-item.topic-item__table .table__parameters {
  padding: 10px 0;
  overflow: scroll;
  width: 100%;
  position: relative;
  line-height: 2rem;
  font-size: 1.4rem;
  border-radius: 5px;
  background-color: #f2f3f4;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12);
}

.topic-item.topic-item__table .table__parameters .table-row .table-column__spacer {
  border: none;
  background-color: #f2f3f4;
  min-width: 30px !important;
  width: 30px;
  padding: 0 !important;
}

.topic-item.topic-item__table .table__parameters .table-row--last .table-column {
  border: none;
}

.topic-item.topic-item__table .table__parameters .table-column {
  display: table-cell;
  min-width: 140px;
  height: 60px;
  border-bottom: 1px solid #dfdfdf;
  padding: 16px 10px;
}

.topic-item.topic-item__table .table__parameters .table-column:nth-child(3) {
  min-width: 180px;
}

.topic-item.topic-item__table .table__parameters .table-column.first {
  min-width: 200px;
  padding-left: 0;
}

.topic-item.topic-item__table .table__parameters .table-column.table-column--full-width {
  width: 100%;
}

.topic-item.topic-item__table .table__parameters .table-column.last {
  padding-right: 0;
}

.topic-item.topic-item__table .table__parameters .table-column .table-cell--title {
  font-size: 1.2rem;
  color: #84859e;
}

.topic-item.topic-item__table .table__parameters .table-column .table-cell--value {
  font-weight: 400;
  font-size: 1.3rem;
}

.topic-item.topic-item__table .table__parameters .table-column.first .table-cell--value {
  font-weight: 600;
}

/* Industries */
.-split .site-navigation {
  height: 65px;
}

.-split .hero .section-topic {
  margin: 0 0 4px;
}

.-split .hero-title ~ .hero-lead {
  margin: 20px 0 0;
}

.-split .hero-lead ~ .btn {
  margin: 33px 0 0;
}

.-split:before {
  width: calc(100vw + 45px);
  left: calc(-50vw);
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  transform: skew(-10deg);
}

.-split .hero-content {
  overflow: hidden;
  position: relative;
  z-index: 3;
  padding: 0;
}

.-split .hero-introduction {
  padding: 38px 0 40px;
}

.-split .hero-title {
  font-size: 3.5rem;
}

.-split .hero-lead {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .-split .hero-introduction {
    padding: 58px 0 65px;
  }

  .-split .hero-title {
    font-size: 3.5rem;
  }

  .-split .hero-lead {
    font-size: 2rem;
  }

  .-split .hero-lead--small {
    font-size: 1.6rem;
  }
}

@media (min-width: 992px) {
  .-split .hero-introduction {
    min-height: 450px;
  }

  .-split .hero-title {
    font-size: 3.8rem !important;
  }
}

@media (min-width: 1200px) {
  .-split .hero-introduction {
    min-height: 570px;
    padding: 72px 0 80px;
  }

  .-split .hero-title {
    font-size: 4.5rem !important;
  }
}

.-split .hero .bgs {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.bgs .bgs__shape-1 {
  background-color: rgba(68, 109, 158, 0.08);
  right: -80px;
  top: 130px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.bgs .bgs__shape-2 {
  background-color: rgba(76, 107, 16, 0.08);
  left: 70%;
  bottom: -60px;
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  border-radius: 20px;
}

.bgs .bgs__shape-3 {
  background-color: rgba(131, 66, 165, 0.12);
  right: 50px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
  border-radius: 10px;
}

.bgs .bgs__shape-4 {
  width: 60px;
  height: 60px;
  opacity: 0.06;
  left: calc(50% - 34px);
  bottom: 40px;
  background-size: cover;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjY5IiB2aWV3Qm94PSIwIDAgNjkgNjkiIHdpZHRoPSI2OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNzUwLjUgODdjLTIuNDg1MjgxIDAtNC41LTIuMDE0NzE4Ni00LjUtNC41czIuMDE0NzE5LTQuNSA0LjUtNC41IDQuNSAyLjAxNDcxODYgNC41IDQuNS0yLjAxNDcxOSA0LjUtNC41IDQuNXptMjAgMGMtMi40ODUyODEgMC00LjUtMi4wMTQ3MTg2LTQuNS00LjVzMi4wMTQ3MTktNC41IDQuNS00LjUgNC41IDIuMDE0NzE4NiA0LjUgNC41LTIuMDE0NzE5IDQuNS00LjUgNC41em0yMCAwYy0yLjQ4NTI4MSAwLTQuNS0yLjAxNDcxODYtNC41LTQuNXMyLjAxNDcxOS00LjUgNC41LTQuNSA0LjUgMi4wMTQ3MTg2IDQuNSA0LjUtMi4wMTQ3MTkgNC41LTQuNSA0LjV6bTIwIDBjLTIuNDg1MjgxIDAtNC41LTIuMDE0NzE4Ni00LjUtNC41czIuMDE0NzE5LTQuNSA0LjUtNC41IDQuNSAyLjAxNDcxODYgNC41IDQuNS0yLjAxNDcxOSA0LjUtNC41IDQuNXptLTYwIDIwYy0yLjQ4NTI4MSAwLTQuNS0yLjAxNDcxOS00LjUtNC41czIuMDE0NzE5LTQuNSA0LjUtNC41IDQuNSAyLjAxNDcxOSA0LjUgNC41LTIuMDE0NzE5IDQuNS00LjUgNC41em0yMCAwYy0yLjQ4NTI4MSAwLTQuNS0yLjAxNDcxOS00LjUtNC41czIuMDE0NzE5LTQuNSA0LjUtNC41IDQuNSAyLjAxNDcxOSA0LjUgNC41LTIuMDE0NzE5IDQuNS00LjUgNC41em0yMCAwYy0yLjQ4NTI4MSAwLTQuNS0yLjAxNDcxOS00LjUtNC41czIuMDE0NzE5LTQuNSA0LjUtNC41IDQuNSAyLjAxNDcxOSA0LjUgNC41LTIuMDE0NzE5IDQuNS00LjUgNC41em0yMCAwYy0yLjQ4NTI4MSAwLTQuNS0yLjAxNDcxOS00LjUtNC41czIuMDE0NzE5LTQuNSA0LjUtNC41IDQuNSAyLjAxNDcxOSA0LjUgNC41LTIuMDE0NzE5IDQuNS00LjUgNC41em0tNjAgMjBjLTIuNDg1MjgxIDAtNC41LTIuMDE0NzE5LTQuNS00LjVzMi4wMTQ3MTktNC41IDQuNS00LjUgNC41IDIuMDE0NzE5IDQuNSA0LjUtMi4wMTQ3MTkgNC41LTQuNSA0LjV6bTIwIDBjLTIuNDg1MjgxIDAtNC41LTIuMDE0NzE5LTQuNS00LjVzMi4wMTQ3MTktNC41IDQuNS00LjUgNC41IDIuMDE0NzE5IDQuNSA0LjUtMi4wMTQ3MTkgNC41LTQuNSA0LjV6bTIwIDBjLTIuNDg1MjgxIDAtNC41LTIuMDE0NzE5LTQuNS00LjVzMi4wMTQ3MTktNC41IDQuNS00LjUgNC41IDIuMDE0NzE5IDQuNSA0LjUtMi4wMTQ3MTkgNC41LTQuNSA0LjV6bTIwIDBjLTIuNDg1MjgxIDAtNC41LTIuMDE0NzE5LTQuNS00LjVzMi4wMTQ3MTktNC41IDQuNS00LjUgNC41IDIuMDE0NzE5IDQuNSA0LjUtMi4wMTQ3MTkgNC41LTQuNSA0LjV6bS02MCAyMGMtMi40ODUyODEgMC00LjUtMi4wMTQ3MTktNC41LTQuNXMyLjAxNDcxOS00LjUgNC41LTQuNSA0LjUgMi4wMTQ3MTkgNC41IDQuNS0yLjAxNDcxOSA0LjUtNC41IDQuNXptMjAgMGMtMi40ODUyODEgMC00LjUtMi4wMTQ3MTktNC41LTQuNXMyLjAxNDcxOS00LjUgNC41LTQuNSA0LjUgMi4wMTQ3MTkgNC41IDQuNS0yLjAxNDcxOSA0LjUtNC41IDQuNXptMjAgMGMtMi40ODUyODEgMC00LjUtMi4wMTQ3MTktNC41LTQuNXMyLjAxNDcxOS00LjUgNC41LTQuNSA0LjUgMi4wMTQ3MTkgNC41IDQuNS0yLjAxNDcxOSA0LjUtNC41IDQuNXptMjAgMGMtMi40ODUyODEgMC00LjUtMi4wMTQ3MTktNC41LTQuNXMyLjAxNDcxOS00LjUgNC41LTQuNSA0LjUgMi4wMTQ3MTkgNC41IDQuNS0yLjAxNDcxOSA0LjUtNC41IDQuNXoiIGZpbGw9IiNlM2UzZTMiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTc0NiAtNzgpIi8+PC9zdmc+);
}

.bgs .bgs__shape-5 {
  background-color: rgba(124, 122, 234, 0.1);
  left: -76px;
  top: 116px;
  width: 90px;
  height: 90px;
  transform: rotate(45deg);
  border-radius: 10px;
}

.-split .hero .bgs > div {
  position: absolute;
}

/* background header dataprovider.com pages */

/* background header industries pages */
.page-industries .-split {
  background-image: linear-gradient(100deg, #182746 33%, #1d2e50 100%) !important;
}

@media (min-width: 992px) {
  .page-industries .-split {
    background: #1c2b4c !important;
  }

  .page-industries .-split:before {
    background-image: linear-gradient(100deg, #182746 33%, #1d2e50 100%) !important;
  }
}

/* quick lookup widget */

/* quick lookup widget - content nav */

/* list benefits */

.list-benefits {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin: 20px auto;
}

.list-benefits--alt {
  justify-content: flex-start;
  text-align: left;
  width: 100%;
}

.list-benefits--alt li {
  margin: 0 auto 60px !important;
  width: 100% !important;
}

.list-benefits--alt p {
  margin: 0 auto !important;
  width: 100% !important;
}

.list-benefits--illustrations li {
  text-align: center;
}

.list-benefits--illustrations .icon-illustration {
  margin: 0 auto 30px;
}

.list-benefits .icon-illustration {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .list-benefits--alt {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .list-benefits--alt li {
    margin: 0 20px 60px !important;
    width: calc(50% - 40px) !important;
  }
}

@media (min-width: 992px) {
  .list-benefits--alt {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .list-benefits--alt li {
    margin: 0 20px 60px !important;
    width: calc(33.3% - 40px) !important;
  }

  .list-benefits--alt p {
    margin: 0 !important;
  }
}

@media (min-width: 992px) {
  .list-benefits--duet li {
    width: calc(50% - 40px) !important;
  }
}

.list-benefits li {
  margin: 0 auto 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .list-benefits li {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .list-benefits li {
    width: 50%;
  }
}

.list-benefits .icon {
  display: block;
  margin: 0 auto 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: url(../img/sprite-icons-benefits.svg);
  background-size: 800px 160px;
  background-repeat: no-repeat;
}

.list-benefits h3 {
  color: #000;
  font-size: 20px;
  line-height: 1.5625;
  margin: 0 auto 10px;
}

.list-benefits p {
  font-size: 16px;
  margin: 0 auto;
  width: 90%;
}

.list-benefits p .text-link {
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}

.list-benefits p .text-link:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .list-benefits p {
    width: 70%;
  }

  .list-benefits li {
    width: 50%;
  }
}

.section-why-dataprovider {
  overflow: hidden;
  padding: 80px 0 65px;
}

.bg-light {
  background-color: #f5f9ff;
}

/* list awesome features */
.list-awesome-features-nav {
  background-color: #fff;
  box-shadow: 0 2px 24px 5px rgba(150, 150, 150, 0.12);
  border-radius: 5px;
}

.list-awesome-features-nav li {
  border-top: 1px solid #eaecee;
  position: relative;
}

.list-awesome-features-nav li:after {
  transform: scale(0);
  background: #ffa800;
  width: 3px;
  height: 100%;
  content: "";
  position: absolute;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}

.list-awesome-features-nav li.-active:after {
  transform: scale(1);
}

.list-awesome-features-nav li:first-child:not(:last-child) {
  border-radius: 5px 5px 0 0;
  border: none;
}

.list-awesome-features-nav li:last-child:not(:first-child) {
  border-radius: 0 0 5px 5px;
}

.list-awesome-features-nav li:first-child:not(:last-child).-active:after {
  border-radius: 5px 0 0 0;
}

.list-awesome-features-nav li:last-child:not(:first-child).-active:after {
  border-radius: 0 0 0 5px;
}

.list-awesome-features-nav button {
  background: transparent;
  border: none;
  padding: 15px 25px;
  text-align: left;
}

.list-awesome-features-nav h3 {
  font-size: 20px;
  margin: 0;
  color: #000;
}

.list-awesome-features-nav p {
  font-size: 16px;
  display: none;
  margin: 0;
  color: #7f7fa5;
}

.list-awesome-features-items {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

.list-awesome-features-items img {
  position: absolute;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.33);
  border-radius: 4px;
}

.list-awesome-features-items li.-active img {
  position: relative;
  opacity: 1;
  z-index: 1;
}

@media (min-width: 992px) {
  .list-awesome-features-nav button {
    padding: 15px 25px;
  }

  .list-awesome-features-nav h3 {
    margin: 0 0 5px;
  }

  .list-awesome-features-nav p {
    display: block;
  }

  .list-awesome-features-items {
    min-height: 600px;
    display: flex;
    align-items: center;
  }

  .list-awesome-features-items img {
    position: absolute;
    left: 100px;
    width: 840px;
    height: auto;
  }
}

.section-statistics {
  padding: 60px 0 30px;
}

.statistics-item {
  background-color: #fff;
  box-shadow: 0 2px 24px 5px rgba(150, 150, 150, 0.12);
  border-radius: 5px;
  color: #7f7fa5;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-weight: 300;
  padding: 10px;
  margin-bottom: 30px;
  top: 50%;
}

.statistics-item__highlight {
  color: #000;
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  display: block;
}

.statistics-item__label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (min-width: 768px) {
  .statistics-item {
    padding: 20px 40px;
  }
}

@media (min-width: 992px) {
  .section-statistics {
    padding: 80px 0;
  }

  .statistics-item {
    margin: 0;
    padding: 40px;
    font-size: 20px;
    line-height: 25px;
  }

  .statistics-item__highlight {
    font-size: 45px;
    line-height: 50px;
  }

  .statistics-item__label {
    white-space: normal;
  }
}

@media (min-width: 1200px) {
  .statistics-item {
    padding: 40px 20px;
  }
}

.bg-figure {
  position: relative;
  z-index: 3;
}

.bg-figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: none;
}

.bg-figure--1:before {
  width: 70px;
  height: 230px;
  top: -31px;
  right: 70px;
  background-color: rgba(127, 129, 226, 0.08);
  transform: rotate(45deg);
  border-radius: 10px;
}

.bg-figure--2:before {
  width: 160px;
  height: 160px;
  top: 4px;
  right: 20px;
  background-color: rgba(166, 221, 150, 0.15);
  transform: rotate(45deg);
  border-radius: 20px;
}

.bg-figure--3:before {
  right: -5px;
  top: -17px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(166, 224, 16, 0.17);
}

.bg-figure--4:before {
  right: 90px;
  top: -50px;
  width: 70px;
  height: 270px;
  border-radius: 70px;
  background-color: rgba(157, 188, 210, 0.17);
  transform: rotate(45deg);
}

@media (min-width: 992px) {
  .bg-figure:before {
    opacity: 1;
    display: block;
  }
}

.section-features {
  margin-top: -50px;
}


.section-demo {
  background-size: 100%;
  background-image: url(../img/bg-shapes-2.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 10;
  position: relative;
}

.cookie-message {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: auto;
  min-height: 100px;
  width: 100%;
  background-color: white;
  z-index: 99999;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s ease-in-out;
}

.cookie-message__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  margin: auto;
}

.cookie-message.-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.2s, opacity 0.2s ease-in-out;
}

.cookie-message .cookie-message__details {
  flex: 1 1 auto;
  width: 100%;
}

.cookie-message .cookie-message__actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.cookie-message .cookie-message__details h4 {
  margin-top: 0;
  margin-bottom: 7px;
}

.cookie-message .cookie-message__details p {
  margin: 0;
  font-size: 1.2rem;
}

.cookie-message .cookie-message__actions .btn {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.cookie-message .cookie-message__actions .btn:last-child {
  margin-top: 10px;
}

@media (min-width: 576px) {
  .cookie-message__inner {
    margin: auto;
  }

  .cookie-message .cookie-message__actions {
    flex-direction: row;
  }

  .cookie-message .cookie-message__actions .btn {
    flex-direction: row;
  }

  .cookie-message .cookie-message__actions .btn:last-child {
    margin-top: 0;
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .cookie-message__inner {
    flex-direction: row;
    max-width: 750px;
    padding: 25px 30px;
  }

  .cookie-message .cookie-message__actions {
    margin-left: 45px;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .cookie-message__inner {
    max-width: 990px;
  }
}

@media (min-width: 1200px) {
  .cookie-message__inner {
    max-width: 1170px;
  }
}

/* --- Product solutions pages --- */
@media (min-width: 768px) {
  .page-solution h2 {
    margin-bottom: 4rem;
  }
}

.page-solution .hero-illustration {
  position: relative;
  height: 100%;
  align-items: center;
  display: flex;
}

.-split .hero-illustration img {
  display: block;
  margin: auto;
  width: 100%;
}

@media (min-width: 992px) {
  .page-solution .hero-title {
    font-size: 4.5rem;
  }

  .-split .hero-illustration img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .-split img.hero-illustration__image {
    margin-top: 95px;
  }
}

@media (min-width: 1200px) {
  .-split img.hero-illustration__image {
    margin-top: 110px;
  }
}

@media all and (-ms-high-contrast: none) {
  .-split .hero-illustration img {
    width: 100% !important;
  }
}

/* Block features */
.block-features__item {
  border-top: 1px solid #f2f2f2;
  margin: 0 0 30px;
}

.block-features__item:first-child {
  border-top: none;
}

.block-features__item + .block-features__item {
  padding-top: 30px;
}

.block-features__item__row,
.block-features__item__column {
  display: flex;
  align-items: center;
}

.block-features__item__row {
  flex-direction: row;
  flex-wrap: wrap;
}

.block-features__item__column {
  flex-direction: column;
}

.block-features__item__content h3 {
  font-size: 2.4rem;
  margin: 0 0 2.5rem;
}

.block-features__item__content h4 {
  font-size: 1.6rem;
  margin: 4.5rem 0 0;
}

.block-features__item__content p:last-child {
  margin-bottom: 0;
}

.block-features__item__content ul {
  font-size: 1.4rem;
  margin-left: 20px;
}

.block-features__item__content ul strong {
  color: #000;
}

.block-features__item__img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 15px;
  width: calc(100% - 30px);
}

.block-features__item__img img {
  width: auto;
  max-width: calc((100% * 1) - 100px);
  margin: 25px auto 50px;
  margin: auto !important;
}

@media all and (-ms-high-contrast: none) {
  .block-features__item__img {
    width: auto;
  }

  .block-features__item__img img {
    width: 100%;
    position: relative;
    left: -30px;
    margin-left: -50%;
  }
}

@media (min-width: 992px) and (-ms-high-contrast: none) {
  .block-features__item__img img {
    width: auto;
  }
}

.block-features__item__details {
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  visibility: hidden;
}

.block-features__item__details.-expand {
  position: relative;
  height: auto;
  width: auto;
  overflow: auto;
  opacity: 1;
  visibility: visible;
}

.block-features__item__details__wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block-features__item__details__wrapper .block-features__item__detail {
  width: 100%;
}

.block-features__item__detail {
  border-radius: 5px;
  margin-top: 20px;
  background: #f2f6fa;
  padding: 20px;
}

.block-features__item__detail h4 {
  font-size: 1.6rem;
  margin: 0;
}

.block-features__item__detail p {
  font-size: 1.4rem;
}

.block-features__item__detail p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .block-features__item {
    margin: 0 0 30px;
  }

  .block-features__item + .block-features__item {
    padding-top: 30px;
  }

  .block-features__item__row {
    flex-wrap: nowrap;
  }

  .block-features__item__content,
  .block-features__item__img {
    width: 50%;
  }

  .block-features__item__img img {
    display: block;
    max-width: calc(100% - 80px);
    margin: 50px auto 40px;
  }

  .block-features__item__details__wrapper .block-features__item__detail {
    width: calc(50% - 10px);
  }
}

@media (min-width: 992px) {
  .block-features__item__img {
    align-items: center;
  }

  .block-features__item__img img {
    max-width: calc(100% - 30px);
    max-height: 250px;
  }

  .block-features--zig-zag .block-features__item:nth-child(even) .block-features__item__content {
    order: 2;
  }

  .block-features--zig-zag .block-features__item:nth-child(even) .block-features__item__img {
    justify-content: flex-start;
  }
}

/* list-products */
.list-products {
  margin: -30px 0 0;
}

.list-products__link {
  margin-top: 30px;
}

.list-products__item {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 30px;
  transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.2s ease-in-out, z-index 0.2s ease-in-out;
  z-index: 1;
}

.list-products__link:hover .list-products__item {
  z-index: 2;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15);
  border-color: #ffa800;
  transform: scale(1.05);
}

.list-products__content {
  flex: 1;
}

.list-products__canvas {
  width: 80%;
  margin: 0 auto 20px;
}

.list-products__img {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.list-products__name {
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 2.4rem;
  margin: 0 0 2.5rem;
}

.list-products__description {
  margin: 0 0 15px;
}

.list-products__features {
  display: none;
  font-weight: 300;
}

.list-products__features li {
  position: relative;
  padding-left: 25px;
}

.list-products__features li:after {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  width: 16px;
  height: 16px;
  background: transparent url(../img/ui/tick-blue.svg) no-repeat center;
  background-size: 66%;
}

.list-products__about + .btn {
  width: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

@media (min-width: 768px) {
  .list-products__item {
    flex-direction: row;
    text-align: left;
  }

  .list-products__canvas {
    width: 40%;
    margin: 0;
    padding-right: 30px;
    padding-top: 7px;
  }

  .list-products__img {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .list-products__item {
    flex-direction: column;
    min-height: 560px;
  }

  .list-products__content {
    justify-content: space-between;
    flex-direction: column;
    display: flex;
  }

  .list-products__canvas {
    padding-right: 0;
    width: 100%;
  }

  .list-products__name {
    margin-top: 30px;
  }

  .list-products__features {
    display: block;
  }

  .list-products__about + .btn {
    margin: 30px 0 0;
  }
}

@media (min-width: 1200px) {
  .list-products__item {
    padding: 40px;
  }
}

@media all and (-ms-high-contrast: none) {
  .list-products__item {
    display: block;
    flex-direction: initial;
  }

  .list-products__about {
    margin-bottom: 20px;
  }

  .list-products__about + .btn {
    overflow: visible;
  }
}

@media (min-width: 768px) and (-ms-high-contrast: none) {
  .list-products__item {
    display: flex;
  }
}

@media (min-width: 992px) and (-ms-high-contrast: none) {
  .list-products__item {
    height: 610px;
  }
}

/* Top Announcement */
.top-announcement {
  position: fixed;
  z-index: 9090;
  top: 0;
  width: 100%;
  height: 56px;
  font-size: 16px;
  line-height: 1;
}

@media (min-width: 992px) {
  .top-announcement {
    font-size: 18px;
  }
}

.top-announcement__content {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: #ffa800;
  transform: translate3d(0, -56px, 0);
  animation: announcement 0.2s ease-in-out 0.5s forwards;
  transition: background-color 0.2s ease-in-out;
}

.top-announcement__content:hover {
  background-color: #fda700;
}

.top-announcement__content .link {
  color: #fff;
  display: block;
  opacity: 0;
  transform: translate3d(0, -4px, 0);
  animation: link 0.2s ease-in-out 0.7s forwards;
}

.top-announcement__content .link svg {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  position: relative;
  top: 1px;
}

.top-announcement__content .link u:hover {
  text-decoration: none;
}

.top-announcement ~ .site .site-navigation__bar,
.top-announcement ~ .site .-fixed .site-navigation__bar {
  animation: navigation 0.2s ease-in-out 0.5s forwards;
}

.top-announcement ~ .site {
  animation: site 0.2s ease-in-out 0.5s forwards;
}

@keyframes announcement {
  0% {
    transform: translate3d(0, -56px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes site {
  0% {
    padding-top: 0;
  }

  100% {
    padding-top: 56px;
  }
}

@keyframes navigation {
  0% {
    top: 0;
  }

  100% {
    top: 56px;
  }
}

@keyframes link {
  0% {
    opacity: 0;
    transform: translate3d(0, -4px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
