#msg_deploy_btn,
#msg_deploy_alertprod{
    position: fixed;
    bottom: 0px;
    right: 20px;
    z-index: 9998;
    background-color: #AD3333;
    color:#fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    padding: 2px;
    border-radius: 5px 5px 0 0;
    box-shadow: -1px -1px 4px rgba(0,0,0,.2), inset -2px -2px 3px rgba(0,0,0,.2);
    cursor: default;
}
#msg_deploy_btn{
    cursor: pointer;
}
#msg_deploy_btn:hover{
    background-color: red;
}
#msg_deploy_btn span,
#msg_deploy_alertprod span{
    display: block;
    padding: 10px 22px;
    border-radius: 4px 4px 0 0;
    box-shadow: inset 3px 3px 4px rgba(255,255,255,.25);
    font-family: Arial, Helvetica, sans-serif;
}


/* loading spinner */
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
body .loadingSpinner{
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background-color: rgba(255,255,255,.8);
    z-index:9;
}
body > .loadingSpinner{
    position: fixed;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index:9999;
}
.loadingSpinner:before {
    display: block;
    content: ' ';
    background-image: url('img/preloader.svg');
    background-size: 100px 100px;
    height: 100px;
    width: 100px;
    position: absolute;
    top:50%;
    left:50%;
    margin-left: -50px;
    margin-right: -50px;
    -moz-animation: spin 1s infinite linear;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
}
#circles > path{
    fill:green !important;
}