#people_ordered {
    background-color: #fcff00;
    position: fixed;
    bottom: 0;
    width: 100%;
    white-space: normal;
    padding: 10px;
    font-size: 22px;
    text-align: center;
    color: #293753;
    z-index: 9999;
}

#people_ordered img {
    max-height: 30px;
    margin-right: 10px;
}

.slide {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: max-content;
    max-width: 100%;
    -webkit-animation: slide 5.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide 5.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@media only screen and (max-width : 650px) {
    #people_ordered {
        font-size: 18px;
    }

    #people_ordered img {
        max-height: 20px;
    }
}

@media only screen and (max-width : 600px) {
    #people_ordered {
        font-size: 16px;
    }
}

@media only screen and (max-width : 500px) {
    #people_ordered {
        font-size: 14px;
    }
}

@media only screen and (max-width : 500px) {
    #people_ordered {
        font-size: 13px;
    }
}

@media only screen and (max-width : 400px) {
    #people_ordered {
        font-size: 11px;
    }
}

@media only screen and (max-width : 350px) {
    #people_ordered {
        font-size: 10px;
    }
}

@-webkit-keyframes slide {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    20% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    80% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slide {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    20% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    80% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
