/* **************  CSS DISPLAY FOR CUSTOM MODAL **************************/

	.popup-position{
		display : none;
		position : fixed;
		top : 50px;
		left: 0;
		background-color : rgba(0, 0, 0, 0.7);
		width:100%;
		overflow-y: scroll;
                height: 90%;
                z-index: 5000000000000;
	}
	#popup-wrapper{
		width:100%;
                max-width: 980px;
		//margin :40px auto;
                margin: 0 auto;
		text-align: left;
               
	}
	
	#popup-container{
		background-color: #fff;
		padding:20px;
		border-radius :4px;
	}
        .onlyredborder{
            border:1px solid red;
        }
/****************  END OF DISPLAY FOR CUSTOM MODAY   **********************/