.popup-wrapper {
    position: fixed;
    bottom:20px;
    right:20px;
    z-index: 999;
}
.popup-wrapper .popup-progress {
    padding: 0;
    width: auto;
    min-width: 600px;
}
.popup-progress .ui-widget-header {
    background: #16A085;
    color:#fff;
    padding:7px 50px;
    text-align: center;
}
.popup-progress.popup-error .ui-widget-header {
    background: #e74c3c;
}
.popup-progress .ui-widget-header .fa {
    font-size:16px;
    color:#fff;
    position: relative;
}
.popup-progress .popup-icon {
    position: absolute;
    left:10px;
}
.popup-progress .ui-widget-header .fa-close {
    font-size:24px;
    top: -6px;
    right: -1px;
}
.popup-progress .popup-icon-btn {
    position: absolute;
    right:10px;
    cursor: pointer;
    z-index: 100;

}
.popup-progress .ui-title {

    font-size: 17px;
}
.popup-progress .ui-widget-content {
    padding:10px 7px;
}
.popup-progress .ui-widget-header .fa:hover {
    opacity:0.9;
}

.popup-progress .ui-widget-content.popup-mininize{
    display: none;
}
.popup-progress .ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
    border:1px solid #aaa;
    position: relative;
    padding:1px;
}
.popup-progress .ui-progressbar .ui-progressbar-value {
    margin: 0px;
    height: 100%;
    background-color: #16A085;
}
.popup-progress .barValue {
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    top:6px;
    color:#fff;
    font-weight:bold;
    text-shadow: 0 0 2px rgba(0,0,0,1);
}

.popup-progress .html-body,
.popup-progress p {
    text-align: center;
}
.popup-progress .interactive-fields-list .btn-block{
    padding-top: 10px;
    text-align: center;
}
.popup-progress .interactive-fields-list .btn-block .button{
    float: none;
}
.popup-progress .interactive-fields-list .interactive-field li{
    text-align: center;
}

.popup-progress #sync-bank-accounts-table {
    cursor: inherit;
    background: transparent!important;
    width:100%;
}
.popup-progress input[type=radio] {
    cursor:pointer;
    height:15px;
}
.popup-progress .bank-account-number {
    max-width:250px;
    min-width:200px;
    word-wrap:break-word;
}
.popup-progress .btnWrap {
    text-align: center;
}
.popup-progress .btnWrap .button {
    float:none;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}
.sync-errors{
    text-align: center;
    color: red;
    margin-bottom: 10px;
}

input.sync-bank{
    transform: scale(1.5);
    margin-left: 5px;
}
.popup-progress .redBtn{
    background: #dc542c;
}

.popup-progress .ui-widget-cancel-block {
    text-align: right;
    margin-top: 10px;
}
.popup-progress .popup-cancel-link{
    color: #dc542c;
    cursor: pointer;
}