﻿#demo-container {
	background-color:#ffffff;
	padding:30px 15px;
	margin-bottom:20px;
	border:1px solid #ccc;
}
#demo-container ul>li:before {
	display:none;
}
#demo-container a {
	border-bottom:none;
}
.menuIcons {
	padding:2px 5px;
	margin:0 2px;
	border:1px solid transparent;
	cursor: pointer;
}

.pressed {
	border:1px solid #999;
	border-radius:3px;
	background:#fff;
}
.sticky {
	position:sticky;
	top:70px;
	z-index:99;
}

.cf:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.dd-hover > .dd-handle {
	background: #2ea8e5 !important;
}

/**
 * Nestable Draggable Handles
 */

.dd3-content {
	display: block;
	height: 30px;
	margin: 5px 0;
	padding: 5px 10px 5px 40px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #ccc;
	background: #fafafa;
	background: linear-gradient(to bottom, #fafafa 0%, #eee 100%);
	border-radius: 3px;
	box-sizing: border-box;
}


.dd-dragel > .dd3-item > .dd3-content {
	margin: 0;
}

.dd3-item > button {
	margin-left: 30px;
}

.dd3-handle {
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	cursor: move;
	width: 30px;
	text-indent: 30px;
	white-space: nowrap;
	overflow: hidden;
	border: 1px solid #aaa;
	background: #ddd;
	background: linear-gradient(to bottom, #ddd 0%, #bbb 100%);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.dd3-handle:before {
	content: '≡';
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 100%;
	text-align: center;
	text-indent: 0;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
}

.dd3-handle:hover {
	background: #ddd;
}





.dd3-delete {
	position: absolute;
	margin: 0;
	right: 0;
	top: 0;
	cursor: pointer;
	width: 30px;
	text-indent: 30px;
	height:30px;
	white-space: nowrap;
	overflow: hidden;
	background: #dd2e2e;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	opacity:.8;
}

.dd3-delete:before {
	content: 'x';
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 100%;
	text-align: center;
	text-indent: 0;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
}

.dd3-delete:hover {
	background: #800000;
}