/* IMPORTS */
	@font-face {
		font-family: 'Lato';
		src: url('../font/Lato/Lato-Thin.ttf') format('truetype');
		font-weight: 100;
		font-style: normal;
	}
	@font-face {
		font-family: 'Lato';
		src: url('../font/Lato/Lato-Light.ttf') format('truetype');
		font-weight: 200;
		font-style: normal;
	}
	@font-face {
		font-family: 'Lato';
		src: url('../font/Lato/Lato-Regular.ttf') format('truetype');
		font-weight: 400;
		font-style: normal;
	}
	@font-face {
		font-family: 'Lato';
		src: url('../font/Lato/Lato-Bold.ttf') format('truetype');
		font-weight: 600;
		font-style: normal;
	}
	@font-face {
		font-family: 'Lato';
		src: url('../font/Lato/Lato-Black.ttf') format('truetype');
		font-weight: 800;
		font-style: normal;
	}
	
/** END IMPORTS **/

/** GENERAL **/

	html,
	body {
		font-family: 'Lato';
		font-size: 14px;
		font-weight: 400;
		height: 100%;
	}
	
	body a:hover, body a:active, body a:focus {
		color: #a5a5a5;
	}
	
	body a {
		color: #636363;
	}
	
	p {
		color: #74307D;
		font-size: 16px;
		font-weight: 600;
	}

/** END GENERAL **/

/** HEADER **/
	.main-header {
		background-color: #74307D;
		max-height: none;
	}
/** END HEADER **/

/** FOOTER **/
	.footer-row {
		padding: 16px;
	}
	
	.footer-fixed {
            margin: 20px 100px;
            margin-bottom: 20px;
            bottom: 0px;
            left: 0px;
            right: 0px;
/*            border-radius: 11px;*/
/*            background-color: #ffafc738;*/
            background-color: #80808017;
        }
	
	.footer-row p, 
	.footer-row span {
		color: #74307D;
		font-weight: 600;
	}

/** END FOOTER **/

/** CONTENT **/
	.btn {
		font-size: 16px;
		font-weight: 600;
		border-radius: 4px !important;
	}
	
	.btn-primary {
		background-color: #74307D !important;
		border-color: #74307D !important;
	}
        
        .btn-secondary {
		background-color: #ddd !important;
		color: #74307d !important;
	}
	
	.btn-large {
		width:100%;
		border-radius:11px !important;
	}
	
	thead td [data-sort] { cursor: pointer; }
	
	tr th,
	tr th *{
		vertical-align: top !important;
		font-weight: 800 !important;
		color: #74307D !important;
		font-size: 16px !important;
		text-transform: none !important;
	}
	
	tr input.form-control {
		border-radius: 8px;
	}
	
	.table th, 
	.table>tbody>tr>th, 
	.table>tfoot>tr>th, 
	.table>thead>tr>td, 
	.table>tbody>tr>td, 
	.table>tfoot>tr>td {
		vertical-align: middle;
	}
	
	.table tbody td {
		font-size: 16px;
		font-weight: 600;
		color: #000000;
	}
	
	
	.table-striped > tbody > tr:nth-of-type(odd) {
		background-color: #f2f2f2d1;
	}
	
	td.text-ellipsis {
		max-width: 100px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	td.no-wrap {
		white-space: nowrap;
	}
	
	.action {
		display: inline-block;
		margin-left: 10px;
		cursor: pointer;
	}
	
	
	.action:focus {
		box-shadow: 0px 0px 2px #3c8dbc;
	}
        
        .deactivated-icon{
            opacity: 0.3;
            cursor: default;
        }
	
	td .status {
		display: inline-block;
		width: 12px;
		height: 12px;
		margin: 0 4px;
		border-radius: 50%;
		background-color: light#ffafc738gray;
	}
	
	td .status.status-completed {
		background-color: #2AC940;
	}
	
	td .status.status-incompleted {
		background-color: #ED1C24;
	}
	
	.breadcrumb {
		background: 0;
	}
	
	.breadcrumb * {
		font-size: 18px;
		font-weight: 600;
		color: #74307D !important;
	}
	
	.breadcrumb > li:first-child a:before {
		content: "";
		position: absolute;
		left: 6px;
		height: 24px;
		width: 24px;
		background-image: url(../images/icon-breadcrumb-back.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 100% auto;
	}
	
	.breadcrumb > li + li:before {
		content: ">";
		color: #74307D;
	}
	
	.breadcrumb a:hover,
	.breadcrumb a:focus {
		text-decoration: underline;
	}

/** END CONTENT **/

/** UTILS **/
	.row-spaced {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	.distributed-evenly {
		display: flex;
		justify-content: space-around;
	}
/** END UTILS **/

/** GRIDVIEW SORT ICONS **/
	a.asc:after, a.desc:after {
		position: relative;
		top: 1px;
		display: inline-block;
		font-family: 'Glyphicons Halflings';
		font-style: normal;
		font-weight: normal;
		line-height: 1;
		padding-left: 5px;
	}
	
	a.asc:after {
		content: "\e151";
	}
	
	a.desc:after {
		content: "\e152";
	}
	
	.sort-numerical a.asc:after {
		content: "\e153";
	}
	
	.sort-numerical a.desc:after {
		content: "\e154";
	}
	
	.sort-ordinal a.asc:after {
		content: "\e155";
	}
	
	.sort-ordinal a.desc:after {
		content: "\e156";
	}
        .deactivated-icon{
            opacity: 0.3;
            cursor: default;
        }
/** END GRIDVIEW SORT ICONS **/

/** GRIDVIEW PAGINATION **/
.pagination{
    padding-left: 50px;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #74307d;
    border-color: #74307d;
}
/** END GRIDVIEW PAGINATION **/

/** KARTIK **/
.kv-grid-container table thead th {
	font-weight: normal;
	color: #555;
	font-size: 11px;
	text-transform: uppercase;
}
.grid-status-ok {
	font-weight: bold;
	color: #86bc25;
}
.grid-status-warning {
	font-weight: bold;
	color: #97999B;
}
.grid-status-error {
	font-weight: bold;
	color: red;
}

.kv-fileinput-caption {
	width: calc(100% - 20px) !important;
	height: 36px;
}

.kv-fileinput-caption.icon-visible:before {
	content: '';
	position: absolute;
	left: -40px;
	height: 24px;
	width: 24px;
	background-image: url(../images/icon-input-check.png);
	background-repeat: no-repeat;
	background-position: center center;
}

/** END KARTIK **/

/** BOOTSTRAP DIALOG **/
.bootstrap-dialog.type-warning .modal-header {
	background-color: #74307D;
	color: white;
	text-align: center;
}

.bootstrap-dialog .bootstrap-dialog-title {
	color: white;
	font-size: 32px;
}

.bootstrap-dialog .btn-warning {
    background-color: #74307d;
    border-color: #74307d;
}

.bootstrap-dialog .btn-default {
    color: white;
    background-color: #74307d;
    border-color: #74307d;
}
.bootstrap-dialog .btn-default:hover {
    background-color: #b42093;
    border-color: #b42093;
}

.bootstrap-dialog .btn-warning:hover {
    background-color: #b42093;
    border-color: #b42093;
}
/** END BOOTSTRAP DIALOG **/

/** LOADING **/
.loading{
    background: url(/images/loading.svg) no-repeat center; 
    height: 200px;
    width: 100%;
}
/** END LOADING **/