html * {
    font-family: "Roboto", sans-serif;
}

.content * {
    animation: fadeInAnimation ease 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.required:after {
    content: " *";
    color: red;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.invalid {
    border-color: red !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.tagify--empty .tagify__input::before {
    color: #9ca3af;
}

.tagify__input:focus:empty::before {
    display: none;
}

.tagify {
    --tags-border-color: var(--fallback-bc, oklch(var(--bc)/.2)) !important;
    padding-top: 0.5em !important;
    padding-bottom: 0.5em !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s;
}

.event-badge {
    animation: move 3s ease-in-out 10;
    position: relative;
    transform: rotatey(-15deg);
    backface-visibility: inherit;
    transform-origin: center top;
    transform-style: preserve-3d;
    width: 10rem;
    will-change: transform;
    margin: 0 2rem 0 2rem;
}

.event-badge::after {
    animation: light 3s ease-in-out 10;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(250, 250, 250, .2) 50%, rgba(255, 255, 255, 0) 70%)no-repeat;
    background-size: 300%;
    background-position: -300px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    border-radius: 5%;
}

@keyframes light {
    50% {
        background-position: 400px;
    }
}

@keyframes move {
    50% {
        transform: rotatey(15deg)
    }
}