    @keyframes pulse {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0.7)
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 1.2rem rgba(0, 0, 0, 0)
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0.5rem rgba(0, 0, 0, 0)
        }
    }

    @keyframes pulse-white {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.4)
        }

        50% {
            transform: scale(1);
            box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.4)
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.4)
        }
    }