@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');
		.whole-popup-area{
			font-family: 'Roboto', sans-serif;
		}
		body{
			padding: 0;
			margin: 0;
		}
		.popup-layer {
		    position: fixed;
		    width: 100%;
		    height: 100%;
		    background: rgba(0, 0, 0, 0.67);
		    top: 0;
		    left: 0;
		    z-index: 1;
			cursor: pointer;
		}
		.pop-body{
			position: absolute;
			z-index: 9;
			background: #ddd;
		}
		.pop-body {
		    position: fixed;
		    z-index: 9;
		    background-color: rgb(239, 242, 245);
            border-style: solid;
            border-width: 10px;
    border-color: rgb(2, 51, 102);
      
		    width: 1000px;
		    left: 50%;
		    top: 40%;
		    transform: translate(-50%, -50%);
		    padding: 40px;
		    box-sizing: border-box;
		}
		.pop-body h2 {
		    margin: 0;
		    text-align: center;
		    color: #000;
            font-size: 36px;
		}
		.pop-body p{
			text-align: center;
			line-height: 24px;
            font-size:18px;
            margin:10px;
		}
        .pop-body .expire-text {
        color:red;
        }
		.main-pop-form input{
			width: 100%;
			height: 35px;
			border: 1px solid #222;
			box-sizing: border-box;
			padding: 0 15px;
			margin-bottom: 15px;
			border-radius: 3px;
            font-size: 18px;
		}
		.main-pop-form button{
			width: 100%;
			border-radius: 3px;
			background: #EE8A21;
			color: #fff;
			line-height: 35px;
			border: 0px;
			font-weight: 400;
            font-size:24px;
		}
		.main-pop-form button:last-child{
			margin-left: 1%;
		}
		a.cross {
		    position: absolute;
		    right: 15px;
		    top: 15px;
		    color: #222;
		}
        .cross2 a{
            color:#000;
            font-size:10px;
        }
        .cross2 {
            margin-top:10px;
        }
		@media only screen and (max-width: 1024px) {
			.pop-body{
				width:80%
			}
			.main-pop-form button{
				width: 100%;
				margin: 5px 0 !important;
			}
			.pop-body {
			    position: fixed;
			    z-index: 9;
			    background: #e5e5e5;
			    max-width: 600px;
			    left: 50%;
			    top: 15%;
			    transform: translate(-50%, 0);
			    padding: 15px;
			    box-sizing: border-box;
			}
		}
		@media only screen and (max-width: 767px) {
			.pop-body{
				width: 90%
			}
			.main-pop-form button{
				width: 100%;
				margin: 5px 0 !important;
			}
			.pop-body h2{
				margin: 15px 0 0;
			}
			.pop-body p {
			    text-align: center;
			    line-height: 22px;
			    font-size: 18px;
			}
			.pop-body {
			    position: fixed;
			    z-index: 9;
			    background: #e5e5e5;
			    max-width: 600px;
			    left: 50%;
			    top: 15%;
			    transform: translate(-50%, 0);
			    padding: 15px;
			    box-sizing: border-box;
			}
		}

