.sled-part.editable {
    cursor: pointer;
    transition: all 0.1s ease;
    min-height: 20px;
    min-width: 20px;
    display: inline-block;
    width: 100%;
    outline: 1px dashed #e4e4f1 !important;
    position: relative;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}
.sled-part.editable:after {
	content: ' ';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
.sled-part.editable .sled-part.editable:after {
	z-index: 10001;
}
.sled-part.editable .sled-part.editable .sled-part.editable:after {
	z-index: 10002;
}
.sled-part.editable .sled-part.editable .sled-part.editable .sled-part.editable:after {
	z-index: 10003;
}

.sled-part.editable:hover {
    box-shadow: 0px 20px 20px -2px rgba(0, 0, 0, 0.06), 0px 10px 10px -3px rgba(0, 0, 0, 0.1);
    transform: translate(0px, -5px) scale(1.02);
    outline: 1px dashed #e4e4f100;
    z-index: 1000;
    border-radius: 4px;
}
.sled-part.editable:hover:after {
	height: calc(100% + 5px);
}
.sled-part.editable.part-highlighted:hover:after {
	background-color: rgba(142, 142, 142, 0.08);
	/*outline: 10px outset rgba(0, 196, 255, 0.05);*/
}

.part-editor {
	position: fixed;
	right: 10vh;
	height: 80vh;
	width: 400px;
	top: 10vh;
	z-index: 100000;
	background: white;
	box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 20px 30px -0px rgba(0, 0, 0, 0.06), 0px 10px 10px -3px rgba(0, 0, 0, 0.1);
	box-sizing: content-box;
	padding: 20px;
	border-radius: 5px;
	cursor: move;
	opacity: 0;
	pointer-events: none;
	transition: all .1s ease;
	transform: scale(.8);
}

.part-editor.visible {
	opacity: 1;
	pointer-events: unset;
	transform: scale(1);
}

.part-editor iframe {
    width: 100%;
    height: 100%;
    border: 0px;
}

.part-editor .close-btn {
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 15px;
	width: 32px;
	height: 32px;
	opacity: 0.3;
}
.part-editor .close-btn:hover {
	opacity: 1;
}
.part-editor .close-btn:before,
.part-editor  .close-btn:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #333;
}
.part-editor .close-btn:before {
	  transform: rotate(45deg);
}
.part-editor .close-btn:after {
	  transform: rotate(-45deg);
}
.ui-icon-gripsmall-diagonal-se {
    background-position: -80px -224px;
}



.bounce {
	-webkit-animation: bounce 1.2s;
	animation: bounce 1.2s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

@-webkit-keyframes bounce {
	0%,
	30%,
	60% {
		-webkit-transform: translate(0px, 0px) scale(1);
		        transform: translate(0px, 0px) scale(1);
		        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	}
	15% {
		-webkit-transform: translate(0px, -2px) scale(1.01);
		        transform: translate(0px, -2px) scale(1.01);
                box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .05), 0px 5px 5px 0px rgba(0, 0, 0, .05);
	}
	36% {
		-webkit-transform: translate(0px, -1px) scale(1.005);
		        transform: translate(0px, -1px) scale(1.005);
		        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, .1), 0px 2px 2px 0px rgba(0, 0, 0, .1);
	}
}

@keyframes bounce {
	0%,
	30%,
	60% {
		-webkit-transform: translate(0px, 0px) scale(1);
		        transform: translate(0px, 0px) scale(1);
		        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1), 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	}
	15% {
		-webkit-transform: translate(0px, -2px) scale(1.01);
		        transform: translate(0px, -2px) scale(1.01);
                box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, .05), 0px 5px 5px 0px rgba(0, 0, 0, .05);
	}
	36% {
		-webkit-transform: translate(0px, -1px) scale(1.005);
		        transform: translate(0px, -1px) scale(1.005);
		        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, .1), 0px 2px 2px 0px rgba(0, 0, 0, .1);
	}
}