
.part-draggable {
	/*max-height: 50px;*/
	position: absolute;
	z-index: 30;
	transform: translate(0px,0px);
	/*background-color: rgba(0,255,0,0.5);*/
}
.part-draggable:hover {
	cursor: -webkit-grab;
	max-height: none;
	height: auto;
}
.part-draggable:active {
	cursor: -webkit-grabbing;
}

.not-draggable,
.not-draggable:hover
.not-draggable:active {
	cursor: default !important;
}

.part-target {
	/*background-color: rgba(255,255,0,0.5);*/
	display: inline-block;
	position: absolute;
	z-index: 20;
}
.part-target > img {
	/*-webkit-filter: grayscale(100%);*/
	/*filter: grayscale(100%);*/
	opacity: 0;
}

.part-target > img.marker {
	opacity: 1;
	position: absolute;
}

.flex-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around; 
}

.flex-item {
	width: 40%;
	height: 400px;
	background-color: rgba(240,240,240,1.00);
	border-color: rgba(220,220,220,1);
	border-width: 1px;
	border-style: solid;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

#container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
}

.dnd-container {
	height: 534px;
	width: 950;
	background-color: rgba(240,240,240,0.00);
	border-color: rgba(220,220,220,1);
	border-width: 0px;
	border-style: solid;
	position: relative;
    overflow: hidden;
}

#end-video {
	height: 500px;
	width: 720px;
    position: absolute;
    top: 0px;
    left: 0px;
	display: none;
    cursor: pointer;
}

#plant-type-title {
	background-color: rgba(42,255,0,0);
	color: rgba(0,5,110,1);
	font-weight: bold;
	text-align: center;
	position: absolute;
	top: 414px;
	left: 5px;
	width: 710px;
}

#quetion-correct-points {
	display: none;
}

#quetion-incorrect-points {
	display: none;
}

#dnd-correct-points {
	display: none;
}

#dnd-incorrect-points {
	display: none;
}

#final-score {
	background-color: rgba(42,255,0,0);
	color: rgba(0,5,110,1);
	font-weight: bold;
	text-align: left;
	position: absolute;
	top: 434px;
	left: 250px;
	display: none;
}

#finish-time {
	color: rgba(0,155,22,1.00);
}

#finish-score {
	color: rgba(255,0,255,1.00);
}

#youre-powerd-up {
    display:  none;
    text-align: center;
    position: relative;
    top: 100px;
    font-size: 36px;
    color: yellow;
    font-weight: bold;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;

    z-index: 90;
    }

#power-up-text {
    display: none;
    position: absolute;
    z-index: 100;
    top: calc(50% - 22.5px);
    left: calc(50% - 176.5px);
}

.animated-pu-text {
    animation: fadeAndScale 5s ease-in-out;
    transform-origin: center;
    animation-fill-mode: forwards;
}

@keyframes fadeAndScale {
    0% {
        opacity: 0;
        transform: scale3d(.25, .25, 1);
    }
    50% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    99% {
        opacity: 0;
        transform: scale3d(5, 5, 1);
    }   
    100% {
        opacity: 0;
        transform: scale3d(0, 0, 0);
        display: none;
    }
}





