﻿
.btn-success {
    color: #000 !important;
    background-color: rgb(184, 228, 250) !important;
    border-color: rgb(151, 176, 189) !important;
}

hr {
  border-color: #d1d1d1;
  width: 70%;
}
f4 {
   
    font-size: 18px;
}
.vertical-text {
	transform: rotate(90deg);
	transform-origin: left top 0;
}
/* Hiding the checkbox, but allowing it to be focused */
.badgebox
{
    opacity: 0;
    background-color:antiquewhite;
   
}

.badgebox + .badge
{
    /* Move the check mark away when unchecked */
    text-indent: -999999px;
    /* Makes the badge's width stay the same checked and unchecked */
	width: 27px;
    
}

.badgebox:focus + .badge
{
    /* Set something to make the badge looks focused */
    /* This really depends on the application, in my case it was: */
    
    /* Adding a light border */
    box-shadow: inset 0 0 5px;
    /* Taking the difference out of the padding */
}

.badgebox:checked + .badge
{
    /* Move the check mark back when checked */
	text-indent: 0;
}

.btn-default .badge {
    color: #fff;
    background-color: #333;
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff;
}
.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}
.btn-danger .badge {
    color: #333;
    background-color: #fff;
}
.btn-info .badge {
    color: #5bc0de;
    background-color: #fff;
}
.btn-primary .badge {
    color: #428bca;
    background-color: #fff;
}
/*AAAAAAAAAAAAAAAIIIIIIIIIIIIIIIIIIIIIIIINNNNNNNNNNNNNNNNNNNNNNNNNNNNNN*/

 .notice {
    padding: 15px;
    background-color: #fafafa;
    border-right: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
       -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
            box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}
.notice-sm {
    padding: 10px;
    font-size: 80%;
}
.notice-lg {
    padding: 35px;
    font-size: large;
}
.notice-success {
    border-color: #80D651;
}
.notice-success>strong {
    color: #80D651;
}
.notice-info {
    border-color: #45ABCD;
}
.notice-info>strong {
    color: #45ABCD;
}
.notice-warning {
    border-color: #FEAF20;
}
.notice-warning>strong {
    color: #FEAF20;
}
.notice-danger {
    border-color: #d73814;
}
.notice-danger>strong {
    color: #d73814;
}       
