@CHARSET "UTF-8";
body{
	padding: 20px;
}
.wrapper {
    margin: 15px;
}
.error{
	color: #a94442;
	font-size: 16px;
	margin: 10px 0;
}
.success{
	font-size: 16px;
	margin: 10px 0;
}
.zar{
	display: inline-block;
	width: auto;
	padding: 15px 30px;
	color: #337ab7;
	font-size: 18px;	
}
button.kv-editable-submit{
	background-color: #5cb85c;
	border: 1px solid #5cb85c;
    border: none;
    color: #fff;
	border-radius: 3px;
	margin-left: 3px;
}
button.kv-editable-reset{
	background-color: #ED1B23;
	border: 1px solid #ED1B23;
    border: none;
    color: #fff;
	border-radius: 3px;
}

@media only screen and (max-width: 720px) {
	.table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
		white-space: normal;
	}
}
.btn_halfaprove, .btn_fullaprove{
	padding: 4px 15px;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    margin: 5px 5px;
}
.btn_halfaprove{
    background: #337ab7;
    border: 1px solid #337ab7;
}
.btn_fullaprove{
    background: #4cae4c;
    border: 1px solid #4cae4c;
}

.loader {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 5;
    background-color: lightgrey;
    margin: auto;
}

.loaderCircle {
	position: absolute;
	border: 5px solid #f3f3f3; /* Light grey */
	border-top: 5px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 2s linear infinite;
	z-index: 10;
    left: 50%;
    top: 50%;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.operationContainer {
    position: absolute;
    padding: 10px 0 50px 0;
}

.errorClass { border:  1px solid red; }