@charset "utf-8";
/*====CSS Document====*/

body {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
	background: #ffffff;
	color: #000000;
	text-align: center;
    font-family: 'Inter';
	font-weight: normal;
	}
div, ul, h1, h2, h3, h4, h5, li, p, img, form, input, textarea {margin: 0;padding: 0;}
header, section, footer, aside, nav, main, article, figure {display: block;}
table, tr, td {border: 0;}
a {outline: none;color: inherit;text-decoration: none;}
img {border: none; max-width: 100%; height: auto;}
li {list-style: none;}
* {box-sizing: border-box;}
.img-full {max-width: 100%;}
.clearall {
	clear: both;
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	}
.fl{ float:left;}
.fr{ float:right;}

/*-----------------------
FONTS
------------------------*/

@font-face {
    font-family: 'Inter';
	src: url('Inter-Regular.woff2') format('woff2'),
	url('Inter-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	}
	
@font-face {
    font-family: 'Inter';
	src: url('Inter-Medium.woff2') format('woff2'),
	url('Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	}

@font-face {
    font-family: 'Inter';
    src: url('Inter-SemiBold.woff2') format('woff2'),
	url('Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	}

@font-face {
    font-family: 'Inter';
    src: url('Inter-Bold.woff2') format('woff2'),
	url('Inter-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}

@font-face {
    font-family: 'Inter';
	src: url('Inter-ExtraBold.woff2') format('woff2'),
	url('Inter-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
	}

@font-face {
    font-family: 'Figtree';
	src: url('Figtree-Bold.woff2') format('woff2'),
	url('Figtree-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
	}

/*-----------------------
MAIN CSS START
------------------------*/

.container {
	width:1170px;
	margin:0 auto;
	padding:0;
	position:relative;
	}
	
/*========Header========*/	
.top-fix-bar{
	float:left;
	width:100%;
	margin-bottom:70px;
	}
.header{
	float:left;
	width:100%;
	height:70px;
	margin-top:-70px;
	top:70px;
	background:#fff;
	position:relative;
	}
.fixed-nav .header{
	position: fixed;
	z-index: 10;
	-webkit-transition: margin .3s ease-out;
	transition: margin .3s ease-out;
	background:#fff;
	box-shadow:0 1px 9px 0 rgba(0,0,0,0.1);	
	-webkit-box-shadow:0 1px 9px 0 rgba(0,0,0,0.1);	
	margin-top:0;
	top:0;
	}		
.logo{
	float:left;
	margin-top:17px;
	width:178px;
	}
a.nav-btn{
    float:right;
	width:190px;
	height:40px;
    color:#fff;
    font-size:16px;
	line-height:40px;
    text-align:center;
	background:#04d36f;
	font-weight:800;
	border-radius:5px;
	cursor:pointer;
	margin-top:14px;
	}
.nav-btn-arw{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 0 0 6px;
	width:17px;	
	}
	
/*========Banner========*/
.bnr-sec{
    float:left;
    width:100%;
	background:url(../images/bnr-bg.jpg) no-repeat center top;
	padding:100px 0 145px;
	}
.bnr-hdg{
	color:#fff;
	font-size:56px;
	line-height:60px;
	font-weight:bold;
	font-family: 'Figtree';
	}
.bnr-hdg span{color:#04d36f;}
.bnr-para{
	color:#fff;
	font-size:18px;
	line-height:26px;
	margin-top:15px;
	}
	
/*=====Banner-Bottom======*/
.bnr-btm{
	float:left;
	width:100%;
	}
.bnr-btm-bx{
	float:left;
	width:100%;
	background:#fff;
	border-radius:15px;
	-webkit-box-shadow: 0 0 10px 1px rgb(0 0 0 / 15%);
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 15%);
	padding:30px 60px 35px;
	margin-top:-70px;
	}
.bnr-btm-hdg{
	color:#010233;
	font-size:20px;
	line-height:28px;	
	font-weight:bold;
	}
.bnr-btm-list{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	width:100%;
	margin-top:20px;
	}
.bnr-btm-list-bx{
	width:14.5%;
	}
.bnr-btm-list-inr{
	float:left;
	width:100%;
	color:#010233;
	font-size:16px;
	line-height:20px;
	font-weight:500;
	border:1px solid #e1e1e1;
	border-radius:10px;
	padding:25px 10px;
	}
.bnr-btm-list-icn{
	display:block;
	margin:0 auto 10px;
	width:77px;
	}	
.bnr-btm-list-inr:hover{
	color:#fff;
	background:#04d36f;
	transform:scale(1.01);
	}
.bnr-btm-list-inr:hover .bnr-btm-list-icn{
	filter:invert(1) brightness(20);
    -webkit-filter:invert(1) brightness(20);
	}
	
/*========Common-CSS========*/
.commn-hdg{
	color:#010233;
    font-size:50px;
    line-height:60px;
	font-weight:800;
	font-family: 'Figtree';
	}
.commn-hdg.white-txt{color:#fff;}
.commn-hdg.black-txt{color:#000;}
.commn-para{
	color:#000;
    font-size:18px;
    line-height:26px;
	margin-top:10px;
	}	
.commn-para.white-txt{color:#fff;}
.commn-para.padding{padding:0 165px;}	
.btn-bx{
	display:inline-block;
	vertical-align:middle;
	max-width:365px;
	width:100%;	
	margin-top:30px;
	}
.commn-btn{
	display:inline-block;
	vertical-align:middle;
	width:100%;	
    color:#fff;
    font-size:24px;
	line-height:24px;
    text-align:center;
	background:#04d36f;
	font-weight:800;
	border-radius:5px;
	padding:18px 0;
	cursor:pointer;
	}
.btn-arw{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 0 0 16px;
	width:23px;	
	}
.btn-txt{
	color:#000;
    font-size:16px;
	line-height:24px;
	margin-top:8px;
	}

/*========Section-1========*/
.sec1{
	float:left;
	width:100%;
	padding:85px 0 65px;
	position:relative;
	}
.sec1:before{
	content:'';
	position:absolute;
	top:22px;
	left:50%;
	width:1px;
	height:65px;
	background:#0f0f8e;
	}
.s1-contnt{
	display:inline-block;
	vertical-align:middle;
	max-width:1065px;
	width:100%;	
	margin-top:40px;
	}
.s1-left{
	float:left;
	width:45%;
	}
.s1-img{
	display:inline-block;
	vertical-align:middle;
	border-radius:10px;
	}
.s1-rgt{
	float:right;
	width:51%;
	text-align:left;
	}
ul.s1-list{
	float:left;
	width:100%;
	}
ul.s1-list li{
	float:left;
	width:100%;
	text-align:left;
	background: url(../images/s1-bullet.png)no-repeat left 0;
	padding-left:65px;
	margin-top:26px;
	position:relative;
	}
ul.s1-list li:before{
	content:'';
	position:absolute;
	top:32px;
	left:14px;
	bottom:-25px;
	border-left:2px dotted #b2e3ff;
	}
ul.s1-list li:last-child:before{display:none;}
.s1-list-txt1{
	color:#1c478b;
	font-size:20px;
	line-height:28px;
	font-weight:bold;
	}
.s1-list-txt2{
	color:#000;
	font-size:26px;
	line-height:32px;
	font-weight:bold;
	margin-top:5px;
	}
.s1-list-txt3{
	color:#000;
	font-size:18px;
	line-height:26px;
	margin-top:8px;
	}	
	
/*========Section-2========*/
.sec2{
    float:left;
    width:100%;
	background:url(../images/s2-bg.jpg) no-repeat center top;
	background-size:cover;
	padding:65px 0;
	}	
	
.s2-list{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:space-between;
	width:100%;
	max-width:830px;
	width:100%;	
	margin:20px auto 0;
	}
.s2-list-bx{
	width:17%;
	margin-top:20px;
	}
.s2-list-bx-inr{
	float:left;
	width:100%;
	color:#000;
	font-size:16px;
	line-height:20px;
	font-weight:500;
	background:#fff;
	border-radius:10px;
	padding:25px 10px;
	}
.s2-list-icn{
	display:block;
	margin:0 auto 10px;
	width:65px;
	}	
.s2-list-bx-inr:hover{
	color:#fff;
	background:#04d36f;
	transform:scale(1.01);
	}
.s2-list-bx-inr:hover .s2-list-icn{
    filter:invert(1) brightness(20);
    -webkit-filter:invert(1) brightness(20);
	}

/*========Section-3========*/
.sec3{
	float:left;
	width:100%;
	padding:65px 0;
	}
.s3-contnt{
	display:inline-block;
	vertical-align:middle;
	max-width:1090px;
	width:100%;	
	}
.s3-left{
	float:left;
	width:43%;
	text-align:left;
	}
.s3-rgt{
	float:right;
	width:51%;
	text-align:left;
	}
	
/*=====footer-Section======*/
.footer-sec{
	float:left;
    width:100%;
	background:#f6f8fe;
	padding:50px 0 40px;
	}
.ftr-logo{
	display:block;
	margin:0 auto 20px;
	}
.note-txt{
	color:#585858;
	font-size:14px;
	line-height:22px;
	background:#fff;
	border:1px solid #d7d7d7;
	padding:15px 55px;
	margin-top:20px;
	}
.ftr-txt{
	color:#000;
	font-size:14px;
	line-height:22px;
	}
.ftr-txt.medium{font-weight:500;}
.ftr-txt a{padding:0 5px;}	
	
/*========footer==========*/
.footer{
    float:left;
    width:100%;
	background:#fff;
	padding:25px 0;
	}
	
/*-----------------------
MEDIA-QUERY
------------------------*/
.show-mob, .show-tab{display:none;}

@media only screen and (max-width: 1200px){
.container{width:1004px;}

.commn-hdg{font-size:45px; line-height:55px;}
ul.s1-list li{padding-left:60px;margin-top:25px;}

}

@media only screen and (max-width:1021px){	
.container{width:750px;}
.show-tab{ display:block;}
.show-desk{ display:none;}

.commn-hdg{font-size:35px; line-height:43px;}
.commn-para{font-size:17px; line-height:25px;}
.btn-bx{margin-top:20px;}

.top-fix-bar{margin-bottom:65px;}
.header{height:65px; margin-top:-65px; top:65px;}
a.nav-btn{line-height:38px;margin-top:12px;}

.bnr-sec{padding:40px 0 110px;}
.bnr-hdg{font-size:40px; line-height:50px;}
.bnr-para{font-size:17px; line-height:25px; margin-top:10px;}
.bnr-btm-bx{padding:25px 20px 30px;}
.bnr-btm-list-bx{width:16%;}
.bnr-btm-list-inr{font-size:15px; line-height:19px; padding:20px 10px;}
.bnr-btm-list-icn{width:70px;}

.sec1{padding:50px 0 40px;}
.sec1:before{top:18px; height:30px;}
.s1-left{width:40%;}
.s1-rgt{width:56%;}
ul.s1-list li{padding-left:45px; margin-top:20px;}
ul.s1-list li:first-child{margin-top:0;}
.s1-list-txt2{font-size:21px;}
.s1-list-txt3{font-size:17px; line-height:25px;}

.sec2{padding:40px 0;}
.s2-list{margin:15px auto 0;}
.s2-list-bx{width:18%; margin-top:15px;}

.sec3{padding:40px 0;}
.s3-left{width:100%; text-align:center;}
.s3-rgt{width:100%; text-align:center; margin-top:10px;}

.footer-sec{padding:40px 0;}
.ftr-txt{font-size:13px; line-height:23px;}
.ftr-txt a{padding:0 0;}
.note-txt{padding:15px 15px;}

}

@media only screen and (max-width:767px){
.container{ max-width:600px; width:100%; padding:0px 15px; box-sizing:border-box;}
.show-mob{ display:block;}
.hide-mob{ display:none;}

.commn-hdg{font-size:26px; line-height:36px;}
.commn-para{font-size:16px; line-height:24px; letter-spacing:0.5px; margin-top:15px;}
.btn-bx{margin-top:20px;}
.commn-btn{font-size:22px; line-height:24px; text-shadow:0 1px #52b887; padding:18px 0;}
.btn-arw{margin:-3px 0 0 16px; width:18px;}

.top-fix-bar{margin-bottom:55px;}
.header{height:55px; margin-top:-55px; top:55px;}
.logo{margin-top:16px; width:145px;}
a.nav-btn{width:155px; font-size:14px; line-height:40px;margin-top:8px; text-shadow:0 1px #52b887;}

.bnr-sec{padding:20px 0 95px; background-size:cover;}
.bnr-hdg{font-size:30px; line-height:34px; letter-spacing:1px;}
.bnr-para{font-size:16px; line-height:24px; letter-spacing:0.3px;}
.bnr-btm-bx{padding:20px 15px 25px;}
.bnr-btm-hdg{font-size:17px; line-height:25px;}
.bnr-btm-list{margin-top:5px;}
.bnr-btm-list-bx{width:32%; margin-top:10px;}	
.bnr-btm-list-inr{font-size:13px; line-height:17px; padding:15px 10px;}
.bnr-btm-list-icn{width:60px; margin: 0 auto 8px;}

.sec1{padding:55px 0 35px;}
.sec1:before{top:15px; height:40px;}
.s1-contnt{margin-top:0;}
.s1-rgt{width:100%;}
.s1-img{margin:20px auto 25px;}
ul.s1-list li{padding-left:40px;}
ul.s1-list lii:after{background-size:22px; left:0px;}
ul.s1-list li:before{left:14px;}
.s1-list-txt1{font-size:16px;}
.s1-list-txt2{font-size:19px;}
.s1-list-txt3{font-size:16px; line-height:24px; letter-spacing: 0.3px;}

.sec2{padding:30px 0 40px;}
.s2-list{margin:10px auto 0;}
.s2-list-bx{width:32%; height:120px;}
.s2-list-bx-inr{font-size:14px; line-height:14px; padding:20px 5px;}
.s2-list-icn{width:65px;}

.sec3{padding:30px 0 35px;}
.s3-rgt{margin-top:0;}

.footer-sec{padding:35px 0;}
.ftr-logo{width:135px;}
.ftr-txt a{padding:0 3px;}
.ftr-txt.margin-top{margin-top:10px;}
.ftr-txt.line-height{line-height:28px;}
.footer{padding:20px 0;}
.ftr-txt.fl, .ftr-txt.fr{float:none;}

}


/*========================
popup
==========================*/
.popup-Box{
	position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    overflow: auto;
	z-index:999;	
	}
.pop-content{
	position:absolute;
	left:0;
	width:100%;
    padding: 30px 0;
	top:calc(50% - 300px);
	}		
.pop-container{
	max-width:860px;
    margin:0 auto;
    padding:0 15px;
	}	
.pop-outerBox{
	display:inline-block;
	vertical-align:middle;
	width:600px;
	position:relative;
	background:#fff;
	border-radius: 6px;
	background-size:cover;
	padding:30px 65px 40px;
	}
.pop-close{
	position: absolute;
    z-index: 99;
    right: -6px;
    top: -6px;
    font-size: 15px;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
	background:#333;
    width: 25px;
    height: 25px;
	line-height:22px;
    text-align: center;
    cursor: pointer;
	}
.popup-frm-bx{
	display:inline-block;
    vertical-align:top;
    width:100%;
	}
.popup-frm-hdg{
    color:#000;
    font-size:28px;
    line-height:36px;
    font-weight:bold;
	}
.popup-sub-txt{
    color:#000;
    font-size:28px;
    line-height:36px;
	font-weight:bold;
    margin-top:2px;
	}
.popup-frm-sec{
	display:inline-block;
    vertical-align:middle;
    width:100%;
	margin-top:15px;
	}
.frmfield{
	float:left;
    width:100%;
    border-radius:7px;
	margin:8px 0;
	}
.input-fld{
    float:left;
    width:100%;
    height:65px;
	color:#000;
    font-size:20px;
    background:#fff;
	text-align:left;
    border-radius:5px;
	font-family: 'Inter';
	border:1px solid #a1a1a1;
	font-weight:normal;
	padding:0 15px;
    outline:none;
    -webkit-appearance:none;
	}
.input-fld:focus{
	border-color:#0da153;
	outline:0;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(13,161,83,0.6);
	}
textarea{
	float:left;
    width:100%;
	color:#000;
    font-size:20px;
	line-height:30px;
    text-align:left;
	border-radius:5px;
	font-family: 'Inter';
	border:1px solid #a1a1a1;
	resize:none;
	padding:10px 15px 10px;
	min-height:100px;
	margin-top:10px;
	}
textarea:focus{
	border-color:#0da153;
	outline:0;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(13,161,83,0.6);
	}

.popup-btn{
    display: inline-block;
    vertical-align: middle;
    width:100%;
    height:75px;
    color:#fff;
    font-size:29px;
	line-height:76px;
    background:#04d36f;
    text-align:center;
	font-family: 'Inter';
	font-weight:600;
    margin-top:22px;
    position:relative;
	-webkit-appearance:none;
	border:none;
	cursor:pointer;
	border-radius: 6px;
	}
.popup-btn img{
	display:inline-block;
	vertical-align:middle;
	margin:-2px 0 0 12px;
	}
	
.thnk-row{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
	width:100%;
	min-height:480px;
	}	
.popup-thanks-bx{
	width:100%;
	}
.thnk-row-txt1{
	color:#000;
    font-size:38px;
	line-height:48px;
	font-weight:bold;	
	}
.thnk-row-txt2{
	color:#000;
    font-size:17px;
	line-height:25px;
	margin-top:10px;	
	}

@media only screen and (max-width:1021px){
.hide-tab{display:none;}
.pop-container{max-width:600px;}
.thnk-row-txt1{font-size:35px; line-height:41px;}

}

@media only screen and (max-width:767px){
.container{ max-width:600px; width:100%; padding:0px 15px; box-sizing:border-box;}
.show-mob{ display:block;}
.hide-mob{ display:none;}

.pop-content{padding:10px 0;}
.pop-container{margin:0;}
.pop-outerBox{width:345px; padding:16px 20px 25px;}
.popup-frm-sec{margin-top:10px;}
.popup-frm-hdg{font-size:20px; line-height:26px;}
.popup-sub-txt{font-size:19px; line-height:27px;}
.frmfield{margin:6px 0;}
.input-fld{height:55px; font-size:18px; padding:0 15px;}
textarea{font-size:18px; min-height:82px; margin-top:6px;}
.popup-btn{height:58px; line-height:58px; font-size:20px; margin-top:12px;}
.popup-btn img{margin:-4px -5px 0 10px; width:17px;}
.thnk-row{min-height:350px;}
.thnk-row-txt1 {font-size:26px; line-height:36px;}
.thnk-row-txt2{font-size:16px; line-height:26px; margin-top:8px;}

}



/*CSS FOR MODAL*/
#app_common_modal,
#error_handler_overlay{position:fixed;top:0;left:0;padding:0;margin:0;width:100%;height:100%;z-index:2147483647;background:#333;background:rgba(255, 255, 255, .8);display:none;overflow-x:hidden;-webkit-overflow-scrolling:touch}
#app_common_modal .app_modal_body,
#error_handler_overlay .error_handler_body{max-width:600px;-webkit-background-clip:padding-box;font-family:Verdana, Geneva, sans-serif;box-sizing:border-box;outline:0}
#error_handler_overlay .error_handler_body{margin:100px auto;width:95%;padding:20px;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, .2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, .5);box-shadow:0 3px 9px rgba(0, 0, 0, .5);font-size:14px;line-height:1.42857143;color:#333;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}
#app_common_modal_close,
#error_handler_overlay_close{position:absolute;right:-10px;top:-10px;color:#FFF;background-color:#333;border:2px solid #FFF;border-radius:50%;width:30px;height:30px;text-align:center;cursor:pointer;text-decoration:none;font-weight:700;line-height:26px;padding:0;margin:0}
#app_common_modal .app_modal_body{margin:100px auto;min-width:inherit;width:95%;min-height:400px;padding:1.5%;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, .2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, .5);box-shadow:0 3px 9px rgba(0, 0, 0, .5);font-size:14px;line-height:1.42857143;color:#333;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box}
#app_common_modal .app_modal_body iframe{min-height:400px;width:100%;border:1px solid #d5d6ef}
.exitpop-content{position:fixed;height:400px;width:708px;margin:-200px 0 0 -354px;top:50%;left:50%;text-align:left;padding:0;border:none;z-index:2147483647}
.exitpopup-overlay{background:rgba(0, 0, 0, .6);height:100%;left:0;position:fixed;top:0;width:100%;z-index:2147483647;display:none}
.exitpop-content img{display:block;margin:0 auto;position:relative;text-align:center;max-width:100%;height:auto}
.exitpop-discountbar{background-color:red;border-bottom:4px dashed #fff;color:#fff;font-family:Arial, Helvetica, sans-serif;font-size:15px;font-weight:700;height:50px;line-height:50px;position:fixed;text-align:center;top:0;width:100%;z-index:9999;display:none}
.app-load-spinner{display:none;position:fixed;top:0;bottom:0;left:0;right:0;width:100px;height:100px;margin:auto;background-color:#333;border-radius:100%}
#loading-indicator::after,
#loading-indicator::before{box-sizing:border-box;left:50%;position:absolute;top:50%}
.all-card-types li{float:left;margin-right:20px}
#loading-indicator{background-color:rgba(0, 0, 0, .5);bottom:0;box-sizing:border-box;font-size:1px;height:100%;left:0;margin:0!important;padding:0!important;position:fixed;right:0;top:0;width:100%;z-index:2147483646}
#loading-indicator::before{background:url(../images/loading.gif) center center no-repeat rgba(0, 0, 0, 0);content:"";height:70px;margin-left:-35px;margin-top:-70px;width:70px;z-index:2}
#loading-indicator::after{background:#fff;border-radius:5px;color:#000;content:"Processing, one moment please... ";font-family:arial;font-size:17px;height:110px;line-height:98px;margin-left:-150px;margin-top:-75px;padding-top:35px;text-align:center;width:300px;z-index:1}

@-webkit-keyframes scaleout{
0%{-webkit-transform:scale(0)}
100%{-webkit-transform:scale(1);opacity:0}
}

@keyframes scaleout{
0%{transform:scale(0);-webkit-transform:scale(0)}
100%{transform:scale(1);-webkit-transform:scale(1);opacity:0}
}

@media screen and (max-device-width:767px) and (orientation:landscape){#app_common_modal .app_modal_body, #error_handler_overlay .error_handler_body{margin:20px auto;}
#app_common_modal .app_modal_body iframe{min-height:360px;}
}

@media(max-device-width:767px){#app_common_modal .app_modal_body{margin:2% auto}}