.falling-burger {
    /*border-radius: 50%;*/
    /*opacity: 0.8;*/
    position: fixed;
    top: -50vh;
    animation-name: fall;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.confirmation-cb {
    color: white;
    display: none;
}

@keyframes fall {
    50% {opacity: 0}
    100% {transform: translateY(500vh); opacity: 0}
}
