.no-btn {
font-weight: 300;
font-size: 0.9em;
text-transform: capitalize;
border-radius: 2px;
padding: 0 5px;
box-shadow: none;
background: 0 0;
color: var(--global-palette4);
}
.loader {
width: 0.9em;
height: 0.9em;
display: inline-block;
position: relative;
}
.loader::after,
.loader::before {
content: "";
box-sizing: border-box;
width: 0.9em;
height: 0.9em;
border-radius: 50%;
border: 2px solid var(--global-palette2);
position: absolute;
left: 0;
top: 0;
animation: 2s linear infinite animloader;
}
.loader::after {
animation-delay: 1s;
}
@keyframes animloader {
0% {
transform: scale(0);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0;
}
}