#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #222;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 45%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e76b28;
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #b1521e;
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #773715;
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   { 
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   {
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
	
.loader-text {
	display: block;
    position: relative;
    top: 50%;
	margin-top: 0;
    margin-bottom: 1rem;
	color: #ffffff;
	font-family: 'Open Sans', sans-serif !important;
	font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
}