/**
 * The following styles get applied inside the editor only.
 *
 * Replace them with your own styles or remove the file completely.
 */

 @keyframes zoomOnHover {
	from {
		transform: scale(1,1);
		
	}
	to {
		transform: scale(2,2);
		
	}
  }

.wp-block-create-block-ctc-gal-block {
	border: 1px dotted #f00;
}


img.ctc-gal-zoom-on-hover:hover{
 
	position: absolute;
	z-index: 500000;
	transition: width 1.5s, height 1.5s;
	animation: zoomOnHover 1.5s linear;
	transform: scale(2,2);
  }



 