﻿html {
  font-size: calc(1em*.625);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4285;
  overflow-y: auto;
  text-align: center;
}

.atp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100vh - 100px);
  width: 100%;
}

.atp-button {
  height: 32px;
  border: 1px solid #E1DFDD;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding: 5px 20px 7px 20px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

  .atp-button:active,
  .atp-button:focus {
    box-shadow: none;
    outline: 0;
  }

#atp-message {
  display: block;
  font-size: 24px;
  line-height: 32px;
  margin: 32px auto 20px auto;
  font-weight: 600;
}

#atp-line-three {
  position: fixed;
  bottom: 9vh;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

a {
  text-decoration: none;
}

  a:hover,
  a:active,
  a:focus {
    text-decoration: underline;
  }

#atp-line-error {
  position: fixed;
  bottom: 0;
  left: 0;
  text-align: left;
  font-size: 1.2rem;
  color: #666
}

#skip-validation-link {
  text-decoration: none;
  margin-bottom: 16px;
}

#atp-error-image {
  width: 200px;
}

.atp-hidden {
  display: none;
}

.dot {
  position: relative;
  display: inline-block;
  opacity: 0;
}

.showone {
  animation: 2.3s forwards infinite showdot-one;
}

.showtwo {
  animation: 2.3s forwards infinite showdot-two;
}

.showthree {
  animation: 2.3s forwards infinite showdot-three;
}

@keyframes showdot-one {

  4%, 100% {
    opacity: 0;
  }

  5%, 99% {
    opacity: 1;
  }
}

@keyframes showdot-two {

  29%, 100% {
    opacity: 0;
  }

  30%, 99% {
    opacity: 1;
  }
}

@keyframes showdot-three {

  59%, 100% {
    opacity: 0;
  }

  60%, 99% {
    opacity: 1;
  }
}
