#icy-page-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

#icy-page-loader.icy-page-loader--hide {
    opacity: 0;
    visibility: hidden;
}

.icy-page-loader__content {
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.icy-page-loader__logo {
    max-width: 280px;
    width: 100%;
    margin-bottom: 30px;
}

.icy-page-loader__text {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.8;
}

.icy-page-loader__progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, .15);
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.icy-page-loader__progress-line {
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: #111;
    border-radius: 20px;
    animation: icyPageLoaderMove 1s linear infinite;
}

@keyframes icyPageLoaderMove {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .icy-page-loader__logo {
        max-width: 220px;
    }

    .icy-page-loader__text {
        font-size: 22px;
    }
}
