
.overlay-spinner {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255,255,255,0.7);
    z-index: 99999999999;
}
.overlay-spinner .spinner-content {
    margin: auto;
    max-height: 100%;
}
.loader {
    width:50px;
    height:50px;
    display:inline-block;
    padding:0px;
    text-align:left;
 }
 .loader span {
    position:absolute;
    display:inline-block;
    width:50px;
    height:50px;
    border-radius:100%;
    background:#ce0209;
    -webkit-animation:loader 1.5s linear infinite;
    animation:loader 1.5s linear infinite;
 }
 .loader span:last-child {
    animation-delay:-0.9s;
    -webkit-animation-delay:-0.9s;
 }
 @keyframes loader {
    0% {transform: scale(0, 0);opacity:0.8;}
    100% {transform: scale(1, 1);opacity:0;}
 }
 @-webkit-keyframes loader {
    0% {-webkit-transform: scale(0, 0);opacity:0.8;}
    100% {-webkit-transform: scale(1, 1);opacity:0;}
 }
 
 .jq-toast-wrap.top-right{
    height: 93px !important;
    display: table !important;
 }
 .jq-toast-wrap.top-right .jq-toast-single{
    display: table-cell;
    text-align: center !important;;
    vertical-align: middle !important;
 }
 .jq-toast-wrap.top-right .jq-toast-single  .close-jq-toast-single{
    font-size: 23px;
 }
 .jq-toast-wrap.top-right .jq-toast-single  .close-jq-toast-single{
    font-size: 23px;
 }

 .jq-toast-wrap.top-right h2{
    font-size: 14px;
    padding-bottom: 12px;
    text-transform: uppercase;
 }
 .jq-toast-wrap.top-right p,.jq-toast-wrap.top-right a{
    font-size: 12px;
 }