.saveBtn.inflight-false{
    .circle-loader{
        display: none;
    }

    .load-complete{
        /*animation:stay 3s forwards ease-out;*/

    }
}
.saveBtn.inflight-true{
    .circle-loader{
        display: inline-block;
    }
}
[readonly] .circle-loader{
    display: none;
}
.circle-loader {
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation: spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    margin-left: 0.4em;
}
.btn-success {
    background: #08c42e;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.load-complete {
    -webkit-animation: none;
    animation:stay 3s forwards ease-out;
    border-color: #5cb85c;
    transition: border 500ms ease-out;
}

.circle-loader .checkmark {
    display: none;
}
.circle-loader.load-complete .checkmark{
    display: inline-block;
}

.checkmark.draw:after {
    animation-duration: 1000ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    animation: forwards;
    transform: scaleX(-1) rotate(135deg);
}
.checkmark:after {
    opacity: 1;
    height: 2em;
    width: 1em;
    transform-origin: left top;
    border-right: 2px solid #5cb85c;
    border-top: 2px solid #5cb85c;
    content: "";
    left: 0.2em;
    top: 0.6em;
    position: absolute;
}

@keyframes stay {
    0%{
        opacity:1;
    }
    75%{
        opacity: 0.6;
    }
    100%{
        opacity: 0;
    }

}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1;
    }
    20% {
        height: 0;
        width: 1.75em;
        opacity: 1;
    }
    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1;
    }
}