@media screen and (max-width: 992px) {
    .admin-vehicle-list > .skeleton-loader:nth-child(odd) {
        background-color: #eeeeee;
    }
    .admin-vehicle-list > .skeleton-loader:nth-child(even) {
        background-color: #ffffff;
    }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
    .admin-vehicle-list > .skeleton-loader:nth-child(4n+1),
    .admin-vehicle-list > .skeleton-loader:nth-child(4n+2) {
        background-color: #eeeeee;
    }
    .admin-vehicle-list > .skeleton-loader:nth-child(4n+3),
    .admin-vehicle-list > .skeleton-loader:nth-child(4n+4) {
        background-color: #ffffff;
    }
}
@media screen and (min-width: 1200px) {
    .admin-vehicle-list > .skeleton-loader:nth-child(6n+1),
    .admin-vehicle-list > .skeleton-loader:nth-child(6n+2),
    .admin-vehicle-list > .skeleton-loader:nth-child(6n+3) {
        background-color: #eeeeee;
    }

    .admin-vehicle-list > .skeleton-loader:nth-child(6n+4),
    .admin-vehicle-list > .skeleton-loader:nth-child(6n+5),
    .admin-vehicle-list > .skeleton-loader:nth-child(6n+6) {
        background-color: #ffffff;
    }
}

.vehicle-admin-bar {
    background-color: #d9d9d9;
    height: 20px;
    border-radius: 4px;
    max-width: 230px;
}

.vehicle-admin-bar-button {
    background-color: #d9d9d9;
    height: 31px;
    border-radius: 4px;
    max-width: 300px;
}

@keyframes aniHorizontal {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}


