.loading-layout {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: #1a191a;
}

@media all and (min-width: 768) {
    .loading-layout {
        display: none;
    }
}

.loading-layout__crown {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    text-align: center;
}

.loading-layout__crown:after {
    content: "";
    position: absolute;
    background: #1a191a;
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
    z-index: 1;
    border-radius: 50px;
}

.loading-layout__crown:before {
    content: "";
    position: absolute;
    background: -moz-linear-gradient(top, #cbaf73 0%, rgba(0,0,0,0) 85%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(85%, rgba(0,0,0,0)), color-stop(30%, #cbaf73), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top, #cbaf73 0%, rgba(0,0,0,0) 85%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top, #cbaf73 0%, rgba(0,0,0,0) 85%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top, #cbaf73 0%, rgba(0,0,0,0) 85%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, #cbaf73 0%, rgba(0,0,0,0) 85%, rgba(0,0,0,0) 100%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 50px;
    animation: ring-animation 2s linear infinite;
    -webkit-animation: ring-animation 2s linear infinite;
}

.loading-layout__icon {
    position: relative;
    z-index: 3;
    width: 50px !important;
    height: 50px !important;
    margin-top: 25px;
    color: #cbaf73;
}

@-webkit-keyframes ring-animation {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes ring-animation {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
