body {
  background-color: #e91c89;
  font-family: 'Montserrat';
  text-transform: uppercase;
  text-align: center;
}
a {
  text-decoration: none;
}
body.pending .box {
  transition: all 0.5s;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
body.pending .box .button {
  opacity: 0;
  display: none;
}
.pattern {
  background: url('https://www.everday.se/wp-content/themes/everday/assets/images/pattern-curly-yellow.png');
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.box {
  background-color: #fff;
  padding: 20px;
  margin: auto;
  width: 240px;
  margin-top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s;
}
.hidden {
  display: none;
}
.button {
  display: inline-block;
  margin: auto;
  background: #fff;
  padding: 20px;
  color: #3f3f3f;
  transition: all 0.25s;
  border: none;
  color: #e91c89;
  background-color: #FFD11B;
  position: relative;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.button:focus {
  outline: none;
}
.button.animate:before {
  position: absolute;
  content: '';
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 10px solid #FFD11B;
  transition: all 0.5s;
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  border-radius: 5px;
}
.button:hover {
}

.smilescore {
  font-size: 120px;
  font-weight: 900;
  display: block;
}

@keyframes pulse {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
  50% {
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
  }
  100% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  25% {
    transform: rotateZ(90deg);
  }
  50% {
    transform: rotateZ(180deg);
  }
  75% {
    transform: rotateZ(270deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}