body {
    background: #f2fafd;
}

header .navbar {
    height: 90px;
}

.navbar-default {
    height: 90px;
}

header .navbar .navbar-brand img {
    height: 50px;
}

header .navbar .navbar-nav>li>a {
    padding-top: 25px;
    padding-bottom: 25px;
}

header .navbar .navbar-brand {
    height: 90px;
    padding: 10px 15px;
}
.loader-bg {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    height: 135%;
    width: 100%;
    opacity: .7;
    z-index: 10000;
    display: block;
    cursor: pointer;
    display: none;
}

.ring {
    font-weight: bold;
    z-index: 10000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid #3c3c3c;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    display: none;
}

.ring:before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 104%;
    height: 104%;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    border-radius: 50%;
    animation: animateCircle 2s linear infinite;
}

.ring span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

.ring span:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffbd33;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px #ffbd33;
}

	
	.form-control {
    padding: 0px !important;
    margin-bottom: 0px !important;
    border: none !important;
    border-bottom: 1px solid #e3e3e3 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

form .form-group {
    margin: 25px 0px 0px;
}

input.invalid {
    background-color: #ffdddd;
}

	
	button {
    color: #eb7f00;
    border: 1px solid #eb7f00;
    background: #fff;
    border-radius: 20px;
    padding: 8px 30px;
    font-weight: bold;
}

button:hover {
    color: #fff;
    background: #eb7f00;
}

button:hover {
    opacity: 0.8;
}

@keyframes animateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}
