/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */

.wp-block-create-block-gutenberg-draggable-images {
	background-color: #21759b;
	color: #fff;
	padding: 2px;
}

.gutenberg-draggable-images {

  &__container {
	margin: auto;
  }


  &__notices {
	min-height: 100px;
	width: 100%;
	height: 100%;
	position: relative;
	&_draggable_img {
	  position: absolute;
	  top:0;
	  left:0;
	}
  }
}


//animations
.fadeIn-animation-hidden {
  transition: all .6s;
  transform: translateY(60px);
  opacity: 0;
}

.fadeIn-animation-visible {
  transition: all .6s;
  transform: translateY(0px);
  opacity: 1;
}

.scale-animation-hidden {
  transition: all .6s;
  transform: scale(.5);
  opacity: 0;
}

.scale-animation-visible {
  transition: all .6s;
  transform: scale(1);
  opacity: 1;
}

