.input.image-preview
{
	.placeholder 
	{
		background: url('../../images/image_placeholder.png');
		width: 450px; 
		height: 250px;
		max-width: 450px; 
		max-height: 250px;  
		border: 1px solid #000; 
		position: relative; 

		&.has-image  img{
			display: block;
		}	
					
		img { 
		    position: absolute;
  			top: 50%;
  			left: 50%;
  			transform: translate(-50%, -50%);;			
			overflow: hidden; 
			max-width: 100%; 
			max-height: 100%;
			width: auto; 
			display: none;
	
		}

	}

}
