﻿

.line-loader-container {
    height: 2px;
}

@keyframes changewidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.line-loader-bar {
    /*background-color: #478985;*/
    background-color: #8ed5be;
    height: 2px;
    animation-duration: 2s;
    animation-name: changewidth;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}