.voice-pop-up {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(68, 210, 249) 0%, rgb(4, 170, 215) 100%);
  z-index: 101;
}
.voice-pop-up .circle {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  width: 150px;
  height: 150px;
  margin-left: -75px;
  opacity: 0;
  animation: scaleInCircles 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}
.voice-pop-up .circle:nth-child(1) {
  animation-delay: 0s;
}
.voice-pop-up .circle:nth-child(2) {
  animation-delay: 1s;
}
.voice-pop-up .circle:nth-child(3) {
  animation-delay: 1.5s;
}
.voice-pop-up .circle:nth-child(4) {
  animation-delay: 3s;
}
.voice-pop-up .circle:nth-child(5) {
  animation-delay: 3.5s;
}
.voice-pop-up .circle:nth-child(6) {
  animation-delay: 4s;
}
@keyframes scaleInCircles {
  from {
    transform: scale(0.5, 0.5);
    opacity: 0.5;
  }
  to {
    transform: scale(10, 10);
    opacity: 0;
  }
}
.voice-pop-up .close-button {
  position: absolute;
  top: 56px;
  right: 56px;
  cursor: pointer;
  z-index: 10;
  color: #ffffff;
  opacity: 0.6;
}
.voice-pop-up .close-button:after {
  display: inline-block;
  vertical-align: middle;
  content: "\e003";
  font-size: 46px;
  font-family: "cuf-icons";
}
@media (max-width: 800px) {
  .voice-pop-up .close-button:after {
    font-size: 36px;
  }
}
.voice-pop-up .close-button:hover {
  opacity: 1;
}
@media (max-width: 800px) {
  .voice-pop-up .close-button {
    display: block;
  }
}
@media (max-width: 512px) {
  .voice-pop-up .close-button {
    right: 24px;
  }
}
.voice-pop-up .boxing {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 800px) {
  .voice-pop-up .boxing {
    width: 100%;
    padding: 0 40px;
  }
}
.voice-pop-up .boxing .title {
  width: 510px;
  font-family: "Quicksand CUF", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.19;
  text-align: center;
  color: #ffffff;
  margin: 0 auto 10px auto;
}
@media (max-width: 800px) {
  .voice-pop-up .boxing .title {
    font-size: 30px;
    line-height: 1.27;
    width: 100%;
  }
}
.voice-pop-up .boxing .sub-title {
  font-family: "Quicksand CUF", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: center;
  color: #4dd7fd;
}
@media (max-width: 800px) {
  .voice-pop-up .boxing .sub-title {
    font-size: 18px;
    line-height: 1.44;
  }
}
.voice-pop-up .boxing .icon {
  padding: 40px 0;
  text-align: center;
}
@media (max-width: 800px) {
  .voice-pop-up .boxing .icon {
    padding: 71px 0;
  }
}
.voice-pop-up .boxing .icon:before {
  display: inline-block;
  content: "\e044";
  font-family: "cuf-icons";
  font-size: 48px;
  font-weight: 100;
  color: #ffffff;
}

/*# sourceMappingURL=voice.css.map */
