html{
	overflow-y: scroll;
}
a:hover{
	cursor:pointer;
	text-decoration:none;
}
a { 
	color: inherit; 
}

/************************************************
*												*
*					SISD TABLE					*
*												*
************************************************/

.sisdTable{
	color: black;
}
.sisdTable tr:nth-child(even) td{
	background-color: white;
}
.sisdTable tr:nth-child(odd) td{
	background-color:#e2f5fd;
}
.table-hover tbody tr:hover td{
	background-color: #c7dbe8;
}  

/************************************************
*												*
*				COMMON TOOLS					*
*												*
************************************************/

.form-control{
	color: #0b8dc0;
	border: 1px solid #13a9e4;
}
.input-group-text{
	background: #418caa;
	border-color: #13a9e4; 
	color:white;
}
.profile-width{
	width: 90px !important;
}

.pointer{
	cursor: pointer;
}

.footer-break{
	margin-bottom: 100px;
}

*.unselectable {
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
 }

.scrollable-content{
	overflow: auto;
}

.text-light-success{
	color:#9ACD00;
}

.text-golden{
	color: rgb(199, 162, 0);
}

.text-sisd{
	color:#00aeef;
}

.text-center{
	text-align: center;
}
/************************************************
*												*
*				UPPER NAVBAR					*
*												*
************************************************/

.district-logo{
	width: 43px;
	height: 43px;
	margin-top: 3px;
	margin-right: 10px;
}

.navbar{
	justify-content: left;
}

.sisd-navbar-color{
	background-image: none;
	background-color: #007bff !important;
	color: #fff !important;
	margin-bottom: 0px;
	padding-bottom: 8px;
	padding-top: 2px;
}

.sisd-navbar-color .navbar-text, 
.sisd-navbar-color .sisd-navbar-text,
.sisd-navbar-color .sisd-navbar-text > a {
	color: #fff !important;
}

.sisd-navbar-color .navbar-nav > li > a {
    color: #fff;
}


.sisd-navbar-color .navbar-nav > .active > a,
.sisd-navbar-color .navbar-nav > .active  > a:hover,
.sisd-navbar-color .navbar-nav > .active > a:focus {
	background-image: none;
    background-color: #37383A;
    color: #fff;
}

/************************************************
*												*
*					FOOTER						*
*												*
************************************************/

.footer-style{
	height: 20px;
	background-image: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(8,29,42,1) 50%, rgba(0,0,0,1) 100%);
}

/************************************************
*												*
*				DROPDOWN MENU					*
*												*
************************************************/

.dropdown-menu{
	margin-top:4px;
	border-top-color: #fff;
	border-bottom-color: #ddd;
	border-left-color: #ddd;
	border-right-color: #ddd;
}

a.dropdown-item:hover,
a.dropdown-item:hover{
	background-image: none;
	border-color: white;
	background-color: rgb(0, 174, 239);
	color: #fff !important;
	text-shadow: 0 0 8px #FFFFFF;
}

.dropdown-item{
	background: white;
	color: rgb(72, 177, 226);
}


/************************************************
*												*
*					SISD TABLE					*
*												*
************************************************/

.sisdTable{
	color: black;
}
.sisdTable > thead > tr > th{
	padding: 8px;
}
.sisdTable > tbody > tr > td{
	padding: 8px;
}
.sisdTable tr:nth-child(even) td{
	background-color: white;
}
.sisdTable tr:nth-child(odd) td{
	background-color:#deeffd;
}
.table-hover tbody tr:hover td{
	background-color: #c5d9e9;
}  

/************************************************
*												*
*					SISD CARD					*
*												*
************************************************/

.card-header{
	background-color: rgb(231, 240, 250);
	border-color: #13a9e4;
}

.card{
	border-color: #13a9e4;
}


/************************************************

				Better Radio Button
	https://codepen.io/andreasstorm/pen/jxjKGj

*************************************************/

.radio {
	position: relative;
	cursor: pointer;
	line-height: 20px;
	font-size: 14px;
	margin: 5px;
}
.radio .label {
position: relative;
display: block;
float: left;
margin-right: 10px;
width: 20px;
height: 20px;
border: 2px solid #c8ccd4;
border-radius: 100%;
-webkit-tap-highlight-color: transparent;
}
.radio .label:after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 10px;
height: 10px;
border-radius: 100%;
background: #225cff;
transform: scale(0);
transition: all 0.2s ease;
opacity: 0.08;
pointer-events: none;
}
.hidden {
display: none;
}
.radio:hover .label:after {
transform: scale(3.6);
}
input[type="radio"]:checked + .label {
border-color: #225cff;
}
input[type="radio"]:checked + .label:after {
transform: scale(1);
transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
opacity: 1;
}

/************************************************

						PRETTY CHECKBOX
	https://code-boxx.com/simple-pure-css-custom-checkbox/

*************************************************/ 

.pretty-checkbox input[type=checkbox] {
	display: none;
}
.pretty-checkbox {
	font-size: 16px;
	line-height: 20px;
}
.pretty-checkbox label {
	cursor: pointer;
}
.pretty-checkbox label:before {
	display: inline-block;
	width: 25px;
	margin-right: 5px;
	content: "\00a0";
	border: solid rgb(212, 212, 212) 2px;
	border-radius: 30%;
	text-align: center;
}
.pretty-checkbox label:hover:before{
	transform: scale(1.1);
	opacity: 0.5;
	border-color: #225cff;
}
.pretty-checkbox input:checked ~ label:before {
	content: "\2713";
	font-size: 18px;
	font-weight: 900;
	align-content: center;
	background: #ffffff;
	border-color: #225cff;
	transform: scale(1);
	transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
	color: #225cff;
}
.checkbox-error label:before{
	opacity: 0.5;
	border-color: rgb(235, 34, 34);
}

/************************************************
*												
*				VALIDATION COLORS					
*												
************************************************/

.is-valid{
	color: #0b8dc0 !important;
	border-color: #13a9e4 !important;
}
.is-valid:focus{
	box-shadow: 0 0 2px 2px rgb(122, 196, 226) !important;
}
.dd-invalid{
	border-color: rgb(235, 34, 34);
	color: #dc3545;
}
.dd-invalid:focus{
	border-color: #dc3545;
	box-shadow: 0 0 2px 3px rgb(233, 176, 176);
}
.dd-valid{
	color: #0b8dc0;
	border-color: #13a9e4;
}
.dd-valid:focus{
	box-shadow: 0 0 2px 2px rgb(122, 196, 226);
}

.fa-svg-icon {
	display: inline-block;
	vertical-align: middle;
	min-width: 1em;
	min-height: 1em;
	height: 100%;
	position: relative;
	top: -1px;
	}
	
	.fa-svg-icon svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}
	
	.fa-svg-icon svg g,
	.fa-svg-icon svg path {
	fill: currentColor;
	}