@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

.poppins {
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    font-style: normal;
}

.code {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;  
}

.pop-enter {
    animation: pop-enter-anim 0.1s ease-out forwards;
}

.pop-exit {
    animation: pop-exit-anim 0.1s ease-in forwards;
}


@keyframes pop-enter-anim {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pop-exit-anim {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* shimmer text */
.shimmer-text {
    background: linear-gradient(90deg,
            #666666 0%,
            #666666 40%,
            #ffffff 50%,
            #666666 60%,
            #666666 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* chekbox */
.checkbox-tick {
    display: grid;
    place-items: center;
}

.checkbox-tick::after {
    content: "✓";
    color: white;
    font-size: 0.9rem;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}
.checkbox-tick:checked::after {
    transform: scale(1);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
    scrollbar-width: none;
}