/*
Theme Name:askerweb_theme
Description: askerweb_theme
Author: askerweb
Version: 1
*/


.btn-loading {
    background-color: #ce6e00;
    color: #ce6e00;
}
.btn-loading .btn-loading__spinner{
    width: 35px;
    height: 35px;
    position: absolute;
}
.btn-loading .btn-loading__double-bounce1, .btn-loading .btn-loading__double-bounce2{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 1.3s ease-in-out infinite;
    animation: sk-bounce 1.3s ease-in-out infinite;
}
.btn-loading .btn-loading__double-bounce2{
    -webkit-animation-delay: -.65s;
    animation-delay: -.65s
}
@-webkit-keyframes sk-bounce {
    0%,to {
        -webkit-transform: scale(0)
    }
    50% {
        -webkit-transform: scale(1)
    }
}
@keyframes sk-bounce {
    0%,to {
        transform: scale(0);
        -webkit-transform: scale(0)
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}