/* Custom extenstion of Bootstrap "row" with somet vertical padding (used for rows with nothing but some buttons) */
div.row-with-margin {
	margin-bottom: 10px;
	margin-top: 10px;
}

/* Custom extension of Bootstrap list-group that adds striped rows (also adds a min-height to improve look of mostly empty rows) */
/*ul.list-group.list-group-striped>li {
	min-height:55px;
}*/

/* Custom list-group-item class 'table-cell-container', which let's you put table-cell aligned divs in a list row (useful for icons)*/
ul.list-group>li.table-cell-container>div{
	display:table-cell;
}

ul.list-group>li.table-cell-container>div>i.fa,
ul.list-group>li.table-cell-container>div>span.glyphicon{
	min-width:25px;
}

ul.list-group.list-group-striped>li:nth-of-type(odd){
	 background-color: #f9f9f9;
}

/* Class to hide an input but still let it be seen by jquery validate */
.hiddenValidatedInput {
	visibility: visible !important;
	display: block !important;
	height: 0px !important;
	padding: 0px !important;
	border: none !important;
	resize:none;
	overflow: hidden;
}

/* Custom list-group-item class 'clickable-list-group-item' used for clickable list group items such as multiple choice question answers */
ul.list-group>li.list-group-item.clickable-list-group-item{
	cursor:pointer;
}

ul.list-group>li.list-group-item.clickable-list-group-item.list-group-item-rollover{
	background-color:#eeeeee;	
}

/* Class used for course materials and course group courses when filtering the sortable list.  This is the little X button to clear the filter form */
span.eduAdmin_sortableListFilterClearBtn{
	right:30px;
	pointer-events:auto;
}

 /* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

	/* Class used for course materials and course group courses when filtering the sortable list.  This is the little keyword filter form */
	form.eduAdmin_sortableListFilterForm{
		padding-right:0px !important;
	}
	
}
