section {

  overflow: hidden;
}

.section-whatsapp {

  background: #ffffff;
  color: rgb(28, 30, 33);
}

.section-whatsapp .title {

  font-size: 18px;
}

.section-whatsapp label {
  margin-left: 15px;
}

.section-whatsapp .form-control {

  border-radius: 50px;
}

.section-whatsapp .btn-whatsapp-page {

  background: #128c7e;
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  padding: 16px 32px;
}

.section-whatsapp hr {
  background: #dadde1 !important;
  border-width: 0 !important;
  color: #dadde1 !important;
  height: 1px !important;
}

.section-whatsapp .aviso {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

.ring {
  content: '';
  width: 90px;
  position: fixed;
  height: 90px;
  border-radius: 999px;
  animation: pulse-ring 1.5s cubic-bezier(.215, .61, .355, 1) infinite;
  background-color: rgb(37 211 102);
  bottom: 85px;
  right: 10px;
}


#startup {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #eeeeee;
  -moz-user-select: none;
  -webkit-user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner-container {
  animation: rotate 2s linear infinite;
  -webkit-animation: rotate 2s linear infinite;
}

.spinner-container .path {
  stroke-dasharray: 1, 150;
  /* 1%, 101% circumference */
  stroke-dashoffset: 0;
  stroke: rgba(27, 154, 89, 0.7);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
  -webkit-animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    /* 1%, 101% circumference */
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    /* 70%, 101% circumference */
    stroke-dashoffset: -35;
    /* 25% circumference */
  }
  100% {
    stroke-dasharray: 90, 150;
    /* 70%, 101% circumference */
    stroke-dashoffset: -124;
    /* -99% circumference */
  }
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    /* 1%, 101% circumference */
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    /* 70%, 101% circumference */
    stroke-dashoffset: -35;
    /* 25% circumference */
  }
  100% {
    stroke-dasharray: 90, 150;
    /* 70%, 101% circumference */
    stroke-dashoffset: -124;
    /* -99% circumference */
  }
}

.app-wrapper {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  body {
    overflow-x: auto;
  }

  .app-wrapper {
    width: 600px;
  }
}
