/*==============landscape modal css=================*/
#app_common_modal, #error_handler_overlay {
	overflow: -moz-scrollbars-none;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#app_common_modal::-webkit-scrollbar, #error_handler_overlay::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}
#app_common_modal_close, #error_handler_overlay_close {
	display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
#app_common_modal .app_modal_body {
    min-height: auto!important;
    margin: auto !important;
    top: 50%;
    transform: translateY(-50%);
}
#error_handler_overlay .error_handler_body ul {
	margin: 0;
	padding: 0;
}
.error_handler_body ul li{text-align: left !important;}


#app_common_modal .app_modal_body {
  margin: 60px auto;
}


@media screen and (max-width:1200px) and (orientation: landscape) {
	#app_common_modal .app_modal_body {
		margin: 20px auto;
		min-height: 250px;
	}
	#app_common_modal .app_modal_body iframe {
		
		min-height: 230px;
	}
	#error_handler_overlay .error_handler_body {
		margin: 20px auto;
		padding: 14px;
		font-size: 12px;
	}
}

@media screen and (max-width: 895px) and (orientation: landscape) {
	#app_common_modal .app_modal_body {
		margin: 20px auto;
		min-height: 290px;
	}
	#app_common_modal .app_modal_body iframe {
		min-height: 260px;
	}
	#error_handler_overlay .error_handler_body {
		margin: 20px auto;
		padding: 14px;
		font-size: 12px;
	}
}
@media screen and (max-width: 374px) and (orientation: portrait) {
	#app_common_modal .app_modal_body {
		margin: 50px auto;
	}
	#error_handler_overlay .error_handler_body {
		margin: 50px auto;
	}
}

/*==============Two scrollbar in modal=================*/
#app_common_modal, #error_handler_overlay{
        overflow-y: hidden;
}

@media screen and (max-width:767px) {
    #app_common_modal_close, #error_handler_overlay_close {
        line-height: 1.8;
    }
}
/* =============select field design fixing for iphone============== */
/*.select-field{position: relative;}
.select-field select{
position: relative;    -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.select-field::after {
    content: "";
    background: url(../images/select-arrow.png) no-repeat;
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    position: absolute;
    right: 10px;
    top: 45%;
    transform: translateY(-50%);
}*/

/*==============Select drop down icon and green tick overlap issue=================*/

/*select.no-error ,select.has-error {background-position: 97% 50% !important;}
@media only screen and (max-width:1024px){
 select.no-error ,select.has-error {background-position: 96% 50% !important;}  
}
@media only screen and (max-width:640px) {
 select.no-error ,select.has-error {background-position: 92% 50% !important;}   
}


*/