@import "mixins";

.wphc-settings {
	
	* {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	position: relative;
	z-index: 999;
	padding-left: 160px;

	::-moz-selection { background: transparent; }
	::selection { background: transparent; }

	ul.droppable-area {
		min-height: 145px;
		margin: 0;
		li:hover {
			cursor: move;
		}
	}

	.draggable.sortable-ghost {
		color: #eee;
		background-color: #eee;
	}

	.wphc-table-corners {
		position: relative;
	}
	#wphc-saved-notice {
		position: absolute;
		top: -18px;
		left: 233px;
		color: gray;
		z-index: 999;
		display: none;
	}
	#wphc-trash {

		display: block;
		position: absolute;
		z-index: 9999;
		background-color: #fff;
		height: 60px;
		width: 60px;
		border-radius: 100%;
		top: 180px;
		left: 223px;
		box-shadow: 1px 1px 3px #d4d4d4;
		background-size: 60%;
		background-position: center;
		background-repeat: no-repeat;
		overflow: hidden;

		-webkit-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;

		&.over {
			box-shadow: 0px 0px 18px red;
		}

		li {
			-webkit-transition: all .2s ease-in-out;
			transition: all .2s ease-in-out;
			border-radius: 100%;
			height: 200px;
			width: 200px;
			position: absolute;
			top: -100%;
			left: -100%;
			transform: translate(0);
			background-color: rgba(255,0,0,.5);
		}
	}

}
.wphc-item-list {
	position:fixed;
	left:160px;
	top:32px;
	bottom:0;
	width: 170px;
	background-color: #F9F9F9;
	z-index: 999;
	border-right: 1px solid gainsboro;

	ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	li {
		margin: 0;
		padding: 5px 8px;
		background-color: #fff;
		border-bottom: 1px solid gainsboro;
		border-top: 1px solid #FBFBFB;
		border-right: 1px solid gainsboro;
		width: 170px;

		&:hover {
			cursor: move;
		}
	}

	p {
		padding: 8px;
	}

}

.wphc-message {
	position: relative;
	left: 10px;
	top: 1px;
	color: #A5A5A5;
}

.corner {
	position: relative;
	width: 250px;
	height: 200px;
	background-color: #F9F9F9;
	box-shadow: 1px 1px 3px #d4d4d4;
	border-radius: 3px;
	padding: 32px 0.5em 1.5em .5em;
	margin-right: 8px;
	margin-bottom: 8px;
	overflow-y: scroll;

	// custom scroller
	&::-webkit-scrollbar {
	    width: 10px;
	}
	&::-webkit-scrollbar-track {
		background-color: #eee;
	}
	&::-webkit-scrollbar-thumb {
		background-color: #ddd;
	}
	
	li {
		display: block;
		border: 1px solid #CACACA;
		padding: 4px 8px;
		text-align: center;
		border-radius: 3px;
		box-shadow: 1px 1px 1px #E6E6E6;
	}

	span.empty {
	    position: absolute;
	    top: 89px;
	    font-size: 18px;
	    text-align: center;
	    left: 78px;
	    color: #D6D6D6;
	    text-transform: uppercase;
	    display: none;
	}

	label {
		font-size: 14px;
		color: #C5C5C5;
		font-style: italic;
		position: absolute;
	}
	&.tl-corner label {
		top: 5px;
		left: 5px;
	}
	&.tr-corner label {
		top: 5px;
		right: 5px;
	}
	&.bl-corner label {
		bottom: 5px;
		left: 5px;
	}
	&.br-corner label {
		bottom: 5px;
		right: 5px;
	}

}

.edit-overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 999;
	background-color: #eee;
	top:32px;
	left:160px;
}

