body {
    font-size: 16px;
}
a:link, a:visited {
     color: inherit;
}

/*SET BUTTONS */
.btn-primary {
    background-color: #169bdc;
    color: #fff !important;
    border-color: #169bdc;
}

.btn-primary:hover {
    background-color: #177aac;
    border-color: #177aac;
}

.btn-default {
    background-color: #eee;
    color: #000 !important;
    border-color: #eee;
}

.btn-primary:hover {
    background-color: #ccc;
    border-color: #ccc;
}

.btn-success {
    background-color:green;
    color: #fff !important;
    border-color: green;
}

.btn-success:hover {
    background-color: rgb(22, 172, 22);
    border-color: rgb(22, 172, 22);
}

.btn-danger {
    background-color:red;
    color: #fff !important;
    border-color: red;
}

.btn-danger:hover {
    background-color: rgb(167, 12, 12);
    border-color: rgb(167, 12, 12);
}

.blue {
    color: #169bdc;
    line-height: 1.3;
}

h1 {
    font-size: 33px;
    line-height: 1.2;
    padding: 0;
    margin-bottom: 5px;
    color: #169bdc;
}

h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    margin-bottom: 30px;
}

.label {
    font-size: 16px;
}


/*BRANDING*/
#branding h1, #branding h1 a:link, #branding h1 a:visited {
    color: #fff;
}

.new-header {
    background: #169bdc;
    color: #fff;
    padding: 0;
}  

.new-header strong {
    font-size: 24px;
    font-weight: 400;
    display: block;
}

.new-header span {
    display: block;
    font-size: 18px;
}

@media screen and (max-width:767px) {
    .new-header span {
     font-size: 15px;
    }

    .logo {
        width: 100%;
        height: auto;
        max-width: auto;
    }
}

.main strong {
    display: inline-block;
}


/*BIG TESTING BUTTON*/
.test-button {
    max-width: 25%;
}

@media screen and (max-width:767px) {
    .test-button {
        max-width: 50%;
    }
}

/*FIXING LOGIN INPUT FORM*/
.controls input {
    width: 100%;
    border-color: #ccc;
}

/*BUTTON NON FULL WIDTH ON TABLET DESKTOP */
@media screen and (min-width:993px) {
    .w-100 {
        width: auto !important;
    }

    .w-100.non-auto-width {
        width: 300px !important;
    }
}