	/* Styles for shadowbox */
	#ktgShadowBox{
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100vw;
		height: 100vh;
		display: none;
		z-index: 99000;			
	}
	
	#ktgShadowBoxBG{
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background-color: #6f6f6f;		
		background-size: cover;
		opacity: 0.6; 
		z-index: 99000; 
	}		
	
	#ktgShadowBoxContent{
		position: absolute;
		top: 50%;
		left: 50%;
		width: auto;		/*calc(100vw - 56px);*/
		max-width: 786px;
		height: auto;		/*350px;*/
		transform: translate(-50%, -50%);
		background-color: #fff;
		z-index: 99900;
		border-radius: 20px;
		padding: 20px;
	}
	#ktgShadowBoxContent .ktg-modal-body{
		min-width: 464px;
	}
	#ktgShadowBoxContent h4 {
	  font-size: 18px;
	  line-height: 24px;
	  margin-top: 0px;
	  margin-bottom: 30px;
	  font-variant: all-small-caps;
	}  
	
	#ktgShadowBoxContent .clearfix{
		clear:both;
	}
	#ktgShadowBoxContent .btn{
	  padding: 6px 15px;
	  font-size: 14px;
	  color: #fff;
	  font-weight: bold;
	  text-decoration: none;		
	  text-transform: uppercase;
	  border-radius: 5px;
	}
	#ktgShadowBoxContent .btn-primary {
	  background-color: dodgerblue;
	}
	#ktgShadowBoxContent .btn-danger{
	  background-color: crimson;
	  margin-left: 20px;
	}	
	
	#ktgShadowBox.edit > #ktgShadowBoxContent{
		height: 550px;
	}
	
	
	#ktgShadowBoxClose{
		position: absolute;
		top: calc(50vh - 168px);
		right: max( calc(50vw - 388px) , 34px );
		width: 24px;
		height: 24px;
		background-color: #fff;
		border: 1px solid #000;
		color: #000;
		border-radius: 15px;
		padding-left: 6px;
		line-height: 17px;	
		font-size: 24px;
		font-weight: bold;
		z-index: 99990;
		cursor: pointer;		
	}
	#ktgShadowBox.edit > #ktgShadowBoxClose{
		top: calc(50vh - 268px);
	}
	
	/* End styles for shadowbox */
