
.ctp_spinner2 {
  border: 16px solid silver;
  border-top: 16px solid #337AB7;
  border-radius: 50%;
  display: inline-block;
  width: 80px;
  height: 80px;
  animation: spin360 700ms linear infinite;
  padding-top: 50px;
  position: relative;
}

@keyframes spin360 {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.ctp_spinner {
  width: 80px;
  height: 80px;
  border: 3px solid #1b6ec2;
  border-radius: 50%;
  display: inline-block;
  padding-top: 50px;
  position: relative;
  box-sizing: border-box;
  animation: spin360 1s linear infinite;
}

  .ctp_spinner::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #1b1a96;
  }

.ctp_spinner_small {
  width: 25px;
  height: 25px;
  border: 2px solid #1b6ec2;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: spin360 1s linear infinite;
}

  .ctp_spinner_small::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-bottom-color: #1b1a96;
  }

@keyframes keybwb {
  0% {
    font-size: 1em;
  }

  50% {
    font-size: 1.2em;
    color: red;
  }

  100% {
    font-size: 1em;
  }
}

.bwb {
  transform: rotateX(90deg);
  animation: keybwb 1.5s linear infinite;
}

.thankyouhidden {
  display: none;
}

.thankyouvisible {
  position: absolute;
  display: block;
  font-size: 100px;
  color: rgba(0,0,0,0.6);
  font-weight: 1000;
  transform: rotate(-40deg);
  top: 300px;
  animation: keythankyou 1.5s ease-in-out infinite;
  text-shadow: 3px 3px 4px rgba(0,0,0,0.3);
}

@keyframes keythankyou {
  50% {
    transform: rotate(-50deg)
  }
}

.flip-card {
  display: inline-block;
  background-color: transparent;
  width: 300px;
  height: 70px;
  perspective: 1000px;
  margin-bottom: 10px;
  margin-right: 10px;
}


.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

.flip-card-inner-off {
  /*transform: rotateX(90deg);*/
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}


.flip-card:focus {
  outline: 0;
}

  .flip-card:hover .flip-card-inner,
  .flip-card:focus .flip-card-inner {
    transform: rotateX(180deg);
  }

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flip-card-front {
  background-image: linear-gradient(180deg, #5d9fe2 0%, #7dbfff 70%);
  color: black;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
}

.flip-card-back {
  background-image: linear-gradient(180deg, #3367b2 0%, #3d7fc2 70%);
  color: white;
  transform: rotateX(180deg);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
}

