/* This is My Custom CSS */
/* Typography CSS */
@font-face {
    font-family: 'dinproblack';
    src: url('../font/dinproblack.eot');
    src: url('../font/dinproblack.eot') format('embedded-opentype'),
         url('../font/dinproblack.woff2') format('woff2'),
         url('../font/dinproblack.woff') format('woff'),
         url('../font/dinproblack.ttf') format('truetype'),
         url('../font/dinproblack.svg#dinproblack') format('svg');
}
@font-face {
    font-family: 'dinprobold';
    src: url('../font/dinprobold.eot');
    src: url('../font/dinprobold.eot') format('embedded-opentype'),
         url('../font/dinprobold.woff2') format('woff2'),
         url('../font/dinprobold.woff') format('woff'),
         url('../font/dinprobold.ttf') format('truetype'),
         url('../font/dinprobold.svg#dinprobold') format('svg');
}
@font-face {
    font-family: 'dinprolight';
    src: url('../font/dinprolight.eot');
    src: url('../font/dinprolight.eot') format('embedded-opentype'),
         url('../font/dinprolight.woff2') format('woff2'),
         url('../font/dinprolight.woff') format('woff'),
         url('../font/dinprolight.ttf') format('truetype'),
         url('../font/dinprolight.svg#dinprolight') format('svg');
}
@font-face {
    font-family: 'dinpromedium';
    src: url('../font/dinpromedium.eot');
    src: url('../font/dinpromedium.eot') format('embedded-opentype'),
         url('../font/dinpromedium.woff2') format('woff2'),
         url('../font/dinpromedium.woff') format('woff'),
         url('../font/dinpromedium.ttf') format('truetype'),
         url('../font/dinpromedium.svg#dinpromedium') format('svg');
}
@font-face {
    font-family: 'dinproregular';
    src: url('../font/dinproregular.eot');
    src: url('../font/dinproregular.eot') format('embedded-opentype'),
         url('../font/dinproregular.woff2') format('woff2'),
         url('../font/dinproregular.woff') format('woff'),
         url('../font/dinproregular.ttf') format('truetype'),
         url('../font/dinproregular.svg#dinproregular') format('svg');
}
@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');
}

/*==== Currency Dropdown Starts ====*/
.currency_menu_content {
	display: none;
	position: absolute;
	background: white;
	min-width: 14rem;
	-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;
}

.currency_menu_content a.dropdown-item {
	padding: 7px 15px;
	border-bottom: 1px solid #f1f1f1;
	font-size: 13px;
	text-transform: none;
}

.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 ====*/
/* Global CSS */
body {
	font-family: 'dinproregular', 'DroidKufiRegular';
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: hidden !important;
	background: #fff;
	color: #494e54;
	font-size: 14px;
}
button{cursor: pointer;}
.overflow-hidden {
	overflow: hidden !important;
}

b,strong {
	font-weight: 600;
}

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 {
	transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-webkit-transition: all ease 0.5s;
	color: #4a494a;
}

a:focus,a:active,a:visited,a:hover {
	text-decoration: none;
}

a:hover {
	color: #0056b3;
}

*,: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;
}

strong {font-family: 'dinprobold';}

button:focus {
	outline: 0;
}

button {
	cursor: pointer;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
	margin-bottom: 0;
	font-family: inherit;
	font-weight: normal;
	line-height: 1.2;
}

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;
}

.clear {
	clear: both;
}

.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}

.hmSearchBox .form-control::-webkit-input-placeholder {
 /* Edge */
	color: #3c4449;
}

.hmSearchBox .form-control:-ms-input-placeholder {
 /* Internet Explorer 10-11 */
	color: #3c4449;
}

.hmSearchBox .form-control::placeholder {
	color: #3c4449;
}

.textright {
	text-align: right;
}

.refundable {
	color: #15b100;
	font-size: 13px;
}

.nonrefundable {
	color: #f00;
	font-size: 13px;
}

.no_padding {
	padding-right: 0;
	padding-left: 0;
}

.no_paddingR {
	padding-right: 0;
}

.no_paddingL {
	padding-left: 0;
}

.dir_default {
	direction: ltr;
}

.txtalign_default {
	text-align: left;
}

.theme_color {
	color: #438cca;
}

.theme_btnStyle {
	background-color: #41a8f7;
	cursor: pointer;
	color: #ffffff;
	outline: none;
	font-size: 16px;
	border-radius: 5px;
	height: 45px;
	line-height: 40px;
	padding: 0 20px;
	border: 1px solid #fff;
}

.theme_innerBtn {
	background-color: #41a8f7;
	color: #ffffff;
	outline: none;
	font-size: 16px;
	border-radius: 5px;
	height: 45px;
	line-height: 40px;
	padding: 0 20px;
	border: 1px solid #fff;
}

a.theme_innerBtn:hover {
	color: #ffffff;
}

.theme_btnStyle:hover {
	background-color: #081e63;
	color: #ffffff;
	outline: none;
	border: 1px solid #fff;
}

.min_Height {
	min-height: 550px;
}

.error_color {
	color: #e62828;
}

.refund_color {
	color: #6cac07 !important;
}

.non_refund_color {
	color: #ff221d !important;
}

.cursor_default {
	cursor: pointer;
}

.bgWhite {
	background-color: #fff;
}

.bgBlue {
	background-color: #a7cbe3;
	padding: 15px 0px;
}

.minHeight {
	min-height: 550px;
}

.no_wrap_text {
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.postnRel_common {
	position: relative;
}

.color15 {
	color: #1359a0;
}

.colorRed {
	color: #ff0000;
}

.pad-r-0 {
	padding-right: 0 !important;
}

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;
}

.container {
	position: relative;
}
.hmcode {
    width: 30%;
}
.hmPhonenbr {
    width: 70%;
}
.hmPhonenbr input.form-control {
    border-radius: 0 5px 5px 0;
}
.hmcode select.form-control {
	height: 45px !important;
	border-right: none;
	border-radius: 5px 0 0px 5px;
}
.hasDownArrow::after {
    position: absolute;
    width: 7px;
    height: 6px;
    background-image: url(../images/downArrow.svg);
    content: "";
    top: 20px;
    right: 12px;
    margin-top: 0px;
    pointer-events: none;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}
.hmLoginbtn {
    background: #081e63;
    padding: 5px 20px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
}
.hmNav ul li a {
	color: #fff;
}

.currency_menu img {
	margin-right: 5px;
	height: 12px;
	width: 17px;
	display: inline-block;
	margin-top: -3px;
}

li.nav-item {
	padding-left:22px;
	cursor: pointer;
}
.hmNav li.nav-item {
	padding-left:33px;
	cursor: pointer;
}
.hmNav li.nav-item:first-child {
	padding-left:0px;
}
.navbar-expand-lg .navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0;
}

nav.navbar.navbar-expand-lg.hmNav {
	margin-top: -5px;
}

.hmNav .dropdown-toggle::after {
	display: none;
}

.hmNav a.dropdown-item {
	color: #2f2f2f !important;
	font-size: 14px;
	padding: 5px 15px;
}

.HmLogo img {
	width: 192px;
	margin-top: 4px;
	padding-left: 10px;
}




span.space {
	padding: 0 10px;
}

.hmLoginBox span {
	display: inline-block;
}
.hmLoginBox span a{ 
	color:#FFF;
}

footer {
	padding: 30px 0;
}

.appStore img {
	border: 1px solid #fff;
	border-radius: 5px;
	margin-right: 8px;
}

.footlinks ul li a {
	color: #fff;
	font-size: 13px;
}

.footlinks h5 {
	font-size: 20px;
	padding-bottom: 25px;
}

.footlinks ul li {
	padding-bottom: 5px;
}

.footlinks p {
	padding-bottom: 0px;
	font-size: 14px;
	margin-bottom: 5px;
}
p.footemail {
    font-size: 16px;
}
p.footemail a {
    color:#FFF;
}
.footlinks h6 {
	padding-bottom: 0px;
	font-size: 17px;
	padding-bottom: 8px;
}

.appStore {
	padding-top: 10px;
}

.footsocial ul li {
	padding-right: 10px;
	padding-bottom: 18px;
	font-size: 13px;
}

.footBotom {
	color: #a2a4ce;
	font-size: 13px;
	text-align: center;
	width: 100%;
}
.footBotom  a {
    color: #a2a4ce;
}
.footBotom  a:hover {
    color: #fff;
}
.footsocial {
	padding-top: 10px;
}

.compnyreg li img {
	padding-right: 5px;
}

.hmNav .dropdown-menu {
	min-width: 13rem;
}

.hmlogReg {
	cursor: pointer;
}

.modal-body {
	color: #494e54;
	padding: 20px;
	padding-top: 0px;
}

.modal-content {
	border: 1px solid #ccc;
	border-radius: 5px;
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5;
	color: #081e63;
	font-size: 25px;
}

.modal-header .close {
    padding: 0;
    margin: 0;
    background-image: url(../images/close_round.svg);
    position: absolute;
    right: -5px;
    top: -5px;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
}
.modal-header {
	border-bottom: none;
	padding: 15px 20px;
}

.hmNewModel .form-group {
	margin-bottom: 15px;
}

.form-control {
	display: block;
	width: 100%;
	padding: .375rem .75rem;
	font-size: 14px;
	line-height: 20px;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	height: 45px;
}

.hmregister {
	background: #081e63;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 13px;
	cursor: pointer;
	color: #fff;
}

.hmNewModel .modal-body {
	padding: 10px 20px 20px;
}

.hmLoginModal .radio {
	margin: 0 0 10px;
	padding-right: 30px;
}

.hmLoginModal .radio input[type=radio] {
	position: absolute;
	opacity: 0;
}

.hmLoginModal .radio input[type=radio] + .radio-label:before {
	content: "";
	background: #081e63;
	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-color: #41a8f7;
	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;
}

.breadcrumb {
	padding: 15px 0 0;
	margin-bottom: 0;
	list-style: none;
	background-color: transparent;
	border-radius: 0;
}

li.breadcrumb-item {
	padding-left: 25px;
}

li.breadcrumb-item:first-child {
	padding-left: 0px;
}

.breadcrumb-item::before {
	display: inline-block;
	padding-right: 0;
	padding-left: 0;
	color: #6c757d;
	content: "";
	background-color: #ffffff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border: none;
    top: 1px;
    position: relative;
    right: 5px;
}

.breadcrumb-item.active::before {
	display: inline-block;
	padding-right: 0;
	padding-left: 0;
	color: #fff;
	content: "";
	background-image: url(../images/breadcrumbTick.svg);
    border-radius: 50%;
    width: 20px;
    height: 15px;
    border: none;
    top: 3px;
    position: relative;
    right: 5px;
    background-size: contain;
    background-color: transparent;
}

.breadcrumb-item.active {
	color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
	display: inline-block;
	padding-right: 0;
	padding-left: 0;
	content: "";
}

/*----------inline 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;
}

@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);
	}
}

.loader-sm {
	width: 60px;
	text-align: center;
	display: inline-block;
}

.loader-sm > div {
	width: 14px;
	height: 14px;
	background-color: #1cade3;
	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;
}

@-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);
	}
}
.hmSearchArea .loader-sm {
	position: absolute;
	top: 20px;
	right: 20px;
}

.hmsubscrbe .loader-sm {
	margin-top: 10px;
}


.spinner_sml {
  display:inline-block;
}

.spinner_sm > div {
  width: 10px;
  height: 10px;
  background-color: #081e63;

  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;
}

.spinner_sm .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner_sm .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 end-----*/


.hmNewModel .nav-tabs .nav-item.show .nav-link, .hmNewModel .nav-tabs .nav-link.active {
	color: #ffffff;
	background-color: #1cade3;
	border-color: transparent;
}

.hmNewModel .nav-tabs .nav-link {
	border: none;
	border-radius: 5px;
	font-size: 16px;
	background: #14153430;
	margin-right: 10px;
	color: #494e54;
}

.hmNewModel .nav-tabs .nav-item {
	margin-bottom: 0;
}

.hmNewModel li.nav-item {
	padding-left: 0;
}

.hmNewModel .nav-tabs {
	border-bottom: none;
}

.hmuserDrop .dropdown-menu {
	min-width: 10rem;
}

.hmuserDrop a.nav-link.active {
	color: #41a8f7;
	font-size: 14px;
}

.dropdown-menu {
	top: 100%;
	left: auto;
	right: 0;
	margin-top: 10px;
}

.menuMybookIcon {
	background-image: url(../images/mybookIcon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 22px;
	height: 20px;
	display: inline-block;
	margin-right: 5px;
}

.menuMyProflIcon {
	background-image: url(../images/myProfIcon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 17px;
	display: inline-block;
	margin-right: 5px;
}

.menuSetingIcon {
	background-image: url(../images/settingsIcon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
	width: 16px;
	height: 18px;
	display: inline-block;
	margin-right: 5px;
}

.error {
	color: #F00;
	font-size: 12px;
}

.hmcaldrhiden {
	position: absolute;
	top: 16%;
	visibility: visible;
	height: 120px;
	width: 116px;
	z-index: 999;
	background-color: transparent;
	font-size: 0px;
	border: none;
	cursor:pointer;
}

textarea.form-control {
	height: auto;
}

div#popup_content_blue {
	padding: 15px;
	font-size: 14px;
     background-color: #fff;
    border-radius: 0 0 5px 5px;
}

#popup_panel {
	text-align: right;
	margin: 7px 0 0;
}

h2#popup_title_blue {
  	padding: 10px 15px;
 	font-family: 'dinprobold';
	font-size: 17px;
    text-align: left;
    line-height: 1.75em;
    color: #fff;
    background: #41a8f7;
    border-radius: 5px 5px 0 0;
    cursor: default;
     margin: 0em;
}

#popup_container {
	border:0 !important;
}

#popup_panel input#popup_ok {
	background-color: #41a8f7;
	cursor: pointer;
	color: #ffffff;
	outline: none;
	font-size: 16px;
	border-radius: 5px;
	line-height: 38px;
	padding: 0 20px;
	border: none;
}

.full_overlay p.font-16.mt-5 {
	color: #fff;
	font-size: 18px;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #ffffff;
}



/* 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-color: #41a8f7;
    color: #fff;
  font-family: 'dinprobold', 'DroidKufiBold';
    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;
   font-family: 'dinprobold', 'DroidKufiBold';
    border: none;
    border-radius: 30px;
    padding: 6px 25px;
    cursor: pointer;
    margin: 15px 0 0 0;
    display: inline-block;
    text-align: center;
}
#topcontrol {
    background-color: #41a8f7;
    border-radius: 50%;
    z-index: 7;
    left: auto !important;
    right: 5px !important;
    bottom: 50px !important;
}
#topcontrol img {
    width: 40px;
    height: 40px;
}
.btn-link.focus, .btn-link:focus {
    text-decoration: none;
}
.paymentSection label{cursor: pointer;}
footer [class*="col-"] { /*padding-left: 25px; padding-right: 25px;*/}
@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 */

.non-refundable {
    color: #e52112;
    font-size: 12px;
}

.flightResult-odd {
    position: relative;
}

.baggageAllowed .none_stop {
    position: relative;
    margin-top: 15px;
}




.htlStarrating ul.hmhtlStar {
    display: flex;
    justify-content: space-between;
}
.htlStarrating label {
    color: #000 !important;
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}
ul.hmhtlStar li {
    width: auto;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}

.htlStr{
    background-image: url(../images/htl_star.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width:12px;
    height: 12px;
    display: inline-block;
    margin-left:2px;
}
ul.hmhtlStar label {
    padding-left: 22px !important;
    font-size: 12px !important;
    font-weight: 600;
}
.htlStarrating h4 {
    font-size: 15px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.hmhtlStar input{display: none;}
.hmhtlStar input[type="checkbox"]+label::before {
	content: "";
	width:18px;
	height: 18px;
	position: absolute;
	border: 1px solid #cccccc;
	border-radius: 2px;
	left: 0;
	line-height: 18px;
}

.hmhtlStar input[type="checkbox"]:checked+label::before {
	content: '\ ';
	width: 18px;
	height: 18px;
	position: absolute;
	background: url(../images/star_tick.svg) no-repeat center;
	background-size: 70%;
	text-align: center;
	font-size: 10px;
	color: #fff;
	border: 1px solid #41a8f7;
}
.htlStarrating {
    background: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    width: 100%;
}
.htlnewSearchBtn {
    display: flex;
    justify-content: end;
    width: 100%;
    margin-top: 10px;
}
.htlnewSearchBtn button.btn.btn-primary.home_btn {
    width: 28%;
}
.modify_search .htlStarrating {
    background: #fff;
    padding: 15px 10px;
    border-radius: 5px;
    width: 100%;
}
.modify_search .FilterContent {
    padding-bottom: 0;
}