.splash-screen {
    height: 95vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.copyright {
    position: absolute;
    font-size: 0.9rem;
    bottom: 0;
    padding-bottom: 16px;
    font-family: Poppins, sans-serif;
    color: #919eab;
}
.loading__container {
    background: 0 0 / cover #eaeaea;
    width: 140px;
    border-radius: 2px;
}
.line {
    height: 3px;
    width: 100%;
    background: #e8e8e8;
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
}
.line .inner {
    width: 100%;
    height: inherit;
    background: #DF6106;
    animation: 2s ease-in-out infinite slide;
}
@keyframes slide {
    0%,
    100% {
        transform-origin: left;
        transform: scalex(0.3);
    }
    25%,
    76% {
        transform-origin: left;
        transform: scalex(1);
    }
    26%,
    75% {
        transform-origin: right;
        transform: scalex(1);
    }
    50% {
        transform-origin: right;
        transform: scalex(0.3);
    }
}
