@charset "utf-8";
/* Global CSS Starts here */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');
:root {
--darkBlue:#316588;
--mediumBlue:#171717;
--bodyBg:#f2f4f7;
--errorAlert:#ff221d;
--menuColor:#438cca;
--projColor:#595b5d;
--whiteGlow:#fff;
}
* {
	box-sizing: border-box
}
*:focus {
	outline: 0;
}
ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
html, body {
	width: 100%;
	height: 100%;
	/*overflow-x: hidden !important;*/
}
body {
	font-family: 'Open Sans', sans-serif; 
	color: #595b5d;
	font-weight: 400;
	font-size: 14px;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden !important;
	background-color: var(--bodyBg);
}
@font-face {
	font-family: 'DroidKufiBold';
	src: url("../font/DroidKufiBold.eot");
	src: url("../font/DroidKufiBold.eot") format("embedded-opentype"), url("../font/DroidKufiBold.woff2") format("woff2"), url("../font/DroidKufiBold.woff") format("woff"), url("../font/DroidKufiBold.ttf") format("truetype"), url("../font/DroidKufiBold.svg#DroidKufiBold") format("svg");
}
@font-face {
	font-family: 'DroidKufiRegular';
	src: url("../font/DroidKufiRegular.eot");
	src: url("../font/DroidKufiRegular.eot") format("embedded-opentype"), url("../font/DroidKufiRegular.woff2") format("woff2"), url("../font/DroidKufiRegular.woff") format("woff"), url("../font/DroidKufiRegular.ttf") format("truetype"), url("../font/DroidKufiRegular.svg#DroidKufiRegular") format("svg");
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
-webkit-appearance:none;
margin:0;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
-webkit-appearance:none;
margin:0;
}
input[type=number] {
	-moz-appearance: textfield;
}
:focus {
	outline: none;
	box-shadow: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	-ms-appearance: none;
	text-indent: 1px;
	-o-text-overflow: '';
	text-overflow: '';
}
 select::-ms-expand {
display:none;
}
 input[type=text]::-ms-clear {
display:none;
}
input:focus {
	outline: none;
}
button:focus, select:focus {
	outline: none;
}
a:focus, a:active, a:visited, a:hover {
	text-decoration: none;
}
*, :before, :after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	cursor: pointer !important;
	transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}
a:hover {
	transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
}
button {
	cursor: pointer;
}
button:focus {
	outline: 0;
}
html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
.error_color {
	color: var(--errorAlert);
}
.error {
	color: #ff221d;
	font-size:12px;
}
.color_red {
	color: #ff221d;
}
.c_pointer{
	cursor: pointer !important;
}
.direction_ltr{
	direction: ltr !important;
}
.disc_price{
	font-size: 14px;
	font-weight: 600;
	position: relative;
}
.disc_price:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	width: 100%;
	background-color: var(--mediumBlue);
}
.disc_price span{
	display: inline-block;
}
input.form-control, select.form-control {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-moz-transition: none;
	-webkit-transition: none;
}
input.form-control:focus, select.form-control:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-moz-transition: none;
	-webkit-transition: none;
}
.table-responsive .table {
	max-width: none;
	-webkit-overflow-scrolling: touch !important;
}
.white_background {
	background-color: #fff !important;
}
b, strong {
	font-weight: 700;
}
p {
	font-weight: 400;
}
.themeBtn_gradient {
	background: rgb(238,39,118);
    background: linear-gradient(0deg, rgba(238,39,118,1) 0%, rgba(253,187,45,1) 100%);
	border: none;
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	border-radius: 5px;
}

.page_content_area {
	padding: 35px 0;
	min-height: 600px;
}
.theme_boxWrap {
	background-color: #fff;
	border-radius: 5px;
	padding: 24px;
}
.full_overlay {
	background-color: rgba(0, 0, 0, 0.8);
	box-sizing: border-box;
	height: 100%;
	left: 0;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 99999;
	color: #fff;
}
/* Full page Loader */
.loader-lg {
	width: 70px;
	height: 70px;
	position: relative;
	animation: sk-chase 2.5s infinite linear both;
}
.loader-lg-dot {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	animation: sk-chase-dot 2.0s infinite ease-in-out both;
}
.loader-lg-dot:before {
	content: '';
	display: block;
	width: 25%;
	height: 25%;
	background-color: #fff;
	border-radius: 100%;
	animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}
.loader-lg-dot:nth-child(1) {
	animation-delay: -1.1s;
}
.loader-lg-dot:nth-child(2) {
	animation-delay: -1.0s;
}
.loader-lg-dot:nth-child(3) {
	animation-delay: -0.9s;
}
.loader-lg-dot:nth-child(4) {
	animation-delay: -0.8s;
}
.loader-lg-dot:nth-child(5) {
	animation-delay: -0.7s;
}
.loader-lg-dot:nth-child(6) {
	animation-delay: -0.6s;
}
.loader-lg-dot:nth-child(1):before {
	animation-delay: -1.1s;
}
.loader-lg-dot:nth-child(2):before {
	animation-delay: -1.0s;
}
.loader-lg-dot:nth-child(3):before {
	animation-delay: -0.9s;
}
.loader-lg-dot:nth-child(4):before {
	animation-delay: -0.8s;
}
.loader-lg-dot:nth-child(5):before {
	animation-delay: -0.7s;
}
.loader-lg-dot:nth-child(6):before {
	animation-delay: -0.6s;
}
/* Full page Loader ends */
/* Small Loader */
.loader-sm {
	width: 60px;
	text-align: center;
	display: inline-block;
}
.loader-sm>div {
	width: 12px;
	height: 12px;
	background-color: #ee2776;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader-sm .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader-sm .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.loader_color_variant {
	background-color: var(--whiteGlow) !important;
}
/* Small Loader ends */

@-webkit-keyframes sk-bouncedelay {
 0%, 80%, 100% {
-webkit-transform: scale(0)
}
 40% {
-webkit-transform: scale(1.0)
}
}
 @keyframes sk-bouncedelay {
 0%, 80%, 100% {
 -webkit-transform: scale(0);
 transform: scale(0);
}
40% {
 -webkit-transform: scale(1.0);
 transform: scale(1.0);
}
}
 @keyframes sk-chase {
 100% {
transform: rotate(360deg);
}
}
 @keyframes sk-chase-dot {
 80%, 100% {
transform: rotate(360deg);
}
}
 @keyframes sk-chase-dot-before {
 50% {
 transform: scale(0.4);
}
100%, 0% {
 transform: scale(1.0);
}
}
/* Global CSS ends here */

/* Header CSS starts here */
.topHeader {
	background-color: #fff;
	padding:5px 0;
	width: 100%;
	transition: all ease 0.6s
}
.topHeader .navbar {
	padding: 0;
}
.topHeader .navbar-nav {
	color: var(--menuColor);
	margin: 5px 0 0 0;
}
.topHeader .navbar-nav .nav-item {
	margin: 0 35px 0 0;
}
.topHeader .navbar-expand-lg .navbar-nav .nav-link {
	color: var(--menuColor);
	padding: 0;
	font-weight: 700;
	font-size: 17px;
}
.topHeader .navbar-expand-lg .navbar-nav .nav-link:hover {
	color: #333;
}
.currency_menu img {
	margin-right: 5px;
	height: 12px;
	width: 17px;
	display: inline-block;
	margin-top: -3px;
}
span.country_flag {
	margin-right: 5px;
}
a.dropdown-item .country_flag img {
	width: 17px;
	height: 12px;
}
.topHeader .dropdown-toggle::after {
	top: 2px;
	position: relative;
}
.topHeader ul.menuLeft li:first-child {
	margin-left: 15px !important;
}
.topHeader ul.menuLeft li:last-child {
	margin-right: 0 !important;
}
.topHeader ul.menuRight li:last-child {
	margin-right: 0 !important;
}
.topHeader .navbar-toggler-icon {
	background: url(../images/menuIcon2.svg) no-repeat;
	width: 44px;
	height: 35px;
	background-size: cover;
}
.topHeader .navbar-toggler {
	border: 0;
	padding: 0;
	outline: 0;
}
.arabicMenu {
	font-family: 'DroidKufiBold' !important;
	font-weight: normal !important;
	font-style: normal !important;
}
/* Header CSS ends here */
/* Footer CSS starts here */
.footer {
	background: #171717;
	padding: 20px 0
}
.footer hr {
	background: #4686c1
}
.footer .f_topicon {
	text-align: center
}
.footer .f_topicon ul {
	padding: 0
}
.footer .f_topicon li {
	list-style: none;
	margin: 0 8px;
	display: inline-block
}
.footer .f_topicon img {
	height: 35px
}
.footer p {
	color: #b0d7fb;
	text-align: center
}
.footer_link {
	text-align: center
}
.footer_link ul {
	padding: 0
}
.footer_link li {
	list-style: none;
	margin: 0 10px 0 10px;
	position: relative;
	display: inline-block
}
.footer_link li:after {
	content: "";
	width: 1px;
	height: 10px;
	background: #b0d7fb;
	position: absolute;
	top: 8px;
	right: -13px
}
.footer_link li:last-child:after {
	display: none
}
.footer_link li a {
	color: #b0d7fb;
}
/* Footer CSS ends here */
/* Session out */
.session_out {
    width: 500px;
    background: #fff;
    padding: 24px;
    text-align: center;
    color: #3d454e;
    border-radius: 5px;
    border: 1px solid #12154b;
}
.session_out h4 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight:700;
	color: rgb(21,94,162);
    text-transform: uppercase;
}
.icon-sessionout {
    background-image: url(../images/sessionout.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 180px;
    height: 150px;
    display: inline-block;
}
/* Session out ends */
/*404*/
.page_404 {
	background-color: var(--mediumBlue);
	box-sizing: border-box;
	height: 100%;
	left: 0;
	padding: 0;
	position: fixed;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 99999;
}
.icon-not-found {
	background-image: url(../images/404_pic.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width:100%;
	height:300px;
	display: inline-block;
}
.page_404 h5 {
	font-size: 30px;
	color: #fff;
	margin-bottom: 5px;
	font-weight: 700;
	text-transform: uppercase;
}
.page_404_font_16 {
	font-size: 16px;
	padding-bottom: 15px;
	color: #fff;
}
.common_btnPad {
	padding: 10px 20px;
	color: #fff;
}
.common_btnPad:hover {
	color: #fff;
}
/*404 ends*/
/* Support */
.transformCaptialize {
	font-size:13px;
}
.select_bx.arrowAlign_common::after{
	top:45% !important;
}
.bodyScroll_hide{overflow: hidden !important;}
/* Support ends */
@media (max-width:991px) {
/* Header CSS media queries starts here */	 
.topHeader .navbar-nav .nav-item {
	margin: 0 0 0px 0 !important;
	padding-bottom: 0px !important;
	border-bottom: 1px solid #656b74;
}
.navbar-brand {
	width: 160px !important;
}
.topHeader .navbar-nav {
	margin: 20px 0 0 0;
}
/* Header CSS media queries ends here */

/* Footer CSS media queries starts here */
.footer .f_topicon li {
	margin-bottom: 4px
}
.footer .f_topicon img {
	height: 32px
}
.footer p {
	padding: 0 15px;
	margin: 0;
}
.footer_link li a {
	font-size: 13px
}
/* Footer CSS media queries ends here */
}
@media (max-width:767px) {
.session_out {
    width: 290px;
    padding: 25px 10px;
}
.icon-sessionout {
    width: 150px;
    height: 100px;
}
}
/* Popup */

.popup_wrap {
	margin: 60px auto
}
.popup_wrap .modal-content {
	border: none
}
.popup_wrap .close {
	background: url(../images/close.svg) no-repeat #ee2776 center;
	background-size: 45%;
	width: 30px;
	height: 30px;
	border: none;
	opacity: 1;
	border-radius: 50%;
	position: absolute;
	top: -12px;
	right: -12px
}
.popup_wrap .close:hover {
    background-color: #fcb032;
}
.popup_wrap h4 {
	color: #2b3042
}
.popup_wrap .form-control {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 5px 15px;
	height: 42px;
	color: #2b3042
}
.popup_wrap select.form-control {
	height: 42px!important
}
.popup_wrap textarea.form-control {
	height: 100px
}
.popup_wrap .search_btn {
	margin-top: 0
}
 @media only screen and (max-width:991px) {
.popup_wrap .close {
	right: 5px
}
.popup_wrap .form-control {
	padding: 5px 10px
}
}
/* Popup end */


/* Menu */

.user_name i {
	width: 20px;
	height: 20px;
	background: url(../images/user.svg);
	position: relative;
	display: inline-block;
	top: 0px;
	background-size: contain;
	margin-right: 5px;
	background-repeat: no-repeat;
}
li.user_name a {
    display: flex !important;
}

 @media only screen and (max-width: 1199px) {

.mob_btn {
	position: absolute;
	padding: 8px 7px;
	background-color: transparent;
	cursor: pointer;
	right: 15px;
	top: 27px;
	z-index: 10;
	background: #fff;
	border-radius: 4px
}
.mob_btn span {
	display: block;
	width: 30px;
	height: 3px;
	border-radius: 5px;
	background: #ee2776
}
.mob_btn span+span {
	margin-top: 5px
}
.main_nav {
	position: fixed;
	width: 260px;
	top: 0;
	left: -260px;
	background: #e05155;
	height: 100%;
	transition: all ease 0.2s;
	z-index: 1005;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.7);
	overflow-y: auto
}
.main_nav ul {
	margin: 0;
	padding: 0;
	display: block !important ;
	margin-top: 0px
}
.main_nav ul li {
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	text-transform: capitalize;
	font-size: 13px;
	margin: 0;
	color: #fff;
	font-weight: 600;
}
.main_nav ul li li {
	border-top: 1px solid #656b74;
	border-bottom: none;
	background: #4c4a4a;
}
.main_nav ul li li a {
	padding-left: 25px;
}
.main_nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 1em;
	display: block;
	padding: 10px;
	padding-left: 15px
}
.main_nav ul li a:hover {
	background: #2d2d2d
}
.show_menu .main_nav {
	left: 0
}
.show_menu .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1001
}
.main_nav ul li.submenu i {
	position: absolute;
	width: 100%;
	height: 44px;
	top: 0;
	right: 0;
	cursor: pointer;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
}
.main_nav ul li.submenu i:after {
	content: "";
	height: 0;
	width: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 6px solid #b3b3b3;
	position: absolute;
	right: 17px;
	top: 18px;
	z-index: 10;
}
.main_nav ul ul {
	margin: 0;
	display: none;
}
}
/* Menu End */

.modal-open {
	overflow: hidden;
	padding-right: 0px !important;
	/*overflow: visible !important;*/
}
.search_btn {
	background: rgb(238,39,118);
    background: linear-gradient(0deg, rgba(238,39,118,1) 0%, rgba(253,187,45,1) 100%);
	color: #fff;
	border: none;
	border-radius: 5px;
	padding:10px 25px;
	cursor: pointer;
	margin: 15px 0 0 0;
	display: inline-block;
	text-align: center
}
.search_btn:hover {
	color: #fff;
	background: rgb(238,39,118);
    background: linear-gradient(0deg, rgba(238,39,118,1) 0%, rgba(253,187,45,1) 100%);
}
.eraseBtn {
	position: absolute;
	top: 15px;
	right: 6px;
	width: 18px;
	height: 18px;
	font-size: 12px;
	background: rgb(238,39,118);
	text-align: center;
	color: var(--whiteGlow) !important;
	line-height: 19px;
	font-weight: 700;
	border-radius: 5px;
}
.eraseBtn:hover {
	color: var(--whiteGlow);
}
.home_btn.eraseBtn{
	top: 0px;
	right: 0px;
}

/* cookies style Start SHINTO */
.cookies_bg {
    background-color: #10182f;
    position: fixed;
    bottom:25px;
    left: 25px;
    padding: 30px;
    border-radius:10px;
    z-index: 5050;
    text-align: center;
    color: #fff;
    font-size: 15px;
    width: 25%;
}
.cookies_bg img{width:60px; padding-bottom:20px;}
.cookies_bg a{color: #fff; text-decoration: underline; cursor: pointer;}
.cookies_bg a:hover{color: #fff; text-decoration: underline; cursor: pointer;}
.cookies_bg p{margin-bottom:5px;}
.allowCookieBtn {
    background: linear-gradient(0deg, #165fa3 0%, #428bc9 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 6px 25px;
    cursor: pointer;
    margin: 15px 0 0 0;
    display: inline-block;
    text-align: center;
}
.declineBtn{
    background:none;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 6px 25px;
    cursor: pointer;
    margin: 15px 0 0 0;
    display: inline-block;
    text-align: center;
}
.log-wth-social{
	width: 100%;
	padding-top: 15px;
}
.soc-bt_wrp{
	display: flex;
	width: 100%;
}
.log-wth-social p{
	width: 100%;
	text-align: center;
	font-size: 13px;
	color: #232323;
}
.log-wth-social a{
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	height: 50px;
	font-size: 13px;
	border: 1px solid #666666;
	color: #232323;
	align-items: center;
}
.log-wth-social a.face_book{
	border: 1px solid #3b5998;
	background-color: #3b5998;
	color: #fff;
	border-radius: 5px 0 0 5px;
}
a.goog_log{border-radius: 0px 5px 5px 0px;}

.log-wth-social a i img{
	margin-right: 10px;
}
.log-wth-social a.face_book i img{
	margin-right: 0px;
}
div#popup_message {
    padding-bottom: 10px;
}
h2#popup_title_blue {
    padding:5px 15px;
    font-size: 17px;
    text-align: left;
    line-height: 1.75em;
    color: #fff;
    background: #ee2776;
    border-radius: 5px 5px 0 0;
    cursor: default;
    margin: 0em;
}
div#popup_content_blue {
    padding: 15px;
    font-size: 14px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    border: solid #ee2776 2px;
}
input#popup_ok {
    background: linear-gradient( 0deg, #165fa3 0%, #428bc9 100%);
    padding: 5px 15px;
    border:none;
    outline:none;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}


.hmLoginModal .radio {
	margin: 0;
	padding-right: 30px;
}

.hmLoginModal .radio input[type=radio] {
	position: absolute;
	opacity: 0;
}

.hmLoginModal .radio input[type=radio] + .radio-label:before {
	content: "";
	background: #cad1dc;
	border-radius: 100%;
	border: none;
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
	top: 0;
	margin-right: 10px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}

.hmLoginModal label {
	display: inline-block;
	margin-bottom: .5rem;
	color: #3c4449;
	font-size: 16px;
	cursor: pointer;
}

.hmLoginModal .radio input[type=radio]:checked + .radio-label:before {
	background: linear-gradient(0deg, rgba(238,39,118,1) 0%, rgba(253,187,45,1) 100%);
	box-shadow: none;
}

.hmLoginModal .radio input[type=radio]:focus + .radio-label:before {
	outline: none;
	border-color: #3197EE;
}

.hmLoginModal .radio input[type=radio]:disabled + .radio-label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}

.hmLoginModal .radio input[type=radio] + .radio-label:empty:before {
	margin-right: 0;
}

/* flight progress style Start SHINTO */
.flight_prg .modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 3px solid #fff; border-radius:10px}
.progress-bar {
    background-color: #ee2776}
.page_loader_modal {
    margin-top: 0; text-align: center;}
.progress_popup_body {
    background-color: #fff;
    padding:20px}
.progress_note_popup {
    text-align: center;
    font-size: 16px;
    color: #010101;
    max-width: 63%;
    margin: 17px auto;
    line-height: 20px}
.progress_itenery {
    background-color: #fff}
.prg_palce,.prg_middle {
    width: 100%;
    float: left;
    text-align: center}
.progress_itinerary {
    width: 100%;
    background-color: #fff;
    display: flex; color: #000;}
.prg_palce {
    background-color: #fff}
.prg_palce .palce_name {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 15px}
.place_code {
    margin-top: 0;
    font-size: 16px;
    color: #010101}
.pro_travellers {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-size: 16px}
.prg_dir {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 15px}
.prog_logo {
    width: 100%;
    margin-bottom: 15px;
    text-align: center}
.modal-backdrop.in {
    opacity: .7;
    filter: alpha(opacity=50)}
.progress {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f89340}
.prg_palce_h {
    width: 50%;
    float: left;
    text-align: center}
.search_location {
    float: left;
    width: 100%;
    text-align: center}
.hotel_location_name {
    margin-top: 0;
    font-size: 20px}
.search_location h5 {
    font-size: 16px;
    padding-top:0px;
    margin-bottom:5px}
.prgresmarg {
    margin-top: 30px}
.h_palce_name {
    font-size: 16px;
    padding-top:0px; margin-bottom:5px}
/* flight progress style end  */
.form-control:disabled, .form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}
.main_nav>ul>li:last-child {
    margin-right: 0px;
}
.alert_revamp{
	color: #EF000D;
    font-weight: 600;
    background-color: #F7EBEC;
    border-color: #F7EBEC;
}






@media (max-width:991px) {

.cookies_bg {
    bottom: 15px;
    left: 15px;
    padding: 20px 10px;
    width: 45%;
}
}
@media (max-width:767px) {

	.cookies_bg {
	    bottom: 15px;
	    left: 15px;
	    padding: 20px 10px;
	    width: 90%;
	}
}
/* cookies style end */
@media (max-width:499px) {
	.soc-bt_wrp{
		flex-wrap: wrap;
	}
	.log-wth-social a{
		width: 100%;
	}
	.ad_ch_inf{
		display: inline-flex;
		width: 100%;
		font-size: 12px;
	}
}
@media (max-width:359px) {
	.home_btn.eraseBtn{
		top: 0px;
		right: -10px;
	}
}




a.forg_pass {
    color: #ef3072;
}

/*==== Currency Dropdown Starts ====*/
.currency_menu_content{display:none;position:absolute;background:white;min-width:16rem;-webkit-box-shadow:0px 3px 12px rgba(0, 0, 0, 0.01);-moz-box-shadow:0px 3px 12px rgba(0, 0, 0, 0.01);box-shadow:0px 3px 12px rgba(0, 0, 0, 0.01);border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:5px;border-bottom-left-radius:5px;-webkit-border-top-left-radius:0;-webkit-border-top-right-radius:0;-webkit-border-bottom-right-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-topleft:0;-moz-border-radius-topright:0;-moz-border-radius-bottomright:5px;-moz-border-radius-bottomleft:5px;z-index:1; top: 60px;right: 0;}
.currency_menu_content a.dropdown-item{padding:7px 15px;border-bottom:1px solid #f1f1f1;font-size:13px;text-transform:none;font-weight: 500;}
.currency_menu_content a.dropdown-item:hover{background:#f4f4f4;border-bottom:1px solid #f4f4f4;color:var(--textFont);}
.currency_menu_content a.dropdown-item:last-child{border-radius:0 0 5px 5px;border:0;}
a.dropdown-item .country_flag img { width: 20px;height: 15px;}
span.country_flag{margin-right:5px;}
.currency_menu_content.show{display:block;}
/*==== Currency Dropdown Ends ====*/


/* Header CSS */
header{width:100%;height:85px;padding:5px 0;background-color:#FFFFFF;-webkit-box-shadow:0px 0px 5px rgb(0 0 0 / 20%);-moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.2);box-shadow:0px 0px 5px rgb(0 0 0 / 20%);position:fixed;    z-index: 5;}
.HmLogo{width:49px;height:77px;/*background:url(../images/logo.png) no-repeat center;*/ background-size:contain;}
.HmLogo img{width: 100%;height: 77px;}
.main_nav ul{display:flex;border-radius:5px;}
.searchMenu .nav-item{padding:0 15px;}
.searchMenu .nav-link{color:#5c5c5c !important;font-size:14px;font-weight:700;padding:0;line-height:77px;}
.searchMenu a.nav-link:hover{color:#e05155 !important;}
a.nav-link.active{border-bottom:solid #e97b51 3px;color: #e05155 !important;}
.hdlogin a{ display:inline !important; }
.hdlogin a:first-child:after{ display:none;}
.HmLogo.AgencyLogo {
    width: 100%;
}

/* Hogozat Footer CSS */
.footer_backcloth{background-color:#373737; color:#eaeaea;}
.footer_series{width:100%;}
.objects_line{display:flex; align-items:center; justify-content:space-between; padding:12px 0; flex-wrap:wrap;}
.subscribe_object{-ms-flex:0 0 30%;flex:0 0 30%;max-width:30%;}
.payment_object{-ms-flex:0 0 43%;flex:0 0 43%;max-width:43%;}
.socialMedia_object{-ms-flex:0 0 11%;flex:0 0 11%;max-width:11%;}
.email_subscription input{height:47px;background:#fff;color:#3b4255;border:0;width:100%;padding:12px 20px;border-radius:5px;}
.email_subscription button{width:70px;height:47px;background: rgb(222,62,106);
background: linear-gradient(0deg, rgba(222,62,106,1) 0%, rgba(238,148,70,1) 100%);color:#fff;border:0;margin-left:12px;border-radius:5px; display:inline-flex; align-items:center; justify-content:center; }
.loaderAlign{width:70px; display:inline-flex; align-items:center; margin-left:12px;}
.payment_object ul{display:flex;flex-wrap:wrap;justify-content:flex-end;  }
.payment_object ul li{margin-right:15px;}
.payment_object ul li:last-child{margin-right:0px;}
.payment_object ul li img{height:35px;}
.firm_license{display:inline-flex; align-items:center;  }
.license_info{font-size:13px; line-height:18px; padding-left:3px;}
.socialMedia_object ul{display:flex;flex-wrap:wrap;justify-content:flex-end;  }
.socialMedia_object ul li{margin-right:7px; width:34px; height:34px; background-color:#fff; border-radius:50%; display:inline-flex; align-items:center; justify-content:center;}
.socialMedia_object ul li:last-child{margin-right:0px;}
.socialMedia_object ul li img{height:18px;}
.dividingLine {border-top: 1px solid #adadad !important;}
.knot_objects{width:100%; padding:28px 0;}
.slogan_knot {
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
}
.deals_tieup li{margin-bottom:15px; font-size:13px; font-weight:400;}
.deals_tieup li:last-child{margin-bottom:0px;}
.deals_tieup li a{color:#eaeaea; text-decoration:none;}
.deals_tieup li a:hover{color:#fff; text-decoration:none;}
.talkTo li{margin-bottom:4px; font-size:13px; font-weight:400;}
.connect_num{font-size:24px !important;}
.talkTo li:last-child{margin-bottom:0px;}
.connectPadding{padding:20px 0;}
.connective_links{width:100%; justify-content:center; display:flex;flex-wrap:wrap;}
.connective_links li{ font-size:13px; }
.fillerSpace{padding-left:8px;}
.connective_links li a{color:#eaeaea; text-decoration:none; font-size:13px; padding:0px 8px; border-right:1px solid #eaeaea;}
.connective_links li:last-child a{border-right:0px;}
.connective_links li a:hover{color:#fff; text-decoration:none;}
.selctarw{padding-right: 15px;}
.disable{opacity: .3;pointer-events: none;}
/*----------inline loader-----*/
.loader-small {
  text-align: center;
}

.loader-small > div {
  width: 12px;
  height: 12px;
  background-color:#ee2776;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loader-small .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader-small .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
/*----------inline loader ends-----*/

/* Popup */

.popup_wrap {
  margin: 60px auto
}
.popup_wrap .modal-content {
  border: none
}
.popup_wrap .close {
  background: url(../images/close.svg) no-repeat #ee2776 center;
  background-size: 45%;
  width: 30px;
  height: 30px;
  border: none;
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  right: -12px
}
.popup_wrap .close:hover {
    background-color: #fcb032;
}
.popup_wrap h4 {
  color: #2b3042
}
.popup_wrap .form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 15px;
  height: 42px;
  color: #2b3042
}
.popup_wrap select.form-control {
  height: 42px!important
}
.popup_wrap textarea.form-control {
  height: 100px
}
.popup_wrap .search_btn {
  margin-top: 0
}
a.new_acc {
    color: #fff;
    background: #fcb032;
    padding: 5px 10px !important;
    border-radius: 5px;
    margin: 0px;
    height: 32px;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 20px;
}
 @media only screen and (max-width:991px) {
.popup_wrap .close {
  right: 5px
}
.popup_wrap .form-control {
  padding: 5px 10px
}
}
/* Popup end */



/* Media Query Start */


@media screen and (min-width: 768px) and (max-width: 991px) {
	.mob_btn{top: -55px !important; right:-340px !important;}
}


@media (max-width:1024px){
	/*Designer CSS 1 */
.payment_object{-ms-flex:0 0 55%;flex:0 0 55%;max-width:55%;}
.socialMedia_object{-ms-flex:0 0 14%;flex:0 0 14%;max-width:14%;}
.payment_object ul li{margin-right:10px;}
.license_info{font-size:12px; }
/*Designer CSS 1 ends */
}
@media (min-width: 1200px) {
/*=== Append and Prepend ===*/
 .desk-hide{display:none;}
 /*=== Append and prepend ====*/
 /*==== Menu ====*/
 .main_nav ul li{display:inline-block;position:relative;padding:10px 15px; }
.main_nav ul li:nth-child(1){ }
.main_nav ul li:nth-child(3){ }
 .main_nav ul li:last-child{ }
 .main_nav ul li a{color:#5e5e5e;display:block;text-decoration:none;font-size:14px;line-height:17px;font-weight:700;letter-spacing:1px;position:relative;}
 .main_nav ul li a.ar_font{font-family:"DroidKufiRegular", sans-serif;}
 .main_nav ul li a:after{content:"";position:absolute;width:2px;height:30px;right:-15px;top:-5px;background:#ededed;z-index:2;}
 .main_nav ul li:nth-child(3) a:after{ }
 .main_nav ul li a:hover{color:#e05155;}
 .main_nav ul li a.dropdown-item:after{background:none;}
 .main_nav ul li:last-child{display: flex;}
 .main_nav ul li:last-child a:after{display:none;}
 a.currency_menu {padding-left: 15px;}
 .mob_btn{display:none;}
 /*==== Menu End ====*/
 .FdlsPdng{ padding-right:5px;}
 .menu_wrp{width: 100%;}
 .main_nav{display: flex;justify-content: space-between;}
}

@media (max-width: 991px) {
/*==== Menu ====*/
 .main_nav{position:fixed;width:260px;top:0;right:-260px;background:#e05155;height:100%;transition:all ease 0.5s;-o-transition:all ease 0.5s;-webkit-transition:all ease 0.5s;z-index:1005;-webkit-box-shadow:inset 0 0 4px rgba(0, 0, 0, 0.4);-moz-box-shadow:inset 0 0 4px rgba(0, 0, 0, 0.4);box-shadow:inset 0 0 4px rgba(0, 0, 0, 0.4);overflow-y:auto;}
 .main_nav ul{margin:0;padding:0;display:block;margin-top:0px;}
 .main_nav ul.mnav{margin-bottom:30px;}
 .main_nav ul li{display:block;border-bottom:1px solid rgba(255, 255, 255, 0.1);position:relative;text-transform:capitalize;font-size:13px;font-weight:300;padding:0 !important;}
 .main_nav ul li .currency_menu_content{position:static;border-radius:0;-webkit-border-radius:0;background:rgba(0, 0, 0, 0.2);}
 .main_nav ul li .currency_menu_content a.dropdown-item{color:#ffffff;font-weight:300;border-bottom:1px solid rgba(255, 255, 255, 0.1);}
 .main_nav ul li .currency_menu_content a.dropdown-item .country_flag img{width:15px;}
 .main_nav ul li a{color:#ffffff;text-decoration:none;font-size:14px;display:block;padding:10px;padding-right:0px;font-weight: 600;}
 .main_nav ul li.submenu i{position:absolute;width:43px;height:39px;top:0;right:0;cursor:pointer;transition:all ease 0.5s;-o-transition:all ease 0.5s;-webkit-transition:all ease 0.5s;}
 .main_nav ul li.submenu i:after{content:"";height:0;width:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:6px solid #b3b3b3;position:absolute;right:17px;top:18px;z-index:10;}
 .main_nav ul li.dropdown:hover a{color:#ffffff !important;}
 .main_nav ul ul{margin:0;display:none;}
 .main_nav ul ul li:last-child{border-bottom:0;}
 .main_nav ul ul li:first-child{border-top:1px solid green;}
 .main_nav ul ul li a{padding-left:20px;}
 .main_nav ul ul li ul a{padding-left:30px;}
 .show_menu .main_nav{right:0;}
 .show_menu .overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0, 0, 0, 0.3);z-index:1001;}
 .mob_btn{position:absolute; padding:5px 7px;margin:0px;background-color:transparent;cursor:pointer;right:15px;top:30px;top: -190px;}
 .mob_btn span{display:block;width:30px;height:3px;border-radius:1px;background:#e05155; }
 .mob_btn span + span{margin-top:5px;}
  .main_nav ul li a.ar_font{font-family:"DroidKufiRegular", sans-serif;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
 /*==== Menu End ====*/
  /*Designer CSS 2 */
 .subscribe_object{-ms-flex:0 0 35%;flex:0 0 35%;max-width:35%;}
.payment_object{-ms-flex:0 0 65%;flex:0 0 65%;max-width:65%;}
.socialMedia_object{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}
.payment_object ul li{margin-right:10px;}
.socialMedia_object ul{justify-content:center;  }
.resolution_mgn{margin-bottom:20px;}
.slogan_knot {margin-bottom: 15px;}
.knot_objects{width:100%; padding:12px 0;}
/*Designer CSS 2 ends */
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.searchMenu .nav-link{ font-size:13px;}
	.searchMenu .nav-item {padding: 0 5px;}
	.SearchBoxmain label input{ font-size:13px;}
	.SearchBoxmain .daysformay{ font-size:13px;}
	.main_nav ul li a{ font-size:13px;}
 
}

@media (max-width: 767px) {
	
	/*==== Header ====*/
	.searchMenu{top:20px;position:relative;width:100%;}
	.searchMenu .nav-link{line-height:30px;border:solid #fff 2px;margin-bottom:10px;border-radius:4px;text-align:center;width:100%;}
	.searchMenu .nav-item{padding:0 0px;width:48%;}
	.searchMenu .nav-item:first-child{padding-left:0;}
	.searchMenu .nav-item:last-child{padding-right:0;}
	.searchMenu ul{display:flex;justify-content:space-between;}
	a.nav-link.active{border:solid #e97b51 2px;}
	.Banner{padding-top:130px !important;height:auto;}
	header{ position:relative;  }
	/*==== Header End ====*/
	/* Designer CSS 3 */
	.subscribe_object{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}
.payment_object{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;}
.payment_object ul{justify-content:flex-start;  margin-top:10px; }
.payment_object ul li{margin-bottom:10px;}
.payment_object ul li:first-child{margin-right:0px; width:100%; }
.payment_object ul li:last-child{margin-right:0px;}
.socialMedia_object ul{justify-content:flex-start;  }
/* Designer CSS 3 ends */	
}



.main_nav ul li.hmwallet a:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    right: -15px;
    top: 7px;
    background: transparent;
    z-index: 2;
}
.main_nav ul li.hmwallet a{padding: 0px;}
.dropdown-menu.walletdrop{padding: 10px;}
.payAmount_approx ul{width: 100%;}
span.fareFinal {
    font-size: 16px;
}