/** Shopify CDN: Minification failed

Line 57:8 Expected ":"

**/
.tab__link{
  font-size: 2.85rem;
}
.tab__header{
  justify-content: space-evenly;
}
.pplr-c-button{
    background: black;
    cursor: pointer;
    border: none;
    color: azure;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    border-radius: 50px;
    padding: 0 24px;
    margin-top: 30px;
}



.pplr-c-button:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, red, blue, deeppink, blue, red, blue, deeppink, blue);
    background-size: 800%;
    border-radius: 12px;
    filter: blur(8px);
    animation: glowing 20s linear infinite;

}

 .animated{
  -webkit-animation: desvanecer 1s ease-in-out both; 
	        animation: desvanecer 1s ease-in-out both;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}


@-webkit-keyframes desvanecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes desvanecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}






