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

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

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

@keyframes bounce-smooth {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-bounce-smooth {
    animation: bounce-smooth 7s ease-in-out infinite;
}


@media screen and (max-width: 1074.99px) {
    .object-bounding-box {
        display: none;
    }
}
