* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;  
  scrollbar-color: #9b9b9b  #18181b !important;
  scrollbar-width: thin!important;
}
::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}
::-webkit-scrollbar-track {
  background: transparent !important;
}
::-webkit-scrollbar-thumb {
  background: #9b9b9b  !important;
  border-radius: 8px !important;
}
::-webkit-scrollbar-thumb:hover {
  background: #9b9b9b  !important;
  cursor: pointer;
}
/********************
Error Divs
*********************/

.input_error_div{
  color: red;
  margin-top: -0.5em;
}

/********************
Numerical Inputs
*********************/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/************************************************
Pop Up
*************************************************/

@media(min-width: 500px){
  .e_popup_heading{
      color: #000000;
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 25px;
      letter-spacing: 3px;
  }
}

@media(max-width: 499px){
  .e_popup_heading{
      font-size: 7.5vw;
      font-weight: 700;
      color: #000000;
      margin-bottom: 0.7em;
      letter-spacing: 3px;
  }
}

.e_buy_popup1_day_option_main{
  width: 80%;
  line-height: 2.5em;
  font-size: 17px;
  letter-spacing: 2px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #000000;
  margin-bottom: 20px;
  cursor: pointer;
}

@media(max-width: 499px){
  .e_buy_popup1_day_option_main{
      font-size: 3.8vw;
  }
}

.e_buy_popup1_day_option_main:hover{
  background-color: #7f66ff;
  color: white;
  transform: scale(1.02);
  transition: .3s;
}

.e_buy_popup1_day_option_main_right_arrow{
  vertical-align: -10%;
}

.e_buy_popup1_day_option_main_date{
  font-size: 11.5px;
  display: inline-block;
}

@media(max-width: 499px){
  .e_buy_popup1_day_option_main_date{
      font-size: 11.5px;
      display: inline-block;
  }
}

@media(min-width: 500px){
  .e_ticket_buy_button{
      background-color: #ce3420;
      border: none;
      outline: none;
      border-radius: 8px;
      margin: 15px 0px;
      font-size: 16px;
      line-height: 2em;
      width: 7em;
      color: white;
      margin-right: 4%;
  }
  .e_coupon_apply{
      background-color: rgba(206,52,32, 0.9);
      border: none;
      outline: none;
      border-radius: 8px;
      font-size: 16px;
      line-height: 1.9em;
      width: 80%;
      color: white;
  }
}

@media(max-width: 499px){
  .e_ticket_buy_button{
      background-color: #ce3420;
      border: none;
      outline: none;
      border-radius: 8px;
      margin: 15px 0px;
      font-size: 4vw;
      line-height: 2em;
      width: 7em;
      color: white;
      margin-right: 4%;
  }
  .e_coupon_apply{
      background-color: rgba(206,52,32, 0.9);
      border: none;
      outline: none;
      border-radius: 8px;
      font-size: 4vw;
      line-height: 1.9em;
      width: 80%;
      color: white;
  }
}

/*********
Overlay
*******/
.overlay {
	position: fixed; /* Sit on top of the page content */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5); /* Black background with opacity */
	z-index: 9999999; /* Specify a stack order in case you're using a different order for other elements */
}

#overlay-filler{
	width: 100%;
	height: 40vh;
}

#overlay-filler2{
	width: 100%;
	height: 35vh;
}

@media(min-width: 601px){
  .alert-table{
    height: 250px;
    width: 400px;
    background: #ffffff;
	border-collapse: collapse;
	border-radius: 10px;
  }
}

@media(max-width: 600px){
  .alert-table{
    height: 220px;
    width: 85vw;
    background: #ffffff;
	border-collapse: collapse;
	border-radius: 10px;
  }
}

.alert-table button{
	padding: 5px 40px;
	background: #0a2642;
	margin-bottom: 10px;
	color: #ffffff;
	border: 1px #ffffff solid;
}

.alert-table button:hover{
  transform: scale(1.1);
}

.loading span{
	width: 20px;
	height: 20px;
	margin: 0 5px;
	background: #ffffff;
	border-radius: 50%;
	display: inline-block;
	animation-name: dots;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.loading span:nth-child(2){
	background-color: #ffffff;
	animation-delay: 0.4s;
}

.loading span:nth-child(3){
	background-color: #ffffff;
	animation-delay: 0.8s;
}

.loading2 span{
	width: 20px;
	height: 20px;
	margin: 0 5px;
	background: #000000;
	border-radius: 50%;
	display: inline-block;
	animation-name: dots;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

.loading2 span:nth-child(2){
	background-color: #000000;
	animation-delay: 0.4s;
}

.loading2 span:nth-child(3){
	background-color: #000000;
	animation-delay: 0.8s;
}

@keyframes dots{
	50%{
		opacity: 0;
		transform: scale(0.7) translateY(10px);
	}
}

/********************
Copied to Clipboard PopUp
*********************/

.overlay2 {	
	position: fixed;
	z-index: 9999999; /* Specify a stack order in case you're using a different order for other elements */
}

@media(min-width: 601px){
  .toast_init{
    color: white;
    background-color: rgb(99, 93, 93);
    font-size: 17px;
    line-height: 2em;
    width: 9em;
    border-radius: 4px;
	position: fixed;
	bottom: 20vh;
	left: 50vw;
	margin-left: -4.8em;
	z-index: 999999;
	opacity: 1;
  }
}

@media(max-width: 600px){
  .toast_init{
    color: white;
    background-color: rgb(99, 93, 93);
    font-size: 3.8vw;
    line-height: 2em;
    width: 9em;
    border-radius: 4px;
	position: fixed;
	bottom: 20vh;
	left: 50vw;
	margin-left: -4.2em;
	z-index: 999999;
	opacity: 1;
  }
}
/*************
Body and General Elements
***************/

*
{
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

body{
    font-family: 'IBM Plex Sans Arabic', sans-serif;
	font-size: 14px;
    font-weight: 400;
    margin: 0px;
    min-width: 100%;
    min-height: -webkit-fill-available;
	display: flex;
    flex-direction: column;
}

#body{
    background-color: #ffffff;
}
	/****************************
	Body Scrollbar
	*****************************/
		/* width */
		#body::-webkit-scrollbar {
			width: 6px;
			margin-top: 15px;
		}
		
		/* Track */
		#body::-webkit-scrollbar-track {
			background: transparent;
		}
		
		/* Handle */
		#body::-webkit-scrollbar-thumb {
			background: #888;
			border-radius: 8px;
		}
		
		/* Handle on hover */
		#body::-webkit-scrollbar-thumb:hover {
			background: #555;
			cursor: pointer;
		}

html{
    height: -webkit-fill-available;
}

table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 0px;
}

div{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul{
	list-style: none;
	margin-bottom: 0px;
}

p{
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    color: #68727c;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

p a{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

p:last-of-type{
	margin-bottom: 0;
}

a{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

a, a:hover, a:visited, a:active, a:link{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

h1{font-size: 60px;}
h2{font-size: 48px;}
h3{font-size: 36px;}
h4{font-size: 24px;}
h5{font-size: 18px;}

h1, h2, h3, h4, h5, h6{
	font-family: 'IBM Plex Sans Arabic', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
	line-height: 1.2;
	font-weight: 700;
}

section{
	display: block;
	position: relative;
	box-sizing: border-box;
}
/******************
Header
*******************/

.com_header_top{
    width: 100%;
    height: 70px;
    background-color: #0d0d0d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    border-bottom: 2px solid #7f66ff;
    padding-left: 11px;
    padding-right: 16px;
}

.com_header_top_landing{
    width: 100%;
    height: 85px;
    padding-top: 7px;
    background-color: #0d0d0d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    border-bottom: 2px solid #7f66ff;
    border-radius: 0px 0px 25px 25px;
    padding-left: 11px;
    padding-right: 16px;
}

.com_header_top_main_table{
    width: 85%;
    height: 70px;
}

@media(max-width: 499px){
    .com_header_top{
        width: 100%;
        height: 65px;
        background-color: #0d0d0d;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 3;
        border-bottom: 2px solid #7f66ff;
    }
    .com_header_top_landing{
        width: 100%;
        height: 85px;
        padding-top: 10px;
        background-color: #0d0d0d;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 3;
        border-bottom: 2px solid #7f66ff;
    }
    .com_header_top_main_table{
        width: 95%;
        height: 65px;
    }
}

/***********************
Header Login Button
************************/

.com_header_top_login_button{
    background-color: rgba(128,128,128, 0.2);
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 550;
    padding: 7px 25px 7px;
    border-radius: 10px;
    border: 0px solid whitesmoke;
}

@media(max-width: 499px){
    .com_header_top_login_button{
        font-size: 17px;
        font-weight: 550;
    }
}

.com_header_top_login_button:active{
    border: none;
    outline: none;
}

.com_header_top_login_button:focus{
    border: none;
    outline: none;
}

.com_header_top_login_button:hover{
    transform: scale(1.1);
    outline: none;
    border: none;
}

@media(max-width: 499px){
    .com_header_top_login_button:hover{
        transform: scale(1.05);
        outline: none;
        border: none;
    }
}

/*********************
Header Logo Image
**********************/

@media(min-width: 500px){
    .com_header_top_logo img{
        height: 50px;
    }
    .com_header_top_logo_landing img{
        height: 56px;
    }
}

@media(max-width: 499px){
    .com_header_top_logo img{
        height: 47px;
    }
    .com_header_top_logo_landing img{
        height: 47px;
    }
}

/***********************
Header Dropdown Menu
************************/

.header_menu_dropdown_button {
    color: white;
}

.header_menu_dropdown {
    position: relative;
    display: inline-block;
}

.header_menu_dropdown_content {
    display: none;
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
}

.header_menu_dropdown_content a {
    color: black;
    width: 100%;
    padding-left: 10px;
    font-size: 15px;
    line-height: 3.5em;
    text-decoration: none;
    display: block;
    background-color: #ffffff;
}

.header_menu_dropdown_content a:hover {background-color: #ddd;}

.header_menu_dropdown:hover .header_menu_dropdown_content {
    display: block;
}

.header_menu_dropdown:hover .header_menu_dropdown_button {
    transform: scale(1.05);
    cursor: pointer;
}

.header_menu_dropdown_content_empty{
    color: transparent;
    line-height: 10px;
    background-color: transparent;
}

/*********************
Empty Container
**********************/

@media(min-width: 500px){
    .page_empty_container{
        height: 70px;
    }
    .page_empty_container_landing{
        height: 100px;
    }
}

@media(max-width: 499px){
    .page_empty_container{
        height: 65px;
    }
    .page_empty_container_landing{
        height: 85px;
    }
}

/**************************
Main Structure
***************************/

@media(min-width: 900px){
    .footer_main_div{
        width: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
        background-color: black;
        border-top: 1px solid #3a3a3a;
    }
}

@media(max-width: 899px){
    .footer_main_div{
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: black;
        border-top: 1px solid #3a3a3a;
    }
}

/**********************
Footer Main Flex
***********************/

@media(min-width: 900px){
    .footer_main{
        width: 70%;
        display: flex;
    }
}

@media(max-width: 899px){
    .footer_main{
        width: 80%;

    }
}

.footer_main_div{
    scroll-snap-align: start;
}

/**********************
Left Flex
***********************/

.footer_left_flex{
    flex: 3;
    text-align: left;
    font-size: 16.5px;
    color: rgb(200, 195, 188);
}  

@media(max-width: 899px){
    .footer_left_flex{
        font-size: 15.5px;
    }
}

@media(max-width: 499px){
    .footer_left_flex{
        font-size: 14.5px;
    }
}

.footer_left_flex a{
    color: rgb(200, 195, 188);
    line-height: 2em;
}

.footer_left_flex a:hover{
    text-decoration: underline;
    text-decoration-color: white;
}

/***********************
Left Flex Elements
************************/

@media(min-width: 900px){
    .footer_left_flex_element1{
        height: 137px;
    }
    .footer_left_flex_element2{
        display: none;
        visibility: hidden;
    }
}

@media(max-width: 899px){
    .footer_left_flex_element2{
        margin: 25px 0px;
    }
}


/***********************
Right Flex
************************/

.footer_right_flex{
    flex: 7;
    color: rgb(200, 195, 188);
    text-align: right;
    font-size: 16.5px;
}

@media(max-width: 899px){
    .footer_right_flex{
        font-size: 15.5px;
    }
}

@media(max-width: 499px){
    .footer_right_flex{
        font-size: 14.5px;
    }
}

.footer_right_flex a{
    color: rgb(200, 195, 188);
    line-height: 2em;
}

.footer_right_flex a:hover{
    text-decoration: underline;
    text-decoration-color: white;
}

/************************
Right Flex Elements
*************************/

@media(max-width: 899px){
    .footer_right_flex_element1{
        visibility: hidden;
        display: none;
    }
}




/***********************
Main Overlay
************************/

.popups_main_overlay{
    position: fixed; /* Sit on top of the page content */
	width: 100%; /* Full width (cover the whole page) */
	height: 100vh; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5); /* Black background with opacity */
	z-index: 100; /* Specify a stack order in case you're using a different order for other elements */
}

.popups_main_box{
    text-align: center;
    height: 100vh;
    width: 100%;
}

.popups_main_table{
    height: 100vh;
    width: 100%;
}

@media(min-width: 500px){
    .popups_main_white_box{
        width: 40%;
        min-width: 380px;
        background-color: white;
        border-radius: 5%;
        overflow-x: hidden;
    }
}

@media(max-width: 499px){
    .popups_main_white_box{
        width: 90%;
        min-width: 90vw;
        background-color: white;
        border-radius: 5%;
        overflow-x: hidden;
        max-height: 90vh;
        overflow-y: auto;
    }
}
/**********************
Login Main Box
***********************/

.login_main_box{
    width: 100%;
}

/**************************
Top Cross Option
***************************/

.login_cross_option{
    margin-right: 5%;
}

.login_cross_option i{
    color: black;
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width: 499px){
    .login_cross_option i{
        color: black;
        font-size: 5.3vw;
        margin-top: 10px;
    }
}

.login_cross_option i:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/**************************
Login Heading
***************************/

@media(min-width: 500px){
    .login_heading{
        color: black;
        font-size: 35px;
        font-weight: 700;
        margin-bottom: 25px;
    }
}

@media(max-width: 499px){
    .login_heading{
        font-size: 10vw;
        font-weight: 700;
        color: black;
        margin-bottom: 0.7em;
    }
}

/******************************
Mobile/Email Input
*******************************/

.login_mobile_input_main{
    width: 90%;
}

@media(min-width: 500px){
    .login_mobile_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 35px;
    }
    .login_mobile_input_main input[type="password"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 35px;
    }
}

@media(max-width: 499px){
    .login_mobile_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 35px;
    }
    .login_mobile_input_main input[type="password"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 35px;
    }
}

.login_mobile_input_main input[type="text"]:focus{
    border-right: 2px solid blue;
}
.login_mobile_input_main input[type="password"]:focus{
    border-right: 2px solid blue;
}

/***************************
Request OTP Button
****************************/

@media(min-width: 500px){
    .login_request_otp_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #3b5391;
        color: #fff;
        font-size: 20px;
        border-radius: 20px;
    }
}

@media(max-width: 499px){
    .login_request_otp_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #3b5391;
        color: #fff;
        font-size: 4.5vw;
        border-radius: 20px;
    }
}

.login_request_otp_button:hover{
    transform: scale(1.02);
}

.login_request_otp_button:focus{
    border: none;
    outline: none;
}

/*****************************
Enter OTP Heading
******************************/

@media(min-width: 500px){
    .login_enter_otp_heading{
        margin-top: 40px;
        margin-left: 5%;
        color: black;
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 25px;
        /*margin-top: 20px;*/
    }
}

@media(max-width: 499px){
    .login_enter_otp_heading{
        margin-left: 5%;
        color: black;
        font-size: 5.2vw;
        font-weight: bold;
        margin-bottom: 1.25em;
        margin-top: 2em;
    }
}

/***********************
Go Back Left Arrow Option
************************/

@media(min-width: 500px){
    .login_second_go_back_option{
        display: inline;
        margin-right: 8px;
        font-size: 18px;
        color: #000000;
    }
    .login_second_go_back_option i{
        vertical-align: 6%;
    }
    .login_second_go_back_option i:hover{
        cursor: pointer;
        transform: scale(1.2);
    }
}

@media(max-width: 499px){
    .login_second_go_back_option{
        display: inline;
        margin-right: 8px;
        font-size: 4vw;
    }
    .login_second_go_back_option i{
        vertical-align: 8%;
    }
    .login_second_go_back_option i:hover{
        cursor: pointer;
        transform: scale(1.2);
    }
}

/************************
Login OTP Text (Sent To)
*************************/

@media(min-width: 500px){
    .login_otp_sent_to_text{
        font-size: 15px;
        color: black;
        margin-bottom: 30px;
    }
    .login_otp_sent_to_number{
        font-size: 15px;
        color: black;
        font-weight: bold;
        display: inline;
        margin-bottom: 15px;
    }
    .login_otp_sent_to_email{
        font-size: 15px;
		font-weight: bold;
		color: #0a2642;
        padding: 0% 5%;
        word-break: break-all;
    }
}

@media(max-width: 499px){
    .login_otp_sent_to_text{
        font-size: 4vw;
        color: black;
        margin-bottom: 25px;
    }
    .login_otp_sent_to_number{
        font-size: 4vw;
        color: black;
        font-weight: bold;
        display: inline;
        margin-bottom: 15px;
    } 
    .login_otp_sent_to_email{
        font-size: 3.5vw;
		font-weight: bold;
		color: #0a2642;
        padding: 0% 5%;
        word-break: break-all;
    }
}

/******************************
Login OTP Input
*******************************/

.login_otp_input_main{
    padding-right: 10px;
}

@media(min-width: 500px){
    .login_otp_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }
    .login_otp_input_main input[type="number"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
        -moz-appearance: textfield;
    }
}

@media(max-width: 499px){
    .login_otp_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 0.6em;
        text-align: center;
    }
    .login_otp_input_main input[type="number"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 0.6em;
        text-align: center;
        -moz-appearance: textfield;
    }
}

.login_otp_input_main input[type="text"]:focus{
    border-bottom: 2px solid blue;
}
.login_otp_input_main input[type="number"]:focus{
    border-bottom: 2px solid blue;
}

/*****************************
Resend OTP DIV
******************************/

@media(min-width: 500px){
    .login_resend_otp_button{
        background-color: transparent;
        border: none;
        outline: none;
        color: #000000;
        font-size: 15px;
        cursor: pointer;
    }
    .login_resend_otp_timer{
        color: black;
        font-size: 15px;
    }
}

@media(max-width: 499px){
    .login_resend_otp_button{
        background-color: transparent;
        border: none;
        outline: none;
        color: #000000;
        font-size: 14px;
        cursor: pointer;
    }
    .login_resend_otp_timer{
        color: black;
        font-size: 14.5px;
    }
}

.login_resend_otp_button:hover{
    transform: scale(1.08);
}

.login_resend_otp_button:focus{
    outline: none;
    border: none;
}

.login_resend_otp_button:active{
    outline: none;
    border: none;
}



/*************************
Login Button
**************************/

@media(min-width: 500px){
    .login_final_login_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #3b5391;
        color: #fff;
        font-size: 20px;
        border-radius: 20px;
        margin-top: 15px;
        margin-bottom: 20px;
    }
}

@media(max-width: 499px){
    .login_final_login_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #3b5391;
        color: #fff;
        font-size: 4.5vw;
        border-radius: 20px;
        margin-top: 0.6em;
        margin-bottom: 1.5em;
    }
}

.login_final_login_button:hover{
    transform: scale(1.02);
}

.login_final_login_button:focus{
    outline: none;
    border: none;
}

/************************
Create New Account Button
*************************/

@media(min-width: 500px){
    .login_create_new_button{
        border: none;
        outline: none;
        background-color: transparent;
        color: black;
        font-size: 15px;
        text-decoration: underline;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .login_create_new_button{
        border: none;
        outline: none;
        background-color: transparent;
        color: black;
        font-size: 4.4vw;
        text-decoration: underline;
        margin-bottom: 15px;
    }
}

.login_create_new_button:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.login_create_new_button:focus{
    border: none;
    outline: none;
}

/**************************
Error Divs
***************************/

.login_input_error_div{
    color: red;
    font-size: 14px;
    margin-top: -2em;
    margin-bottom: 25px;
    padding: 0% 5%;
}
.login_input_error_div2{
    color: red;
    font-size: 14px;
    margin-top: -1em;
    margin-bottom: 10px;
    padding: 0% 5%;
}

@media(max-width: 499px){
    .login_input_error_div{
        font-size: 3.6vw;
        margin-top: -2.1em;
    }
    .login_input_error_div2{
        font-size: 3.6vw;
        margin-top: -0.7em;
    }
}

/***********************
Final Quote Popup
************************/

.final_quote_popup_top_text{
    width: 90%;
    font-size: 20px;
    margin: 20px 0px;
}

.final_quote_popup_top_text2{
    font-size: 17px;
    width: 90%;
}
/*******************
SignUp Main Box
********************/

.signup_main_box{
    width: 100%;
    overflow-x: hidden;
}

/*************************************************************
SignUp First Slide
**************************************************************/

/******************
Cross Option
*******************/

.signup_cross_option{
    margin-right: 5%;
}

.signup_cross_option i{
    color: black;
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width: 499px){
    .signup_cross_option i{
        color: black;
        font-size: 5.3vw;
        margin-top: 10px;
    }
}

.signup_cross_option i:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/****************
Sign Up Heading
*****************/

@media(min-width: 500px){
    .signup_heading{
        color: #0a2642;
        font-size: 35px;
        font-weight: 700;
        margin-bottom: 25px;
    }
}

@media(max-width: 499px){
    .signup_heading{
        font-size: 10vw;
        font-weight: 700;
        color: #0a2642;
        margin-bottom: 0.7em;
    }
}

/******************************
SignUp Name Input
*******************************/

.signup_name_input_main{
    width: 90%;
}

@media(min-width: 500px){
    .signup_name_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .signup_name_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 15px;
    }
}

.signup_name_input_main input[type="text"]:focus{
    border-right: 2px solid blue;
}

/************************
Mobile Input
*************************/

.signup_mobile_input_main{
    width: 90%;
}

@media(min-width: 500px){
    .signup_mobile_input input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
    }
    .signup_mobile_country_code{
        border: 1px solid #ccc;
        color: #ccc;
        margin-right: 10px;
        font-size: 20px;
        margin-bottom: 15px;
        border-radius: 5px;
        line-height: 2em;
        text-align: center;
    }
}

@media(max-width: 499px){
    .signup_mobile_input input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 15px;
    }
    .signup_mobile_country_code{
        border: 1px solid #ccc;
        color: #ccc;
        margin-right: 10px;
        font-size: 5vw;
        margin-bottom: 15px;
        border-radius: 5px;
        line-height: 2em;
        text-align: center;
    }
}

.signup_mobile_input input[type="text"]:focus{
    border-right: 2px solid blue;
}

/******************************
SignUp Email Input
*******************************/

.signup_email_input_main{
    width: 90%;
}

@media(min-width: 500px){
    .signup_email_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .signup_email_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 15px;
    }
}

.signup_email_input_main input[type="text"]:focus{
    border-right: 2px solid blue;
}


/******************************
SignUp With Email Button
*******************************/

.signup_signup_with_email_button_main{
    margin-right: 5%;
}

@media(min-width: 500px){
    .signup_signup_with_email_button{
        border: none;
        outline: none;
        background-color: transparent;
        color: black;
        font-size: 14.5px;
        text-decoration: underline;
    }
}

@media(max-width: 499px){
    .signup_signup_with_email_button{
        border: none;
        outline: none;
        background-color: transparent;
        color: black;
        font-size: 4vw;
        text-decoration: underline;
    }
}

.signup_signup_with_email_button:hover{
    transform: scale(1.05);
}

.signup_signup_with_email_button:focus{
    outline: none;
    border: none;
}

/*******************************
Signup with Mobile Button
********************************/

.signup_signup_with_mobile_button_main{
    margin-right: 5%;
}

@media(min-width: 500px){
    .signup_signup_with_mobile_button{
        border: none;
        outline: none;
        background-color: transparent;
        color: black;
        font-size: 14.5px;
        text-decoration: underline;
    }
}

@media(max-width: 499px){
    .signup_signup_with_mobile_button{
        border: none;
        outline: none;
        background-color: transparent;
        color: black;
        font-size: 4vw;
        text-decoration: underline;
    }
}

.signup_signup_with_mobile_button:hover{
    transform: scale(1.05);
}

.signup_signup_with_mobile_button:focus{
    outline: none;
    border: none;
}

/*****************************
State Dropdown Menu
******************************/

.signup_state_dropdown{
    position: relative;
	cursor: pointer;
	background-color: white;
    width: 90%;
}

@media(min-width: 500px){
    .signup_state_dropdown select{
        line-height: 2em;
		padding-left: 2%;
		font-size: 20px;
		width: 100%;
		border: 1px solid #ccc;
		border-radius: 5px;
		background-color: white;
		appearance: none;
		cursor: pointer;
        margin-top: 15px;
        margin-bottom: 8px;
    }
}

@media(max-width: 499px){
    .signup_state_dropdown select{
        line-height: 2em;
		padding-left: 2%;
		font-size: 5vw;
		width: 100%;
		border: 1px solid #ccc;
		border-radius: 5px;
		background-color: white;
		appearance: none;
		cursor: pointer;
        margin-top: 1em;
        margin-bottom: 0.3em;
    }
}

.signup_state_dropdown select:focus{
    border-right: 2px solid blue;
	outline: none;
}

.signup_state_dropdown select{
    color: grey;
    background-color: white;
}

/*********************************
Input Checkbox and Agreements Link
**********************************/

.signup_checkbox_input_main_table{
    margin-left: 5%;
    margin-right: 2%;
    margin-top: 12px;
}

@media(min-width: 500px){
    .signup_agreement_links{
        font-size: 15px;
    }
    .signup_agreement_links a{
        text-decoration: none;
        font-size: 15px;
    }
    .signup_checkbox_input_main input[type="checkbox"]{
        height: 17px;
        margin-top: -0.2em;
        cursor: pointer;
        width: 100%;
    }
}

@media(max-width: 499px){
    .signup_agreement_links{
        font-size: 4vw;
    }
    .signup_agreement_links a{
        text-decoration: none;
        font-size: 4vw;
    }
    .signup_checkbox_input_main input[type="checkbox"]{
        height: 4.2vw;
        margin-top: -0.37em;
        cursor: pointer;
        width: 100%;
    }
}

/****************************
Request OTP Button
*****************************/

@media(min-width: 500px){
    .signup_request_otp_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 20px;
        border-radius: 20px;
        margin-top: 12px;
        margin-bottom: 20px;
    }
}

@media(max-width: 499px){
    .signup_request_otp_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 4.5vw;
        border-radius: 20px;
        margin-top: 0.6em;
        margin-bottom: 1.3em;
    }
}

/*************************************************************
SignUp Second Slide
**************************************************************/

/*************************
Top Options
**************************/

.signup_second_cross_option{
    margin-right: 10%;
}

.signup_second_cross_option i{
    color: black;
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width: 499px){
    .signup_second_cross_option i{
        color: black;
        font-size: 5.3vw;
        margin-top: 10px;
    }
}

.signup_second_cross_option i:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/*******************************
Enter OTP Heading
********************************/

@media(min-width: 500px){
    .signup_second_enter_otp_heading{
        margin-left: 5%;
        color: #0a2642;
        font-size: 25px;
        font-weight: bold;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .signup_second_enter_otp_heading{
        margin-left: 5%;
        color: #0a2642;
        font-size: 5.2vw;
        font-weight: bold;
        margin-bottom: 0.5em;
    }
}

/***********************
Go Back Left Arrow Option
************************/

@media(min-width: 500px){
    .signup_second_go_back_option{
        display: inline;
        margin-right: 8px;
        font-size: 18px;
        color: #000000;
    }
    .signup_second_go_back_option i{
        vertical-align: 6%;
    }
    .signup_second_go_back_option i:hover{
        cursor: pointer;
        transform: scale(1.2);
    }
}

@media(max-width: 499px){
    .signup_second_go_back_option{
        display: inline;
        margin-right: 8px;
        font-size: 4vw;
    }
    .signup_second_go_back_option i{
        vertical-align: 8%;
    }
    .signup_second_go_back_option i:hover{
        cursor: pointer;
        transform: scale(1.2);
    }
}

/**********************
OTP Text
***********************/

@media(min-width: 500px){
	.signup_second_otp_text_main{
		color: #0a2642;
		font-size: 15px;
		font-weight: 400;
		text-align: center;
		display: inline;
	}
	
	.signup_second_otp_text_number{
		display: inline;
		font-size: 15px;
		font-weight: bold;
		color: #0a2642;
	}
    .signup_second_otp_text_main_div{
        margin-top: 20px;
    }
}

@media(max-width: 499px){
	.signup_second_otp_text_main{
		color: #0a2642;
		font-size: 4vw;
		font-weight: 400;
		text-align: center;
		display: inline;
	}
	
	.signup_second_otp_text_number{
		display: inline;
		font-size: 4vw;
		font-weight: bold;
		color: #0a2642;
	}
    .signup_second_otp_text_main_div{
        margin-top: 1.5em;
    }
}

/*********************************
OTP Input Main
**********************************/

.signup_second_otp_input_main_table{
    margin-top: 30px;
    margin-left: 5%;
}

@media(min-width: 500px){
    .signup_second_otp_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }    
    .signup_second_otp_input_main input[type="number"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
        -moz-appearance: textfield;
    }
    .signup_second_otp_input_main{
        padding-right: 10px;
    }
    .signup_second_otp_input_main_table{
        margin-top: 30px;
        margin-left: 5%;
    }
}

@media(max-width: 499px){
    .signup_second_otp_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 0.6em;
        text-align: center;
    }
    .signup_second_otp_input_main input[type="number"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 0.6em;
        text-align: center;
        -moz-appearance: textfield;
    }
    .signup_second_otp_input_main{
        padding-right: 10px;
    }
    .signup_second_otp_input_main_table{
        margin-top: 2.3em;
        margin-left: 5%;
    }
}

.signup_second_otp_input_main input[type="text"]:focus{
    border-bottom: 2px solid blue;
}
.signup_second_otp_input_main input[type="number"]:focus{
    border-bottom: 2px solid blue;
}

/*****************************
Resend OTP Button
******************************/

@media(min-width: 500px){
    .signup_second_resend_otp_button{
        background-color: transparent;
        border: none;
        outline: none;
        color: #000000;
        font-size: 15px;
    }
    .signup_second_resend_otp_timer{
        color: black;
        font-size: 15px;
    }
}

@media(max-width: 499px){
    .signup_second_resend_otp_button{
        background-color: transparent;
        border: none;
        outline: none;
        color: #000000;
        font-size: 14px;
    }
    .signup_second_resend_otp_timer{
        color: black;
        font-size: 14.5px;
    }
}

.signup_second_resend_otp_button:hover{
    transform: scale(1.08);
}

.signup_second_resend_otp_button:focus{
    outline: none;
    border: none;
}

.signup_second_resend_otp_button:active{
    outline: none;
    border: none;
}

/*************************
Signup Button
**************************/

@media(min-width: 500px){
    .signup_second_final_signup_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 20px;
        border-radius: 20px;
        margin-top: 40px;
    }
}

@media(max-width: 499px){
    .signup_second_final_signup_button{
        width: 90%;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 4.5vw;
        border-radius: 20px;
        margin-top: 2.9em;
    }
}

.signup_second_final_signup_button:hover{
    transform: scale(1.02);
}

.signup_second_final_signup_button:focus{
    outline: none;
    border: none;
}

/************************
Error Divs
*************************/

.signup_input_error_div{
    color: red;
    font-size: 14px;
    margin-top: -1em;
    margin-bottom: 5px;
    padding: 0% 5%;
}
.signup_input_error_div2{
    color: red;
    font-size: 14px;
    margin-top: -0.4em;
    margin-bottom: 5px;
    padding: 0% 5%;
}
.signup_input_error_div3{
    color: red;
    font-size: 14px;
    margin-top: -1em;
    margin-bottom: 5px;
    padding: 0% 5%;
}

@media(max-width: 499px){
    .signup_input_error_div{
        font-size: 3.6vw;
        margin-top: -1.1em;
    }
    .signup_input_error_div2{
        font-size: 3.6vw;
        margin-top: -0.15em;
    }
    .signup_input_error_div3{
        font-size: 3.6vw;
        margin-top: -0.7em;
    }
}


/*******************
Mandatory Update Main Box
********************/

.mandatory_update_main_box{
    width: 100%;
    overflow-x: hidden;
}

/************************
Cross Option 
*************************/

.mandatory_update_cross_option{
    margin-right: 5%;
}

.mandatory_update_cross_option i{
    color: black;
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width: 499px){
    .mandatory_update_cross_option i{
        color: black;
        font-size: 5.3vw;
        margin-top: 10px;
    }
}

.mandatory_update_cross_option i:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/****************
Mandatory Update Heading
*****************/

@media(min-width: 500px){
    .mandatory_update_heading{
        color: #0a2642;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 5px;
    }
}

@media(max-width: 499px){
    .mandatory_update_heading{
        font-size: 7vw;
        font-weight: 700;
        color: #0a2642;
        margin-bottom: 5px;
    }
}

/**************************
Middle Text
***************************/

@media(min-width: 500px){
    .mandatory_update_heading_lower_text{
        color: #0a2642;
        font-size: 16px;
        margin-bottom: 45px;
    }
}

@media(max-width: 499px){
    .mandatory_update_heading_lower_text{
        font-size: 4vw;
        color: #0a2642;
        margin-bottom: 2.5em;
    }
}

/*************************
Main Inputs
**************************/

.mandatory_update_input_main{
    width: 100%;
}

@media(min-width: 500px){
    .mandatory_update_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 10%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .mandatory_update_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 10%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 15px;
    }
}

.mandatory_update_input_main input[type="text"]:focus{
    border-right: 2px solid blue;
}

/*****************************
Gender Dropdown Menu
******************************/

.mandatory_update_gender_dropdown{
    position: relative;
	cursor: pointer;
	background-color: white;
    width: 100%;
}

@media(min-width: 500px){
    .mandatory_update_gender_dropdown select{
        line-height: 2em;
		padding-left: 2%;
		font-size: 20px;
		width: 100%;
		border: 1px solid #ccc;
		border-radius: 5px;
		background-color: white;
		appearance: none;
		cursor: pointer;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .mandatory_update_gender_dropdown select{
        line-height: 2em;
		padding-left: 2%;
		font-size: 5vw;
		width: 100%;
		border: 1px solid #ccc;
		border-radius: 5px;
		background-color: white;
		appearance: none;
		cursor: pointer;
        margin-bottom: 15px;
    }
}

.mandatory_update_gender_dropdown select:focus{
    border-right: 2px solid blue;
	outline: none;
}

.mandatory_update_gender_dropdown select{
    color: grey;
    background-color: white;
}

/************************
Okay Button
*************************/

@media(min-width: 500px){
    .mandatory_update_ok_button{
        width: 7em;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 18px;
        border-radius: 8px;
        margin-top: 45px;
        margin-bottom: 20px;
        margin-right: 5%;
    }
}

@media(max-width: 499px){
    .mandatory_update_ok_button{
        width: 7em;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 4vw;
        border-radius: 8px;
        margin-top: 2.5em;
        margin-bottom: 1em;
        margin-right: 5%;
    }
}

.mandatory_update_ok_button:hover{
    transform: scale(1.05);
    transition: .3s;
}

.mandatory_update_ok_button:focus{
    outline: none;
    border: none;
}
/*******************
Username Main Box
********************/

.username_main_box{
    width: 100%;
    overflow-x: hidden;
}

/************************
Cross Option 
*************************/

.username_cross_option{
    margin-right: 5%;
}

.username_cross_option i{
    color: black;
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width: 499px){
    .username_cross_option i{
        color: black;
        font-size: 5.3vw;
        margin-top: 10px;
    }
}

.username_cross_option i:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/****************
Mandatory Update Heading
*****************/

@media(min-width: 500px){
    .username_heading{
        color: #0a2642;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 5px;
    }
}

@media(max-width: 499px){
    .username_heading{
        font-size: 7vw;
        font-weight: 700;
        color: #0a2642;
        margin-bottom: 5px;
    }
}

/************************
Middle Text
*************************/

@media(min-width: 500px){
    .username_heading_lower_text{
        color: #0a2642;
        font-size: 13.5px;
        margin-bottom: 40px;
    }
}

@media(max-width: 499px){
    .username_heading_lower_text{
        font-size: 3.5vw;
        color: #0a2642;
        margin-bottom: 3em;
    }
}

/************************
Old Username
*************************/

.username_old_username{
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 20px;
}

@media(max-width: 499px){
    .username_old_username{
        margin-bottom: 15px;
        border-radius: 5px;
        font-size: 5vw;
    }
}

/*************************
Main Inputs
**************************/

.username_input_main{
    width: 100%;
}

@media(min-width: 500px){
    .username_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .username_input_main input[type="text"]{
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        line-height: 2em;
        padding: 0% 2%;
        background: transparent;
        outline: none;
        color: #000000;
        font-size: 5vw;
        margin-bottom: 15px;
    }
}

.username_input_main input[type="text"]:focus{
    border-right: 2px solid blue;
}

/************************
Okay Button
*************************/

@media(min-width: 500px){
    .username_ok_button{
        width: 7em;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 18px;
        border-radius: 8px;
        margin-top: 45px;
        margin-bottom: 20px;
        margin-right: 5%;
    }
}

@media(max-width: 499px){
    .username_ok_button{
        width: 7em;
        border: none;
        outline: none;
        line-height: 2em;
        background: #0a2642;
        color: #fff;
        font-size: 4vw;
        border-radius: 8px;
        margin-top: 3em;
        margin-bottom: 1em;
        margin-right: 5%;
    }
}

.username_ok_button:hover{
    transform: scale(1.05);
    transition: .3s;
}

.username_ok_button:focus{
    outline: none;
    border: none;
}
/**********************
Ticket Buy Main Box
***********************/

.ticket_buy_main_box{
    width: 100%;
    line-height: 2.2em;
}

/**************************
Top Cross Option
***************************/

.ticket_buy_cross_option{
    margin-bottom: 0.5em;
}

.ticket_buy_cross_option i{
    color: black;
    font-size: 17px;
    margin-top: 10px;
}

@media(max-width: 499px){
    .ticket_buy_cross_option i{
        color: black;
        font-size: 5.3vw;
        margin-top: 10px;
        margin-right: 1%;
    }
}

.ticket_buy_cross_option i:hover{
    transform: scale(1.1);
    cursor: pointer;
}

/****************************
Purchase Heading
*****************************/

@media(min-width: 500px){
    .ticket_buy_purchase_heading{
        color: #0a2642;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 25px;
    }
}

@media(max-width: 499px){
    .ticket_buy_purchase_heading{
        font-size: 8vw;
        font-weight: 700;
        color: #0a2642;
        margin-bottom: 0.8em;
    }
}

/****************************
Top Elements
*****************************/

@media(min-width: 500px){
    .ticket_buy_top_elements{
        font-size: 16.5px;
    }
    .ticket_buy_top_elements_2{
        margin-top: 7px;
        font-size: 14.5px;
    }
}

@media(max-width: 499px){
    .ticket_buy_top_elements{
        font-size: 4.4vw;
    }
    .ticket_buy_top_elements_2{
        margin-top: 2vw;
        font-size: 4vw;
    }
}

/*****************************
Middle Elements
******************************/

@media(min-width: 500px){
    .ticket_buy_middle_elements{
        font-size: 13px;
        line-height: 1.7em;
    }
    .ticket_buy_middle_elements_coupon{
        font-size: 13px;
        line-height: 1.7em;
    }
}

@media(max-width: 499px){
    .ticket_buy_middle_elements{
        font-size: 3.7vw;
        line-height: 1.7em;
    }
    .ticket_buy_middle_elements_coupon{
        font-size: 3.7vw;
        line-height: 1.7em;
    }
}

.ticket_buy_middle_elements_coupon:hover{
    text-decoration: underline;
}

/*****************************
Total Elements
******************************/

@media(min-width: 500px){
    .ticket_buy_total_elements{
        font-size: 16.5px;
    }
}

@media(max-width: 499px){
    .ticket_buy_total_elements{
        font-size: 4.8vw;
    }
}

/*****************************
Buy Button
******************************/

.ticket_buy_button:focus{
    outline: none;
    border: none;
}

.ticket_buy_button:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: .3s;
}

@media(min-width: 500px){
    .ticket_buy_button{
        background-color: #ce3420;
        border: none;
        outline: none;
        border-radius: 8px;
        margin: 15px 0px;
        font-size: 16px;
        line-height: 2em;
        width: 7em;
        color: white;
    }
}

@media(max-width: 499px){
    .ticket_buy_button{
        background-color: #ce3420;
        border: none;
        outline: none;
        border-radius: 8px;
        margin: 15px 0px;
        font-size: 4vw;
        line-height: 2em;
        width: 7em;
        color: white;
    }
}
/***********************
Main Flex
************************/

#page_body{
    flex: 1;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/***********************
Header Top
************************/

.header_top{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    border-bottom: 2px solid #ededed;
    background-color: white;
    z-index: 2;
}

.header_top_table{
    height: 90px;
    width: 100%;
    padding: 0px 10px;
    background-color: white;
}

.header_top_twitter_icon{
    background: #3b5391;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
}

.header_top_twitter_icon a{
    font-size: 19px;
    color: white;
    text-align: center;
}

.header_top_twitter_icon i{
    vertical-align: -30%;
}

.header_top_twitter_icon:hover{
    transform: scale(1.01);
    cursor: pointer;
}

.header_top_button{
    outline: none;
    border: none;
    font-size: 18px;
    line-height: 2em;
    width: 9em;
    background-color: #3b5391;
    margin-left: 20px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    border-radius: 10px;
    color: white;
}

@media(max-width: 499px){
    .header_top_button{
        outline: none;
        border: none;
        font-size: 4vw;
        line-height: 2.4em;
        width: 9em;
        background-color: #3b5391;
        margin-left: 10px;
        font-family: 'IBM Plex Sans Arabic', sans-serif;
        border-radius: 10px;
        color: white;
    }
}

.header_top_button:hover{
    transform: scale(1.02);
}

/************************
Secondary Header
*************************/

.secondary_header{
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: 45px;
    background-color: #3b5391;
    border-bottom: 2px solid #ededed;
    z-index: 2;
}

@media(max-width: 1190px){
    .secondary_header{
        visibility: hidden;
        display: none;
    }
}

.secondary_header_table{
    height: 45px;
    width: 100%;
}

.secondary_header_button{
    outline: none;
    border: none;
    font-size: 14px;
    line-height: 26px;
    width: 13em;
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255,0.7);
    border-right: 1px solid #adadad;
}

.secondary_header_button:hover{
    transform: scale(1.03);
    color: white;
}

.secondary_header_button2{
    outline: none;
    border: none;
    font-size: 14px;
    line-height: 35px;
    width: 13em;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    border-right: 1px solid #adadad;
    margin-right: 10px;
    border-radius: 10px;
}

.secondary_header_button2 a{
    color: black;
}

.secondary_header_button2 i{
    background-color: #69d767;
    border-radius: 50%;
    height: 28px;
    width: 28px;
    line-height: 28px;
    color: white;
    vertical-align: -5%;
}

.secondary_header_button2:hover{
    cursor: auto;
}

.secondary_header_button3{
    outline: none;
    border: none;
    font-size: 25px;
    line-height: 26px;
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-left: 10px;
}

@media(max-width: 499px){
    .secondary_header_button3{
        outline: none;
        border: none;
        font-size: 6vw;
        line-height: 26px;
        background-color: transparent;
        font-family: 'IBM Plex Sans Arabic', sans-serif;
        color: white;
        margin-left: 10px;
    }
}

.secondary_header_button3:hover{
    transform: scale(1.03);
    color: white;
}

/***********************
Header Dropdown Menu
************************/

.header_menu_dropdown_button{
    outline: none;
    border: none;
    font-size: 14px;
    width: 13em;
    background-color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255,0.7);
    border-right: 1px solid #adadad;
    text-align: center;
}

.header_menu_dropdown_button:hover{
    color: white;
}
  
.header_menu_dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.header_menu_dropdown_content {
    display: none;
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5;
    right: 0;
}

.header_menu_dropdown_content a {
    color: black;
    width: 100%;
    padding-left: 10px;
    font-size: 14px;
    line-height: 3.5em;
    text-decoration: none;
    display: block;
    background-color: #ffffff;
}

.header_menu_dropdown_content a:hover {
    background-color: #ddd;
    cursor: pointer;
}

.header_menu_dropdown:hover .header_menu_dropdown_content {
    display: block;
}

.header_menu_dropdown:hover .header_menu_dropdown_button {
    transform: scale(1.03);
    cursor: pointer;
}

.header_menu_dropdown_content_empty{
    color: transparent;
    line-height: 10px;
    background-color: transparent;
}

/********************
Secondary Header 2
*********************/

.secondary_header2{
    display: none;
    visibility: hidden;
}

@media(max-width: 1190px){
    .secondary_header2{
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        height: 45px;
        background-color: #3b5391;
        border-bottom: 2px solid #ededed;
        display: block;
        visibility: visible;
    }
    .secondary_header_table2{
        height: 45px;
        width: 100%;
    }
}

/********************
Main Area
*********************/

.main_area_div{
    position: fixed;
    top: 135px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}

/*********************
Budgetory Quote
**********************/

.budget_top_main_heading{
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media(max-width: 499px){
    .budget_top_main_heading{
        font-size: 7.5vw;
        margin-top: 20px;
        margin-bottom: 15px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
}

.budget_top_small_text{
    font-size: 15px;
    max-width: 90vw;
    margin-bottom: 20px;
}

.budget_top_button_main{
    width: 70%;
    text-align: left;
}

@media(max-width: 1520px){
    .budget_top_button_main{
        width: 90%;
        text-align: left;
    }
}

@media(max-width: 930px){
    .budget_top_button_main{
        display: none;
        visibility: hidden;
    }
}

@media(min-width: 930px){
    .budget_top_button_main_mobile{
        display: none;
        visibility: hidden;
    }
}

@media(max-width: 929px){
    .budget_top_button_main_mobile{
        width: 90%;
        text-align: left;
        display: block;
        visibility: visible;
    }
}

.budget_top_button_main_mobile_button{
    outline: none;
    border: none;
    font-size: 15px;
    width: 13em;
    background-color: #3b5391;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
    border-radius: 12px 12px 0px 0px;
    line-height: 2.2em;
    display: inline-block;
}

.budget_top_button_main_mobile_button_arrow{
    display: inline-block;
    font-size: 15px;
}

.header_menu_dropdown_button:hover{
    color: white;
}
  
.budget_top_button_main_mobile_dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.budget_top_button_main_mobile_content {
    display: none;
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5;
    left: 0;
}

.budget_top_button_main_mobile_content a {
    color: black;
    width: 100%;
    padding-left: 10px;
    font-size: 15px;
    line-height: 3.5em;
    text-decoration: none;
    display: block;
    background-color: #ffffff;
}

.budget_top_button_main_mobile_content a:hover {
    background-color: #ddd;
    cursor: pointer;
}

.budget_top_button_main_mobile_dropdown:hover .budget_top_button_main_mobile_content {
    display: block;
}

.header_menu_dropdown:hover .header_menu_dropdown_button {
    transform: scale(1.03);
    cursor: pointer;
}

.budget_top_button_main_mobile_content_empty{
    color: transparent;
    line-height: 10px;
    background-color: transparent;
}

@media(max-width: 499px){
    .budget_top_button_main_mobile_button{
        width: 13em;
        font-size: 4vw;
    }
    .budget_top_button_main_mobile_content a{
        font-size: 3.7vw;
    }
    .budget_top_button_main_mobile_content{
        min-width: 16em;
    }
}

.budget_quote_main_box{
    width: 70%;
    border-radius: 0px 12px 12px 12px;
    box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
    padding: 20px 15px;
    margin-bottom: 50px;
}

.budget_top_main_tab_button{
    outline: none;
    border: none;
    font-size: 16px;
    line-height: 2.2em;
    background-color: #969696;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: white;
    border-radius: 10px 10px 0px 0px;
    width: 17em;
    margin-right: 2px;
}

.budget_top_main_tab_button:hover{
    transform: scale(1.02);
}

@media(max-width: 1520px){
    .budget_quote_main_box{
        width: 90%;
        border-radius: 0px 12px 12px 12px;
        box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
        padding: 20px 15px;
        margin-bottom: 50px;
    }
}

.budget_quote_main_flex{
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
}

@media(max-width: 1100px){
    .budget_quote_main_flex{
        display: flex;
        flex-wrap: wrap;
    }
}

@media(max-width:499px){
    .budget_quote_main_flex{
        font-size: 3.8vw;
    }
}

.flex1{
    flex: 1;
    display: inline-block;
    max-width: 30%;
    margin-right: 20px;
    min-width: 320px;
}

.flex2{
    flex: 1;
    display: inline-block;
    max-width: 30%;
    margin-right: 20px;
    min-width: 320px;
}

.flex3{
    flex: 1;
    display: inline-block;
    max-width: 30%;
    min-width: 320px;
}

@media(max-width: 770px){
    .flex1{
        flex: 1;
        display: inline-block;
        max-width: 100%;
        margin-right: 10px;
        min-width: 320px;
    }
    
    .flex2{
        flex: 1;
        display: inline-block;
        max-width: 100%;
        margin-right: 10px;
        min-width: 320px;
    }
    
    .flex3{
        flex: 1;
        display: inline-block;
        max-width: 100%;
        min-width: 320px;
        margin-right: 10px;
    }
    
}

@media(max-width: 499px){
    .flex1{
        flex: 1;
        display: inline-block;
        margin-right: 0px;
        min-width: 100%;
    }
    
    .flex2{
        flex: 1;
        display: inline-block;
        margin-right: 0px;
        min-width: 100%;
    }
    
    .flex3{
        flex: 1;
        display: inline-block;
        margin-right: 0px;
        min-width: 100%;
    }
}

.budget_quote_dropdown{
    position: relative;
    font-family: 'Gilroy-Bold', sans-serif;
    width: 100%;
}

.budget_quote_dropdown select{
    line-height: 2.5em;
    padding: 0% 3%;
    font-size: 16px;
	width: 100%;
    background-color: white;
    border-radius: 10px;
	appearance: none;
    color: black;
    -webkit-appearance: none;
    border: 2px solid #c7c7c7;
}

@media(max-width: 1100px){
    .budget_quote_row_table{
        margin-bottom: 15px;
    }
}

@media(max-width: 499px){
    .budget_quote_dropdown select{
        line-height: 2.5em;
        padding: 0% 3%;
        font-size: 3.8vw;
        width: 100%;
        background-color: white;
        border-radius: 10px;
        appearance: none;
        color: black;
        -webkit-appearance: none;
        border: 2px solid #c7c7c7;
    }
}

.budget_quote_dropdown select:focus{
    border-right: 2px solid #3b5391;
}

.budget_quote_input_main{
    border-radius: 10px;
    font-size: 16px;
    line-height: 2.5em;
}

.budget_quote_input_main input[type="text"]{
    border: 2px solid #c7c7c7;
    color: black;
    background-color: transparent;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    padding: 0% 5%;
    font-family: 'Gilroy-Bold', sans-serif;
    -moz-appearance: textfield;
    padding-top: 0.2em;
}

.budget_quote_input_main input[type="date"]{
    border: 2px solid #c7c7c7;
    color: black;
    background-color: transparent;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    padding: 0% 5%;
    font-family: 'Gilroy-Bold', sans-serif;
    -moz-appearance: textfield;
    padding-top: 0.2em;
}

@media(max-width: 499px){
    .budget_quote_input_main{
        border-radius: 10px;
        font-size: 3.8vw;
        line-height: 2.5em;
    }
    .budget_quote_input_main input[type="text"]{
        border: 2px solid #c7c7c7;
        color: black;
        background-color: transparent;
        width: 100%;
        border-radius: 10px;
        font-size: 3.8vw;
        padding: 0% 5%;
        font-family: 'Gilroy-Bold', sans-serif;
        -moz-appearance: textfield;
        padding-top: 0.2em;
    }
    .budget_quote_input_main input[type="date"]{
        border: 2px solid #c7c7c7;
        color: black;
        background-color: transparent;
        width: 100%;
        border-radius: 10px;
        font-size: 3.8vw;
        padding: 0% 5%;
        font-family: 'Gilroy-Bold', sans-serif;
        -moz-appearance: textfield;
        padding-top: 0.2em;
    }
}

.budget_quote_input_main input[type="text"]:focus{
    border-right: 2px solid #3b5391;
}
.budget_quote_input_main input[type="date"]:focus{
    border-right: 2px solid #3b5391;
}

.budget_quote_input_main input[type="number"]{
    border: 2px solid #c7c7c7;
    color: black;
    background-color: transparent;
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    padding: 0% 5%;
    font-family: 'Gilroy-Bold', sans-serif;
    -moz-appearance: textfield;
    padding-top: 0.2em;
}

@media(max-width: 499px){
    .budget_quote_input_main input[type="number"]{
        border: 2px solid #c7c7c7;
        color: black;
        background-color: transparent;
        width: 100%;
        border-radius: 10px;
        font-size: 3.8vw;
        padding: 0% 5%;
        font-family: 'Gilroy-Bold', sans-serif;
        -moz-appearance: textfield;
        padding-top: 0.2em;
    }
}

.budget_quote_input_main input[type="number"]:focus{
    border-right: 2px solid #3b5391;
}

.budget_quote_table_first_column{
    min-width: 150px;
}

.budget_quote_row_table{
    margin-bottom: 15px;
}

.budget_quote_bottom_section_button{
    outline: none;
    border: none;
    font-size: 16px;
    line-height: 2.2em;
    width: 9em;
    background-color: #3b5391;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border-radius: 10px;
    margin-top: 5px;
}

@media(max-width: 499px){
    .budget_quote_bottom_section_button{
        outline: none;
        border: none;
        font-size: 3.8vw;
        line-height: 2.2em;
        width: 9em;
        background-color: #3b5391;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        border-radius: 10px;
        margin-top: 5px;
    }
}

.budget_quote_bottom_section_button:hover{
    transform: scale(1.02);
}

.budget_quote_bottom_section_button2{
    outline: none;
    border: none;
    font-size: 18px;
    line-height: 2.2em;
    width: 13em;
    background-color: #3b5391;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border-radius: 10px;
    margin-top: 15px;
}

@media(max-width: 499px){
    .budget_quote_bottom_section_button2{
        outline: none;
        border: none;
        font-size: 4.8vw;
        line-height: 2.2em;
        width: 9em;
        background-color: #3b5391;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        border-radius: 10px;
        margin-top: 5px;
    }
}

.budget_quote_bottom_section_button2:hover{
    transform: scale(1.02);
}

.budget_quote_bottom_section{
    font-size: 16px;
}

@media(max-width: 499px){
    .budget_quote_bottom_section{
        font-size: 3.8vw;
    }
}

@media(max-width: 1100px){
    .budget_quote_bottom_section_flex{
        display: flex;
        flex-wrap: wrap;
    }
}

.budget_quote_bottom_section_flex1{
    flex: 1;
    display: inline-block;
    max-width: 30%;
    min-width: 350px;
}

.budget_quote_bottom_section_flex2{
    flex: 1;
    display: inline-block;
    max-width: 30%;
    min-width: 350px;
}

@media(max-width: 770px){
    .budget_quote_bottom_section_flex1{
        flex: 1;
        display: inline-block;
        max-width: 100%;
        margin-right: 10px;
        min-width: 350px;
    }
    .budget_quote_bottom_section_flex2{
        flex: 1;
        display: inline-block;
        max-width: 100%;
        min-width: 350px;
        margin-right: 10px;
    }
}

@media(max-width: 499px){
    .budget_quote_bottom_section_flex1{
        flex: 1;
        display: inline-block;
        margin-right: 0px;
        min-width: 100%;
    }
    .budget_quote_bottom_section_flex2{
        flex: 1;
        display: inline-block;
        margin-right: 0px;
        min-width: 100%;
    }
}

.budget_quote_stretcher_select_main{
	position: relative;
    width: 20em;
    display: inline-block;
    margin-bottom: 20px;
}

.budget_quote_stretcher_select_main label{
	display: block;
	width: 11.8em;
    line-height: 3em;
	cursor: pointer;
    font-family: 'Gilroy-Bold', sans-serif;
    background-color: #969696;
    color: white;
    border-radius: 10px;
    font-size: 19px;
    transition: .4s ease;
}

.budget_quote_stretcher_select_main input[type="radio"] {
	position: absolute;
	left: 3em;
    top: 43%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
    accent-color: black;
    transition: .4s ease;
}

@media(max-width: 670px){
    .budget_quote_stretcher_select_main{
        position: relative;
        width: 13em;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .budget_quote_stretcher_select_main label{
        display: block;
        width: 9.8em;
        line-height: 3em;
        cursor: pointer;
        font-family: 'Gilroy-Bold', sans-serif;
        background-color: #969696;
        color: white;
        border-radius: 10px;
        font-size: 18px;
        transition: .4s ease;
    }
    
    .budget_quote_stretcher_select_main input[type="radio"] {
        position: absolute;
        left: 1em;
        top: 43%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        accent-color: black;
        transition: .4s ease;
    }
}

@media(max-width: 499px){
    .budget_quote_stretcher_select_main {
        position: relative;
        width: 11em;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .budget_quote_stretcher_select_main label {
        display: block;
        width: 9.5em;
        line-height: 3em;
        cursor: pointer;
        font-family: 'Gilroy-Bold', sans-serif;
        background-color: #969696;
        color: white;
        border-radius: 10px;
        font-size: 4vw;
        transition: .4s ease;
        padding-top: 0.1em;
    }
    
    .budget_quote_stretcher_select_main input[type="radio"] {
        position: absolute;
        left: 1em;
        top: 43%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        accent-color: black;
        transition: .4s ease;
    }
}

.budget_quote_stretcher_select_main input[type="radio"]:checked{
    accent-color: #000000;
    outline: none;
}

.budget_quote_stretcher_select_main input[type="radio"]:focus{
    outline: yellow !important;
    box-shadow: none;
}

.budget_quote_stretcher_select_main input[type="radio"]:checked ~ label {
	background-color: #3b5391;
	color: #fff;
}

/************************
Air Ambulance
*************************/

.air_ambulance_main{
    width: 100%;
}

.air_ambulance_heading{
    font-size: 40px;
    line-height: 70px;
    background-color: #3b5391;
    color: white;
}

@media(max-width: 499px){
    .air_ambulance_heading{
        font-size: 7vw;
        line-height: 70px;
        background-color: #3b5391;
        color: white;
    }
}

.air_ambulance_content_table{
    width: 80%;
    margin: 50px 0px;
}

.air_ambulance_content_table_text{
    font-size: 20px;
    margin-right: 30px;
    line-height: 1.7em;
}

@media(max-width: 499px){
    .air_ambulance_content_table_text{
        font-size: 4.2vw;
        margin-right: 0px;
        line-height: 1.7em;
        width: 90vw;
    }
}

.air_ambulance_content_table_text1{
    margin-bottom: 20px;
}

.air_ambulance_content_table_button{
    outline: none;
    border: none;
    font-size: 20px;
    line-height: 2em;
    width: 10em;
    background-color: #3b5391;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border-radius: 10px;
    margin-top: 20px;
}

@media(max-width: 499px){
    .air_ambulance_content_table_button{
        outline: none;
        border: none;
        font-size: 5vw;
        line-height: 2em;
        width: 10em;
        background-color: #3b5391;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        border-radius: 10px;
        margin-top: 20px;
    }
}

.air_ambulance_content_table_button:hover{
    transform: scale(1.02);
}

.air_ambulance_content_table_image img{
    height: 360px;
}

.air_ambulance_content_table_image2{
    display: none;
    visibility: hidden;
}

@media(max-width: 1340px){
    .air_ambulance_content_table_image img{
        display: none;
        visibility: hidden;
    }
    .air_ambulance_content_table_image2{
        visibility: visible;
        display: block;
        margin-bottom: 20px;
    }
}

@media(max-width: 730px){
    .air_ambulance_content_table_image2 img{
        height: 43vw;
    }
}

/*********************
Our Aircrafts
**********************/

.our_aircrafts_main{
    width: 100%;
}

.our_aircrafts_heading{
    font-size: 40px;
    line-height: 70px;
    background-color: #3b5391;
    color: white;
}

@media(max-width: 499px){
    .our_aircrafts_heading{
        font-size: 7vw;
        line-height: 70px;
        background-color: #3b5391;
        color: white;
    }
}

.our_aircrafts_flex_main{
    margin: 50px 0px;
}

@media(max-width: 1115px){
    .our_aircrafts_flex_main{
        display: flex;
        flex-wrap: wrap;
    }
}

.our_aircrafts_flexbox1{
    flex: 1;
    max-width: 350px;
    background-color: #3b5391;
    display: inline-block;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
    color: rgba(255, 255, 255,0.75);
    margin-bottom: 20px;
    height: 546px;
}

.our_aircrafts_flexbox1:hover{
    transform: scale(1.05);
    transition: .4s;
}

.our_aircrafts_flexbox2{
    flex: 1;
    max-width: 350px;
    background-color: #3b5391;
    display: inline-block;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
    color: rgba(255, 255, 255,0.75);
    margin-bottom: 20px;
    height: 546px;
}

@media(max-width: 727px){
    .our_aircrafts_flexbox1{
        margin-right: 0px;
    }
    .our_aircrafts_flexbox2{
        margin-right: 0px;
    }
}

.our_aircrafts_flexbox2:hover{
    transform: scale(1.05);
    transition: .4s;
}

.our_aircrafts_flexbox3{
    flex: 1;
    max-width: 350px;
    background-color: #3b5391;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
    color: rgba(255, 255, 255,0.75);
    margin-bottom: 20px;
    height: 546px;
}

.our_aircrafts_flexbox3:hover{
    transform: scale(1.05);
    transition: .4s;
}

@media(max-width: 499px){
    .our_aircrafts_flexbox3{
        flex: 1;
        max-width: 350px;
        background-color: #3b5391;
        display: inline-block;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
        color: rgba(255, 255, 255,0.75);
        margin-bottom: 0px;
        height: 546px;
    }
    .our_aircrafts_flexbox1{
        margin-right: 0px;
        max-width: 90vw;
        height: fit-content;
    }
    .our_aircrafts_flexbox1:hover{
        transform: scale(1.00);
    }
    .our_aircrafts_flexbox2{
        margin-right: 0px;
        max-width: 90vw;
        height: fit-content;
    }
    .our_aircrafts_flexbox2:hover{
        transform: scale(1.00);
    }
    .our_aircrafts_flexbox3{
        max-width: 90vw;
        height: fit-content;
    }
    .our_aircrafts_flexbox3:hover{
        transform: scale(1.00);
    }
}


.our_aircrafts_flexbox_table{
    margin-bottom: 20px;
}

.our_aircrafts_flexbox_heading{
    font-size: 25px;
    line-height: 2em;
    color: white;
}

@media(max-width: 499px){
    .our_aircrafts_flexbox_heading {
        font-size: 7vw;
        line-height: 2em;
        color: white;
    }
    .our_aircrafts_flexbox_heading2{
        font-size: 5vw;
        margin-bottom: 15px;
    }
}

.our_aircrafts_flexbox_heading2{
    font-size: 20px;
    margin-bottom: 15px;
}

.our_aircrafts_flexbox_table img{
    height: 20px;
    vertical-align: -9%;
}

/*********************
Our Team
**********************/

.our_team_main{
    width: 100%;
}

.our_team_heading{
    font-size: 40px;
    line-height: 70px;
    background-color: #3b5391;
    color: white;
}

@media(max-width: 499px){
    .our_team_heading{
        font-size: 7vw;
        line-height: 70px;
        background-color: #3b5391;
        color: white;
    }
}

.our_team_main_section{
    width: 100%;
    margin: 50px 0px;
}

.our_team_main_section img{
    border-radius: 50%;
    height: 190px;
    width: 190px;
}

.our_team_name{
    font-size: 22px;
    margin-top: 15px;
}

@media(max-width: 499px){
    .our_team_name{
        font-size: 5.2vw;
        margin-top: 15px;
    }
}

.our_team_designation{
    font-size: 19px;
}

@media(max-width: 499px){
    .our_team_designation{
        font-size: 4.5vw;
    }
}

.our_team_text{
    font-size: 14px;
    max-width: 600px;
}

@media(max-width: 620px){
    .our_team_text{
        font-size: 14px;
        max-width: 90vw;
    }
}

.our_team_flex_main{
    width: 100%;
}

@media(max-width: 1115px){
    .our_team_flex_main{
        display: flex;
        flex-wrap: wrap;
    }
}

.our_team_flexbox{
    flex: 1;
    max-width: 350px;
    display: inline-block;
    margin-bottom: 20px;
    min-width: 250px;
}

.our_team_flexbox img{
    border-radius: 10px;
    height: 190px;
    width: 175px;
}

.our_team_name2{
    font-size: 18px;
    margin-top: 15px;
}

.our_team_designation2{
    font-size: 15px;
}

/***************************
Covid 19 Transfer
****************************/

.covid_main{
    width: 100%;
}

.covid_heading{
    font-size: 40px;
    line-height: 70px;
    background-color: #3b5391;
    color: white;
}

@media(max-width: 499px){
    .covid_heading{
        font-size: 7vw;
        line-height: 70px;
        background-color: #3b5391;
        color: white;
    }
}

.covid_content_table{
    width: 80%;
    margin: 50px 0px;
}

.covid_content_table_text{
    font-size: 20px;
    margin-left: 30px;
    line-height: 1.7em;
}

.covid_content_table_text_heading{
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: bold;
}

@media(max-width: 499px){
    .covid_content_table_text_heading {
        font-size: 5vw;
        margin-bottom: 1em;
        font-weight: bold;
        margin-top: 0.5em;
    }
}

.covid_content_table_text1{
    margin-bottom: 20px;
}

.covid_content_table_image img{
    height: 580px;
}

@media(max-width: 800px){
    .covid_content_table_image img{
        height: 102vw;
    }
}

.covid_content_table_text2{
    display: none;
    visibility: hidden;
}

.covid_content_first_column{
    min-width: fit-content;
    width: 0%;
}

@media(max-width: 1340px){
    .covid_content_table_text{
        display: none;
        visibility: hidden;
    }
    .covid_content_table_text2{
        visibility: visible;
        display: block;
        margin-bottom: 20px;
        font-size: 20px;
        line-height: 1.7em;
    }
    .covid_content_first_column{
        width: 100%;
    }
}

@media(max-width: 499px){
    .covid_content_table_text2{
        visibility: visible;
        display: block;
        margin-bottom: 20px;
        font-size: 4.2vw;
        line-height: 1.7em;
    }
}

/************************
Contact Us
*************************/

.contact_main{
    width: 100%;
}

.contact_heading{
    font-size: 40px;
    line-height: 70px;
    background-color: #3b5391;
    color: white;
}

@media(max-width: 499px){
    .contact_heading{
        font-size: 7vw;
        line-height: 70px;
        background-color: #3b5391;
        color: white;
    }
}

.contact_main_flex{
    margin: 50px 0px;
}

.contact_main_box1{
    flex: 1;
    display: inline-block;
    width: 30%;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
    border-radius: 12px;
    padding: 20px 0px;
    margin-right: 10px;
}

@media(max-width: 908px){
    .contact_main_box1{
        margin-right: 0px;
    }
}

@media(max-width: 499px){
    .contact_main_box1{
        max-width: 90vw;
        min-width: 90vw;
    }
}

.contact_main_box2{
    flex: 1;
    display: inline-block;
    width: 30%;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
    border-radius: 12px;
    padding: 20px 0px;
    vertical-align: top;
    max-height: 210px;
    margin-left: 10px;
}

.contact_main_box3{
    display: none;
    visibility: hidden;
}

@media(max-width: 730px){
    .contact_main_box2{
        display: none;
        visibility: hidden;
    }
    .contact_main_box3{
        flex: 1;
        display: inline-block;
        width: 30%;
        min-width: 350px;
        max-width: 350px;
        box-shadow: 0 0 0 rgb(0 0 0 / 25%), 0 -12px 30px rgb(0 0 0 / 12%), 0 4px 6px rgb(0 0 0 / 12%), 0 12px 13px rgb(0 0 0 / 17%), 0 -3px 5px rgb(0 0 0 / 9%);
        border-radius: 12px;
        padding: 20px 0px;
        vertical-align: top;
        margin-left: 0px;
        margin-top: 20px;
        max-height: 210px;
        display: block;
        visibility: visible;
    }
}

@media(max-width: 499px){
    .contact_main_box3{
        max-width: 90vw;
        min-width: 90vw;
    }
}

.contact_box_headings{
    font-size: 19px;
    margin-bottom: 5px;
}

.contact_box_headings2{
    font-size: 19px;
    margin-bottom: 5px;
}

@media(max-width: 499px){
    .contact_box_headings{
        font-size: 5vw;
        margin-bottom: 5px;
    }
    .contact_box_headings2{
        font-size: 4.7vw;
        margin-bottom: 5px;
    }
}

.contact_box_input_main{
    border-radius: 10px;
    font-size: 16px;
    line-height: 2.2em;
}

.contact_box_input_main input[type="text"]{
    border: 1px solid #ededed;
    color: black;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    padding: 0% 5%;
    font-family: 'Gilroy-Bold', sans-serif;
    -moz-appearance: textfield;
    padding-top: 0.2em;
    margin-bottom: 15px;
}

@media(max-width: 499px){
    .contact_box_input_main input[type="text"]{
        font-size: 4vw;
    }
}

.contact_box_input_main input[type="text"]:focus{
    border-right: 2px solid #3b5391;
}

.contact_box_input_main_textarea{
    resize: none;
    padding: 0% 5%;
    font-size: 16px;
    line-height: 1.9em;
    border-radius: 12px;
    border: 1px solid #ededed;
    color: black;
    width: 100%;
    padding-top: 10px;
}

@media(max-width: 499px){
    .contact_box_input_main_textarea{
        font-size: 4vw;
    }
}

.contact_box_input_main_textarea:focus{
    border-right: 2px solid #3b5391;
}

.contact_button{
    outline: none;
    border: none;
    font-size: 20px;
    line-height: 2em;
    width: 100%;
    background-color: #3b5391;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    border-radius: 10px;
    margin-top: 20px;
}

@media(max-width: 499px){
    .contact_button{
        font-size: 5vw;
    }
}

.contact_button:hover{
    transform: scale(1.02);
}

.contact_icon_text{
    font-size: 17px;
}

@media(max-width: 499px){
    .contact_icon_text{
        font-size: 4.5vw;
    }
}

.contact_icon{
    width: 30px;
    height: 30px;
    background-color: #3b5391;
    border-radius: 50%;
    text-align: center;
}

.contact_icon i{
    color: white;
    font-size: 15px;
    vertical-align: -39%;
}

/******************
Footer
*******************/

.footer_main{
    width: 100%;
    background-color: #3b5391;
    font-size: 16px;
    line-height: 3em;
    height: 3em;
    color: white;
}

/*************************
Header Menu Popup
**************************/

.header_menu_popup{
    z-index: 5;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: white;
    overflow-y: auto;
}

.header_menu_popup_table{
    height: -webkit-fill-available;
}

.header_menu_cross_option{
    position: fixed;
    top: 15px;
    left: 20px;
    font-size: 35px;
    color: #3b5391;
}

.header_menu_cross_option_button{
    outline: none;
    border: none;
    font-size: 35px;
    width: 100%;
    background-color: transparent;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: #3b5391;
}

.header_menu_cross_option_button:hover{
    transform: scale(1.05);
}

.header_menu_popup_button{
    outline: none;
    border: none;
    font-size: 23px;
    line-height: 2em;
    width: 100%;
    background-color: transparent;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: #3b5391;
    border-radius: 10px;
    margin-top: 20px;
}

.header_menu_popup_button:hover{
    transform: scale(1.05);
}

@media(max-width: 499px){
    .header_menu_cross_option{
        position: fixed;
        top: 15px;
        left: 6vw;
        font-size: 9vw;
        color: #3b5391;
    }
    .header_menu_popup_button{
        outline: none;
        border: none;
        font-size: 5.5vw;
        line-height: 2em;
        width: 100%;
        background-color: transparent;
        font-family: 'IBM Plex Sans Arabic', sans-serif;
        color: #3b5391;
        border-radius: 10px;
        margin-top: 20px;
    }
}


/**************************
Quote Popup 2
***************************/

@media(min-width: 500px){
    .popups_main_white_box2{
        width: 95%;
        max-width: 1000px;
        background-color: white;
        border-radius: 12px;
        overflow-x: hidden;
    }
}

.quote_popup2_heading{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.quote_popup2_top_text{
    font-size: 16px;
    margin: 0 2.5%;
    margin-bottom: 15px;
}

.quote_popup2_minor_headings{
    font-size: 16px;
    margin: 0px 2.5%;
    margin-bottom: 5px;
    font-weight: bold;
}

.quote_popup2_text2{
    font-size: 15px;
    margin: 0px 3.5%;
    margin-bottom: 2px;
}

.quote_popup2_text2 img{
    height: 19px;
    vertical-align: -19%;
}

.quote_popup2_text2 i{
    color: red;
    font-size: 18px;
}

.login_final_login_button2{
    width: 10em;
    border: none;
    outline: none;
    line-height: 2em;
    background: #3b5391;
    color: #fff;
    font-size: 20px;
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 20px;
    margin-right: 2.5%;
}

.login_final_login_button2:hover{
    transform: scale(1.02);
}

@media(max-width: 499px){
    .popups_main_white_box2{
        width: 95%;
        min-width: 95vw;
        background-color: white;
        border-radius: 12px;
        overflow-x: hidden;
        max-height: 90vh;
        overflow-y: auto;
    }
    .quote_popup2_heading{
        font-size: 5vw;
        margin-bottom: 1em;
    }
    
    .quote_popup2_top_text{
        font-size: 4vw;
        margin: 0 2.5%;
        margin-bottom: 1em;
    }
    
    .quote_popup2_minor_headings{
        font-size: 4vw;
        margin: 0px 2.5%;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .quote_popup2_text2{
        font-size: 3.8vw;
        margin: 0px 3.5%;
        margin-bottom: 2px;
    }
    
    .quote_popup2_text2 img{
        height: 4.5vw;
        vertical-align: -19%;
    }
    
    .quote_popup2_text2 i{
        color: red;
    }
    
    .login_final_login_button2{
        width: 10em;
        border: none;
        outline: none;
        line-height: 2em;
        background: #3b5391;
        color: #fff;
        font-size: 5vw;
        border-radius: 12px;
        margin-top: 15px;
        margin-bottom: 20px;
        margin-right: 2.5%;
    }
    
    .login_final_login_button2:hover{
        transform: scale(1.02);
    }
}

/****************************
Call Button
*****************************/

.whatsapp_icon_button_main{
    position: fixed;
    z-index: 6;
    bottom: 0px;
    right: 2vw;
}

.whatsapp_icon_button{
    border: none;
    outline: none;
    background-color: transparent;
    margin-bottom: 1vw;
}

.whatsapp_icon_button img{
    height: 65px;
}

@media(max-width: 499px){
    .whatsapp_icon_button_main{
        position: fixed;
        z-index: 6;
        bottom: 0px;
        right: 3vw;
        display: block;
        visibility: visible;
    }
    .whatsapp_icon_button{
        border: none;
        outline: none;
        background-color: transparent;
        margin-bottom: 3vw;
    }
    .whatsapp_icon_button img{
        height: 15.5vw;
    }
}

.call_button_main{
    display: none;
    visibility: hidden;
}

@media(max-width: 499px){
    .call_button_main{
        position: fixed;
        width: 100%;
        z-index: 5;
        bottom: 0px;
        background-image: linear-gradient(transparent 10%, rgba(0,0,0,0.2));
        display: block;
        visibility: visible;
    }
    .call_button_main i{
        vertical-align: -9%;
    }
}

.call_button{
    border: none;
    outline: none;
    background-color: #3b5391;
    margin-bottom: 3vw;
    border-radius: 50%;
    font-size: 5.5vw;
    width: 2.8em;
    line-height: 2.8em;
    color: white;
    margin-left: 3vw;
}

.call_button a{
    color: white;
}

.credit_card_missed_call_button{
    outline: none;
    border: none;
    background-color: #69d767;
    font-size: 6vw;
    width: 2.8em;
    line-height: 2.8em;
    border-radius: 50%;
    color: white;
    box-shadow: 0px 1px 8px black;
    margin-bottom: 10px;
}







