.loader_wrapper {
    width: 64px;
    margin: 20px auto;
    position: relative;
}

.loader_wrapper .loader {
    width: 64px;
    height: 64px;
    position: relative;
}

.loader_wrapper .loader img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.loader_wrapper .loader .loader_icon {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/loader-icon.png");
	background-size:64px 64px;
}

.loader_wrapper .loader:before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background-color: #ff9c00;
    opacity: .75;
    border-radius: 50%;
    -webkit-animation: scaleout 1.5s infinite ease-in-out;
    animation: scaleout 1.5s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(1)
    }
    100% {
        -webkit-transform: scale(1.5);
        opacity: 0
    }
}

@keyframes scaleout {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}