/* lazy loaded tailwind solved loading time but introduced some CLS issues, so we're setting some of the most used tailwind classes to local ones */

.ct-flex {
    display: flex;
}

.ct-w-full {
    width: 100%;
}

.ct-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ct-mt-24 {
    margin-top: 6rem;
}

@media (min-width: 768px) {
    .ct-md-mt-44 {
        margin-top: 11rem;
    }
}

.ct-mb-4 {
    margin-bottom: 1rem;
}

.ct-pt-6 {
    padding-top: 1.5rem;
}

.ct-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.ct-pb-8 {
    padding-bottom: 2rem;
}

.ct-rounded {
    border-radius: 0.25rem;
}

.ct-rounded-md {
    border-radius: 0.375rem;
}
