.mini-cart-overlay{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 1000;
    pointer-events: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    visibility: hidden;
}
.mini-cart-overlay.active{
        z-index: 1;
    opacity: .3;
    filter: alpha(opacity=30);
    pointer-events: auto;
    visibility: visible;
    height: 1000vh;
    z-index: 99;
    background: rgba(0,0,0,0.5);
}
#site-header{
    position: relative;
    z-index: 1001;
}
.ajax-loader-wapper {
    /*opacity: 0.6;
    position: relative;*/
}   
.ajax-loader-wapper:after{
    content: "";
    z-index: 2;
    position: absolute;
    border: 2px solid #ddd;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    top: 200px;
    left: 50%;
    margin-left: -20px;
    border-top-color: $theme-color;
    -webkit-animation: circle-loading .35s linear infinite;
    -o-animation: circle-loading .35s linear infinite;
    animation: circle-loading .35s linear infinite;
    border-top-color: $theme-color;
}
