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