.theme_helper_modal {
	  position: fixed;
	  z-index: 1;
	  padding-top: 100px;
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  overflow: auto;
	  background-color: rgba(0, 0, 0, .8);
}

.theme_helper_modal_content {
	  position: relative;
	  margin: auto;
	  padding: 0;
	  width: 90%;
	  max-width: 90%;
	  overflow: hidden;
	  z-index: 1;
	  text-align: center;
}

	.theme_helper_modal_content img {
		max-width: 100%;
		height: auto;
		-webkit-box-shadow: 0px -6px 19px -11px rgba(88, 89, 91, 1); 
		box-shadow: 0px -6px 100px -11px rgba(88, 89, 91, 0.5);
		opacity: 0;
		transition: opacity 1s;
  		-webkit-transition: opacity 1s;
	}

		.theme_helper_modal_content img.fadeIn {
			opacity: 1;
		}
