/*
* modifications to UIkit
*/

/* button */

.uk-button-primary:disabled {
	opacity: 0.5;
	background-color: #337AB7;
	border-color: #337AB7;
	color: #fff;
}

.uk-button-secondary:disabled {
	opacity: 0.5;
	background-color: #084C61;
	border-color: #084C61;
	color: #fff;
}

.uk-button-danger:disabled {
	opacity: 0.5;
	background-color: #D9534F;
	border-color: #D9534F;
	color: #fff;
}


/* form */

.uk-fieldset {
	background: #F5F5F7;
	padding: 30px 15px;
	margin: 10px 0;
	border-width: 0;
}
.uk-legend {
	font-size: 1.3rem;
}
.uk-radio,
.uk-checkbox {
	margin-right:4px;
}

.uk-select,
.uk-input,
.uk-textarea {
	border-radius: 3px;
}
.uk-input:disabled,
.uk-select:disabled,
.uk-textarea:disabled {
	background-color: #F5F5F7;
	color: #333;
}


.uk-form-label.required:after {
	margin-left: 8px;
	content:'*';
	color:red;
}


/* notification */

.uk-notification {
	width: 550px;
}
.uk-notification-bottom-center, 
.uk-notification-top-center {
	margin-left: -275px;
}
.uk-notification-message {
	border-left: 8px solid #1E87F0;
	background: #fff;
	color: #1E87F0;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.uk-notification-message-success {
	border-left: 8px solid #37b737;
	color: #37b737;
}
.uk-notification-message-warning {
	border-left: 8px solid #eeae00;
	color: #eeae00;
}
.uk-notification-message-danger {
	border-left: 8px solid #b73737;
	color: #b73737;
}


/* fonts */

.uk-button {
	text-transform: none;
	font-size: 1rem;
}
.uk-tab > * > a {
	border-bottom-width: 3px;
	font-size:0.95rem;
	letter-spacing:0.01em;
}


/*
* button container
*/

.evButtonRow {
	text-align:left;
	margin-top:25px;
	margin-bottom:25px;
}
.evButtonRow .uk-button {
	margin-right: 10px;
	margin-bottom: 10px;
}

.uk-button.uk-button-link {
	color: #0F6ECD;
}
.uk-button.uk-button-link:hover {
	color: #3090F0;
}

/*
* help symbol
*/

.evHelpsymbol {
	cursor:help;
	font-size:110%;
	margin-left:10px;
	color:#406af7;
}
.evHelpsymbol:hover {
	color:#265A88;
}
.evHelptext { 
	font-weight:normal; 
}


/*
* TBD TEST improved style
*/

.uk-select,
.uk-input,
.uk-textarea {
	border-width: 2px;
	border-radius: 3px;
	border-color: #e5e5e5;
}

input.uk-radio, 
input.uk-checkbox {
	border-width: 2px;
	height: 18px;
	width: 18px;
}

.uk-fieldset .uk-input,
.uk-fieldset .uk-textarea {
	border-color: #F5F5F7;
}

.uk-fieldset .uk-input:focus,
.uk-fieldset .uk-textarea:focus {
	border-color: #337AB7;
}

.uk-fieldset .uk-input:disabled,
.uk-fieldset .uk-textarea:disabled {
	border-width: 1px;
	border-color: #e5e5e5;
}


/*
* tables 
*/

table.evTable td {
	border:2px solid #fff;
}
table.evTable tr th {
	line-height:200%;
	background:#e1e1e1;
}
table.evTable tr {
	background:#F5F6F7;
	color:#000;
}
table.evTable tr:hover {
}
table.evTable tr td {
	vertical-align:top;
	padding:3px 8px;
}
table.evTable tr.even {
	background-color:#fff;
}
table.evTable tr.odd {
	background-color:#e1e1e1;
}


/*
* report tables
*/

/* .evReportContainer {
	width:100%;
	height:100%;
	overflow-x:auto;
	overflow-y:hide;
	margin-bottom:10px;
}
.evReportContainer table {
	border:solid 1px #F5F5F7;
	border-radius:4px;
} */ /* Moved to @@/lib/QueryTable.vue */
.evReport {
	line-height:120%;
	border-spacing:0;
}
.evReport tr th {
	line-height:150%;
	padding:8px 8px;
	background-color:#F5F5F7;
	white-space:nowrap;
}
.evReport tr td {
	padding:5px 8px;
	border-bottom-color:#F5F5F7;
	border-bottom-style:solid;
	border-bottom-width:1px;
}
.evReport tr th, .evReport tr td {
	overflow:hidden;
}

/*
* table colors
*/

.evReport tr.even {
	background-color:#FFFFFF;
	}
.evReport tr.odd {
	background-color:#EEEEEE;
	}
.evReport tr:hover {
	background-color:#fafafa;
	}

.evReport tr.dimmed {
	background-color:#fff;
	color:#666;
}
.evReport tr.dimmed.active,
.evReport tr.dimmed:hover {
	background-color:#FAFAFA;
	color:#888;
}

.evReport tr.white {
	background-color:#fff;
}
.evReport tr.white.active,
.evReport tr.white:hover {
	background-color:#FAFAFA;
}

.evReport tr.red {
	background-color:#F9BDB3;
}
.evReport tr.red.active,
.evReport tr.red:hover {
	background-color:#F7A294;
}

.evReport tr.yellow {
	background-color:#FFF6A3;
}
.evReport tr.yellow.active,
.evReport tr.yellow:hover {
	background-color:#fff381;
}

.evReport tr.green {
	background-color:#ccf7df;
}
.evReport tr.green.active,
.evReport tr.green:hover {
	background-color:#aff2cd;
}

.evReport tr.selected {
	background-color:#46A2D2;
	color:#fff;
}
.evReport tr.selected td
{
	color:#fff;
}
.evReport tr.selected a.icon {
	color:#fff;
}
.evReport tr.selected.active,
.evReport tr.selected:hover {
	background-color:#3093C7;
}
