loader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-image: url(loader-background.png);
    top: 0;
    left: 0;
    z-index: 50000;
    display: none;
}

loader::after {
    content: "";
    background-image: url(loader.png);
    width: 146px;
    background-position: center;
    height: 146px;
    position: fixed;
    z-index: 50001;
    top: 50%;
    left: 50%;
    margin-top: -73px;
    margin-left: -73px;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 1px solid #4e4848;
    background-color: #4e4848;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-size: 100%;
}

loader > div {
    position: fixed;
    z-index: 9999999;
    top: 50%;
    margin-top: 110px;
    left: 50%;
    background-color: #565656;
    color: #FFFFFF;
    font-weight: 300;
    padding: 30px 30px;
    min-width: 400px;
    max-width: 980px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 21px;
    width: 60%;
}

loader > div * {
    background-color: #FFFFFF;
    color: #2D3338;
    font-weight: 300;
    font-size: 26px;
}

@media (max-width: 1080px) {
    loader > div {
        font-size: 16px;
        top: 20%;
    }

    loader::after {
        margin-top: 0;
        top: 10%;
    }
}