#syncOverlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .95);
    z-index: 9999;
    cursor: default;
}

#syncOverlayContent{
    position: absolute;
    top: 25%;
    left: 50%;
    font-size: 38px;
    color: white;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

#syncLoader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--ks-primary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: syncSpin 2s linear infinite;
}

@keyframes syncSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

  
#syncLoaderDone {
    border: 16px solid green;
    border-top: 16px solid green; 
    color: green;
    font-weight: 500;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    vertical-align: middle;
    font-size: 78px;
}


#syncLog {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 50px;
    width: 80%;
    height: 55%;
    color: white;
    transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    border-top:  var(--ks-primary) 2px double;
    text-align: center;
    overflow: hidden;
}

#syncLog #syncLogWrapper{
    list-style: none;
    color: white;
    width: 100%; 
    height: 100%; 
    margin: 0 0;
    padding-top: 12px;
    padding-left: 32px;
    font-size: 16px;
    line-height: 16px;
    text-align: left;
    overflow: hidden;
}

#syncAbort{
    top: 12px; left: 12px;
    font-size: 18px;
    position: absolute;
    border:  var(--ks-primary) 2px double;
    background: transparent;
    color: #3b89e2;
}

#syncAbort:hover{
    top: 12px; left: 12px;
    font-size: 18px;
    position: absolute;
    border:  #3b89e2 2px double;
    background: #3b89e2;
    color: white;
}

