.ask {
  text-align: center;
}

.title {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
}

.titleSmall {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 24px;
}

.subtitle {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.imageAsk {
  display: inline-block;
  background: #368df7;
  box-shadow: 0 4px 6px 0 rgba(153, 153, 153, .5);
  width: 110px;
  height: 110px;
  border-radius: 100%;
  overflow: hidden;
  margin: 30px 0;
}

.imageWaitingPin,
.imageSearchingPin {
  margin-top: 15px;
}

.imageSearchingPin {
  animation: bounce 1s infinite;
}

.imageWaitingShadow,
.imageSearchingShadow {
    background-color: #ccc;
    width: 30px;
    height: 30px;
    border-radius: 80px;
    margin-bottom: 30px;
    margin: -15px auto 0;
}

.imageWaitingShadow {
  transform: rotateX(76deg) scale(1);
}

.imageSearchingShadow {
  animation: bounce-shadow 1s infinite;
}

.cta {
  margin-bottom: 12px;
}

.manualBtn {
  font-size: 14px;
  margin-top: 12px;
}

@keyframes bounce {
  0% {
    transform: translateY(-15px);
  }
  40% {
    filter: none;
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}

@keyframes bounce-shadow {
  0% {
    transform: rotateX(80deg) scale(1.6);
  }
  40% {
    filter: none;
    transform: rotateX(76deg) scale(1);
  }
  100% {
    transform: rotateX(80deg) scale(1.6);
  }
}
