.page-bg {
    background-image: url("../media/images/2600x1200/bg-10.png");
}

.dark .page-bg {
    background-image: url("../media/images/2600x1200/bg-10-dark.png");
}

.kt-toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 0.875rem;
}

.kt-toast .kt-alert-title {
    margin-bottom: 0 !important;
    font-size: 0.875rem !important;
    font-weight: normal;
    color: #fff;
    text-align: start !important;
}

.kt-toast .kt-alert-actions {
    margin-top: 0 !important;
}

.kt-toast .kt-alert-toolbar .kt-alert-close {
    width: 1.2rem;
    height: 1.2rem;
}

.kt-modal-sm {
    max-width: 24rem;
}

.kt-modal-md {
    max-width: 28rem;
}

.kt-modal-lg {
    max-width: 42rem;
}

.kt-modal-xl {
    max-width: 60rem;
}

.max-h-full {
    max-height: 100%;
}

.col-span-full {
    grid-column: 1 / -1;
}

.object-cover {
    object-fit: cover;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-spin-slow {
    animation: spin-slow 3s linear infinite;
}

.text-violet {
    color: var(--color-violet-700);
}

.p-4px {
    padding: 4px !important
}

.capitalize {
    text-transform: capitalize;
}
