.help-block {
    color: #cc0a0a;
}

.error {
    color: #8c1d1d;
    font-weight: 800;
}

.heading2 h2,
.panel-heading2 h2 {
    line-height: 1.1;
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.login h2:after {
    background: #FF7F00 !important;
    margin-top: 0rem;
}

#error {
    COLOR: #bf0b0b;
    background: #f7cece;
}

a {
    text-decoration: none;
}

.main-wrap {
    background: #000;
    text-align: center;
}

.main-wrap h1 {
    color: #fff;
    margin-top: 50px;
    margin-bottom: 100px;
}

.col:first-of-type {
    margin-left: 0;
}


/* ALL LOADERS */

.loader {
    width: 100px;
    height: 70px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}


/* LOADER 6 */

#loader-6 {
    top: 20px;
    left: -2.5px;
}

#loader-6 span {
    display: inline-block;
    width: 5px;
    height: 20px;
    background-color: #07a82a;
}

#loader-6 span:nth-child(1) {
    animation: grow 1s ease-in-out infinite;
}

#loader-6 span:nth-child(2) {
    animation: grow 1s ease-in-out 0.15s infinite;
}

#loader-6 span:nth-child(3) {
    animation: grow 1s ease-in-out 0.30s infinite;
}

#loader-6 span:nth-child(4) {
    animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow {
    0%,
    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }
    50% {
        -webkit-transform: scaleY(1.8);
        -ms-transform: scaleY(1.8);
        -o-transform: scaleY(1.8);
        transform: scaleY(1.8);
    }
}