﻿
/* Tool Tips*/
.tooltip-inner {
    background-color: #3d71ab;
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: #3d71ab !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: #3d71ab !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #3d71ab !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #3d71ab !important;
}


/* Buttons */
.btn-primary, .btn-success, .btn-danger, .btn-secondary {
    border-radius: .25rem;
}
.btn-danger {
    color: #fff !important;
    background-color: #AB3D71;
    border-color: #AB3D71;
}
.btn-primary {
    color: #fff !important;
    background-color: #3d71ab;
    border-color: #3d71ab;
}
    .btn-primary:hover {
        color: #fff;
        background-color: #305a88;
        border-color: #305a88;
    }
    .btn-primary.disabled, .btn-primary:disabled {
        background-color: #305a88;
        border-color: #305a88;
    }
    .btn-primary:active {
        background-color: #305a88;
        border-color: #305a88;
    }
    .btn-primary:not([disabled]):not(.disabled).active, .btn-primary:not([disabled]):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #305a88;
        border-color: #305a88;
        box-shadow: 0 0 0 0.2rem #3d71ab;
    }





/* Badges */
.badge-danger {
    background-color: #AB3D71
}
.badge-primary {
    background-color: #3d71ab;
}
.badge-success {
    color: #fff;
    /*background-color: #42DCA3;*/
}


/* Label */
.text-danger {
    color: #AB3D71 !important;
}




