.spinner{
    margin-top: 20px;
    border: 8px solid rgba(0,0,0,.2);
    border-left-color: #004497;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin{
    to{ transform: rotate(360deg);}
}
#spinnerPanel{
    display: flex;
    justify-content: center;
    height: 0px;
    visibility: hidden;
}

.moviva-table:hover{
    background-color: #d6e9f5;     
}