﻿/* Beginning of CSS for spinning the icon */
.gly-spin {
	-webkit-animation: spin 2s infinite linear;
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
	0% {
	-moz-transform: rotate(0deg);
	}
	100% {
	-moz-transform: rotate(359deg);
	}
}
@-webkit-keyframes spin {
	0% {
	-webkit-transform: rotate(0deg);
	}
	100% {
	-webkit-transform: rotate(359deg);
	}
}
@-o-keyframes spin {
	0% {
	-o-transform: rotate(0deg);
	}
	100% {
	-o-transform: rotate(359deg);
	}
}
@keyframes spin {
	0% {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	}
	100% {
	-webkit-transform: rotate(359deg);
	transform: rotate(359deg);
	}
}
/* End of CSS for spinning the icon */

.highlight {
	background-color: yellow;
}

.ReportViewer {
	border: 1px solid grey;

}

.ReportViewerHeader {
    background-color: #ECE9D8;
    /*background-color: rgba(0, 140, 186, 0.51);*/
    width: 100%;
    display: inline-block;
    padding: 0em;
}

.ReportViewerError { 
	color: #ff0000; 
	font-weight: bold; 
	font-size: 120%; 
	margin: 1em;
}

.ReportViewerInformation {
	color: #000; 
	font-weight: bold; 
	font-size: 120%; 
	margin: 1em;
}

.ParametersContainer, .ReportViewerToolbar {
	border-bottom: 1px solid #ccc;
}

.Parameters {
	border-right: 1px solid #ccc;
	padding: .5em;
}

.Parameter .col-sm-4 {
	text-align: right;
	padding-top: .3em;
}

.Parameter .col-sm-8 {
    
    padding-top: .3em;
}

 .Parameter select {
	width: 100% !important;
}

.Parameter input[type="radio"] {
    vertical-align: bottom;
    padding: 7px;
}

.PagerNumbers .form-control {
	width: 4em;
}

.SearchText .form-control {
	width: 6em;
}

.SearchText {
	margin: auto 2em;
}

.SearchText a {
	float: none !important;
}

.PagerNumbers {
	padding: 0em .5em;
	display: inline-block;
}

.ReportViewerPager {
	padding: .5em 0em;
}

.ReportViewerViewReport {
	padding-top: .5em;
}

span a[disabled=disabled] {
	color: grey;
}

.loadingContainer i {
    margin-right: .5em;
}