﻿body {
 
}

/*******reset-headers******/
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

/*******font-sizes******/

.font-size-xs {
    font-size: .6rem;
}

.font-size-sm {
    font-size: .8rem;
}

.font-size-normal {
    font-size: 1rem;
}

.font-size-md {
    font-size: 1.5rem;
}

.font-size-lg {
    font-size: 2rem;
}

/*******font-weights******/

.font-3 {
    font-weight: 300;
}

.font-4 {
    font-weight: 400;
}

.font-5 {
    font-weight: 500;
}

.font-6 {
    font-weight: 600;
}

.font-7 {
    font-weight: 700;
}

/*******override-background-colors******/

.bg-primary {
    background-color: #2E5F97;
}

.bg-success {
    background-color: #30a443;
}

.bg-danger {
    background-color: #d9534f;
}

.bg-warning {
    background-color: #FEC70A;
}

/*******new-background-colors******/

.bg-orange {
    background-color: #FF6600;
}

.bg-light-on-light {
    background-color: #f7f7f9;
}

.bg-dark-1 {
    background-color: #262f36;
}

.bg-dark-2 {
    background-color: #777;
}

.bg-dark-3 {
    background-color: #d6d6d6;
}

/*******override-text-colors******/

.text-success {
    color: #30a443;
}

.text-danger {
    color: #d9534f;
}

.text-warning {
    color: #FEC70A;
}

/*******new-text-colors******/

.text-help {
    color: #30a443;
}

.text-orange {
    color: #FF6600;
}

/*******override-button-colors*******/

.btn-primary {
    background-color: #004f96;
    border-color: #004f96;
    color: #fff;
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .show > .btn-primary.dropdown-toggle {
        background-color: #003d74;
    }


.btn-success {
    background-color: #5cb85c;
    border-color: #5cb85c;
    color: #fff;
}

    .btn-success:hover, .btn-success:active, .btn-success:focus, .show > .btn-success.dropdown-toggle {
        background-color: #449d44;
    }

.btn-danger {
    background-color: #d9534f;
    border-color: #d9534f;
    color: #fff;
}

    .btn-danger:hover, .btn-danger:active, .btn-danger:focus, .show > .btn-danger.dropdown-toggle {
        background-color: #c9302c;
    }

/*******new-button-colors*******/

.btn-white {
    background-color: #fff;
    border-color: #ced4da;
    color: #6c757d;
}

    .btn-white:hover {
        background-color: #e6e6e6;
        border-color: #adadad;
    }

.btn-light {
    background-color: #f5f8fa;
    border-color: #ced4da;
    color: #6c757d;
}

    .btn-light:hover {
        background-color: #f7f7f9;
        border-color: #adadad;
    }


/*******override-badge-colors******/

.badge-primary {
    background-color: #2E5F97;
}

.badge-success {
    background-color: #30a443;
}

.badge-danger {
    background-color: #d9534f;
}

.badge-warning {
    background-color: #FEC70A;
}

/*******new-badge-colors******/

.badge-orange {
    background-color: #FF6600;
    color: #fff;
}

/*******border******/

.border {
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}




/*******line-height*******/

.line-height-1 {
    line-height: 1.1;
}

.line-height-2 {
    line-height: 1.2;
}

.line-height-3 {
    line-height: 1.3;
}

.line-height-4 {
    line-height: 1.4;
}

/*******pointer*******/ 
.cursor-pointer {
    cursor: pointer;
}


/*******remove-decoration*******/

.project-menu-item:hover, project-menu-item:focus {
    background-color: #f2f2f2;
    text-decoration: none;
}

.remove-decoration, remove-decoration:hover, remove-decoration:focus {
    text-decoration: none;
}





