body::-webkit-scrollbar{
width: 10px;
}
body::-webkit-scrollbar-track{
background: #0c0c0c; /* altere a cor do fundo aqui */
}
body::-webkit-scrollbar-thumb{
background: linear-gradient(180deg, #791DF3 0%, #000000 100%); /* altere a cor do gradiente aqui ou use background-color para cor sólida */
border-radius: 10px; /* controle o arrendondamento da borda aqui */
border: 2px solid #0c0c0c; /* altere a cor da borda, recomendado usar a mesma do fundo */
}
selector .elementor-button{
background: linear-gradient(-45deg, #09E3A6, #B63BEB, #1AE0FA); /* altere as cores aqui */
animation: anime 5s linear infinite;
background-size: 600%;
}
@keyframes anime{
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}
.scroll-left{
opacity: 0;
filter: blur(10px);
transition: .5s all;
transform: translate3d(-30px, 0, 0);
}
.scroll-bottom{
opacity: 0;
filter: blur(10px);
transition: .5s all;
transform: translate3d(0, 30px, 0);
}
.scroll-right{
opacity: 0;
filter: blur(10px);
transition: .5s all;
transform: translate3d(30px, 0, 0);
}
.scroll-top{
opacity: 0;
filter: blur(10px);
transition: .5s all;
transform: translate3d(0, -30px, 0);
}
.ativado{
opacity: 1;
filter: blur(0px);
transform: translate3d(0, 0, 0);
}
.lista .elementor-icon-list-item{
opacity: 0;
transition: .5s all;
transform: translate3d(-30px, 0, 0);
filter: blur(10px);
}
.lista .elementor-icon-list-item.ativado{
opacity: 1;
transition: .5s all;
transform: translate3d(0, 0, 0);
filter: blur(0px);
}