body {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	background: white;
}

img {
	max-width: 100%;
}

h1 {
	color: #3484D2;
}

#ajax-spinner {
	margin: 15px 0 0 15px;
	padding: 13px;
	background: white url('../images/spinner.gif') no-repeat 50% 50%;
	font-size: 0;
	z-index: 123456;
	display: none;
}

div.flash {
	color: black;
	background: #FFF9D7;
	border: 1px solid #E2C822;
	padding: 1em;
	margin: 0em 0em 1em 0em;
}

a[href^="#error:"] {
	background: red;
	color: white;
}

form th, form td {
	vertical-align: top;
	font-weight: normal;
}

form th {
	text-align: right;
}

form .required label {
	font-weight: bold;
}

form .error {
	color: #D00;
	font-weight: bold;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7;
}
.pagination > li > a {
	background: #fafafa;
	background-color: rgb(250, 250, 250);
	color: #666;
}
.pagination > li > a, .pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	border-top-color: rgb(221, 221, 221);
	border-right-color: rgb(221, 221, 221);
	border-bottom-color: rgb(221, 221, 221);
	border-left-color: rgb(221, 221, 221);
}

a.confirmLink {
	margin-left: 4px !important;
}

.datagrid .input-group-text {

}

.ww {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 15px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ww input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

label.ww {
	font-weight: unset !important;
}

.checkmark-r {
	/*position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #eee;
    border-radius: 50%;*/

	position: absolute;
	top: 0;
	left: 0;
	height: 23px;
	width: 23px;
	background-color: #eee;
	border: 1px solid black;
}

.ww:hover input ~ .checkmark-r {
	background-color: #ccc;
}

.ww input:checked ~ .checkmark-r {
	background-color: #99cc33;
}

.checkmark-r:after {
	content: "";
	position: absolute;
	display: none;
}

.ww input:checked ~ .checkmark-r:after {
	display: block;
}

.ww .checkmark-r:after {
	/*top: 9px;
    left: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000000;
    */
	left: 8px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid #000000;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* animate login */
.bg {
	-webkit-animation: slide 3s ease-in-out infinite alternate;
	animation: slide 20s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #705854 50%, #65470f 60%);
	bottom: 0;
	left: -50%;
	opacity: 0.5;
	position: fixed;
	right: -50%;
	top: 0;
	z-index: -1;
}

.bg2 {
	animation-direction: alternate-reverse;
	-webkit-animation-duration: 20s;
	animation-duration: 20s;
}

.bg3 {
	-webkit-animation-duration: 20s;
	animation-duration: 20s;
}

/*
.content {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 0.25em;
	-webkit-box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.25);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	left: 50%;
	padding: 10vmin;
	position: fixed;
	text-align: center;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
*/

@-webkit-keyframes slide {
	0% {
		-webkit-transform: translateX(-25%);
		transform: translateX(-25%);
	}
	100% {
		-webkit-transform: translateX(25%);
		transform: translateX(25%);
	}
}

@keyframes slide {
	0% {
		-webkit-transform: translateX(-25%);
		transform: translateX(-25%);
	}
	100% {
		-webkit-transform: translateX(25%);
		transform: translateX(25%);
	}
}