#CustomerList{
    position: absolute;
    display: inline-flex;
    right: 2vw;
    width:20vw;
    height: 50vh;
    background-color: royalblue;
    border: black solid 5px;
    animation: FadeIn 1s forwards;
}
#InnerAlignList{
    display: flex;
    justify-content: center;
    margin: 5%;
}
#TitleList{
    display: block;
    width: 100%;
    height: 25px;
    text-align: center;
    /* background-color: gray; */
}
@keyframes FadeIn {
    0%{display: none;
        opacity: 0;
        
    }
    100%{
        display: block;
        opacity: 1;
        
    }
}
@keyframes FadeOut {
    0%{
        display: block;
        opacity: 1;
        
    }
    100%{
        display: none;
        opacity: 0;
    }
}