
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 15px;
    display: flex;
}
.loader.is--loaded {
    display: none;
}
.loader__logo {
    margin-bottom: 35px;
    width: 100%;
    max-width: 400px;
}
.loader__progress {
    width: 100%;
    height: 28px;
    max-width: 340px;
    padding: 4px;
    border-radius: 100px;
    position: relative;
}
.loader__progress::before {
    position: absolute;
    content: '';
    left: 4px;
    top: 4px;
    border-radius: 100px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background-color: #fff;
}
.loader__progress-line {
    position: relative;
    z-index: 2;
    width: 0;
    height: 100%;
    border-radius: 100px;
    transition: width 0.5s ease;
}
@media (max-width: 767px) {
    .loader__progress {
        max-width: 220px;
    }
}
