/*
 * Anpassungen von HH
 * dunkelblau   #004363
 * hellblau     #00a9e0 (primary, input-border-color, input-focus-border-color)
 * dunkelgrün   #25983f
 * hellgrün     #2cb34a
 * grau         #EDEDED
 */

/* STANDARD - FARBEN */
.btn-primary {
    background-color: #00a9e0;
    border-color: #00a9e0;
}

.btn-primary:hover {
    background-color: #008cba;
    border-color: #0083ad;
}

.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 224, 0.5);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    background-color: #0083ad;
    border-color: #0079a0;
}

/* HEADER */

.top-bar {
    padding: 20px 0 10px;
    height: 98px;
}

.get-started {
    color: #fff;
    width: 100%;
    background-color: #ff6600;
    transition: .3s all;
    height: 40px;
}

.get-started:hover {
    color: #fff;
    background-color: #cc5200;
}

.top-bar {
    border-bottom: 1px solid #EDEDED;
}

.btn {
    border-radius: 0;
}

.btn-secondary {
    background-color: #EDEDED;
    color: black;
}

/* STEPS */
.steps .step .bubble {
    color: #63666A;
    border: #63666A 2px solid;
    background-color: white;
}

.steps .step.complete .bubble,
.steps .step.complete .text,
.steps .step.active .text {
    color: #00a9e0;
}

.steps .step.complete .bubble {
    border: #63666A 2px solid;
    background-color: #BFBFBF;
}

.steps .step.active .bubble {
    color: white;
    border: #004363 2px solid;
    background-color: #00a9e0;
}

/* Form */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 224, 0.25);
}

/* LINKS */
a,
button.btn-link {
    color: #02aee6;
}


a:hover,
button.btn-link:hover {
    color: #0086b2;
}

/* FOOTER */

.footer {
    padding: 30px 0;
    background-color: #004363;
}

.footer ul.footer-links {
    list-style-type: none;
    line-height: 3em;
    border-left: 1px solid rgba(255, 255, 255, .4);
}

.footer ul.footer-links a {
    color: #fff;
}

.footer .footer-logo {
    width: 60%;
    margin-top: 25px;
}