/* CSS Document */
#info-content {
  margin: 1rem;
}

@keyframes letStickerDesktopAnimation {
  0% {
    transform: translateX(-165px);
  }
  50% {
    transform: translateX(-125px);
  }
  100% {
    transform: translateX(-165px);
  }
}
@keyframes letStickerMobileAnimation {
  0% {
    transform: translateX(-145px) scale(0.7);
  }
  50% {
    transform: translateX(-120px) scale(0.7);
  }
  100% {
    transform: translateX(-145px) scale(0.7);
  }
}
#faq-overlay {
  width: 100px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 38%;
  left: 0;
  z-index: 10;
  height: 100px;
  width: 200px;
  transform: translateX(-165px);
  transition: all 0.5s ease-out;
  animation-name: letStickerDesktopAnimation;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-timing-function: easeInOutCirc;
  background-color: #0072bc;
  background-color: rgba(0, 114, 188, 0.9);
}
#faq-overlay:hover, #faq-overlay:focus {
  transform: translateX(-100px);
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 40em) {
  #faq-overlay {
    transform: translateX(-145px) scale(0.7);
    animation-name: letStickerMobileAnimation;
  }
  #faq-overlay:hover, #faq-overlay:focus {
    transform: translateX(-100px) scale(0.7);
  }
}
#faq-overlay > a > span {
  color: #fff;
  transform: rotate(-90deg);
  position: absolute;
  right: -30px;
  top: 35px;
  width: 100px;
  display: block;
  text-align: center;
}
#faq-overlay > a > button {
  position: absolute;
  right: 45px;
  top: 50%;
  margin-top: -24px;
  border-radius: 50%;
  padding: 0;
  font-size: 0.8rem;
  line-height: 1;
  margin-left: 10px;
  background-color: #00c1ff;
  z-index: 10;
  cursor: pointer;
  border: 2px solid #0072bc;
  color: #fff;
}
#faq-overlay > a > button:before {
  display: block;
  margin: auto;
  content: "";
  background-image: url(../icons/info-icon-b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  width: 40px;
  color: #fff;
  height: 40px;
}
#faq-overlay > a > button:hover {
  background-color: #fff;
  border: 2px solid #0072bc;
}
#faq-overlay > a > button:hover:before {
  background-image: url(../icons/info-icon.svg);
  background-color: #fff;
  color: #0072bc;
}

#faq-overlay {
  background-color: #00c1ff;
}

#faq-overlay > a > button {
  border-color: #ffffff;
}

#faq-overlay > a > button:before {
  background-image: url(../icons/info-icon-w.svg);
}

#faq-overlay > a > button:hover {
  border-color: #fff;
  background-color: #fff;
}

#faq-overlay > a > button:hover:before {
  background-image: url(../icons/info-icon-t.svg);
  border-color: #fff;
  background-color: #fff;
}
/*# sourceMappingURL=faqOverlay.css.map */
