@CHARSET "UTF-8";

body {
}

.sob-logo {
	float: left;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	padding: 0px 10px;
	width: 220px;
	font-family: 'Kaushan Script', cursive;
	font-weight: 500;
	display: block;
	background-color: #367FA9;
	color: rgb(249, 249, 249);
}
/*Panel Size*/
.pn {
	height: 175px;
	box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
	width:100%;
}

.pn:hover {
	box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.3);
}

.pn-panel {
	text-align: center;
}

.pn-panel .header {
	padding: 3px;
	margin-bottom: 15px;
}

.pn-panel h5 {
	font-weight: 200;
	margin-top: 0px;
}
/*Grey Panel*/
.grey-panel {
	text-align: center;
	background: #dfdfe1;
}

.grey-panel .grey-header {
	background: #ccd1d9;
	padding: 3px;
	margin-bottom: 15px;
}

.grey-panel h5 {
	font-weight: 200;
	margin-top: 0px;
}

.grey-panel p {
	margin-left: 5px;
}

/*Green Panel*/
.green-panel {
	text-align: center;
	background: #68dff0;
}

.green-panel .green-header {
	background: #43b1a9;
	padding: 3px;
	margin-bottom: 15px;
}

.green-panel h5 {
	color: white;
	font-weight: 200;
	margin-top: 10px;
}

.green-panel h3 {
	color: white;
	font-weight: 100;
}

.green-panel p {
	color: white;
}
.modal{
	padding-top:40px;
}

/**
 * For the correct positioning of the placeholder element, the dnd-list and
 * it's children must have position: relative
 */
 ul[dnd-list],
 ul[dnd-list] > li {
	position: relative;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
 ul[dnd-list] {
    min-height: 42px;
    padding-left: 0px;
}

/**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
 ul[dnd-list] .dndDraggingSource {
    display: none;
}

/**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
 ul[dnd-list] .dndPlaceholder {
    display: block;
    background-color: #ddd;
    min-height: 42px;
}

/**
 * The dnd-lists's child elements currently MUST have
 * position: relative. Otherwise we can not determine
 * whether the mouse pointer is in the upper or lower
 * half of the element we are dragging over. In other
 * browsers we can use event.offsetY for this.
 */
 ul[dnd-list] li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
}

/**
 * Show selected elements in green
 */
 ul[dnd-list] li.selected {
    background-color: #dff0d8;
    color: #3c763d;
}