.ui-sortable-helper {
	display: block;
}

.drop-area {
	border: 1px dashed white;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: block;
	float: left;
	margin: 0 5px 10px 5px;
}

#widgets {
	background: #efefef;
	float: left;
	padding: 10px 5px 5px 5px;
	width: 780px;
}

.widget {
	background: #fafafa;
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
	color: #222;
	display: inline-block;
	float: left;
	font-size: 13px;
	line-height: 1.4em;
	margin: 0 5px 10px 5px;
	transition: width 0.3s ease;
	-moz-transition: width 0.3s ease;
	-ms-transition: width 0.3s ease;
	-o-transition: width 0.3s ease;
	-webkit-transition: width 0.3s ease;
	width: 160px;
}

.widget.open {
	z-index: 999;
}

.widget.open .widget-top {
	cursor: move;
	position: relative;
	z-index: 1001;
}

.widget.open .widget-inner {
	background: #fafafa;
	border: 1px solid #e5e5e5;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
	left: -1px;
	margin-top: -1px;
	min-width: 248px;
	position: absolute;
	z-index: 1000;
}

.widget-top {
	border: 0;
	box-shadow: 0 0 0;
}

.widget:hover, .widget:hover .widget-inner,
.widget.open, .widget.open .widget-inner {
	border: 1px solid #777;
}

.widget-title {
	display: inline-block;
}

.widget-title h4 {
	float: left;
	line-height: 1;
	margin: 0;
	overflow: hidden;
	padding: 15px;
	text-overflow: ellipsis;
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	white-space: nowrap;
}

.widget-title .spinner {
	float: left;
	margin: 12px 0 0 0;
	padding: 0;
}

.widget-controls {
	float: left;
}

.widget-controls .delete:hover {
	color: red;
	text-decoration: none;
}

.widget-inner form {
	margin-bottom: 30px;
	padding: 0 15px 15px 15px;
}

.widget-inner {
	background: white;
	display: none;
	float: left;
	width: 100%;
}

.open .widget-inner {
	display: block;
}

.widget-inner p,
.widget-inner select,
.widget-inner input {
	font-size: 12px;
}

.widget-title-action {
	float: right;
	position: relative;
}

.widget-title-action {
	padding: 12px 5px 0 0;
}

.widget-title-action a {
	display: inline-block;
}

.widget-option {
	background: 0 0;
	border: 0;
	color: #aaa;
	display: block;
	font: 400 16px/1 dashicons;
	padding: 0;
	position: relative;
	right: 0;
	speak: none;
	text-align: center;
	text-decoration: none !important;
	text-indent: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.widget-option:hover {
	color: #777;
	cursor: pointer;
}

.widget-expand::after {
	content: '\f345';
}

.widget-options::after {
	content: '\f111';
}

.widget-contract::after {
	content: '\f341';
}

.widget-edit::after {
	content: '\f140';
	font: 400 20px/1 dashicons;
}

.open .widget-edit::after {
	content: '\f142';
}

.widget-option.disabled:hover {
	color: #aaa;
}

.widget[data-columns='1'] {
	width: 120px;
}

.widget[data-columns='2'] {
	width: 250px;
}

.widget[data-columns='3'] {
	width: 380px;
}

.widget[data-columns='4'] {
	width: 510px;
}

.widget[data-columns='5'] {
	width: 640px;
}

.widget[data-columns='6'] {
	width: 770px;
}

.widget[data-columns='1'] h4 {
	max-width: 30px;
}

.widget textarea {
	max-height: 100px;
}

.dd-container {
	padding: 10px 0 20px 0px;
}

.dd-options li a::before{
	color: #aaa;
	content: '\f502';
	float: left;
	font: 400 26px/1 dashicons;
	height: 24px;
	margin-right: 9px;
	padding: 5px;
	width: 26px;
}

.dd-options li:hover a::before {
	color: black;
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}