#form-container {

	text-align: center;
}

#ev-file-table {

	width: 100%;
}

.ev-table {

	border-collapse: collapse;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	border: 1px solid lightgrey;
}


.ev-table thead {

	border-bottom: 1px solid lightgrey;
}

.ev-table thead tr th {

	padding: 1em;
	color: #007AC3;
}

.ev-table thead tr th:first-of-type {

	text-align: center;
}

.ev-table tbody {

	margin-top: 1em;
}

.ev-table tbody tr input[type='checkbox'] {

	cursor: pointer;
}

.ev-table tbody tr:hover, .checked {

	background-color: #007AC3;
	color: white;
	cursor: pointer;
}

.ev-table tr td {

	padding: 1em;
}

.ev-table tr td:first-of-type {

	text-align: center;
}

#fixed-header {

	position: fixed;
	top: 40px;
	display: none;
	border: none;
	border-left: 1px solid lightgrey;
	-webkit-box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 3px 2px 0px rgba(0,0,0,0.1);
}

#fixed-header thead {

	background-color: white;
	border-bottom: 1px solid lightgrey;
}

#main-container {

	margin-top: 1em;
}

.mobile {

	display: none;
}

#top-container p {

	text-align: center;
	margin: 1em 0em;
}

.ui-state-error {

	padding: 1em;
}

/**
	MEDIA QUERIES
*/
@media all and (max-width: 910px) {
	
	.ev-table tr th:nth-of-type(3),
	.ev-table tr th:nth-of-type(4){
	
		display: none !important;
	}
	
	.ev-table tr td:nth-of-type(3),
	.ev-table tr td:nth-of-type(4) {
	
		display: none !important;
	}
}

@media all and (max-width: 480px) {

	.ev-table tr th {
	
		text-align: left;
	}

	.ev-table tr th:nth-of-type(1),
	.ev-table tr td:nth-of-type(1) {
	
		display: none;
		
	}
	
	.ev-table tr th:nth-of-type(2) {
	
	}
	
	#fixed-header {
	
		top: 50px;
	}
}