/* Ticket loading */

#listLoading{
    padding: 16px 0px 16px 15px;
    /* padding: 0px 0px 0px 50%; */
}

.list-loading-wrapper {
    width: 40%;
    /* height: 20px; */
}

@keyframes placeHolderShimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.list-loading-wrapper .animated-background {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 100% 104px;
    height: 18px;
    position: relative;
}

.list-loading-wrapper .background-masker {
    background: #fff;
    position: absolute;
}

.list-loading-wrapper .background-masker.header-top{
    height: 10px;
    width: 100%;
    background-color: #fff;
}

.list-loading-wrapper .background-masker.header-bottom{
    height: 10px;
    width: 100%;
    background-color: #fff;
    position: absolute;
    bottom:0px
}
