.has-success .form-control {
    border-color: #007dcc;
}

.navbar-default {
    z-index: 99;
}

.loader-defaul {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background: url(../images/iso-tw.svg) no-repeat;
    background-position: 50% 50%;
    background-size: 24px;
}

.loader-defaul .circle {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    transform: rotate(225deg);
    animation-iteration-count: infinite;
    animation-name: orbit;
    animation-duration: 4s;
}

.loader-defaul .circle:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #007dcc;
}

.loader-defaul .circle:nth-child(2) {
    animation-delay: 240ms;
}

.loader-defaul .circle:nth-child(3) {
    animation-delay: 480ms;
}

.loader-defaul .circle:nth-child(4) {
    animation-delay: 720ms;
}
.loader-defaul .circle:nth-child(5) {
    animation-delay: 960ms;
}

@keyframes orbit{
	0%{transform:rotate(225deg);opacity:1;animation-timing-function:ease-out
	}7%{transform:rotate(345deg);animation-timing-function:linear}30%{transform:rotate(455deg);animation-timing-function:ease-in-out}39%{transform:rotate(690deg);animation-timing-function:linear}70%{transform:rotate(815deg);opacity:1;animation-timing-function:ease-out}75%{transform:rotate(945deg);animation-timing-function:ease-out}76%{transform:rotate(945deg);opacity:0}100%{transform:rotate(945deg);opacity:0}}
