.quiz {
    position: fixed;
    right: 45px;
    bottom: 45px;
    z-index: 1000;
}

.quiz__button {
    background: #57d163;
    opacity: 1;
    display: inline-flex;
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    font-weight: 900;
    justify-content: center;
    align-items: center;
}



@keyframes quiz {
  0%
  {
      transform: scale(0.65);
      opacity: 0;
  }
  25%
  {
      opacity: .5;
  }
  50%
  {
      opacity: 1;
  }
  75%
  {
      opacity: 0.5;
  }
  100%
  {
      transform: scale(1.3);
      opacity: 0;
  }
  
}

.quiz__button:before {
    content: "";
    background-color: inherit;
    display: block;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit;
    z-index: 0;
    animation: quiz infinite 3.2s 0s linear;
    left: 0;
}

.quiz__button:after {
    content: "";
    background-color: inherit;
    display: block;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    border-radius: inherit;
    z-index: 0;
    animation: quiz infinite 3.2s 0s linear;
    left: 0;
}

.quiz__button:before {
    animation-delay: 0.65s;
}

.quiz__button:after {
    animation-delay: 1.3s;
}

.quiz__button--icon {
    display: flex;
    z-index: 1;
}




.quiz__image-heart{
    display: block;
    position: absolute;
    z-index: 0;
    animation: quiz__image-heart infinite 5.2s 0s linear;
    
}

.quiz__image-before{
    display: block;
    position: absolute;
    z-index: -1;
    width: 60px;
    animation: quiz__image-before infinite 5.2s 0s linear;
    
}

.quiz-heart{
    position: fixed;
    right: 25px;
    bottom: 123px;
    z-index: 300;
}

@media (max-width: 1279px){
.quiz-heart {
    right: 10px;
}}

@media (max-width: 512px){
    .quiz {
        right: 20px;
        bottom: 15px;
}}

.quiz-heart__button {
    display: inline-flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
}

@keyframes quiz__image-heart {
   0%
  {
      transform: scale(0.50);
      
  }
  25%
  {
      transform: scale(0.55);
  }
  50%
  {
      transform: scale(0.50);
  }
  75%
  {
      transform: scale(0.55);
  }
  100%
  {
      transform: scale(0.50);
      
  }
  
}

@keyframes quiz__image-before {
   0%
  {
      transform: scale(0.65);
      opacity: 1;
      
  }
  25%
  {
      transform: scale(1.20);
      opacity: 0;
  }
  26%
  {
      transform: scale(0.65);
      opacity: 0;
  }
  
  
  
  50%
  {
      transform: scale(0.65);
      opacity: 1;
  }
  75%
  {
      transform: scale(1.20);
      opacity: 0;
  }
  76%
  {
      transform: scale(0.65);
      opacity: 0;
  }
  
  
  100%
  {
      transform: scale(0.65);
      opacity: 1;
      
  }
  
}

.t-uptitle {
    letter-spacing: 0px;
}