.button_su{
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
  border-radius: 10px;
}

.su_button_circle{
  background-color: red;
  border-radius: 1000px;
  position: absolute;
  left:0;
  top:0;
  width: 0px;
  height: 0px;
  margin-left: 0px;
  margin-top: 0px;
  pointer-events: none;
  /*animation-timing-function: ease-in-out; */
  border-radius: 10px;
}

.button_su_inner{
    display: block;
    background: #fff;
    font-weight: normal;
    text-align: center;
    transition: 400ms;
    text-decoration: none;
    z-index: 1;
    border-radius: 10px;
}

.button_text_container{
   position:relative;
   z-index: 1;
}

.explode-circle {
   animation: explode 0.5s forwards;

}

.desplode-circle{
   animation: desplode 0.5s forwards;
}

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
     background-color: rgba(220, 91, 15,0.2);
  }
  100% {
    width: 800px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(220, 91, 15,0.8);
    color: #dc5b0f;
  }
}

@keyframes desplode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: -200px;
    margin-top: -200px;
    /*background-color: rgba(20, 180, 87,0.8);*/
    background-color: rgba(95, 95, 95,0.8);
  }
  100% {
    width: 600px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    /*background-color: rgba(129, 80, 108,0.6);*/
    background-color: rgba(129, 80, 108,0.6);
  }
}
