:root {
	--primary-color: #013ba7;
	--secondary-color: #fa5e00;
	--light-primary-color: #fef1ec;
	--light-color: #f3f3f3;
	--dark-color: #000;
	--max-width: 1100px;
	--border-color: #ddd;
	--white-color: #fff;
	--primary-text-color: #464647;
	--corporate-blue-color: #003ba7;
	--dark-blue-color: #002551;
	--middle-light-blue-color: #1863d1;
	--light-blue-color: #2d8bea;
	--underline-color: #f6ca3d;
	--light-gray-color: #e2e2e2;
}

/* @font-face {
  font-family: 'AvenirNextLTPro-Light';
  src: url('../fonts/AvenirLTStd-Light.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNextLTPro-Regular';
  src: url('../fonts/AvenirNextLTPro-Regular.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNextLTPro-Demi';
  src: url('../fonts/AvenirNextLTPro-Demi.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNextLTPro-Bold';
  src: url('../fonts/AvenirNextLTPro-Demi.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNextLTPro-Black';
  src: url('../fonts/AvenirLTStd-Black.otf');
  font-weight: normal;
  font-style: normal;
} */

@font-face {
	font-family: "DMSans-Light";
	src: url("../fonts/DMSans-Light.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DMSans-Regular";
	src: url("../fonts/DMSans-Regular.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DMSans-Demi";
	src: url("../fonts/DMSans-Medium.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DMSans-Bold";
	src: url("../fonts/DMSans-Medium.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DMSans-SemiBold";
	src: url("../fonts/DMSans-SemiBold.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "DMSans-Black";
	src: url("../fonts/DMSans-Black.ttf");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.font55-75 {
	font-size: 55.75pt !important;
}

.font7 {
	font-size: 7pt !important;
}

.font8 {
	font-size: 8pt !important;
}

.font9 {
	font-size: 9pt !important;
}

.font10-42 {
	font-size: 10.42pt !important;
}

.font10 {
	font-size: 10pt !important;
}

.font11 {
	font-size: 11pt !important;
}

.font12 {
	font-size: 12pt !important;
}

.font13 {
	font-size: 13pt !important;
}

.font13-25 {
	font-size: 13.25pt !important;
}

.font14 {
	font-size: 14pt !important;
}

.font15 {
	font-size: 15pt !important;
}

.font16 {
	font-size: 16pt !important;
}

.font18 {
	font-size: 18pt !important;
}

.font20 {
	font-size: 20pt !important;
}

.font22 {
	font-size: 22pt !important;
}

.font24 {
	font-size: 24pt !important;
}

.font26 {
	font-size: 26pt !important;
}

.font30 {
	font-size: 30pt !important;
}

.font32 {
	font-size: 32pt !important;
}

.font33 {
	font-size: 33pt !important;
}

.font39 {
	font-size: 39pt !important;
}

.font40 {
	font-size: 40pt !important;
}

.font42 {
	font-size: 42pt !important;
}

.font47 {
	font-size: 47pt !important;
}

.font48 {
	font-size: 48pt !important;
}

.font13px {
	font-size: 13px !important;
}

.strike-out-text {
	text-decoration: line-through;
}

.w-50 {
	width: 50%;
}

.w-100 {
	width: 100%;
}

body,
.load-transition {
	animation: fadein 1s;
	-moz-animation: fadein 1s;
	/* Firefox */
	-webkit-animation: fadein 1s;
	/* Safari and Chrome */
	-o-animation: fadein 1s;
	/* Opera */
}

/* time picker titlew animation */
@keyframes time_picker_title {
	0% {
		background-color: white;
		/* visibility: hidden; */
		/* width: 0%; */
	}

	100% {
		background-color: var(--secondary-color);
		/* width: 100%; */
		/* visibility: visible; */
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadein {

	/* Firefox */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {

	/* Safari and Chrome */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-o-keyframes fadein {

	/* Opera */
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.loader-cricle,
.loader-cricle:after {
	border-radius: 50%;
	width: 25px;
	height: 25px;
	margin-top: -3px;
}

/* CUSTOM SCROLL-BAR STYLING */

.scrollbar-y {
	height: 100%;
	width: 100%;
	/* background: #F5F5F5; */
	overflow-y: scroll;
	/* margin-bottom: 25px; */
}

.scrollbar-x {
	height: 100%;
	width: 100%;
	/* background: #F5F5F5; */
	overflow-x: scroll;
	/* margin-bottom: 25px; */
}

*::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #f5f5f5;
}

*::-webkit-scrollbar {
	width: 8px;
	height: 6px;
	background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #555;
}

.loader-cricle {
	margin: 0px auto;
	margin-top: -3px;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #ffffff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.y-kupos-value {
	line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

.nowrap {
	white-space: nowrap;
}

img {
	width: 100%;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1;
	background: var(--white-color);
	font-size: 14pt;
	font-weight: normal;
	color: var(--primary-text-color);
	font-family: 'DMSans-Regular', sans-serif;
}

a:active,
a:focus {
	outline: 0;
	-moz-outline-style: none;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.back-button-format-my-account {
	display: flex;
	align-items: center;
}

.ticket-text {
	color: #333;
}

.label {
	margin-left: -5px;
}

.grey-input input {
	/* background-color: #ccc !important; */
	background-color: #dedcd8 !important;
}

a {
	color: var(--primary-text-color);
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	color: var(--dark-color);
	cursor: pointer;
}

@keyframes blinking {
	0% {
		background-color: var(--secondary-color);
	}

	/* YOU CAN ADD MORE COLORS IN THE KEYFRAMES IF YOU WANT
  50%{
    background-color: #55d66b;
    border: 5px solid #126620;
  }
  */
	100% {
		background-color: var(--primary-color);
	}
}

.secondary-up-triangle {
	margin: auto 0px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 9px solid #ff8f45;
	position: relative;
	top: -1px;
}

.grey-up-triangle {
	margin: auto 0px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 9px solid #333;
	position: relative;
	top: -3px;
}

/* margin top */

.margin-T10 {
	margin-top: 10px;
}

.margin-T15 {
	margin-top: 15px;
}

.margin-T20 {
	margin-top: 20px;
}

.margin-T25 {
	margin-top: 25px;
}

.margin-T30 {
	margin-top: 30px;
}

.margin-T40 {
	margin-top: 40px;
}

.margin-T50 {
	margin-top: 50px;
}

.margin-T60 {
	margin-top: 60px;
}

.margin-T70 {
	margin-top: 70px;
}

.margin-T80 {
	margin-top: 80px;
}

.margin-T90 {
	margin-top: 90px;
}

.margin-T100 {
	margin-top: 100px;
}

/* margin bottom */

.margin-B5 {
	margin-bottom: 5px;
}

.margin-B10 {
	margin-bottom: 10px;
}

.margin-B15 {
	margin-bottom: 15px;
}

.margin-B20 {
	margin-bottom: 20px;
}

.margin-B25 {
	margin-bottom: 25px;
}

.margin-B30 {
	margin-bottom: 30px;
}

.margin-B35 {
	margin-bottom: 35px;
}

.margin-B40 {
	margin-bottom: 40px;
}

.margin-B50 {
	margin-bottom: 50px;
}

.margin-B60 {
	margin-bottom: 60px;
}

.margin-B70 {
	margin-bottom: 70px;
}

.margin-B80 {
	margin-bottom: 80px;
}

.margin-B90 {
	margin-bottom: 90px;
}

.margin-T100 {
	margin-top: 100px;
}

/* PADDING BOTTOM */

.padding-B10 {
	padding-bottom: 10px;
}

.padding-B15 {
	padding-bottom: 15px;
}

.padding-B20 {
	padding-bottom: 20px;
}

.padding-B25 {
	padding-bottom: 25px;
}

.padding-B30 {
	padding-bottom: 30px;
}

.padding-B33 {
	padding-bottom: 33px;
}

.padding-B35 {
	padding-bottom: 35px;
}

.padding-B40 {
	padding-bottom: 40px;
}

.padding-B50 {
	padding-bottom: 50px;
}

.padding-B60 {
	padding-bottom: 60px;
}

.padding-B70 {
	padding-bottom: 70px;
}

.padding-B80 {
	padding-bottom: 80px;
}

.padding-B90 {
	padding-bottom: 90px;
}

.padding-T100 {
	padding-top: 100px;
}

.home-take-care {}

.home-take-care-header {
	color: #fa5e00;
	font-weight: bold;
	font-size: 16px !important;
	margin-bottom: 5px;
	margin-top: 2px;
	padding-left: 5px;
}

.home-take-care-body {
	padding-right: 10px;
	padding-left: 5px;
	line-height: 1.5;
}

.home-take-care-icon {
	height: 200px;
}

.home-take-care-single-item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: -52px;
	margin-bottom: -20px;
}

.primary-down-triangle {
	margin: auto 0px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 9px solid var(--secondary-color);
	position: relative;
	top: -3px;
}

.pullman-section-primary-row-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* margin-top: 80;
  margin-bottom: 50; */
}

.pullman-section-primary-row {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pullman-section-primary-row-main-heading {
	font-size: 16pt;
	font-weight: 800;
}

.pullman-section-primary-row-sub-heading {
	font-size: 15px;
	/* font-weight: 700; */
}

.pullman-section-primary-row-underline {
	height: 3px;
	background: #fa5f00;
	width: 50px;
	margin-top: 9px;
}

.pullman-section-primary-row-underline1 {
	height: 3px;
	background: #f6ca3d;
	width: 50;
	margin-top: 5px;
	margin-bottom: 8px;
}

.pullman-section-primary-row-underline2 {
	height: 3px;
	background: #f6ca3d;
	width: 50px;
	margin-top: 5px;
	margin-bottom: 20px;
}

.pullman-section-primary-row-full-width {
	width: 100vw;
}

.grey-text {
	color: #333;
	margin: auto 0px;
}

.primary-text-color {
	color: var(--primary-text-color);
}

.white-text {
	color: var(--white-color);
}

.light-grey-text {
	color: #919191;
}

.colored_background {
	background-color: #fa5e00 !important;
}

.primary-grad {
	color: linear-gradient(#fc763b, #febb3d);
}

.kupos-border {
	border: 1px solid var(--border-color);
}

.upper-case-text {
	text-transform: uppercase;
}

.no-border {
	border: 0 !important;
}

.scroll-style::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #f5f5f5;
}

.scroll-style::-webkit-scrollbar {
	width: 12px;
	background-color: #f5f5f5;
}

.errorMessageInput {
	color: red;
	font-size: 0.6em;
	margin-top: 5px;
	display: block;
}

.scroll-style::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #ccc;
}

.light-placeholder::placeholder,
.light-placeholder input::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #999;
	opacity: 1;
	/* Firefox */
}

.light-placeholder:-ms-input-placeholder,
.light-placeholder input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #999;
}

.light-placeholder::-ms-input-placeholder,
.light-placeholder input::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #999;
}

.inline-block {
	display: inline-block;
}

.kupos-button {
	height: 40px;
	background-color: var(--secondary-color);
	padding: 10px;
	padding-top: 8px;
	display: block;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	border: none;
	text-transform: uppercase;
	cursor: pointer;
	line-height: 1.6;
}

.home-selection-input-button-new-search {
	height: 40px;
	width: 100%;
	margin-top: 16px;
	padding: 7px;
	background-color: var(--corporate-blue-color);
}

button.kupos-button:hover {
	opacity: 0.9;
}

.kupos-button span,
.kupos-button2 span {
	display: block;
	line-height: 1;
	margin-top: 4px;
}

.kupos-button2 {
	height: 40px;
	background-color: var(--secondary-color);
	padding: 10px;
	display: block;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	border: 0;
	text-transform: uppercase;
	cursor: pointer;
}

.kupos-button-secondary {
	background-color: var(--secondary-color);
	color: #fff !important;
	border-radius: 15px;
	padding: 5px 10px;
	display: block;
	cursor: pointer;
}

.kupos-button:disabled {
	background-color: #aaa;
}

.text-centre {
	align-items: center;
}

.button {
	background: var(--primary-color);
	border-radius: 12px;
	max-height: 95px;
	max-width: 305px;
	width: 240px;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex1 {
	flex: 1;
}

.flex2 {
	flex: 2 !important;
}

.flex3 {
	flex: 3 !important;
}

.flex4 {
	flex: 4 !important;
}

.flex5 {
	flex: 5 !important;
}

.space-between {
	justify-content: space-between;
}

.align-center {
	align-items: center;
}

.justify-center {
	justify-content: center;
}

.margin-auto {
	margin: auto;
}

.kupos-card {
	padding: 16px;
	border-radius: 20px;
	box-shadow: 0px 3px 7px 3px rgba(0, 0, 0, 0.08);
	margin-bottom: 15px;
	background-color: #fff;
}

.pullman-search-box-card {
	background-color: #fff;
	padding: 35px 0;
	border-radius: 0px 20px 20px 0px;
	/* border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px; */
	height: 140px;
}

.pullman-search-box-options {
	margin-top: 5px !important;
	display: flex;
}
.pullman-search-box-options .pullman-search-box-item:first-child{

	min-width: 500px;
	border-radius: 0px 20px 0px 0px;
	justify-content: right;
	padding-right: 5%;
	position: relative;
	z-index: 3;
}

.pullman-search-box-options .pullman-search-box-item:nth-child(2){
	border-radius: 0px 20px 0px 0px;
	position: relative;
	z-index: 1;
	left: -17px;
	padding-left: 34px;
	}
.pullman-search-box-options .pullman-search-box-item {
	display: inline-block;
	background-color: #f5833d;
	padding: 10px 0;
	padding-left: 25px;
	/* padding-right: 70px; */
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;

	/* flex-direction: column; */
	align-items: center;
	/* width: 330px; */
	width: 250px;

}

.pullman-search-box-options .selected {
	background-color: #fa5f00 !important;
	/* font-weight: bold; */
}

.pullman-search-box-options .light-blue {
	background-color: #f5833d;
}
/* 
.pullman-search-box-options .middle-light-blue {
	background-color: var(--middle-light-blue-color);
} */

.pullman-search-box-options .pullman-search-box-item span {
	font-size: 16px;
	padding-left: 15px;
}

.pullman-search-box-options .pullman-search-box-item img {
	/* width: 45px; */
	width: 36px;
	/* height: 30px; */
}

.kupos-card-padding-l {
	padding: 20px 30px;
}

.kupos-card-padding-s {
	padding: 20px;
}

.kupos-tabs-container {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 75px;
	cursor: pointer;
	overflow: hidden;
	background: #ccc;
}

.kupos-tabs-container .kupos-tab-item {
	border-radius: 75px;
	padding: 8px 0;
	flex: 1;
	text-align: center;
	color: #fff;
}

.kupos-tabs-container .kupos-tab-item.active {
	background-color: var(--secondary-color);
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.pointer {
	cursor: pointer;
}

.bold {
	font-weight: normal;
	font-family: 'DMSans-Bold', sans-serif;
}

.uppercase-text {
	text-transform: uppercase;
}

.primary-text {
	color: var(--secondary-color) !important;
}

.light-primary-text {
	color: var(--light-primary-color) !important;
}

.secondary-text {
	color: var(--secondary-color) !important;
}

.black-text {
	font-weight: normal;
	font-family: "DMSans-Black", sans-serif;
}

.light-text {
	font-weight: normal;
	font-family: "DMSans-Light", sans-serif;
}

.normal-text {
	font-weight: normal;
	font-family: "DMSans-Regular", sans-serif;
}

.bold-text {
	font-weight: bold;
	font-family: "DMSans-Bold", sans-serif;
}

.less-bold-text {
	font-weight: normal;
	font-family: "DMSans-SemiBold", sans-serif;
}

.center-text {
	text-align: center;
}

.red-text {
	color: red;
}

.green-text {
	color: #28a745;
}

.horizontal-line {
	height: 1px;
}

.icon-selection-circle-not-selected,
.icon-selection-circle-selected,
.icon-check-square-pink,
.icon-check-square-pink-line {
	display: inline-block;
	background: url('/images/icons/PullmanBus-Checkbox.png') no-repeat;
	overflow: hidden;
	text-indent: -9999px;
	text-align: left;
	background-size: 200% 200%;
	position: relative;
	top: 2px;
	width: 18px;
	height: 18px;
}

.icon-selection-circle-not-selected {
	background-position: -0 -0;
}

.icon-selection-circle-selected {
	background-position: 100% -0%;
}

.icon-check-square-pink {
	background-position: -0% 100%;
}

.icon-check-square-pink-line {
	background-position: 100% 100%;
}

.pac-container {
	width: 300px !important;
}

.content-container {
	width: 1040px;
	margin: auto;
}

.full-size-loader {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.4);
}

.nav-section {
	padding-top: 2.3vw;
}

.home-nav-section {
	position: absolute;
	width: 100%;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-container .logo {
	width: 20vw;
	max-width: 386px;
}

.nav-container ul {
	display: flex;
	align-items: center;
}

.nav-container ul {
	display: flex;
	align-items: center;
}

.nav-container ul:first-child {
	margin-right: 15px;
}

.flash-message-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: 100%;
	/* padding: 10px 0; */
	margin-bottom: 10px;
}

.banner-and-searchbox {
	position: relative;
}

.banner-and-searchbox .search-box-over-banner {
	position: absolute;
	bottom: 45px;
	left: 0px;
	color: #fff;
}

.home-banner-container {
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-direction: column;
	/* margin-top: 40px; */
}

.home-search-box-container {
	/* position: absolute; */
	width: 85%;
	/* margin-top: -8.5rem; */
	z-index: 990;
	/* bottom: 80px; */
	bottom: 20%;
}

.posrel{
	position: relative;
}
.posab{
	position: absolute;
	bottom: 35%;
	left: 19%;
}
.posab img{
	width: 80%;
}
/* .home-search-box-container.kupos-go-selected{
  bottom: initial;
  top: 250px;
} */
.home-search-box-container .content-container.airport-transfer {
	position: relative;
	/* top:-40px */
}

.home-banner {
	margin-bottom: -10px;
	width: 100%;
}

.my-account-top {
	/* background: #fff; */
	padding: 5px 0px;
	height: 46px;
	border-radius: 42px;
	
	width: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dp-image-top {
	width: 42px;
	overflow: hidden;
	height: 42px;
	border-radius: 50%;
	/* margin-right: 10px; */
	border: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dp-image-top img {
	width: 100%;
	height: auto;
}

.my-account-top a {
	display: flex;
	align-items: center;
	height: 100%;
}

.menu-profile-icon-stripe {
	width: 25px;
	height: 25px;
	margin-right: 5px;
	margin-top: 0px;
}

.my-account-top a img {
	min-height: 100%;
	margin-right: 0px;
	min-width: 100%;
}

li {
	list-style: none;
}

.my-account-dropdown {
	position: absolute;
	padding: 10px 20px;
	margin-top: 156px;
	margin-left: 62px;
	border-radius: 10px;
	background-color: var(--secondary-color);
	color: #fff;
}

.my-tickets-dropdown {
	position: absolute;
	padding: 10px 15px;
	margin-top: 15px;
	margin-left: -0.5px;
	border-radius: 10px;
	background-color: var(--secondary-color);
	color: #fff;
	top: 100%;
}

.margin-bottom-5 {
	margin-bottom: 5px;
}

.my-tickets-dropdown:before {
	content: '';
	position: absolute;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 20px solid var(--secondary-color);
	border-top: 0;
	display: block;
	/* border-color: var(--secondary-color); */
	top: -16px;
}

.my-account-dropdown .my-account-dropitem {
	display: flex;
	align-items: center;
	padding: 5px 0;
	cursor: pointer;
}

.my-account-dropdown .my-account-dropitem img {
	width: 22px;
	margin-right: 10px;
	position: relative;
	top: -3px;
}

.my-account-dropitem.logout {
	border-top: 2px solid #fff;
	padding-top: 15px;
	margin-top: 2px;
	padding-bottom: 1px;
}

.my-account-dropdown:before {
	content: '';
	position: absolute;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 20px solid var(--secondary-color);
	border-top: 0;
	display: block;
	/* border-color: var(--secondary-color); */
	top: -16px;
}

.my-account-edit-profile {
	position: relative;
}

.qr-image {
	width: 240px;
	margin: auto;
	margin-top: 30px;
}

.qr-image img {
	width: 86%;
	margin: 15px 7%;
}

.home-selection-input-box img {
	height: 22px;
	width: auto;
}

.home-selection-input-box .common-kupos-date-picker input,
.home-selection-input-box .common-kupos-date-picker .date-inner {
	height: 37px;
	font-size: 13px;
}

.home-selection-input-box .common-kupos-select-box-outer,
.home-selection-input-box .common-kupos-select-box,
.home-selection-input-box .common-kupos-date-picker,
.home-selection-input-box .common-kupos-time-picker {
	margin-top: 3px;
}

.home-selection-input-box .common-kupos-select-box .icon-left {
	height: 40%;
}

.home-selection-input-box .common-kupos-select-box-outer input {
	/* padding-top: 9px; */
}

.primary-background {
	background: #fef1ec;
}

.home-main-selection-container {
	position: relative;
	bottom: 50px;
	padding: 30px 40px;
	z-index: 1;
	padding-bottom: 12px;
}

.selection-heading {
	margin-bottom: 0px;
	margin-top: 30px;
	padding-left: 5px;
}

.home-selection-input-boxes {
	display: flex;
	align-items: flex-start;
	margin: 0 -5px;
	/* margin-bottom: 20px; */
	position: relative;
	z-index: 100;
	padding-left: calc(-16px + 7vw);
	/* margin-top: 10px; */
}

.home-selection-input-boxes .label {
	margin-left: 0;
	color: var(--primary-text-color);
}

.home-selection-input-boxes input {
	font-size: 0.95em;
}

.home-selection-input {
	border-radius: 10px;
	padding: 10px;
	height: 70px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	background-color: #fff;
}

/* .home-selection-input-box {
  flex: 4;
  margin: 5px;
  margin-top: 10px;
}
.home-selection-input-box.datebox {
  flex: 3;
} */

.home-selection-input-button {
	height: 40px;
	width: 100%;
	margin-top: 16px;
	padding: 7px;
	background-color:var(--corporate-blue-color) !important;
	/* border: 1px solid #fff; */
	border-radius: 12px;
	text-transform: capitalize;
}
.home-selection-input-button span{
	margin-top: 0px;
}

.home-selection-input-box img {
	margin-right: 10px;
}

.home-menu-strip {
	background: #fef1ec;
	border-radius: 75px;
	position: absolute;
	width: 66%;
	top: -37px;
	left: 0;
	height: 76px;
	display: flex;
	align-items: center;
	/* align-self: center; */
	margin-left: 17%;
	padding: 6px 15px;
}

.home-menu-strip-icons {
	display: flex;
	flex: 1;
	height: 100%;
}

.home-search-widget-icon {
	width: 64px;
}

.home-search-widget-icon .svg-span {
	width: 100%;
}

.home-search-widget-icon .svg-span:hover {
	cursor: pointer;
}

.home-menu-strip-icon {
	flex: 1;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.home-menu-strip-icon img {
	height: 96%;
	width: auto;
}

.home-menu-stripe {
	width: 70px;
	padding-bottom: 70px;
	position: absolute;
	z-index: 900;
}

.circular-icon-stripe {
	/* background-image: url(/images/icons/circular-icons-sprite.png); */
	background-repeat: no-repeat;
	background-size: 106% auto;
	background-position-x: center;
}

.circular-icon-stripe.bus-circular-icon {
	background-position-y: 8.78%;
}

.circular-icon-stripe.bus-circular-icon-white {
	background-position-y: 10.13%;
}

.circular-icon-stripe.carpool-circular-icon {
	background-position-y: 56.4%;
}

.circular-icon-stripe.transfers-circular-icon {
	background-position-y: 95.28%;
}

.circular-icon-stripe.bip-circular-icon {
	background-position-y: 5.83%;
}

.circular-icon-stripe.collective-circular-icon {
	background-position-y: 19.39%;
}

.circular-icon-stripe.toll-circular-icon {
	background-position-y: 80.48%;
}

.circular-icon-stripe.train-circular-icon {
	background-position-y: 91.59%;
}

.circular-icon-stripe.traveller-circular-icon {
	/* background-position-y: 98.07%; */
	/* background-image: url(/svgs/happy_travelers.svg); */
}

.circular-icon-stripe.bus2-circular-icon {
	/* background-position-y: 99.92%; */
}

.circular-icon-stripe.tickets-circular-icon {
	/* background-position-y: 96.09%; */
}

.circular-icon-stripe.card-circular-icon {
	/* background-position-y: 67.63%; */
}

.circular-icon-stripe.path-circular-icon {
	background-position-y: 76.77%;
}

.circular-icon-stripe.profile-circular-icon {
	background-position-y: 94.37%;
}

.circular-icon-stripe.company-circular-icon {
	background-position-y: 99%;
}

.home-menu-icon-info {
	position: absolute;
	background-color: var(--secondary-color);
	border-radius: 5px;
	padding: 5px;
	color: #fff;
	text-align: center;
	bottom: -34px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 90%;
	height: 33px;
	z-index: 999;
}

.home-search-widget-icon:hover+.home-menu-icon-info {
	display: flex;
}

.home-menu-icon-info:hover {
	display: flex;
}

.sub-section-my-trips-strip-icon:hover+.home-menu-icon-info {
	display: flex;
	width: auto;
}

.home-menu-icon-info span.primary-triangle {
	top: -16px;
	left: 0%;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 17px solid var(--secondary-color);
	position: absolute;
	left: 50%;
	margin-left: -10px;
}

.home-menu-icon-info span.tag-text {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3px;
	padding: 0 10px;
}

.home-menu-strip-arrow-icon {
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-menu-strip-arrow-icon img {
	height: 40%;
	width: auto;
}

.capsule-menu-icon img {
	width: 26px;
	height: auto;
}

.capsule-menu {
	background: var(--primary-color);
	border-radius: 75px;
	padding: 8px 15px;
	display: flex;
	width: 100%;
	margin: 0px auto;
	margin-bottom: 20px;
	line-height: 1.4;
	justify-content: space-around;
}

.capsule-menu-item {
	display: flex;
	justify-content: center;
	align-items: center;
	/* flex: 1; */
}

.capsule-menu-item.active {
	font-weight: bold;
}

.capsule-menu-text {
	color: #fff;
	margin-left: 10px;
}

.capsule-menu2 {
	position: relative;
	overflow: hidden;
	background-color: #a7a7a7;
	padding: 0;
}

.capsule-menu2 .capsule-menu-item {
	padding: 15px 10px;
}

.capsule-menu2 .capsule-menu-item.active {
	background-color: var(--secondary-color);
	border-radius: 45px;
	position: relative;
}

.capsule-menu2 .capsule-menu-item.active:after {
	content: '';
	display: block;
	height: 100%;
	border-radius: 45px;
	width: 110%;
	position: absolute;
	background-color: var(--secondary-color);
}

.capsule-menu2 .capsule-menu-icon {
	position: relative;
	z-index: 9;
}

.capsule-menu2 .capsule-menu-text {
	color: #fff;
	margin-left: 10px;
	position: relative;
	z-index: 9;
	top: 1px;
}

.display-your-content-section {
	/* margin: 0 -25px; */
	border-radius: 20px;
	color: #fff;
	position: relative;
	top: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	transition: all 0.25s linear;
}

div#scroll-to-on-cancel-open {
	position: absolute;
	width: 100%;
	top: 40%;
}

.cancel-open .display-your-content-section {
	top: 110px;
}

.cancel-open.tab2 .display-your-content-section {
	top: 130px;
}

.display-your-content-section .display-item {
	cursor: pointer;
	flex: 1;
}

.cancel-notice-text:hover {
	cursor: pointer;
}

.display-your-content-section .display-item:nth-child(2) {
	margin-right: 20px;
}

.display-your-content-section .display-item:nth-child(3) {
	margin-left: 20px;
}

.display-your-content-section .display-item img {
	border-radius: 20px;
}

.cancel-open.why-kupos {
	margin-top: 180px;
}

.display-your-content {
	display: block;
	margin-top: 8px;
}

/* print and cancel home css */
.cancel-print-container {
	position: relative;
	margin-top: -45px;
	margin-bottom: 10px;
	z-index: 0;
}

.home-main-selection-container .capsule-container {
	width: 440px;
	margin: auto;
	position: relative;
	z-index: 99;
}

.cancel-print-container .content-container {
	position: relative;
}

.home-main-selection-container .capsule-menu-icon img {
	width: 30px;
}

.home-main-selection-container .capsule-container .capsule-container {
	margin: auto;
	width: 400px;
}

.home-main-selection-container .capsule-container.no-active-tab .capsule-menu2 {
	background-color: var(--secondary-color);
}

.home-main-selection-container .capsule-container .capsule-menu2 {
	margin-bottom: 0;
}

.home-main-selection-container .capsule-menu2 .capsule-menu-item {
	padding: 3px 10px;
	width: 50%;
}

.home-main-selection-container .common-kupos-capsule-menu .capsule-menu-icon {
	padding: 4px;
}

.home-main-selection-container .capsule-menu-icon img,
.home-main-selection-container .capsule-menu-icon .common-svg-home {
	width: 26px;
}

.print-cancel-section-home {
	position: absolute;
	/* top: 24px; */
	padding: 0 50px;
	z-index: 1;
	width: 100%;
	max-height: 0;
	transition: all 0.25s ease-out;
	overflow: hidden;
	background-color: var(--white-color);
	/* box-shadow: none; */
}

.print-cancel-section-home-modal {
	/* position: absolute; */
	/* top: 24px; */
	/* padding: 0 50px; */
	/* z-index: 1;
  width: 100%;
  max-height: 0;
  transition: all .25s ease-out;
  overflow: hidden;
  background-color: var(--white-color);    
  box-shadow: none; */
}

.modal-dialog-centered {
	display: flex;
	align-items: center;
	position: relative;
	/* bottom: 100px; */
}

.cancel-body-row-1-content {
	display: flex;
	margin-bottom: 10px;
}

.cancel-body-checkbox-container {
	margin-top: 30px;
	margin-bottom: 20px;
}

.print-section-cancel-modal-title {
	margin-bottom: 20px;
	margin-top: 20px;
}

.kupos-card.print-cancel-section-home.open {
	max-height: 260px;
	padding: 70px 40px 40px;
	overflow: initial;
}

.kupos-card.print-cancel-section-modal.cancel-modal {
	/* max-height: 400px; */
	padding: 28px 30px 20px;
	/* overflow:initial; */
}

.home-search-box-container .cancel-open {
	position: relative;
	z-index: -1;
}

.print-cancel-section-home .close-btn {
	width: 22px;
	position: absolute;
	top: 50px;
	right: 40px;
	cursor: pointer;
}

.print-cancel-section-home .close-btn .common-svg-home {
	width: 100%;
}

.top-strip-cancel-ticket-icon img {
	height: 20px;
	width: auto;
	margin-right: 5px;
}

.my-tickets-dropitem {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	padding: 5px 0px;
}

.my-tickets-dropitem:hover {
	cursor: pointer;
}

.my-tickets-dropitem .menu-name {
	margin-top: 2px;
}

.print-cancel-subheading {
	display: grid;
	grid-template-columns: 1fr 1fr 0.62fr;
	/* margin-top: 20px; */
}

.print-cancel-subheading.labels {
	margin-top: 15px;
}

.print-cancel-subheading.cancel {
	display: grid;
	grid-template-columns: 1fr 1fr 0.6fr 0.6fr;
	/* margin-top: 20px; */
}

.print-cancel-home-inputs {
	margin: 0px;
	margin-bottom: 5px;
	margin-top: 0px;
	align-items: flex-start;
}

.print-cancel-home-inputs .common-kupos-input .input-outer {
	margin-top: 4px;
}

.print-cancel-section-home .cancel-check {
	margin-top: 10px;
}

.print-cancel-home-inputs .common-kupos-input input {
	height: 40px;
}

.print-cancel-home-inputs .common-kupos-date-picker input,
.print-cancel-home-inputs .common-kupos-date-picker .date-inner {
	height: 41px;
	/* margin-top: 7px; */
}

.print-cancel-home-inputs .common-kupos-date-picker .date-inner {
	margin-top: 4px;
}

.print-cancel-home-inputs .common-kupos-input,
.print-cancel-home-inputs .common-kupos-date-picker {
	padding-right: 10px;
	/* padding: 0px 5px; */
}

.print-cancel-button {
	height: 40px;
	width: 100%;
	margin-top: 4px;
	padding: 8px;
}

.print-cancel-button-modal {
	height: 40px;
	width: 40%;
	display: flex;
	justify-content: center;
	margin: auto;
	margin-top: 4px;
	padding: 8px;
}

.print-cancel-button img {
	height: 25px;
	width: auto;
	margin-right: 10px;
}

/* ---- print cancel end */

.ratings-mouseover {
	position: absolute;
	border-radius: 10px;
	opacity: 0;
	/* z-index: -1;  */
	transform: scale(0.1);
	transition: all 0.15s linear;
	background-color: #fff;
	/* overflow: hidden; */
	border: 2px solid var(--primary-color);
	left: 85%;
	top: -60px;
	transform-origin: 0 60px;
}

.ratings-mouseover.normal-text:after {
	content: '';
	width: 18px;
	height: 18px;
	background-color: #fff;
	position: absolute;
	top: 55px;
	transform: rotate(45deg);
	left: -11px;
	border-bottom: 2px solid var(--primary-color);
	border-left: 2px solid var(--primary-color);
}

.amenities-star .stars>img:hover+.ratings-mouseover,
.amenities-star .ratings-mouseover:hover {
	opacity: 1;
	z-index: 109;
	transform: scale(1);
}

.ratings-mouseover .head-block {
	padding: 15px;
	padding-bottom: 5px;
	line-height: 1.25;
	text-align: center;
}

.ratings-mouseover .rating-items {
	padding: 0px 20px 15px;
}

.ratings-mouseover .rating-item {
	display: flex;
	flex-direction: row;
	margin: 5px 0;
	align-items: center;
}

.rating-circle {
	/* width: 40px;
  height: 40px; */
	margin-right: 10px;
	/* padding:4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: url(/images/icons/rating1.png);
  background-size: 100% 100%; */
}

.rating-circle.orange {
	background-image: url(/images/icons/rating2.png);
}

.rating-circle.red {
	background-image: url(/images/icons/rating4.png);
}

.rating-circle-value {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	padding-top: 2px;
	padding-left: 2px;
}

.ratings-mouseover .footer-block {
	text-align: center;
	padding: 10px 15px;
	min-width: 210px;
	background-color: var(--light-primary-color);
	color: var(--primary-color);
	border-radius: 0 0 10px 10px;
}

.amenities-star {
	/* margin-right: 20px; */
	display: flex;
	flex-direction: column;
	position: relative;
	top: 2px;
	min-width: 70px;
	justify-content: center;
	align-items: center;
}

.amenities-row img {
	/* height: 17px; */
	height: 30px;
	margin-right: 8px;
	width: auto;
	margin-top: 14px;
}

.amenities-more-icon img {
	height: 15px;
	margin: 0;
}

.amenities-info-row .fast-filling {
	color: var(--secondary-color);
}

.amenities-row {
	align-items: center;
	justify-content: center;
	height: 17px;
	position: relative;
	top: 2px;
}

.amenities-info-row {
	/* justify-content: space-between; */
	/* margin-bottom: 10px; */
	/* margin-top: 6px; */
	margin-top: 6.5pt;
}

.amenities-more-icon {
	position: relative;
}

.mouseover-popups {
	position: absolute;
	background-color: var(--secondary-color);
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	opacity: 0;
	/* z-index: 1; */
	transform: scale(0.2);
	transition: all 0.15s linear;
	/* left: -65px !important; */
}

.mouseover-popups.duration-mouseover {
	left: 100%;
}

.aminity-img {
	position: relative;
}

.aminity-img .svg-span {
	height: 17px;
	margin-right: 8px;
}

.aminity-img .svg-span svg {
	height: 100%;
}

.amenities-item-mouse-over {
	text-transform: capitalize;
	transform-origin: center 100%;
	top: 100%;
	margin-top: 10px;
	left: 8px;
	padding-top: 8px;
	transform: scale(0.2) translateX(-150%);
}

.amenities-item-mouse-over:before {
	content: '';
	left: 50%;
	/* bottom: -16px; */
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 19px solid var(--secondary-color);
	border-top: 0;
	position: absolute;
	margin-left: -6px;
	top: -15px;
}

.aminity-img:hover .amenities-item-mouse-over {
	opacity: 1;
	z-index: 99;
	transform: scale(1) translateX(-50%);
}

.amenities-more-div {
	text-transform: capitalize;
	margin-top: -50%;
	left: 31px;
	top: 12px;
	transform-origin: 0 center;
	padding: 3px 20px;
	transform: scale(0.2) translateY(-110%);
}

.amenities-more-icon:hover .amenities-more-div {
	opacity: 1;
	z-index: 99;
	transform: scale(1) translateY(-50%);
}

.amenities-more-row {
	display: flex;
	margin: 10px 0;
	align-items: flex-end;
}

.amenities-more-row img {
	margin-right: 10px;
}

.amenities-more-row .svg-span {
	height: 17px;
	margin-right: 10px;
}

.amenities-more-row .svg-span svg {
	height: 100%;
}

.amenities-more-div .primary-triangle {
	top: 50%;
	left: -37px;
	border-top: 7px solid transparent;
	border-right: 19px solid var(--secondary-color);
	border-bottom: 7px solid transparent;
	position: absolute;
	margin-top: -2px;
}

.service-info-row .time-info .terminal-mouseover {
	left: 100%;
	margin-left: 12px;
	transform-origin: 0 center;
	padding: 5px 10px;
	/* top: 50%; */
	top: -25%;
}

.service-info-row .time-info .duration-mouseover {
	left: 150%;
	top: -100%;
	margin-left: 12px;
	transform-origin: 0 center;
	padding: 5px 10px;
}

.service-info-row .time-info .terminal-mouseover div {
	margin: 5px 0;
}

/* .service-info-row .duration-hover .duration-mouseover {
  z-index: 9;
  opacity: 1;
  transform: scale(1);
  left: 105%
} */

.service-info-row .duration-hover:hover .duration-mouseover {
	transform: scale(1);
	z-index: 9;
	opacity: 1;
	cursor: pointer;
	left: 100%;
	top: -100%;
	cursor: pointer;
}

.service-info-row .duration-mouseover .primary-triangle {
	top: 100%;
	left: -37px;
	border-top: 7px solid transparent;
	border-right: 19px solid var(--secondary-color);
	border-bottom: 7px solid transparent;
	position: absolute;
	margin-top: -7px;
}

.service-info-row .time-info:hover .terminal-mouseover {
	transform: scale(1);
	z-index: 9;
	opacity: 1;
}

.time-info-icon {
	position: absolute;
	right: 10px;
	left: 82% !important;
	top: 18px !important;
}

.service-info-row .time-info .primary-triangle {
	top: 50%;
	top: 20%;
	left: -34px;
	border-top: 7px solid transparent;
	border-right: 19px solid var(--secondary-color);
	border-bottom: 7px solid transparent;
	position: absolute;
	margin-top: -7px;
}

.service-info-row .seattype-name .seattype-mouseover {
	left: 100%;
	margin-left: 12px;
	transform-origin: 0 center;
	padding: 5px 10px;
	top: 50%;
}

.service-info-row .seattype-name .seattype-mouseover div {
	margin: 5px 0;
}

.service-info-row .seattype-name:hover .seattype-mouseover {
	transform: scale(1);
	z-index: 9;
	opacity: 1;
}

.service-info-row .seattype-name .primary-triangle {
	top: 50%;
	left: -34px;
	border-top: 7px solid transparent;
	border-right: 19px solid var(--secondary-color);
	border-bottom: 7px solid transparent;
	position: absolute;
	margin-top: -7px;
}

.coach-table .seat-mousover {
	transform: rotateX(180deg) scale(0.2);
	top: 45px;
	left: -60px;
	/* z-index: 10; */
}

.coach-table .seat-number:hover+.seat-sprite .seat-mousover {
	opacity: 1;
	z-index: 99;
	transform: rotateX(180deg) scale(1);
}

.pb-service-list-coach-layout.pb-service-list-train-coach-layout .seat-mousover {
	transform: scale(0.2);
	transition: transform 0.3s linear;
	padding: 10px;
	margin-top: -60px;
	margin-left: -55px;
}

.pb-service-list-coach-layout.pb-service-list-train-coach-layout .seat-mousover.onmouseover {
	opacity: 1;
	z-index: 99;
	transform: scale(1);
}

.pb-service-list-coach-layout.pb-service-list-train-coach-layout .seat-mousover .primary-triangle {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 20px solid #ee595d;
	border-bottom: 0;
	position: absolute;
	top: 100%;
	margin-left: 0px;
}

.coach-table .seat-mousover div {
	margin: 5px 0;
}

/* .coach-table .primary-triangle {
  left: 50%;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 19px solid var(--secondary-color);
  border-bottom: 0;
  position: absolute;
  margin-left: -6px;
  top: initial;
} */

/* New code added by Raqib */
.coach-table .primary-triangle {
	left: 50%;
	/* bottom: -16px; */
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 0px;
	border-bottom: 19px solid var(--secondary-color);
	position: absolute;
	margin-left: -6px;
	top: initial;
	top: -19px;
}

.coach-table .seat-mousover .mouse-over-container-inner {
	transform: rotateX(180deg);
}

/* .coach-table .seat-mousover .mousever-popups */

/* New code added by Raqib end */

.continue-button-row .seat-type-mouseover {
	text-align: center;
	padding: 7px;
	width: 200px;
	bottom: 100%;
	left: -50%;
	margin-bottom: 12px;
	z-index: -1;
}

.continue-button-row .seat-type-mouseover span {
	display: block;
	margin-top: 5px;
}

.continue-button-row .seat-type-icon:hover .seat-type-mouseover {
	opacity: 1;
	z-index: 99;
	transform: scale(1);
}

.continue-button-row .seat-type-mouseover:before {
	content: '';
	left: 50%;
	bottom: -15px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 19px solid var(--secondary-color);
	border-bottom: 0;
	position: absolute;
	margin-left: -6px;
	top: initial;
	z-index: -1;
}

.amenities-sprite {
	height: 20px;
	width: 20px;
	margin-right: 6px;
	background-image: url(/images/icons/amenities/amenities-sprite.png);
	background-size: 112% auto;
	background-repeat: no-repeat;
	background-position-x: center;
}

.amenities-sprite.wifi {
	background-position-y: -222px;
}

.amenities-sprite.snacks_new {
	background-position-y: -39px;
}

.amenities-sprite.charging_plug {
	background-position-y: -130px;
}

.amenities-sprite.mobile_ticket {
	background-position-y: -166px;
}

.amenities-sprite.handicap {
	background-position-y: -2px;
}

.amenities-sprite.movie {
	background-position-y: -20px;
}

.amenities-sprite.baggage {
	background-position-y: -203px;
}

.amenities-sprite.headset {
	background-position-y: -57px;
}

.amenities-sprite.air_condtion {
	background-position-y: -112px;
}

.amenities-sprite.coffee {
	background-position-y: -148px;
}

.amenities-sprite.food_new_icon {
	background-position-y: -75px;
}

.sold-out .amenities-info-row .fast-filling {
	color: #c0c0c0;
}

.sold-out .seat-price-info span {
	color: #c0c0c0;
}

.sold-out .kupos-button {
	background-color: #c0c0c0;
}

.service-card-more-details {
	background-color: #f4f4f4;
	padding: 20px 30px 30px;
	margin-top: -15px;
	/* position: relative;
  z-index: -9; */
	border-radius: 0 0 20px 20px;
}

.service-card-more-details .service-error-msg {
	text-align: center;
	display: block;
	padding-top: 10px;
}

.service-card-more-details .close-btn {
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 10px;
	position: relative;
	top: 4px;
}

.service-card-more-details .close-btn img {
	width: 21px;
	cursor: pointer;
}

.service-cards-container .direct-ui-container {
	position: absolute;
	right: -29px;
	margin-bottom: 22px;
}

.service-cards-container .direct-ui-container .bg {
	height: 110px;
}

.service-cards-container .direct-ui-container .arrow {
	height: 14px;
	width: 14px;
	position: absolute;
	top: 12px;
	left: 7px;
}

.service-cards-container .direct-ui-container .text {
	height: 18px;
	width: 17px;
	position: absolute;
	top: 20px;
	left: 4px;
	color: white;
	transform: rotate(90deg);
	font-size: 15px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	font-weight: bolder;
}

.select-item {
	flex: 1;
	margin: 0;
}

.select-item .common-kupos-select-box-outer {
	margin-top: 8px;
}

.select-item:nth-child(1) {
	margin-right: 10px;
}

.select-box {
	background-color: #fff;
	border-radius: 10px;
	align-items: center;
	margin-top: 7px;
	position: relative;
	height: 50px;
}

.select-box img.icon-source {
	width: 20px;
	margin-left: 20px;
}

.select-box img.icon-arrow {
	width: 25px;
	filter: contrast(0.1);
	position: absolute;
	right: 15px;
}

.floor-buttons-row {
	margin-top: 20px;
	justify-content: space-between;
}

.seat-sprite {
	height: 39px;
	width: 47px;
	/* background: url("./seat-sprite-1.jpg"); */
	background: url('/images/seat-sprite.svg');
	background-size: 100% auto;
	background-position-x: center;
	background-repeat: no-repeat;
}

.pb-service-list-train-coach-layout .train-coach-layout li.gw {
	height: 38px;
}

.seat-sprite.icon-semi-bed-seat_available {
	background-position-y: 12.2%;
}

.seat-sprite.icon-semi-bed-seat_occupied {
	background-position-y: 5.5%;
}

/* .seat-sprite.icon-semi-bed-seat_occupied:hover {
  cursor: not-allowed;
} */

.seat-sprite.icon-semi-bed-seat_selected {
	background-position-y: -1.1%;
}

.seat-sprite.icon-salon-cama-seat_selected {
	background-position-y: 25.7%;
}

.seat-sprite.icon-salon-cama-seat_available {
	background-position-y: 39.1%;
}

.seat-sprite.icon-salon-cama-seat_occupied {
	background-position-y: 32.4%;
}

.seat-sprite.icon-executive-seat_available {
	background-position-y: 12.2%;
}

.seat-sprite.icon-executive-seat_selected {
	background-position-y: -1.1%;
}

.seat-sprite.icon-executive-seat_occupied {
	background-position-y: 5.5%;
}

.seat-sprite.icon-vip-seat_available {
	background-position-y: 67.4%;
}

.seat-sprite.icon-vip-seat_selected {
	background-position-y: 53%;
}

.seat-sprite.icon-vip-seat_occupied {
	background-position-y: 60%;
}

.seat-sprite.icon-pet-seat_available {
	background-position-y: 93.8%;
}

@media only screen and (min-width: 1400px) {
	.seat-sprite.icon-pet-seat_available {
		background-position-y: 94.8%;
	}
	
}

.seat-sprite.icon-pet-seat_selected {
	background-position-y: 81.4%;
}

.seat-sprite.icon-pet-seat_occupied {
	background-position-y: 88.1%;
}

.seat-sprite.icon-steering {
	background: url(/images/seats/driver-combo.png);
	width: 68px;
	height: 36px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 111%;
}

.legends-row {
	align-items: center;
	line-height: 1.5;
}

.legend {
	margin-left: 15px;
	/* align-items: center; */
}

.legend .legend-color {
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 10px;
	margin-right: 5px;
	border: 1px solid;
}

.legend .legend-color.available {
	background-color: #ffd18f;
	border-color: #ff8f45;
}

.legend .legend-color.selected {
	background-color: var(--corporate-blue-color);
	border-color: var(--corporate-blue-color);
}

.legend .legend-color.reserved {
	background-color: #eaeaea;
	border-color: #bfbfbf;
}

.floor-buttons {
	background-color: #cecece;
	border-radius: 25px;
}

.floor-buttons a {
	display: block;
	padding: 10px 12px 8px 15px;
	border-radius: 25px;
	color: #fff;
	cursor: pointer;
}

.floor-buttons a.active {
	background-color: var(--secondary-color);
	padding: 10px 15px 8px;
	font-weight: bold;
}

.coach-layout-container {
	margin-top: 12px;
	border-radius: 20px;
	background-color: #fff;
	padding: 16px;
	min-width: 660px;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	position: relative;
}

.coach-layout-container.lower {
	padding-left: 70px;
}

.driver {
	padding: 5px 15px;
	/* margin-right: 20px; */
	position: absolute;
	height: 100%;
	display: flex;
	align-items: flex-end;
	top: 0;
	left: 0;
	padding-bottom: 35px;
}

.driver img {
	width: 25px;
	margin-top: 16pt;
}

.driver .top-line,
.driver .bottom-line {
	position: absolute;
	border-right: 2px solid #ccc;
	height: 42%;
	bottom: 0;
	right: 0;
	margin-top: 0;
}

.driver .bottom-line {
	top: 0;
}

.coach-layout-container table {
	width: 100%;
}

.coach-layout-container table img {
	height: 28px;
	width: auto;
	margin: 7px 4px;
}

.coach-layout-container td.gw {
	height: 20px;
}

.coach-layout-container table img.steering {
	margin: 0;
}

.coach-layout-container table img.steering-seat {
	margin: 0;
	margin-right: 10px;
}

.continue-button-row {
	margin-top: 16px;
	align-items: center;
}

.seat-types {
	flex: 1;
}

.continue-button .kupos-button {
	height: 40px;
	border-radius: 6px;
	padding: 0 15px;
}

.seat-type-icon {
	margin-right: 10px;
	display: flex;
	align-items: center;
	flex-direction: row;
	position: relative;
}

.seat-type-icon img {
	width: auto;
	height: 26px;
	margin-right: 5px;
}

.pb-service-list-default-page .common-kupos-success-failure .common-new-search-box .new-search-box.home-selection-input-boxes {
	margin: 0;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}

.pb-service-list-default-page .common-kupos-success-failure .common-new-search-box {
	padding: 0 10px;
}

.service-loader {
	padding: 50px;
	margin-bottom: 30px;
}

.service-loader .animation-gif {
	/* width: 140px; */
	width: 190px;
}

.no-results-found {
	position: relative;
	top: 25px;
}

.no-results-found .success-failure-content {
	position: inherit !important;
	/* width: auto !important; */
}

.cancel-done-section .cancel-success-info-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cancel-done-section .cancel-success-info-div {
	width: 360px;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	/* margin-left: 33%; */
	position: relative;
	padding: 10px 30px;
}

.cancel-success-info-div .primary-triangle {
	left: 35px;
}

.cancel-success-info-div-no-results {
	background: var(--secondary-color);
	border-radius: 10px;
	color: var(--white-color);
	margin: 12px auto;
	margin-top: 20px;
	padding: 6px 25px;
	border-radius: 5px;
	width: auto;
}

.cancel-body-checkbox-container .accept-tnc {
	display: flex;
	align-items: center;
}

.cancel-body-checkbox-container .common-kupos-checkbox {
	position: relative;
	top: -2px;
}

.pb-service-list-payment-details-page {
	display: flex;
	/* flex-direction: row-reverse !important; */
	/* position: relative; */
}

.position-relative {
	position: relative;
}

.pb-payment-details-default-page {
	margin-bottom: 10px;
}

.passenger-and-payment-details-container .kupos-card {
	padding: 30px;
}

.passenger-input-container {
	margin-right: 20px;
	flex: 1;
	/* margin-right: 310px; */
}

.passenger-input-container .kupos-card {
	margin-bottom: 20px;
}

.passenger-input-container table {
	margin-bottom: 20px;
	width: 100%;
}

.passenger-input-container .pet-seat-info-container {
	margin-bottom: 20px;
	/* margin-top: -10px; */
}

.passenger-input-container .pet-seat-info {
	/* background-color: #fafafa; */
	/* border: 1px solid #ddd; */
	/* padding: 10px 15px; */
	margin-bottom: 10px;
}

.passenger-input .seat-number-input:nth-child(1),
.passenger-input .email-input:nth-child(1) {
	padding-left: 0;
}

.passenger-inputs-block {
	margin-bottom: 15px;
	align-items: flex-end;
}

.passenger-inputs-block span.journey-type-title {
	margin-right: 10px;
	text-transform: uppercase;
}

.passenger-input-container .dont-have-account-block {
	justify-content: space-between;
	line-height: 1.3;
	align-items: center;
	padding: 17px 30px;
}

.passenger_inputs_summary_wrapper .dont-have-account-block {
	justify-content: space-between;
	line-height: 1.3;
	align-items: center;
	padding: 17px 30px;
}

.passenger-input-container .passenger-input-details {
	padding-bottom: 7px !important;
}

.passenger-input-container .kupos-button {
	padding-left: 15px;
	padding-right: 15px;
	height: 40px;
	/* margin-top: 7px; */
}

.passenger-input-container .passenger-details-title-row {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.passenger-input-container .passenger-details-title-row .countdown-counter {
	display: flex;
	align-items: center;
	justify-content: center;
}

.passenger-input-container .passenger-details-title-row .countdown-counter img {
	width: 30px;
	margin-right: 5px;
	margin-top: -4px;
}

.passenger-input-container .passenger-details-title-row table {
	text-align: l;
}

.country-code-and-phone-container {
	display: grid;
	grid-template-columns: 1fr 9fr;
}

.country-code-container {
	width: 64px;
}

.passenger-input-container .common-kupos-input .input-outer,
.passenger-input-container .common-kupos-select-box {
	margin-top: 0;
	height: 40px;
}

.common-kupos-select-box-cancellation {
	margin-top: 3px !important;
}

td.seat-number-input div {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 5px 12px;
	padding-top: 8px;
	border-radius: 10px;
	min-width: 45px;
}

.nationality-input {
	max-width: 105px;
}

.journey-summary-sidebar {
	width: 290px;
	margin-top: 0;
	/* position: fixed; */
	position: sticky;
	top: 0;
}

.journey-summary-sidebar.fixed-fare-details {
	/* position: fixed; */
	/* margin-top: -63px; */
	/* transform: translateY(-63px); */
	z-index: 0;
	/* top: 0; */
}

.journey-summary-sidebar.absolute-fare-details {
	/* position: absolute; */
	/* margin-top: -63px; */

	z-index: 0;
	/* top: 0; */
	/* bottom: 18px; */
}

.pb-payment-details-payment-right-side-bar.journey-summary-sidebar .kupos-card {
	padding: 30px 25px;
	position: relative;
	/* width: 25%; */
	padding-bottom: 20px;
}

.journey-summary-sidebar .summary-title {
	margin: 0px 0 15px 0;
}

.journey-summary-sidebar .summary-title .yellow-line {
	width: 70px;
	height: 3px;
	background-color: var(--yellow);
	display: flex;
	margin-bottom: 5px;
}

.journey-summary-sidebar .switch-buttons {
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	background-color: #eee;
	margin-right: 10px;
	cursor: pointer;
	max-width: 165px;
	text-align: center;
}

.journey-summary-sidebar .switch-buttons.rt {
	margin-bottom: 5px;
}

.journey-summary-sidebar .switch-buttons span.switch-item {
	display: block;
	padding: 5px 10px;
	padding-top: 6px;
	border-radius: 10px;
	flex: 1;
}

.journey-summary-sidebar .switch-buttons span.switch-item.active {
	background-color: var(--primary-color);
	color: #fff;
}

.journey-summary-sidebar .summary-details {
	margin-top: 0px;
	margin-bottom: 15px;
}

.journey-summary-sidebar .summary-details .duration {
	display: flex;
	align-items: center;
	/* margin-top: -5px; */
}

.journey-summary-sidebar .summary-details .duration .time {
	letter-spacing: 1.15px;
	white-space: nowrap;
}

.journey-summary-sidebar .summary-details .hours {
	letter-spacing: 0px;
}

.journey-summary-sidebar .summary-details .duration img {
	width: 16px;
	margin-right: 7px;
	filter: grayscale(1);
	position: relative;
	top: 0px;
	/* top: -2px; */
}

.journey-summary-sidebar .journey-date {
	align-items: center;
	margin-top: 5px;
}

.journey-summary-sidebar .journey-date .kupos-button-secondary {
	font-weight: bold;
	padding: 5px 15px;
	margin-right: 10px;
}

.journey-summary-sidebar .op-name {
	text-transform: uppercase;
	margin: 0px 0;
	margin-top: 16px;
}

.journey-summary-sidebar span.date {
	margin-bottom: 19px;
	display: block;
	margin-top: 5px;
}

.journey-summary-sidebar .city-name {
	display: flex;
	align-items: center;
	flex-direction: row;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 2px;
}

.journey-summary-sidebar .address {
	line-height: 1.5;
}

.journey-summary-sidebar .address span {
	display: inline-block;
}

.journey-summary-sidebar .city-name img {
	width: 18px;
	margin-right: 5px;
	position: relative;
	margin-left: -5px;
	top: -1px;
}

.journey-summary-sidebar .city-name img.icon-source {
	width: 18px;
	margin-left: -5px;
	top: -1px;
}

.journey-summary-sidebar .city-name img.airport {
	width: 16px;
	top: -2px;
}

.payment-details-sidebar {
	padding-top: 18px;
	border-top: 1px solid #ccc;
}

.payment-details-sidebar .payment-sidebar-title {
	/* margin-top: 20px; */
	margin-bottom: 20px;
}

.payment-details-sidebar .payment-seats {
	margin-bottom: 15px;
}

.payment-seat-row {
	/* margin-top:10px */
}

.payment-details-sidebar .payment-seat-row {
	justify-content: space-between;
	margin-bottom: 5px;
}

.payment-details-sidebar .discount-row {
	justify-content: space-between;
	margin-bottom: 5px;
}

.payment-details-sidebar .discount-block {
	margin-bottom: 5px;
}

.payment-details-sidebar .subtotal-row {
	justify-content: space-between;
	margin-bottom: 8px;
}

.journey-summary-sidebar .total {
	padding: 20px 24px 0px;
	margin-top: -29px;
	border-radius: 0 0 15px 15px;
	background-color: var(--secondary-color);
	color: #fff;
}

.journey-summary-sidebar .total-row {
	justify-content: space-between;
	padding: 5px 0;
	/* padding-top: 8px; */
	position: relative;
	top: -3px;
}

.promocode {
	display: flex;
	/* justify-content: space-between; */
}

span.promo-remove .svg-span {
	width: 14px;
	margin-left: 5px;
	position: relative;
	top: -1px;
	cursor: pointer;
}

.cursor-block {
	cursor: not-allowed;
}

.pointer {
	cursor: pointer;
}

.bold {
	font-weight: bold;
}

.dark-text {
	color: var(--dark-color);
}

.nav-section {
	padding-top: 1vw;
}

.home-nav-section {
	position: absolute;
	width: 100%;
	z-index: 999;
}

.nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-box {
	border-radius: 0 0 20px 20px;
	/* box-shadow: 0px 0px 8px 1px #ddd; */
	position: fixed;
	background-color: var(--secondary-color);
	padding-top: 0rem;
	top: 0;
}

.header-box .header-details {
	/* padding-bottom: 20px; */
	/* background-color: #fff; */
	background-color: var(--secondary-color);
	padding: 15px 0;

	position: relative;
	z-index: 999;
	border-radius: 0 0 20px 20px;
}

.payments-page-header .header-details {
	/* padding-bottom: 0px; */
}

.nav-section.home-nav-section.common-top-strip.header-box+* {
	margin-top: 200px;
}

.nav-section.home-nav-section.common-top-strip.header-box.payments-page-header+* {
	margin-top: 100px;
	margin-bottom: -1px;
}

.nav-section.home-nav-section.common-top-strip.header-box.payments-page-header+.home-default-page {
	margin-top: 0;
}

.nav-section.home-nav-section.common-top-strip.header-box.payments-page-header+.investors-default-page {
	margin-top: 45px;
}

.nav-container .logo {
	width: 12vw;
	max-width: 340px;
	transition: 0.25s all linear;
}

img#main-logo.logo2 {
	width: 14vw;
	margin: 14px 0;
	transition: 0.25s all linear;
}

.nav-container ul {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

.nav-container ul {
	display: flex;
	align-items: center;
}

.nav-container ul:first-child {
	margin-right: 15px;
}

.modal-dialog .modal-content {
	border-radius: 20px;
}

.modal-dialog.modal-sm .modal-content {
	border-radius: 20px;
	margin: 0 -50px !important;
	width: auto;
}

.modal-dialog .modal-body {
	padding: 2.5rem;
}

.modal-dialog .modal-body .pages-terms-and-conditions {
	margin-top: 0px;
}

.modal-body .kupos-modal-icon img {
	width: 75px;
	display: block;
	margin: 0 auto;
}

.modal-body .kupos-modal-title {
	text-align: center;
	margin-top: 15px;
}

.modal-body .kupos-modal-subtitle {
	text-align: center;
	margin-top: 15px;
}

.modal-body .kupos-modal-bodytext {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 1rem;
}

.kupos-modal-button button.kupos-button {
	width: 200px;
	display: block;
	margin: auto;
	height: 40px;
}

.modal-body .kupos-modal-title2 {
	text-align: center;
	line-height: 1.2;
}

.modal-body .kupos-modal-button-div {
	padding: 7px 0;
	display: flex;
	justify-content: center;
}

.modal-body .kupos-modal-button-div button {
	width: 100%;
	height: 40px;
	border-radius: 5px;
	padding-top: 12px;
}

.modal-body .kupos-modal-gap {
	margin: 20px 0;
}

.modal-body .modal-type-alert {
	padding: 5px;
}

.modal-body .content-container {
	width: 1040px;
}

.gradient-text {
	background: -webkit-linear-gradient(left, #fc763b, #febb3d);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.why-kupos-description-items {
	padding: 0px 80px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
}

.why-kupos {
	text-align: center;
	color: #ff5b5d;
	margin-top: -20px;
	margin-bottom: 3rem;
	transition: 0.25s all linear;
	margin-top: 90px;
}

.why-kupos.gap-top {
	margin-top: 375px;
}

.y-kupos-items {
	/* padding: 0px 80px; */
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
}

.y-kupos-item {
	/* flex: 1; */
	text-align: center;
}

.y-kupos-icon-stripe {
	width: auto;
	height: 100px;
	margin: auto;
	margin-bottom: 15px;
}

.y-kupos-icon-stripe img {
	width: auto;
	height: 100px;
}

.y-kupos-label {
	margin-bottom: 8px;
}

.home-default-page .download-our-app-section-outer {
	background-repeat: no-repeat;
	background-image: url(/images/download-app-bg.png);
	background-size: 100% 100%;
	background-position-y: 40px;
	position: relative;
	margin-top: 60px;
}

.home-default-page .download-our-app-section-outer .download-our-app-section {
	margin-top: 0px;
	/* position: absolute; */
	/* background-image: url(/images/download-app-bg.png); */
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	/* padding-bottom: 100px; */
	display: flex;
}

.home-default-page .download-our-app-section-outer .download-our-app-section .app-screenshot-container {
	top: 0%;
	left: 0;
	width: 50%;
	position: relative;
	height: 450px;
}

.home-default-page .download-our-app-section-outer .download-our-app-section img.app-screenshot {
	width: 111%;
	position: absolute;
	height: auto;
	margin-left: -11%;
	margin-top: -2%;
}

.home-default-page .download-our-app-section-outer .download-our-app-section .download-app-overlay-text-items {
	/* position: relative; */
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: center;
	/* margin-bottom: 70px; */
	left: 0;
	/* top: 50px; */
	/* margin-right: -17px; */
	margin-left: 0;
	margin-top: 90px;
	flex: 1;
}

.home-default-page .download-our-app-section-outer .download-our-app-section .download-app-overlay-text-items>* {
	display: block;
	text-align: center;
	width: 100%;
}

.home-default-page .download-our-app-section-outer .download-our-app-section .download-app-overlay-text-items .download-app-kupos-pay-image img {
	width: 250px;
	height: auto;
	margin-top: 0px;
}

.home-default-page .download-our-app-section-outer .download-our-app-section .download-app-overlay-text-items .download-app-kupos-pay-store img {
	height: auto;
	width: 150px;
	margin-right: 30px;
	margin-bottom: 22px;
	margin-left: 30px;
	padding-top: 2px;
}

.media-stripe-icon {
	background-image: url(/images/icons/home/media-stripe-logos.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position-x: center;
	width: 250px;
	height: 60px;
	cursor: pointer;
}

.media-stripe-icon a {
	display: block;
	width: 100%;
	height: 100%;
	background: transparent;
}

.media-stripe-icon:hover {
	transform: scale(1.1);
}

.media-stripe-icon.media-stripe-icon-diario {
	background-position-y: 0%;
}

.media-stripe-icon.media-stripe-icon-cnn {
	background-position-y: 25%;
	width: 130px;
	background-size: 190% auto;
}

.media-stripe-icon.media-stripe-icon-estrategia {
	background-position-y: 50%;
}

.media-stripe-icon.media-stripe-icon-t13 {
	background-position-y: 72%;
	width: 130px;
	background-size: 190% auto;
}

.media-stripe-icon.media-stripe-icon-mercurio {
	background-position-y: 94%;
}

.mobile-text-overlay-section {
	display: grid;
	grid-template-columns: 1fr 4fr;
	position: absolute;
	top: -60px;
	left: 167px;
}

.download-our-app-section {
	margin-top: 185px;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
}

.download-app-overlay-text-items {
	margin-top: 63px;
	text-align: center;
	/* margin-left: 100px; */
}

.mobile-screenshot-overlay {
	height: auto;
	width: 270px;
}

.download-app-overlay-text-heading {
	display: block;
	color: var(--primary-color);
	font-size: 47pt;
}

.download-app-overlay-text-details {
	color: var(--dark-color);
	display: block;
	text-align: center;
	margin: 10px 0px;
	margin-bottom: 10px;
	font-size: 16pt;
}

.download-app-kupos-pay-image {
	text-align: center;
	margin: 15px 0px;
	/* margin-top: 10px; */
}

.download-app-kupos-pay-image img {
	height: 100px;
	width: auto;
}

.download-app-kupos-pay-store img {
	margin-right: 25px;
	margin-left: 25px;
	height: 50px;
	width: auto;
}

.kupos-media {
	color: #ff5b5d;
	/* margin: 0px auto; */
	text-align: center;
	margin-top: 150px;
}

.kupos-media.content-container {
	margin-top: 110px;
}

.kupos-media-title {
	background: -webkit-linear-gradient(left, #fc763b, #febb3d);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: bold;
}

.kupos-media-items {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 30px;
	justify-items: center;
	/* display: flex;
  justify-content: space-evenly; */
}

.kupos-media-items img {
	max-height: 55px;
	width: auto;
}

.destinations-routes {
	margin-top: 80px !important;
	/* padding: 0px 50px; */
}

.destinations-routes-title {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.destination-route-item {
	margin: 0px auto;
	color: var(--primary-color);
	margin-bottom: 15px;
	text-align: center;
}

.destinations-routes-actual-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
	margin-top: 15px;
}

.destinations-routes-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

.destination-routes-actual-list {
	line-height: 2;
	max-width: 290px;
}

.destination-route-list-item {
	/* margin-bottom: 10px;  */
	display: block;
}

.destination-routes-select-more-section {
	display: flex;
	margin-top: 10dp;
	align-content: center;
	justify-content: space-evenly;
	margin-left: 20px;
}

.destination-routes-select-more {
	/* display: flex;
  align-items: center;
  color: var(--primary-color);
  margin-top: -15px; */
}

.destination-routes-select-more:hover {
	cursor: pointer;
}

.destination-routes-select-more img {
	height: auto;
	width: 17px;
	margin-top: -3px;
}

.destination-routes-more-option {
	font-weight: bold;
	/* margin-top: 4px; */
}

.bus-companies-section {
	display: block;
	margin: 70px auto;
	text-align: center;
	margin-bottom: 60px;
}

.bus-companies {
	text-align: justify;
	line-height: 2;
	margin-top: 20px;
	/* padding: 0px 50px; */
}

.bus-companies-item {
	color: var(--primary-color);
	margin-bottom: 20px;
}

.bus-companies-select-more {
	/* display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  line-height: 1; */
}

.bus-companies-select-more:hover {
	cursor: pointer;
}

.bus-companies-select-more img {
	height: auto;
	align-items: center;
	width: 17px;
	margin-top: -3px;
}

.kupos-footer {
	background: #f4f4f4;
	padding-bottom: 22px;
	position: relative;
}

.footer-logo {
	height: auto;
	width: 220px;
	/* margin-top: 30px; */
}

.footer-logo img {
	margin-top: 35px;
	margin-bottom: 0px;
}

.footer-details {}

.footer-details .footer-news-letter-input {
	height: 50px;
	margin-top: 5px;
}

.footer-news-letter-input input {
	flex: 1;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid #ddd;
	margin-right: 10px;
	height: 45px;
	padding-top: 12px;
}

.footer-news-letter-input button.kupos-button {
	border-radius: 10px;
	width: 150px;
	height: 45px;
	border: 1px solid #f4f4f4;
	margin-top: -1px;
	padding-top: 12px;
}

.individual-footer-details {
	display: flex;
	margin-top: 10px;
}

.individual-footer-item {
	line-height: 2.2;
}

.individual-footer-item div {
	/* margin-top: 1.4rem; */
}

.individual-footer-item .underline:hover {
	text-decoration: underline;
	cursor: pointer;
}

.no-decoration:hover {
	text-decoration: none;
}

.individual-footer-item:nth-child(1) {
	width: 30%;
}

.individual-footer-item:nth-child(2) {
	width: 30%;
}

.individual-footer-item:nth-child(3) {
	flex: 1;
}

.bold-footer-item {
	font-weight: bold;
}

.individual-footer-item.subscribe-n-social {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.individual-footer-item.subscribe-n-social .subscribe-div {
	margin: 0;
}

.newsletter-button {
	display: flex;
	margin-left: auto;
	margin-right: -10px;
}

.footer-social-image {
	height: 40px;
	width: 40px;
	cursor: pointer;
}

.individual-footer-item.subscribe-n-social .div-social-media-icons {
	position: relative;
	bottom: 12px;
}

.div-social-media-icons .social-icons-footer {
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	margin-top: 0px;
}

.div-social-media-icons .social-icons-footer .footer-social-image {
	margin: 0;
	padding: 0;
	margin-right: 15px;
	width: 35px;
}

.last-footer {
	background: #fa5f00;
	text-align: center;
	color: #fff;
	padding: 10px;
	position: relative;
}

.placeholder-input {
	height: 71px;
	width: 426px;
	padding: 20px;
	margin-left: -15px;
}

/* service-list-page styling */
.selected-search-box {
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	max-height: 100px;
	transition: all 0.25s linear;
	padding-bottom: 15px;
}

.selected-search-box.hide-searchbox {
	max-height: 0;
	padding-bottom: 0px;
}

.selected-search-values {
	flex: 1;
	display: flex;
}

.selected-search-item {
	flex: auto;
}

span.selected-search-label {
	display: block;
	/* color: #ccc; */
	margin-bottom: 0.5rem;
}

span.selected-search-value {
	font-weight: bolder;
}

.new-search-button-a {
	display: flex;
	align-items: center;
	justify-content: center;
	/* line-height: 16px; */
	padding: 2px 10px;
}

.new-search-button-a span {
	position: relative;
	top: 0px;
}

.common-new-search-box {
	/* position: absolute;
  bottom: 0px;
  z-index: 900;
  width: 100%; */
	transition: all 0.3s ease-in-out;
	margin-bottom: 24px;
	max-height: 80px;
	color: #fff;
}

.common-new-search-box.hide-searchbox {
	overflow: hidden;
	max-height: 0;
	margin-bottom: 0px;
}

.common-new-search-box .home-selection-input-button {
	/* border: 1px solid transparent; */
	margin-top: 0px;
	border: none;
	/* height: 54px; */
}

.common-new-search-box .home-selection-input-box:nth-child(1) {
	margin-left: 0;
}

.common-new-search-box .home-selection-input-box:last-child {
	margin-right: 0;
}

.common-new-search-box.open {
	bottom: -95px;
}

.common-new-search-box .home-selection-input-box {
	margin-top: 0;
}

.common-new-search-box .common-kupos-input .input-outer {
	border: 1px solid var(--border-color);
	border-radius: 10px;
}

.common-new-search-box .common-kupos-input .input-outer img.icon-left {
	height: 17px;
	margin-left: 10px;
	margin-right: 0;
}

.input-outer .icon-right {
	cursor: pointer;
}

.common-new-search-box .common-kupos-input input {
	height: 38px;
}

.home-selection-input-box.counter {
	flex: 0;
}

.home-selection-input-box.swap-icon {
	width: 100px;
	flex: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	height: 50px;
	padding: 0px 15px;
}

.home-selection-input-box.swap-icon img {
	margin: 0;
	height: 25px;
	cursor: pointer;
}

.home-selection-input-box.datebox {
	min-width: 176px;
	flex: 0;
	position: relative;
}

.home-selection-input-box.search-button-box {
	min-width: 150px;
	flex: 0;
}

.home-selection-input-box.search-button-box-at {
	min-width: 80px;
	max-width: 80px;
	flex: 0;
}

.home-selection-input-box.date-time-box {
	min-width: 220px;
	flex: 0;
	transition: min-width 500ms ease-in-out;
}

.home-selection-input-box.date-time-box.optional-box {
	min-width: 100px;
	max-width: 100px;
	transition: min-width 500ms ease-in-out;
}

.home-selection-input-box.simple-input-box {
	min-width: 150px;
	flex: 1;
	/* width: 200px; */
}

.home-selection-input-boxes.new-search-box {
	/* background-color: #f1f1f1; */
	/* padding: 15px; */
	/* border-radius: 0 0 10px 10px; */
	/* position: relative; */
	margin: auto;
	align-items: flex-end;
	/* align-items: baseline; */
}

.home-selection-input-box {
	flex: 1;
	padding: 5px;
	/* min-width: 157px; */
}

.home-selection-input-boxes.new-search-box .common-kupos-select-box .icon-arrow {
	right: 0;
	filter: invert(0);
}

.kupos-steps {
	background-color: #cecece;
	border-radius: 20px;
	display: flex;
	overflow: hidden;
	margin: 25px 0;
	color: #fff;
}

a.kupos-step-item {
	flex: 1;
	text-align: center;
	display: block;
	padding: 7px;
	color: #fff;
	border-radius: 0 20px 20px 0;
	border-right: 1px solid #fff;
	z-index: 2;
	background-color: #ccc;
	display: flex;
	align-items: center;
	justify-content: center;
}

a.kupos-step-item.active {
	background-color: var(--primary-color);
	position: relative;
	left: -10px;
	z-index: 1;
	padding-left: 10px;
}

a.kupos-step-item.active:after {
	content: '';
	height: 100%;
	display: block;
	position: absolute;
	width: 26px;
	background-color: var(--primary-color);
	right: -11px;
	border-radius: 0 20px 20px 0;
}

span.step-number {
	display: flex;
	border-radius: 20px;
	width: 23px;
	height: 23px;
	border: 1px solid #fff;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	padding-top: 3px;
}

.services-main-container {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	position: relative;
}

.filter-container {
	border-radius: 10px;
	position: relative;
	margin-right: 10px;
	/* width: 240px; */
	position: absolute;
}

.filter-container.fixed-service-filters {
	position: fixed;
}

.filter-container.absolute-service-filters {
	bottom: 0;
}

.filter-container .kupos-card {
	display: inline-block;
	padding: 16px 30px;
	position: relative;
	z-index: 9;
	margin-bottom: 30px;
	flex: 1;
	width: 100%;
}

.filter-main-title {
	text-transform: uppercase;
	text-align: center;
	margin-top: 20px;
}

.filter-category-box {
	margin-top: 25px;
	text-align: center;
	/* margin-bottom: 22px; */
}

.filter-category-box.left {
	text-align: left;
}

.filter-category-box:last-child {
	margin-bottom: 11px;
}

.filter-category-title {
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	color: var(--secondary-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.filter-category-title .down-arrow {
	margin-left: 6px;
	height: 13px;
	width: auto;
	float: right;
	margin-right: 10px;
}

.filter-category-title .up-arrow {
	margin-left: 6px;
	height: 13px;
	width: auto;
	transform: rotate(180deg);
	float: right;
	margin-right: 10px;
}

.filter-category-box.left .filter-item {
	justify-content: flex-start;
	/* padding-left: 35px; */
	padding-right: 10px;
	/* color: var(--s); */
}

.filter-category-box.left .filter-item.es {
	padding-left: 7px;
	padding-right: 6px;
}

.filter-item {
	margin: 3px 0;
	padding: 2px 20px;
	align-items: center;
	justify-content: center;
	display: flex;
	padding-top: 4px;
	height: 26px;
	/* text-transform: capitalize; */
}

.filter-item img {
	width: 20px;
	margin-right: 10px;
	position: relative;
	top: -3px;
}

.filter-item.active {
	color: var(--primary-color);
	background-color: var(--light-primary-color);
	border-radius: 15px;
}

.remove-filter-box {
	display: flex;
	font-weight: bold;
	position: relative;
	width: 100%;
	background-color: #eaeaea;
	left: 0;
	/* bottom: -40px; */
	z-index: 6;
	text-align: center;
	padding-top: 21px;
	padding-bottom: 10px;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 10px 10px;
	/* margin-top: -40px; */
	margin-top: -44px;
	margin-bottom: 30px;
}

.remove-filter-box img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	/* font-weight: bold; */
}

.services-list-container {
	flex: 1;
	margin-left: 260px;
	min-height: 800px;
}

.service-cards-container {
	margin-top: 26px;
	margin-bottom: 30px;
}

.service-cards-container .facilites-list {
	position: relative;
	margin-top: -30px;
}

.service-card {
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	flex-flow: column-reverse;
}

.service-card .kupos-card {
	padding: 12px 30px 30px;
	margin-bottom: 0;
	/* overflow: hidden; */
	/* position: relative;
  z-index: 1; */
}

.service-cards-container .offer-text {
	color: var(--secondary-color);
	background-color: var(--light-primary-color);
	margin: -15px -40px 10px -40px;
	border-radius: 20px 20px 0 0;
	padding: 12px 20px 5px 35px;
	position: relative;
	margin-bottom: 16px;
}

.service-cards-container .offer-text .offer-tag-image-container img {
	width: 35px;
	position: absolute;
	top: 0px;
	left: -4px;
}

.service-cards-container .offer-text .offer-text-span {
	margin-left: 10px;
}

.service-cards-container span.offer-percent {
	color: #fff;
	background-color: #ff5c60;
	display: inline-block;
	padding: 10px 7px 15px;
	position: absolute;
	left: 0;
	top: 0;
}

.service-cards-container span.offer-percent::after {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	border-left: 13px solid transparent;
	border-right: 13px solid transparent;
	border-bottom: 10px solid #fff;
	left: 0;
	bottom: 0;
}

.operator-info-row {
	/* margin-top: 20px; */
	margin-bottom: -10px;
}

.operator-info-row .op-logo {
	width: 20%;
}

.operator-info-row .op-name {
	margin: auto 0px;
	margin-left: 20px;
	padding-top: 5px;
}

.sold-out .operator-info-row .op-name {
	color: #c0c0c0;
}

.sold-out .service-info-row .stars {
	color: #c0c0c0;
}

.sold-out span.time {
	color: #c0c0c0;
}

.sold-out .date-row {
	color: #c0c0c0;
}

.sold-out span.ampm {
	color: #c0c0c0;
}

.sold-out .service-card .duration div span {
	color: #c0c0c0 !important;
}

.sold-out span.hours {
	color: #c0c0c0 !important;
}

.sold-out span {
	color: #c0c0c0 !important;
}

.kupos-button.sold-out span {
	color: #fff !important;
}

.sold-out .op-logo {
	opacity: 0.4;
}

.service-info-row {
	min-height: 70px;
	align-items: flex-end;
	justify-content: space-between;
}

.service-info-row .time-stars-row {
	/* flex: 1; */
	align-items: flex-end;
	/* margin-top: 1.8rem; */
	margin-bottom: -1pt;
}

.service-info-row .stars {
	/* margin-right: 20px; */
	font-weight: bold;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.service-info-row .stars img {
	margin-left: 3px;
	/* margin-top: -6px; */
	width: 15px;
	margin-bottom: 4px;
}

.service-info-row .time-info {
	font-weight: bold;
	position: relative;
}

span.time {}

span.ampm {
	margin-left: 2.5px;
}

.service-card .time-row {
	margin-bottom: -2px;
	align-items: center;
}

.service-card .duration {
	display: flex;
	flex-direction: column;
	/* align-items: flex-end; */
	padding: 0px 8px 0px;
	position: relative;
	/* border-bottom: 2px solid #ccc; */
	top: 2px;
	margin: 0 12px;
	letter-spacing: 1.15px;
	/* background-image: url(/images/icons/icon-duration-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% 12px;
  background-position: bottom; */
	width: 7.5vw;
}

.duration img {
	display: block;
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: auto;
}

.duration .svg-span {
	width: 126%;
	margin-left: -13%;
	position: relative;
	top: -5px;
}

.duration img {
	width: 100%;
	margin-left: -5%;
	position: absolute;
	left: 0;
	top: -3px;
}

span.hours {
	letter-spacing: 0;
}

.date-row {
	justify-content: space-between;
	margin-top: 10.5pt;
	margin-bottom: -2pt;
}

.seat-info {
	margin: 0 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: -9pt;
	/* margin-left: 15px; */
	/* margin-top: 3px; */
}

.seat-info span {
	display: block;
	text-align: center;
	font-weight: bold;
	margin: 6pt 0;
	/* height: 20px; */
}

.seat-price-info {
	margin: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-width: 60pt;
	/* margin-left: 10px;  */
	margin-bottom: -8pt;
	/* margin-top: 5px; */
}

.seat-price-info span {
	display: block;
	text-align: center;
	color: var(--secondary-color);
	font-weight: bold;
	margin: 5pt 0;
	/* height: 20px; */
}

.service-info-row .single-type {
	justify-content: center;
	/* display: flex; */
	min-height: 70px;
	/* top: -14pt; */
	position: relative;
	margin-bottom: 0px;
}

.button-col {
	display: flex;
	align-items: flex-end;
	margin-left: 10px;
	flex-direction: column;
}

.button-col .kupos-button {
	height: 40px;
	width: 120px;
	border-radius: 6px;
}

.button-col.sold-out .kupos-button {
	position: relative;
	background-color: #ccc;
}

.button-col.sold-out span.sold-out-span {
	margin: 0;
}

button.kupos-button.sold-out img {
	position: absolute;
	height: auto;
	top: 50%;
	left: 50%;
	width: 24px;
	margin-top: -12px;
	margin-left: -12px;
	display: none;
}

button.kupos-button.sold-out:hover img {
	display: block;
}

button.kupos-button.sold-out:hover .sold-out-span {
	display: none;
}

.fast-filling {
	width: 100%;
	text-align: center;
	margin-top: 0.5rem;
}

.cancel-done-section {
	/* margin-top: 130px; */
}

.cancel-done-section img {
	height: 80px;
	width: auto;
}

.cancel-ticket-done {
	display: flex;
	justify-content: center;
}

.cancel-ticket-done-desc {
	padding: 0px 16%;
}

.mt-y-3.cancel-ticket-done {
	margin-top: 15px;
}

.no-underline-hover:hover {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.cancel-ticket-done:nth-child(3),
.cancel-ticket-done:nth-child(4) {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	line-height: 1.5;
}

.cancel-ticket-done:nth-child(4) {
	background: var(--secondary-color);
	border-radius: 10px;
	color: var(--white-color);
	margin: 25px 20vw;
}

.display-flex.my-2.contact-us-icons-and-text {
	align-items: center;
}

.primary-triangle {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 19px solid #ee595d;
	position: relative;
	top: -24px;
	left: 65px;
}

.bank-deposit-cards {
	display: grid;
	grid-template-columns: 1fr 2.5fr;
	grid-gap: 25px;
	margin-top: 30px;
}

.successful-purchase-buttons>button {
	margin: 0 10px;
}

.para {
	margin-bottom: 15px;
	line-height: 1.5;
	text-align: justify;
}

.kupos-card.video-card {
	padding: 40px;
	margin-top: 25px;
}

.video-div {
	position: relative;
	margin-top: 30px;
}

.video-div img.thumbnail {
	width: 100%;
	height: auto;
}

.video-div img.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	margin-top: -40px;
}

.video-div .video-title {
	position: absolute;
	top: 30px;
	color: #fff;
	left: 20px;
}

/* My account page */
.logged-in-main-card-area {
	display: flex;
	margin: 0;
	position: relative;
}

.white-bg {
	/* min-width: 105px; */
	flex: 1;
}

.logged-in-main-card-area .logged-in-card {
	width: 420px;
	/* margin-left: 130px; */
	padding: 30px 40px;
	position: absolute;
	top: -60px;
	bottom: -25px;
	line-height: 1.5;
	background-color: #fff;
}

.logged-in-main-card-area .logged-in-card .horizontal-line {
	margin: 10px 0px;
}

.icon-label {
	/* width: 50%; */
	line-height: 1;
	margin-top: 0.5rem;
}

.logged-in-main-card-area .logged-in-name {
	position: absolute;
	top: -46px;
	left: 0;
	color: var(--white-color);
}

.logged-in-main-card-area .logged-in-capsule-menu {
	background: var(--primary-color);
	border-radius: 75px;
	padding: 10px 20px;
	height: 22px;
	display: flex;
	align-items: center;
	float: right;
	color: var(--white-color);
	cursor: pointer;
	padding-top: 13px;
	top: 30px;
	right: 40px;
}

.logged-in-main-card-area .logged-in-options-edit-logout {
	border-radius: 75px;
	/* padding: 10px; */
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	float: right;
	color: var(--white-color);
	cursor: pointer;
	padding-top: 13px;
	top: -30px;
	right: -10px;
	position: relative;
}

.logged-in-main-card-area .logged-in-options-edit-logout img {
	height: 22px;
	width: auto;
	padding: 0px 5px;
}

.my-account-default-page {
	margin-top: 0 !important;
}

.my-account-default-page .grey-bg {
	/* min-width: 105px; */
	background-color: #f3f3f3;
	flex: 1;
}

.logged-in-main-card-area .name-and-image {
	display: flex;
	margin-top: 0px;
}

.logged-in-main-card-area .user-name-and-email {
	margin: auto;
	margin-left: 10px;
	line-height: 1.2;
}

.logged-in-main-card-area .user-image img {
	min-height: 100%;
	min-width: 100%;
}

.logged-in-main-card-area .dp-image-my-account {
	width: 70px;
	overflow: hidden;
	height: 70px;
	border-radius: 50%;
	margin-right: 10px;
	border: 1px solid #eee;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logged-in-main-card-area .logged-in-personal-details {
	margin-top: 10px;
	line-height: 1.9;
}

.ind-detail .text-end {
	color: var(--primary-color);
	float: right;
}

.horizontal-line {
	margin: 15px 0px;
}

.logged-in-main-card-area .final-ind-detail {
	font-weight: bold;
	margin-top: 12px;
	display: flex;
	justify-content: space-between;
}

.final-ind-detail .text-end {
	float: right;
}

.logged-in-main-card-area .logged-in-extra-cards-section {
	display: block;
	padding: 25px 0 50px 50px;
	flex: 1;
	background: var(--light-color);
	margin-bottom: 0;
	padding-bottom: 10px;
	margin-left: 420px;
}

.logged-in-extra-cards {
	display: flex;
	margin-top: 10px;

	justify-content: space-between;
}

.wallet-item-content {
	right: 0;
	left: 220px;
	top: 94%;
	margin-top: 65px;
	position: absolute;
}

.my-account-default-page .logged-in-side-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 27.5%;
	padding: 16px 1rem;
}

/* .my-account-default-page .logged-in-side-card:not(:last-child) {
  margin-right: 50px;
} */

.my-account-default-page .logged-in-side-card img {
	width: 60px;
	height: auto;
}

.my-account-default-page .sub-details-section {
	margin-bottom: 40px;
	display: flex;
	margin-top: 50px;
	padding: 0;
	max-height: 604px;
	/* max-height: 500px; */

	scroll-margin: 95px;
}

.my-account-default-page .sub-details-section-internal-card {
	display: block;
	/* margin: -16px; */
	border-radius: 20px;
	background: var(--light-primary-color);
	position: relative;
}

.side-menu-item-label {
	margin-top: 10px;
}

.my-account-default-page .internal-card-item {
	width: 150px;
	padding: 22px 10px;
	/* padding: 15px 10px; */
	margin: 15px 0 15px 15px;
	text-align: center;
	color: var(--primary-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s linear;
	padding-left: 0;
}

.internal-card-item.active,
.internal-card-item:hover {
	background-color: #fff;
	border-radius: 75px 0 0 75px;
	color: #474747;
}

.my-account-default-page .internal-card-item img {
	height: 35px;
	width: auto;
	margin: auto;
}

.my-account-default-page .internal-card-item img.icon2 {
	display: none;
}

.internal-card-item.not-active:hover img.icon2 {
	display: initial;
}

.internal-card-item.not-active:hover img.icon1 {
	display: none;
}

.my-acc-tab-content-container {
	flex: 1;
	height: 600px;
	/* height: 550px; */
	overflow: hidden;
	/* padding: 0px 9%; */

	/* padding: 8px 0; */
}

.my-account-default-page .sub-section-description {
	flex: 1;
	/* padding: 50px 3%; */
	padding: 50px 12%;
	padding-top: 0px;
	overflow-y: auto;
	height: 100%;
}

.my-account-default-page .sub-section-description-title {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 10px;
}

.my-account-default-page .sub-section-description-description {
	text-align: center;
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.my-account-default-page .sub-section-body {
	margin-top: 30px;
	/* padding: 0px 9%; */
}

.my-account-default-page .sub-section-item {
	display: flex;
	margin-top: 20px;
	flex: 1;
	justify-content: space-between;
}

.my-account-default-page .sub-section-item .display-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.my-account-default-page .sub-section-item .user-name-and-email {
	position: relative;
	top: 3px;
}

.my-account-default-page .sub-section-item .user-image {
	width: 40px;
	margin-right: 15px;
}

.my-account-default-page .sub-section-people-strip {
	display: flex;
	align-items: center;
	/* float: right;
  margin-left: auto; */
}

.my-account-default-page .sub-section-people-strip-arrow-icon img {
	height: 20px;
	width: 20px;
	margin-left: 5px;
	margin-right: 5px;
}

.my-account-default-page .sub-section-people-strip-icons {
	display: flex;
	float: right;
}

.sub-section-people-strip-arrow-icon.hide {
	visibility: hidden;
	display: initial;
}

.my-account-default-page .sub-section-people-strip-icon img {
	height: auto;
	width: 40px;
	margin-right: 5px;
	margin-left: 5px;
}

.my-account-default-page .my-account-default-page .my-account-title {
	margin-left: -15%;
	margin-bottom: 70px;
}

.my-account-default-page .sub-section-account-general-title {
	margin-top: 30px;
	margin-bottom: 5px;
}

.qr-back {
	margin-top: 30px;
}

.my-account-default-page .sub-section-account-general-description {
	margin-top: 10px;
}

.my-account-default-page .account-general-items {
	display: flex;
	flex-wrap: wrap;

	/* display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5.5%; */
	line-height: 1.5;
	padding: 0px 12%;
}

.my-account-default-page .account-general-item {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 25px;
	box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.08);
	margin: 10px 20px;
}

.my-account-default-page .account-general-image-item {
	display: flex;
	/* justify-content: flex-end; */
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* margin-bottom: 10px; */
}

.my-account-default-page .account-general-item .double-line {
	margin-bottom: 10px;
}

.my-account-default-page .account-general-image-item img {
	height: 60px;
	width: auto;
}

.my-account-default-page .account-general-item span {
	display: block;
}

/* My Trips Section */
.my-trips .sub-section-my-trips-strip {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	position: sticky;
}

.my-trips .sub-section-my-trips-strip-icons {
	display: flex;
	justify-content: space-evenly;
	flex: 1;
}

.my-trips .sub-section-my-trips-strip-arrow-icon img {
	height: 20px;
	width: 20px;
	margin-left: 5px;
	margin-right: 5px;
}

.my-trips .sub-section-my-trips-strip-icon img {
	height: auto;
	width: 60px;
	margin-right: 5px;
	margin-left: 5px;
}

.my-trips .my-trips-title {
	margin-top: 35px;
}

.my-trips .my-trips-body {
	padding: 0 20px;
	padding-bottom: 20px;
	/* overflow: scroll;
  height: 90%; */
}

.my-trips .my-trips-item {
	padding: 15px 30px;
	position: relative;
	top: 25px;
	line-height: 1.5;
	color: #888;
}

.my-trips .my-trips-sub-item {
	font-weight: bold;
}

.my-trips .my-account-strip {
	border-radius: 75px;
	display: flex;
	position: sticky;
	top: 0px;
	align-items: center;
	z-index: 10;
	padding: 10px;
}

.trips-error-msg {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
}

.sub-section-my-trips-strip {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.individual-line {
	display: inline-block;
}

.float-right {
	float: right;
}

.right-section-trips-item {
	flex: 1;
	margin: auto;
}

.see-more-trip-details {
	cursor: pointer;
}

.float-right .sub-section-my-trips-strip-arrow-icon img {
	height: 20px;
	width: auto;
}

.display-flex {
	display: flex;
}

.display-flex-align-center {
	display: flex;
	align-items: center;
}

.sub-body-my-trips {
	background: var(--light-color);
	padding: 45px 30px 25px;
	border-radius: 0px 0px 25px 25px;
	line-height: 1.5;
	margin-top: -15px;
}

.sub-body-my-trips-title {
	font-weight: bold;
	text-align: center;
	display: block;
	margin-bottom: 12px;
}

.sub-body-sub-item {
	display: flex;
	justify-content: space-between;
	/* margin-top: 10px; */
}

.sub-item-list {
	margin-left: 0px;
}

.sub-item-list li {
	/* list-style-type: disc; */
	display: flex;
	flex-direction: row;
}

.sub-item-list li .bullet {
	margin-right: 7px;
}

.individual-trip-title {
	margin-top: 70px;
}

.cancelation-conformation-box .kupos-button {
	height: 40px;
}

/* My transacactions section */
.my-transactions .movements-in-capsule-menu,
.my-account-main-tabs-body-my-promotions .movements-in-capsule-menu {
	margin-top: 30px;
}

.my-account-main-tabs-body-my-promotions .movements-in-capsule-menu {
	position: absolute;
	margin: 0;
	left: 0;
	bottom: 23px;
}

.my-account-main-tabs-body-my-promotions .balance .promo-balance {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	float: right;
}

.common-kupos-month-picker {
	position: absolute;
	width: 100%;
	left: 0;
	z-index: 9;
}

.common-kupos-month-picker .react-month-picker .month-input.readonly {
	background: transparent;
	opacity: 0;
}

.my-transactions .transactions-body-item {
	display: grid;
	grid-template-columns: 0.6fr 0.1fr 3fr 0.1fr 1fr;
}

.my-transactions .transactions-first-child {
	width: 80px;
}

.my-transactions {
	/* margin-top: 50px; */
}

.my-transactions .dropdown-movement,
.my-account-main-tabs-body-my-promotions .dropdown-movement {
	position: absolute;
	right: 15px;
}

.my-transactions .dropdown-movement img,
.my-account-main-tabs-body-my-promotions .dropdown-movement img {
	height: 25px;
	width: auto;
}

.my-transactions .my-movements-heading {
	padding: 15px 30px;
	position: relative;
	top: 20px;
	margin-bottom: 10px;
}

.my-transactions .my-movements-heading>div {
	padding: 0 10px;
	height: 3vw;
}

.my-transactions .transaction-status {
	justify-content: space-between;
	align-items: flex-end;
}

.my-transactions .my-movements-heading .vl {
	border-left: 1px solid black;
	height: auto;
	margin: 0px 25px;
	padding: 0;
	position: relative;
	height: 100%;
	top: -30%;
}

.my-transactions .my-account-main-tabs-body-my-transactions .my-movements-heading {
	margin-bottom: 15px;
	line-height: 1.5;
}

.my-transactions .my-account-main-tabs-body-my-transactions .vl {
	height: 120%;
	top: -10%;
	border-color: #ccc;
}

.my-transactions .my-movements-subitem img {
	height: auto;
	width: 20px;
	height: 1.5vw;
}

.my-transactions .my-movements-middile-item {
	align-items: flex-start;
}

.my-transactions .red-text {
	color: var(--secondary-color);
	align-items: flex-end;
	display: flex;
	margin: auto;
	/* justify-content: center; */
	/* margin-top: 15px; */
	height: 100%;
}

.my-transactions .red-text span {
	position: relative;
	bottom: -3px;
}

.show {
	display: inherit;
}

.hide {
	display: none;
}

.see-more {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 11px;
}

.see-more span {
	display: flex;
}

.see-more:hover {
	cursor: pointer;
}

/* - ------ my promotions -------  */
.my-account-main-tabs-body-my-promotions .balance {
	text-align: center;
	padding: 20px 0;
	margin-top: 10px;
	position: relative;
	margin-bottom: 40px;
}

.my-account-main-tabs-body-my-promotions .sub-section-body {
	margin-top: -25px;
}

/* Recharge wallet map display */
.my-account-recharge-wallet-kupospay-recharge {
	margin: 0px;
	position: absolute;
	padding-left: 175px;
	top: calc(100% + 50px);
	right: 0;
	left: 0;
	box-shadow: 0px 5px 10px 4px rgba(0, 0, 0, 0.17);
	border-radius: 20px;
	/* height: 500px; */
	/* height: 550px; */
	height: 604px;

}

.recharge-wallet-top-strip {
	display: grid;
	grid-template-columns: 1fr 8fr 1fr;
	grid-gap: 40px;
}

.recharge-wallet-top-strip div img {
	height: 17px;
	width: auto;
}

.my-account-recharge-wallet-kupospay-recharge-inner {
	position: relative;
	padding: 30px 12%;
	height: 100%;
}

.recharge-map-container {
	background: #fff;
	padding: 30px 12%;
	border-radius: 20px;
	/* box-shadow: 0px 5px 10px 4px rgba(0, 0, 0, 0.17); */
	padding-bottom: 20px;
	/* height: 500px; */
	height: 604px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.recharge-map-container .title-and-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.recharge-map-container .title-and-image span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.recharge-map-container .title-and-image {
	display: flex;
	align-items: center;
}

.recharge-map-container .title-and-image span img {
	height: 18pt;
	width: auto;
}

.recharge-map-container div span {
	display: inline-block;
	/* margin:auto; 
  align-items: center; */
}

.recharge-tabs-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-container-selector {
	border-radius: 75px;
	background: #ccc;
	margin: 0px auto;
	display: flex;
	margin-top: 30px;
}

.selector-item {
	width: 140px;
	padding: 6px 10px 5px;
	text-align: center;
	color: var(--white-color);
	/* text-transform: capitalize; */
}

.map-container-selector .active {
	border-radius: 75px;
	background: var(--secondary-color);
	text-align: center;
}

.recharge-content {
	flex: 1;
}

.recharge-map-outer {
	width: 100%;
	height: 100%;
}

.recharge-map-outer .map-div {
	height: calc(100% - 50px);
	width: 100%;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

.marker .svg-span {
	width: 40px;
}

.marker .svg-span svg {
	width: 100%;
}

.recharge-map-outer .map-div .common-kupos-input {
	position: absolute;
	height: 40px;
	left: 30px;
	right: 30px;
	top: 10px;
	z-index: 99;
	background-color: #fff;
	width: auto;
	border-radius: 10px;
}

.recharge-map-outer .map-div .common-kupos-input .input-outer {
	position: relative;
	height: 100%;
	margin: 0;
}

.recharge-map-outer .map-div .common-kupos-input .input-outer img {
	height: 50%;
	width: auto;
	filter: contrast(0.5);
	/* position: absolute; */
	z-index: 999;
	margin-left: 15px;
}

.recharge-steps-outer {
	display: flex;
	margin-top: 30px;
}

.inputs {
	flex: 1;
	padding-right: 25px;
}

.steps {
	width: 55%;
	padding-left: 25px;
}

.inputs .common-kupos-input input {
	height: 40px;
	padding-top: 12px;
}

.recharge-map {
	border-radius: 20px;
	width: 100%;
	height: 200px;
}

.recharge-map img {
	border-radius: 20px;
}

.search-icon {
	position: relative;
	left: 50px;
	margin: auto 0px;
}

.search-icon img {
	height: auto;
	width: 40px;
	margin: auto;
}

.map-search-box {
	border: 1px solid #333;
	border-radius: 10px 10px 10px 10px;
	flex: 1;
	padding: 20px;
	position: relative;
	left: -16px;
}

.recharge-map-element {
	display: flex;
	position: relative;
	margin-top: 20px;
	z-index: 1;
}

.align-to-top {
	position: relative;
	top: -730px;
}

.map-and-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	margin-top: 30px;
}

.wallet-recharge-extra-items {
	margin-top: 7px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	line-height: 1.4;
	padding: 0px 14px;
}

.wallet-recharge-extra-items .kupos-card {
	height: 135px;
}

.wallet-recharge-extra-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.wallet-recharge-extra-item img {
	width: 55px;
	height: auto;
}

.button-container {
	display: flex;
	justify-content: flex-end;
	margin-top: 10px;
}

.button-container button.kupos-button {
	padding-right: 20px;
	padding-left: 20px;
	height: 40px;
	padding-top: 10px;
	width: 130px;
}

.wallet-recharge-extra-item span {
	/* display: flex;
  margin: auto !important; */
}

.bank-transfer .step {
	display: flex;
	margin-top: 30px;
	margin-bottom: 20px;
	align-items: center;
}

.bank-transfer .step .number {
	margin-right: 10px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary-color);
	color: #fff;
	border-radius: 50%;
	padding-top: 4px;
	font-size: 14pt;
}

.bank-transfer .details {
	margin-left: 40px;
}

.bank-transfer .details .flex-row {
	margin: 10px 0;
}

.bank-transfer .details .label {
	margin-left: 0px;
	width: 200px;
}

.inputs .recharge-input-element {
	margin-top: 10px;
	z-index: 1;
}

.recharge-input-button {
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
	height: 60px;
	padding: 0px 60px;
}

.recharge-search-box {
	border: 1px solid #333;
	border-radius: 10px 10px 10px 10px;
	flex: 1;
	padding: 20px;
	position: relative;
}

.recharge-input-button_container {
	display: flex;
	justify-content: flex-end;
}

.title-map-display {
	margin-top: 25px;
	margin-bottom: 6px;
}

.wallet-transfer-details {
	margin-top: 60px;
	padding-bottom: 230px;
}

.numbering-text {
	display: flex;
	align-items: center;
	margin-top: 60px;
	margin: 0px !important;
}

.numbering-text span {
	margin: 0px !important;
}

.wallet-transfer-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-right: 25vw;
	margin-left: 60px;
	margin-top: 20px;
	grid-gap: 20px;
	line-height: 1.5;
}

.primary-circle {
	border-radius: 50%;
	background: var(--primary-color);
	color: var(--white-color);
	height: 29px;
	width: 29px;
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 10px;
	margin-right: 20px;
}

.secondary-circle {
	border-radius: 50%;
	background: var(--secondary-color);
	color: var(--white-color);
	height: 29px;
	width: 29px;
	padding: 10px;
	margin-right: 20px;
	align-items: center;
	display: flex;
	justify-content: center;
}

.transfer-money .sub-section-account-general-title {
	margin-top: 0;
}

.my-favourites hr {
	margin-top: 10px;
	margin-bottom: 10px;
}

.my-favourites.kupos-card {
	padding: 30px;
}

.my-favourites.kupos-card .favourist-list {
	padding-bottom: 10px;
}

.favourite-item {
	align-items: center;
	/* line-height: 1.5; */
	padding-bottom: 10px;
}

.favourite-item span.name {
	flex: 1;
}

span.heart-icon img {
	height: 18px;
	width: auto;
	margin-left: 10px;
	position: relative;
	top: -2px;
}

.recipient-card {
	padding: 30px;
	margin-bottom: 40px;
}

.recipient-card {
	padding: 30px;
	margin-bottom: 40px;
	line-height: 1.2;
}

.recipient-card .flex-row.change {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
}

.recipient-card .change .capsule-menu {
	color: #fff;
	padding: 2px 15px;
	width: auto;
	margin: 0;
	padding-top: 4px;
}

.selected-contact-recharge-transfer img {
	margin-top: 6px;
}

/* edit profile  */

div[aria-labelledby='contained-modal-title-vcenter edit-modal'] {
	max-width: 650px;
}

.full-container {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 99;
}

.opaque-background {
	background: rgba(0, 0, 0, 0.7);
}

.icon-edit-element input {
	margin: 0;
	padding-right: 30px;
	width: 100%;
}

.edit-profile-search-box {
	border: 1px solid #333;
	border-radius: 10px 10px 10px 10px;
	flex: 1;
	padding: 10px;
	position: relative;
}

.icon-edit-element {
	position: relative;
	padding: 0px;
	margin: 0px;
}

.reset-modal-inp {}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
	transform: translate(0, 0px);
	background-color: rgba(0, 0, 0, 0.6);
}

.reset-modal-inp .inp {
	margin: 15px 0;
}

.reset-modal-inp .inp .common-kupos-input .input-outer {
	height: 45px;
}

.reset-modal-inp .close-button.pointer {
	position: absolute;
	right: 20px;
	top: 20px;
}

.reset-modal-inp .close-button.pointer .svg-span {
	width: 20px;
}

.reset-modal-inp button.kupos-button {
	width: 100%;
	height: 40px;
	margin-top: 25px;
}

.icon-edit-element img {
	border-radius: 50%;
	width: 24px;
	height: 24px;
}

.internl-profile-edit-container {
	position: relative;
}

.logged-in-capsule-menu {
	background: var(--primary-color);
	border-radius: 75px;
	padding: 10px 20px;
	height: 22px;
	display: flex;
	align-items: center;
	float: right;
	color: var(--white-color);
	cursor: pointer;
	padding-top: 13px;
	right: 0;
	top: 0;
	position: absolute;
}

.edit-profile-pic {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border-style: solid;
	border-color: var(--secondary-color);
	position: relative;
	margin: auto;
}

.edit-profile-pic .edit-dp {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
}

.edit-profile-pic div.pencil {
	position: relative;
	overflow: hidden;
	position: absolute;
	bottom: 5px;
	right: -5px;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	cursor: pointer;
}

.edit-profile-pic div.pencil img {
	display: flex !important;
	align-items: center;
	justify-content: center;
	background-color: white;
	box-shadow: 0 0 8px 3px #b8b8b8;
}

.edit-profile-pic div.pencil input.photo-file {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0;
}

.edit-propfile-inps {
	margin-top: 20px;
}

.edit-profile-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	margin-bottom: 15px;
}

.edit-profile-grid input,
.edit-profile-grid .common-kupos-input input,
.edit-profile-grid .common-kupos-date-picker input {
	height: 40px;
}

.edit-profile-grid .common-kupos-date-picker .date-inner {
	height: 40px;
	margin-top: 4px;
}

.edit-profile-grid .common-kupos-date-picker .date-inner input {
	height: auto;
}

.edit-profile-grid .icon-edit-element img {
	width: 20px;
	height: 20px;
}

.edit-profile-grid input:disabled {
	background-color: #fff;
}

.last-text {
	display: flex;
	justify-content: flex-end;
}

/* cancellation screen css */

.cancellation-default-page .cancellation-main {
	position: relative;
	top: 10px;
}

.cancellation-default-page .cancel-screen-title {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 35px;
}

.cancel-ticket-done:nth-child(3),
.cancel-ticket-done:nth-child(4) {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.cancel-ticket-done:nth-child(4) {
	background: var(--secondary-color);
	border-radius: 10px;
	color: var(--white-color);
	margin: 25px 20vw;
}

.primary-triangle {
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 19px solid #ee595d;
	position: relative;
	top: -24px;
	left: 65px;
}

.white-triangle {
	height: 30px;
	width: 30px;
	box-shadow: -5px -4px 7px -4px rgba(0, 0, 0, 0.19);
	position: absolute;
	top: -12px;
	display: block;
	transform: rotate(45deg);
	background-color: #fff;
}

.white-triangle.recharge-tab {
	left: 41%;
}

.white-triangle.share-balance {
	left: 65%;
}

.white-triangle.kupos-prime {
	right: 6%;
}

.kupos-prime-image {
	width: 80%;
	margin: 0 10%;
	/* margin-top: 30px; */
	margin-top: 0px;
	position: relative;
}

.kupos-prime-container .coming-soon-label-container {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

a.prime-links {
	display: block;
	position: absolute;
	height: 50px;
	width: 18%;
	bottom: 27%;
	right: 8%;
	cursor: pointer;
}

a.prime-links.link-left {
	right: 29%;
}

.cancellation-default-page .passenger-details {
	/* margin-top: 30px; */
}

.cancellation-default-page .cancel-bank-total-section {
	margin-right: 25px;
	position: relative;
	margin-bottom: 48px;
	max-width: 350px;
}

.cancellation-default-page .cancel-bank-total-section .pnr-number {
	align-items: center;
}

.cancellation-default-page .cancel-bank-total-section .pnr-number span {
	margin-right: 10px;
}

.cancellation-default-page .cancel-bank-total-section .pnr-number .kupos-button-secondary {
	padding-top: 6px;
	padding-bottom: 2px;
}

.cancellation-default-page .cancel-bank-total-section .city-name-box {
	margin: 10px 0 12px;
}

.cancellation-default-page .cancel-bank-total-section .city-name:nth-child(1) {
	margin-bottom: 15px;
}

.cancellation-default-page .cancel-bank-total-section .city-name img,
.cancellation-default-page .cancel-bank-total-section .city-name .svg-span {
	width: 17px;
	margin-right: 5px;
	position: relative;
	top: -3px;
}

.cancellation-default-page .cancel-bank-total-section .datetime {
	margin: 10px 0;
}

.cancellation-default-page .icon-selection-circle-not-selected,
.cancellation-default-page .icon-selection-circle-selected,
.cancellation-default-page .icon-check-square-pink,
.cancellation-default-page .icon-check-square-pink-line {
	width: 16px;
	height: 16px;
}

.cancellation-default-page .bank-deposit-heading {
	margin-bottom: 20px;
	text-align: left;
}

.cancellation-default-page .bank-deposit-left-card {
	padding: 50px 40px;
	position: relative;
	height: 100%;
	padding: 45px;
	padding-bottom: 10px;
	z-index: 9;
}

.cancellation-default-page .cancel-bank-total-section .total-amount {
	text-align: center;
	border-radius: 0 0 20px 20px;
	padding: 0 30px;
	padding-top: 35px;
	position: absolute;
	bottom: -38px;
	width: 100%;
	z-index: 0;
	padding-bottom: 10px;
	justify-content: space-between;
}

.cancellation-default-page .left-card-logo img {
	height: 20px;
	width: auto;
}

.cancellation-default-page .kupos-button-secondary.py-2 {
	padding-top: 45px;
}

.cancellation-default-page .kupos-card.bank-deposit-left-card {
	padding: 30px 30px 10px;
	min-width: 300px;
}

.cancellation-default-page .kupos-card.bank-deposit-left-card>div {
	/* margin-bottom: 0.8rem !important; */
}

.cancellation-default-page .passenger-seat-details {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cancellation-default-page .at-passenger-seat-details {
	padding: 40px 80px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cancellation-default-page .passenger-seat-details .passenger-seat-rows-block,
.cancellation-default-page .at-passenger-seat-details .passenger-seat-rows-block {
	flex: 1;
}

.at-passenger-inputs-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin-top: 8px;
}

.at-passenger-inputs-container th {
	font-weight: bold;
	font-family: 'DMSans-Bold', sans-serif;
}

.cancellation-default-page .right-card-sections {
	display: grid;
	grid-template-columns: 0.5fr 0.8fr 1.5fr 1.7fr 1fr;
	margin-bottom: 13px;
	align-items: center;
}

.cancellation-default-page .right-card-sections>span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cancellation-default-page .right-card-sections>span:nth-child(1) {
	width: 70px;
	padding-right: 10px;
}

.cancellation-default-page .at-right-card-sections {
	display: grid;
	grid-template-columns: 0.5fr 0.8fr 1.5fr 1.7fr 1fr;
	margin-bottom: 13px;
	align-items: center;
}

.cancellation-default-page .car .at-right-card-sections {
	display: grid;
	grid-template-columns: 0.5fr 0.8fr 0.5fr;
	margin-bottom: 13px;
	align-items: center;
}

.cancellation-default-page .at-right-card-sections>span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cancellation-default-page .at-right-card-sections>span:nth-child(1) {
	width: 70px;
	padding-right: 10px;
}

.cancellation-default-page .at-right-card-sections {
	display: grid;
	grid-template-columns: 0.5fr 1.5fr 3.5fr 1fr;
	margin-bottom: 13px;
	align-items: center;
}

.cancellation-default-page .at-right-card-sections>span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cancellation-default-page .at-right-card-sections>span:nth-child(1) {
	width: 70px;
	padding-right: 10px;
}

.cancellation-default-page .passenger-seat-details .accept-terms,
.cancellation-default-page .at-passenger-seat-details .accept-terms {
	align-items: center;
	justify-content: flex-end;
}

.cancellation-default-page .passenger-seat-details .accept-terms span,
.cancellation-default-page .at-passenger-seat-details .accept-terms span {
	position: relative;
	top: 2px;
}

.cancellation-default-page .cancellation-cancellation-policy-block {
	text-align: left;
	line-height: 2;
}

.cancellation-default-page .cancellation-cancellation-policy-block .pol-title {
	margin-top: 20px;
}

.kupos-payment-method img {
	height: 22px;
	width: auto;
}

.kupos-payment-method .common-kupos-radio .kupos-radio {
	position: relative;
	top: -2px;
}

.cancellation-default-page .payment-methods {
	margin: 30px 0;
}

.cancellation-default-page .kupos-payment-method-bank-deposit {
	margin-right: 8rem;
	align-items: center;
}

.cancellation-default-page .bank-deposit-subsection-card {
	padding: 2.5rem;
	margin-top: 1rem;
	margin-bottom: 5rem;
}

.cancellation-default-page .cancellation-refund-details-block {
	margin-bottom: 40px;
}

.cancellation-default-page .subsection-card-sections {
	display: grid;
	grid-template-columns: 1fr 1fr 0.9fr 1.4fr 1.2fr 1.2fr 1fr;
	grid-gap: 10px;
	margin-bottom: 0.3rem;
	text-align: left;
}

.cancellation-default-page .subsection-card-sections .common-kupos-input input,
.cancellation-default-page .inputs-container .common-kupos-input input {
	height: 40px;
	min-width: 49px;
}

.cancellation-default-page .subsection-card-sections.label-row {
	margin-top: 1.5rem;
}

.cancellation-default-page .subsection-card-sections .common-kupos-select-box-outer input {
	width: 100%;
}

.digit4-card-inp {
	width: 300px;
}

.cancellation-default-page .bank-deposit-input-box button {
	height: 40px;
	/* width: 300px; */
	margin: 100px auto;
	margin: 50px auto 10px;
	padding: 10px 25px;
}

.cancellation-default-page .common-kupos-success-failure .cancel-done-section {
	margin-top: 110px;
}

.cancel-confirm-modal-data {
	line-height: 1.2;
}

.cancel-confirm-modal-data>div {
	justify-content: space-between;
}

.transfer-money-modal-body>div {
	margin: 10px 0;
}

/* Login modal code ------- */
div[aria-labelledby='contained-modal-title-vcenter login-modal'] .modal-content {
	background: transparent;
	border: 0;
}

div[aria-labelledby='contained-modal-title-vcenter login-modal'] .modal-content .modal-body {
	padding: 0 25px;
}

.kupos-card.log-in-card {
	padding: 35px;
	position: relative;
	z-index: 9;
	/* background-color: var(--corporate-blue-color); */
	background-color: #fff;
}

.log-in-card.signup {
	/* background-color: #FFF1EC; */
	z-index: 8;
	/* left: -10px; */
	/* border-radius: 0 15px 15px 0; */
	/* left: -2px; */
	padding-top: 40px;
}

.login-signup-block.row {
	align-items: center;
	justify-content: center;
}

span.social-link {
	width: 35px;
	display: inline-block;
	margin: 15px 15px;
}

.login-signup-inputs {
	margin: 0 0px;
	margin-top: 10px;
}

.login-signup-input {
	margin: 0.7rem 0;
}

.signup .login-signup-input.radio-inps {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px;
	margin-top: 15px;
}

.login-signup-input.radio-inps .radio-inp {
	flex: 1;
}

.login-signup-input.no-pad {
	padding: 1px 4px;
}

.signup .login-signup-input {
	margin: 0;
}

.login-signup-input .common-kupos-input input {
	height: 40px;
	padding: 12px 15px 10px;
}

.login-terms {
	margin-top: 15px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.login-signup-button {
	margin-top: 30px;
}

.login-signup-button .kupos-button {
	margin: auto;
	height: 40px;
	padding-right: 20px;
	padding-left: 20px;
	width: 180px;
}

.option-buttons {
	/* margin-left: 10%;
  margin-right: 10%; */
	margin-top: 20px;
}

.login-signup-button .login_option-button {
	margin: auto;
	height: 40px;
	padding-right: 20px;
	padding-left: 20px;
	width: 100%;
	justify-content: left;
}

.inner-button-login-options {
	display: flex;
	text-transform: initial;
	align-items: center;
	flex: 1;
}

.login-signup-button .login_option-button img {
	height: 20px;
	width: auto;
	margin-right: 10px;
	margin-top: 2px;
}

.login-signup-button .signup-success {
	margin: auto;
	height: 40px;
	padding-right: 20px;
	padding-left: 20px;
	width: 200px;
}

.login-signup-block {
	position: relative;
}

.login-signup-block .user-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	padding-top: 0px;
}

.login-signup-block .user-icon .svg-span {
	width: 80px;
}

.login-signup-block .user-icon img {
	width: 80px;
}

.login-signup-block .close-button,
.tnc-pnr-modal .close-button,
.common-kupos-modal-inner .close-button {
	width: 25px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 99;
}

.common-kupos-modal-inner .close-button {
	width: 18px;
}

.login-signup-block .close-button .svg-span,
.tnc-pnr-modal .close-button .svg-span,
.common-kupos-modal-inner .close-button .svg-span {
	width: 100%;
}

.register-link {
	text-align: center;
	margin-top: 20px;
}

.register-link a {
	color: var(--primary-color) !important;
	cursor: pointer;
}

.login-server-error {
	/* text-align: center; */
}

.log-in-card .back-arrow {
	position: absolute;
	/* margin-top: -4px; */
	cursor: pointer;
}

.log-in-card .back-arrow .svg-span {
	width: 25px;
}

.log-in-card .back-arrow .svg-span .back-arrow-cls-1 {
	stroke: #464646 !important;
}

.log-in-card.forgot .user-icon {
	/* margin-top: 20px; */
}

.log-in-card.forgot .login-signup-input {
	margin-top: 15px;
}

.log-in-card.forgot {}

.forgot-tabs-container {
	margin-top: 20px;
}

.mobile-signup-input {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 10px;
	height: 42px;
	overflow: hidden;
}

.input-flag-img {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #ccc;
	padding-right: 5px;
}

.input-flag-img img {
	height: 20px;
	width: auto;
	margin: 0 5px;
	border-radius: 4px;
}

.otp-inps {
	justify-content: space-around;
	padding: 0 15px;
	/* width: 260px; */
	width: 290px;
	align-items: center;
	margin: 0 auto;
}

.otp-inps input {
	flex: 1;
	width: 40px;
	max-width: 40px;
	padding: 5px 0;
	text-align: center;
	border: 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

.show-password-container {
	height: 100%;
	width: 44px;
	align-items: center;
	justify-content: center;
}

.password-show {
	-webkit-text-security: disc;
	height: 24px;
	width: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 10px;
}

.password-hide {
	-webkit-text-security: text;
	height: 24px;
	width: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 10px;
}

.log-in-card.forgot-success .user-icon {
	margin-top: 10px;
}

.log-in-card.forgot-success .user-icon img {
	width: 80px;
}

.social-buttons {
	justify-content: space-between;
	margin-top: 20px;
}

.log-in-card .fb-login-btn {
	position: absolute;
	z-index: 99;
	opacity: 0;
}

button.social-button {
	width: 48.5%;
	/* height: 35px; */
	border: 0;
	background-color: #23599b;
	color: #fff;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 5px; */
	border-radius: 7px;
	position: relative;
	overflow: hidden;
}

button.social-button .svg-span {
	width: 100%;
	/* height: 100%; */
	/* position: absolute; */
	z-index: 1;
}

button.social-button.google {
	background-color: #444445;
}

button.social-button span.label {
	position: absolute;
	z-index: 2;
	left: 23%;
	margin-top: 1px;
}

button.social-button.google span.label {
	left: 29%;
}

.contact-us-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}

.contact-us-title,
.page-title {
	text-align: center;
	margin-bottom: 45px;
	position: relative;
	top: 10px;
}

.contact-us-item {
	padding: 40px;
	line-height: 1.5;
	margin-bottom: 0;
	text-align: justify;
}

.contact-us-container.contact-details .contact-us-item {
	padding: 25px 40px;
}

.contact-us-input-box button {
	height: 40px;
	margin: 25px auto 0;
	padding-right: 20px;
	padding-left: 20px;
}

.contact-number {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	margin-right: 15px;
	width: 100%;
}

.display-flex.contact-us-icons-and-text {
	line-height: 2;
	display: flex;
	align-items: center;
}

.contact-us-icons-and-text img {
	height: 20px;
	width: auto;
	margin-right: 10px;
}

.contact-us-item-heading {
	text-align: left !important;
	margin-bottom: 10px;
	font-size: 1.3em;
}

.contact-us-item-text img {
	height: 30px;
	width: auto;
}

.image-inside-text img {
	height: 15px;
	width: auto;
}

.image-inside-text {
	font-weight: bold;
	font-family: 'DMSans-Bold', sans-serif;
}

.number-and-text {
	display: flex;
	margin-bottom: 10px !important;
	/* align-items: center; */
}

.number-and-text span {
	font-size: 10pt;
}

.title span {
	font-size: 10pt;
}

.terms-sub-head {
	font-size: 10pt;
}

.number-and-text .secondary-circle {
	padding-top: 14px;
	text-align: center;
	position: relative;
	top: -3px;
	width: 30px;
	height: 30px;
	font-size: 8pt;
}

.number-and-text .primary-circle {
	padding-top: 11px;
	text-align: center;
	position: relative;
	top: -2px;
	width: 30px;
	height: 30px;
	font-size: 8pt;
}

.privacy-sub-details {
	margin-left: 50px;
}

.sub-item-list-privacy {
	margin-left: 50px;
}

.sub-item-list-privacy li {
	list-style-type: disc;
	margin-bottom: 10px;
}

.tnc-item {
	margin-bottom: 30px;
}

.tnc-item .body-items {
	padding-left: 55px;
}

.tnc-item .body-items .multi-tier .title {
	padding-left: 55px;
}

.kupos-card.partners-rows {
	flex-wrap: wrap;
}

.partners-item {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 110px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.partners-item:nth-child(4n) {
	border-right: 0;
}

.partners-item:nth-child(n + 13) {
	border-bottom: 0;
}

.partners-item img,
.investors-item img {
	max-width: 52%;
	height: auto;
	width: auto;
}

.investors-item {
	width: 25%;
	text-align: center;
}

.investor-item {
	width: 25%;
	margin-top: 100px;
}

.investor-item .brand {
	display: flex;
	margin-top: 20px;
	justify-content: center;
	align-items: center;
}

.investor-item img {
	max-width: 100px;
	height: auto;
	width: auto;
}

.investors-rows {
	flex-wrap: wrap;
	padding: 30px 0;
	line-height: 1.5;
	margin-bottom: 0;
	text-align: justify;
}

.agency-form .passenger-input-personal-details {
	width: 100%;
	margin-bottom: 20px;
}

.agency-form tr.passenger-input-heading th {
	padding-bottom: 8px;
	text-align: left;
	padding-left: 20px;
}

.agency-form tr.passenger-input td {
	padding: 0 0 8px 20px;
}

.agency-form .rut-input {
	width: 33.3%;
}

.agency-form th.rut-input:nth-child(1),
.agency-form td.rut-input:nth-child(1),
.agency-form th.personal-input:nth-child(1),
.agency-form td.personal-input:nth-child(1) {
	padding-left: 0;
}

.agency-form .common-kupos-input .input-outer,
.agency-form .common-kupos-select-box {
	margin-top: 0;
	height: 40px;
}

.page-heading {
	text-align: center;
	padding: 10px;
	margin-bottom: 20px;
}

.page-heading .title {
	font-weight: bolder;
}

.page-heading .yellow-line {
	background-color: var(--underline-color);
	width: 55px;
	height: 3px;
	margin: 5px auto 5px auto;
}

.pages-press .news-subsec {
	width: 60%;
	text-align: center;
	margin: auto;
	margin-top: -15px;
	line-height: 1.3;
}

.pages-press .news-pagetitle {
	text-align: center;
	margin-top: 30px;
}

.pages-press .news-name {
	text-align: center;
	margin-top: 15px;
}

.pages-press .news-marketting {
	text-align: center;
	margin-top: 5px;
}

.pages-press .news-email {
	background-color: var(--secondary-color);
	color: #fff;
	padding: 7px 10px;
	border-radius: 5px;
	width: 240px;
	text-align: center;
	margin: 10px auto;
	position: relative;
}

.pages-press .news-email:before {
	content: '';
	position: absolute;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-bottom: 12px solid var(--secondary-color);
	border-top: 0;
	display: block;
	/* border-color: var(--secondary-color); */
	top: -10px;
	left: 30px;
}

.kupos-card.news-content {
	width: 80%;
	margin: 0 auto;
	margin-top: 40px;
	height: 400px;
	overflow-y: auto;
	padding: 30px;
}

.kupos-card.news-content .news-item {
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
}

.kupos-card.news-content .news-date {
	margin-top: 5px;
	margin-bottom: 10px;
}

.kupos-card.news-content .news-image img {
	width: 60px;
	height: auto;
}

.kupos-card.news-content .news-image .small-icon {
	width: 100px;
	height: auto;
}

.kupos-card.news-content .news-image {
	padding-left: 50px;
	display: flex;
	align-items: center;
}

.kupos-card.news-content .news-details {
	text-align: justify;
}

/* Month Picker CSs Start ------------------------------------------------------- */

.react-month-picker {}

.react-month-picker .calendar-container {
	width: 240px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	background: #fff;
	border: 2px solid #eee;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	text-transform: uppercase;
}

/*  SECTIONS  */
.react-month-picker .section_mp {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.react-month-picker .col_mp {
	display: block;
	float: left;
	text-align: center;
}

.react-month-picker .col_mp:first-child {
	margin-left: 0;
}

/*  GROUPING  */
.react-month-picker .group_mp:before,
.react-month-picker .group:after {
	content: '';
	display: table;
}

.react-month-picker .group_mp:after {
	clear: both;
}

.react-month-picker .group_mp {
	zoom: 1;
	/* For IE 6/7 */
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*  GRID OF THREE  */
.react-month-picker .span_1_of_3_mp {
	width: calc(33.33% - 24px);
	margin: 2px 12px;
}

.react-month-picker .col_mp {
	padding-bottom: 7px;
	padding-top: 11px;
}

.react-month-picker .col_mp:hover {
	color: white;
	background-color: darkslateblue;
	cursor: pointer;
}

.react-month-picker .calendar-container.readonly .col_mp:hover {
	background-color: transparent;
	cursor: default;
	color: inherit;
}

.react-month-picker .selected_date_mp {
	font-size: 12px;
	color: darkslateblue;
	font-weight: bold;
}

.react-month-picker .selected_cell {
	background-color: darkslateblue;
	font-style: italic;
	color: #fff;
}

.react-month-picker .arrows_mp {
	font-weight: bold;
	font-size: 18px;
}

.react-month-picker .month-input.readonly {
	background-color: #eee;
}

/* Month Picker CSS End */

.kupos-sitemap-input {
	border: 1px solid var(--border-color);
	padding: 1px 10px;
}

.sitemam-grid-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 25px;
	margin-top: 30px;
}

.terminal-list {
	border-radius: 10px;
	max-height: 400px;
	overflow: scroll;
	margin-top: 20px;
	padding: 15px 20px;
	border: solid 0.5px #ccc;
	scrollbar-color: var(--primary-color) var(--dark-color);
}

.terminal-list li {
	padding: 5px;
}

.sitemap-our-pages {
	margin-top: 5px;
	padding: 30px;
	border-radius: 10px;
}

.sitemap-our-pages-title {
	margin-top: 50px;
}

.sitemap-pages-grid-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	/* margin-top: 20px; */
}

.sitemap-pages-grid-section div li {
	margin-bottom: 10px;
}

.sitemap-pages-grid-section div .underline {
	margin-bottom: 10px;
	cursor: pointer;
}

.airport-transfer-service-item .kupos-card {
	position: relative;
	z-index: 1;
	padding: 20px 30px;
}

.airport-transfer-facilities-item-mai-container {
	/* background-color: #f4f4f4; */

	/* background-color: #f4f4f4;
  padding: 30px;
  margin-top: -27px;
  border-radius: 0 0 15px 15px;
  position: relative;
  z-index: 0;
  line-height: 1.3;
  padding-top: 40px; */
}

.airport-transfer-facilities-item {
	/* display: grid;
  grid-template-columns: 5fr 10fr 10fr 10fr 10fr 10fr; */

	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f4f4f4;
	/* padding: 30px; */
	/* margin-top: -27px; */
	margin-top: -10px;
	border-radius: 0 0 15px 15px;
	position: relative;
	z-index: 0;
	line-height: 1.3;
	/* padding-top: 40px; */
	padding: 40px 30px 70px 30px;
}

.airport-transfer-facilities-item-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	flex: 1;
	padding: 0px 20px;
	margin-top: 4px;
}

.airport-transfer-facilities-item-inner div:nth-child(2) {
	min-width: 120px;
}

.airport-transfer-facilities-item .facility-icon img {
	width: 50px;
}

.airport-transfer-facilities-item .kupos-button {
	height: 40px;
	width: 100%;
	padding-top: 10px;
}

.airport-transfer-service-grid {
	display: grid;
	grid-template-columns: 2fr 6fr 1.7fr;
}

.airport-transfer-service-grid .op-info {
	border-right: 1px solid #ccc;
}

.airport-transfer-service-grid .service-details {
	padding: 0 15px 0 20px;
}

.airport-transfer-service-grid .service-details .client-name {}

.airport-transfer-service-grid .rating img {
	height: 13pt;
	width: auto;
	position: relative;
	top: -3px;
	margin-left: 3px;
}

.airport-transfer-service-grid .amenities img {
	height: 17px;
	width: auto;
}

.airport-transfer-service-grid .amenities svg {
	height: 17px;
	margin-right: 6px;
}

.airport-transfer-service-grid .op-logo img {
	height: 35px;
	width: auto;
	margin-bottom: 7px;
}

.airport-transfer-service-grid .op-logo span {
	display: flex;
	height: 35px;
	align-items: center;
	margin-bottom: 7px;
	max-width: 170px;
}

.airport-transfer-service-grid .service-date {
	height: 35px;
	margin-bottom: 7px;
	display: flex;
	align-items: center;
}

.airport-transfer-service-grid .rating {
	margin-bottom: 3px;
}

.airport-transfer-service-grid .from-to {
	margin-top: 9px;
}

.airport-transfer-service-grid .from-to .common-svg-home.svg-span {
	width: 18px;
	position: relative;
	top: -5px;
	height: 12px;
}

.airport-transfer-service-grid .from-to.from .common-svg-home.svg-span #Destination {
	fill: var(--primary-color) !important;
}

.airport-transfer-service-grid .from-to img {
	height: 20px;
	width: 20px;
}

.airport-transfer-service-grid .from-to.to img {
	height: 20px;
	width: 18px;
}

.airport-transfer-service-grid .seats-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.airport-transfer-service-grid .price span {
	display: block;
	text-align: center;
	line-height: 1.1;
}

.airport-transfer-service-item {
	margin-bottom: 15px;
}

.airport-transfer-payment tr.passenger-input td {
	padding: 0 10px 0 0;
	padding-bottom: 15px;
}

.airport-transfer-payment tr.passenger-input td:last-child {
	padding-right: 0px;
}

.airport-transfer-payment .doc-input,
.rut-input {
	max-width: 185px;
}

.airport-transfer-payment .common-kupos-select-box .icon-arrow {
	right: 10px;
}

.airport-transfer-payment .common-kupos-select-box-outer input,
.airport-transfer-payment .common-kupos-input input {
	width: 100%;
	max-width: 100%;
	min-width: initial;
}

.airport-transfer-payment .direction-origin-dest {
	/* margin-top: -6px; */
}

.airport-transfer-payment .or-dest-inps {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
	margin-top: 10px;
	margin-bottom: 20px;
}

.airport-transfer-payment .or-dest-inps .label {
	margin-left: 0;
	margin-bottom: 3px;
	display: block;
}

.airport-transfer-payment .direction-origin-dest span.svg-span {
	width: 18px;
	margin-right: 6px;
	position: relative;
	top: -2px;
}

.airport-transfer-payment .direction-origin-dest span.svg-span #Destination {
	fill: var(--primary-color);
}

.credit-card-refund-input-container {
	display: flex;
}

.credit-card-refund-input-container .credit-card-inp {
	flex: 3;
	margin-right: 10px;
}

.credit-card-refund-input-container .credit-card-comment-inp {
	flex: 7;
}

.info-popup {
	width: 200%;
	position: absolute;
	/* display: none; */
	top: -27px;
	right: 0px;
	border-radius: 8px;
	background-color: #ddd;
	padding: 10px 18px;
	overflow: hidden;
	box-shadow: 1px 1px 16px 0px rgba(0, 0, 0, 0.08);
}

.clock-over:hover {
	cursor: pointer;
}

@media only screen and (min-width: 1100px) {
.posab{
	position: absolute;
	bottom: 0%;
	top:15%;
	transition: all 0.5s linear;
	left: 8%;
}
.posab img{
	width: 49%;
	transition: all 0.5s linear;
}
.home-search-box-container
{
	width: 95%;
}
.download-and-support .home-contact-form .contact-form {
	
	margin-bottom: 60px;
	margin-top: 0px  !important;
}
}
@media only screen and (min-width: 1200px) {
	.service-cards-container .offer-text {
		margin: -15px -30px 10px -30px;
	}
	.posab{
		position: absolute;
		bottom: 0%;
		top:15%;
		transition: all 0.5s linear;
		left: 14%;
	}
	.pullman-search-box-options .pullman-search-box-item:first-child {
		min-width: 375px;
	}
	.posab img{
		width: 60%;
		transition: all 0.5s linear;
	}
	.home-search-box-container
{
	width: 90%;
}
.footer-container3
{
	top:-9px;
}
.download-and-support .home-contact-form .contact-form {
	
	margin-bottom: 50px;
}
}

@media only screen and (min-width: 1300px) {
	.service-cards-container .offer-text {
		margin: -15px -31px 10px -31px;
	}
	.pullman-search-box-options .pullman-search-box-item:first-child {
		min-width: 400px;
	}
	.posab{
		position: absolute;
		top: 18%;
		left: 14%;
		transition: all 0.5s linear;
		bottom: 0%;
	}
	.posab img{
		width: 60%;
		transition: all 0.5s linear;
	}
	.download-and-support .home-contact-form .contact-form {
	
		margin-bottom: 10px;
	}
}

@media only screen and (min-width: 1400px) {
	.content-container {
		/* margin: 0 105px; */
		width: 1140px;
		margin: auto;
	}
	.pullman-search-box-options .pullman-search-box-item:first-child {
		min-width: 400px;
	}
	.seat-sprite {
		height: 41.5px;
		width: 41.5px;
		
	}
	.home-search-box-container
	{
		width: 90%;
	}
	.posab{
		position: absolute;
		bottom: 35%;
		left: 19%;
		transition: all 0.5s linear;
	}
	.posab img{
		transition: all 0.5s linear;
		width: 80%;
	}
	.pb-service-list-train-coach-layout .train-coach-layout li.gw {
		width: 41.5px;
	}
	.pullman-search-box-options .pullman-search-box-item:first-child {
		min-width: 500px;
	}
	.service-card .kupos-card {
		padding: 14px 34px 32px;
	}

	.service-cards-container .offer-text {
		margin: -14px -35px 10px -35px;
	}

	.service-card-more-details {
		padding: 24px 34px 34px;
	}

	.filter-container {
		width: 260px;
	}

	.services-list-container {
		margin-left: 280px;
	}

	body {
		font-size: 16pt;
	}

	.font55-75 {
		font-size: 57.75pt !important;
	}

	.font7 {
		font-size: 8pt !important;
	}

	.font8 {
		font-size: 9pt !important;
	}

	.font8-5 {
		font-size: 9.5pt !important;
	}

	.font9 {
		font-size: 10pt !important;
	}

	.font9-5 {
		font-size: 10.5pt !important;
	}

	.font10-42 {
		font-size: 11.42pt !important;
	}

	.font10 {
		font-size: 11.5pt !important;
	}

	.font11 {
		font-size: 12.5pt !important;
	}

	.font12 {
		font-size: 13.5pt !important;
	}

	.font13 {
		font-size: 14.5pt !important;
	}

	.font13-25 {
		font-size: 15.25pt !important;
	}

	.font14 {
		font-size: 16pt !important;
	}

	.font15 {
		font-size: 17pt !important;
	}

	.font16 {
		font-size: 18pt !important;
	}

	.font18 {
		font-size: 20pt !important;
	}

	.font20 {
		font-size: 22.5pt !important;
	}

	.font22 {
		font-size: 24.5pt !important;
	}

	.font24 {
		font-size: 26.5pt !important;
	}

	.font26 {
		font-size: 28.5pt !important;
	}

	.font30 {
		font-size: 33pt !important;
	}

	.font32 {
		font-size: 34pt !important;
	}

	.font33 {
		font-size: 35pt !important;
	}

	.font39 {
		font-size: 41pt !important;
	}

	.font40 {
		font-size: 42pt !important;
	}

	.font42 {
		font-size: 44pt !important;
	}

	.font47 {
		font-size: 49pt !important;
	}

	.font48 {
		font-size: 51pt !important;
	}

	.font13px {
		font-size: 13px !important;
	}

	.home-menu-strip {
		height: 80px;
		top: -42px;
	}

	.menu-profile-icon-stripe {
		width: 25px;
		height: 25px;
	}

	.my-account-top {
		padding: 5px 0px;
		height: 50px;
		width: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.home-menu-stripe {
		width: 74px;
		padding-bottom: 74px;
	}

	img#main-logo.logo2 {
		width: 14vw;
		margin: 14px 0;
	}

	.nav-section.home-nav-section.common-top-strip.header-box+* {
		margin-top: 185px;
	}

	.service-info-row .single-type {
		margin-bottom: 2px;
	}

	.home-default-page .download-our-app-section-outer .download-our-app-section .app-screenshot-container {
		height: 496px;
	}

	.home-selection-input-button {
		margin-top: 18px;
	}

	.home-selection-input-button-bip {
		margin-top: 22px;
	}

	.home-selection-input-boxes input {
		/* font-size: 11pt; */
	}

	.bip-rows-container-main .image-holder:focus {
		outline: none;
	}

	.frame:focus {
		outline: none !important;
		box-shadow: none !important;
		border: none !important;
	}

	.home-search-box-container {
		bottom: 22%;
	}

	.passenger-and-payment-details-container .kupos-card {
		padding: 30px;
	}

	.passenger-input-container .dont-have-account-block {
		padding: 17px 30px;
	}

	.passenger-input-container {
		/* margin-right: 345px; */
	}

	.journey-summary-sidebar {
		width: 325px;
	}

	.nationality-input {
		max-width: 115px;
	}

	.logged-in-main-card-area .logged-in-card {
		width: 440px;
	}

	.logged-in-main-card-area .logged-in-extra-cards-section {
		margin-left: 440px;
	}

	.wallet-recharge-extra-items .kupos-card {
		height: 126px;
	}

	.modal-dialog.modal-sm .modal-content {
		margin: 0px !important;
		/* margin: 0 -80px !important; */
	}

	.pb-service-list-coach-layout.pb-service-list-train-coach-layout {
		max-width: 790px;
	}
}

@media only screen and (min-width: 1500px) {
	.home-selection-input-button {
		margin-top: 19px;
	}
	.posab {
		position: absolute;
		bottom: 35%;
		left: 19%;
}
.posab img {
	width: 80%;
}

	.home-selection-input-button-bip {
		margin-top: 23px;
	}

	.service-cards-container .offer-text {
		margin: -15px -38px 10px -38px;
	}

	.service-cards-container .offer-text {
		margin: -14px -37px 10px -37px;
	}
	.home-search-box-container {
		width: 87%;
}
}

@media only screen and (min-width: 1600px) {
	.font39 {
		font-size: 43pt !important;
	}

	.content-container {
		width: 1200px !important;
	}

	.content-container-destinations {
		width: 1240px !important;
		margin: 0 105px;
	}

	.home-main-selection-container {
		padding: 25px 40px;
		padding-bottom: 30px;
	}

	.home-search-box-container {
		bottom: 24%;
	}

	.home-selection-input-boxes {
		/* margin-bottom: 25px; */
	}

	.filter-container {
		min-width: 270px;
	}

	.services-list-container {
		margin-left: 290px;
	}

	.service-card .kupos-card {
		padding: 15px 40px 34px;
	}

	.service-card-more-details {
		padding: 28px 40px 40px;
	}

	img#main-logo.logo2 {
		width: 12vw;
		margin: 14px 0;
	}

	.nav-section.home-nav-section.common-top-strip.header-box+* {
		margin-top: 200px;
	}

	.home-menu-strip {
		height: 84px;
		top: -48px;
	}

	.home-menu-stripe {
		width: 80px;
		padding-bottom: 80px;
	}

	.my-account-top {
		padding: 5px 14px;
		height: 50px;
		width: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.menu-profile-icon-stripe {
		width: 25px;
		height: 25px;
		margin-right: 5px;
		margin-top: 0px;
	}

	.service-info-row .single-type {
		margin-bottom: 2px;
	}

	.home-default-page .download-our-app-section-outer .download-our-app-section .app-screenshot-container {
		height: 550px;
		width: 53%;
	}

	.home-default-page .download-our-app-section-outer .download-our-app-section .download-app-overlay-text-items {
		margin-top: 110px;
		margin-left: -50px;
	}

	.home-selection-input-boxes input {
		/* font-size: 12pt; */
	}

	.pb-service-list-coach-layout.pb-service-list-train-coach-layout {
		max-width: 830px;
	}

	.service-cards-container .offer-text {
		margin: -15px -40px 10px -40px;
	}
}

@media only screen and (min-width: 1700px) {
	.home-search-box-container {
		bottom: 26.2%;
	}

	.selection-heading {
		margin-top: 35px;
	}

	img#main-logo.logo2 {
		width: 11vw;
	}

	.home-selection-input-button {
		margin-top: 11px;
		margin-left: 10px;
	}

	.home-selection-input-button-bip {
		margin-top: 21px;
	}

	.passenger-and-payment-details-container .kupos-card {
		padding: 35px;
	}

	.passenger-input-container .dont-have-account-block {
		padding: 20px 35px;
	}
}

@media only screen and (min-width: 1800px) {
	.home-search-box-container {
		bottom: 28.4%;
	}

	.selection-heading {
		margin-top: 40px;
	}

	.cancel-print-container {
		margin-top: -45px;
		margin-bottom: 15px;
	}

	img#main-logo.logo2 {
		width: 10vw;
	}
}

/****************************************************************
 *
 * CSS Percentage Circle
 * Author: Andre Firchow
 *
*****************************************************************/
.rect-auto,
.c100.p51 .slice,
.c100.p52 .slice,
.c100.p53 .slice,
.c100.p54 .slice,
.c100.p55 .slice,
.c100.p56 .slice,
.c100.p57 .slice,
.c100.p58 .slice,
.c100.p59 .slice,
.c100.p60 .slice,
.c100.p61 .slice,
.c100.p62 .slice,
.c100.p63 .slice,
.c100.p64 .slice,
.c100.p65 .slice,
.c100.p66 .slice,
.c100.p67 .slice,
.c100.p68 .slice,
.c100.p69 .slice,
.c100.p70 .slice,
.c100.p71 .slice,
.c100.p72 .slice,
.c100.p73 .slice,
.c100.p74 .slice,
.c100.p75 .slice,
.c100.p76 .slice,
.c100.p77 .slice,
.c100.p78 .slice,
.c100.p79 .slice,
.c100.p80 .slice,
.c100.p81 .slice,
.c100.p82 .slice,
.c100.p83 .slice,
.c100.p84 .slice,
.c100.p85 .slice,
.c100.p86 .slice,
.c100.p87 .slice,
.c100.p88 .slice,
.c100.p89 .slice,
.c100.p90 .slice,
.c100.p91 .slice,
.c100.p92 .slice,
.c100.p93 .slice,
.c100.p94 .slice,
.c100.p95 .slice,
.c100.p96 .slice,
.c100.p97 .slice,
.c100.p98 .slice,
.c100.p99 .slice,
.c100.p100 .slice {
	clip: rect(auto, auto, auto, auto);
}

.pie,
.c100 .bar,
.c100.p51 .fill,
.c100.p52 .fill,
.c100.p53 .fill,
.c100.p54 .fill,
.c100.p55 .fill,
.c100.p56 .fill,
.c100.p57 .fill,
.c100.p58 .fill,
.c100.p59 .fill,
.c100.p60 .fill,
.c100.p61 .fill,
.c100.p62 .fill,
.c100.p63 .fill,
.c100.p64 .fill,
.c100.p65 .fill,
.c100.p66 .fill,
.c100.p67 .fill,
.c100.p68 .fill,
.c100.p69 .fill,
.c100.p70 .fill,
.c100.p71 .fill,
.c100.p72 .fill,
.c100.p73 .fill,
.c100.p74 .fill,
.c100.p75 .fill,
.c100.p76 .fill,
.c100.p77 .fill,
.c100.p78 .fill,
.c100.p79 .fill,
.c100.p80 .fill,
.c100.p81 .fill,
.c100.p82 .fill,
.c100.p83 .fill,
.c100.p84 .fill,
.c100.p85 .fill,
.c100.p86 .fill,
.c100.p87 .fill,
.c100.p88 .fill,
.c100.p89 .fill,
.c100.p90 .fill,
.c100.p91 .fill,
.c100.p92 .fill,
.c100.p93 .fill,
.c100.p94 .fill,
.c100.p95 .fill,
.c100.p96 .fill,
.c100.p97 .fill,
.c100.p98 .fill,
.c100.p99 .fill,
.c100.p100 .fill {
	position: absolute;
	border: 0.08em solid #307bbb;
	width: 0.84em;
	height: 0.84em;
	clip: rect(0em, 0.5em, 1em, 0em);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

.pie-fill,
.c100.p51 .bar:after,
.c100.p51 .fill,
.c100.p52 .bar:after,
.c100.p52 .fill,
.c100.p53 .bar:after,
.c100.p53 .fill,
.c100.p54 .bar:after,
.c100.p54 .fill,
.c100.p55 .bar:after,
.c100.p55 .fill,
.c100.p56 .bar:after,
.c100.p56 .fill,
.c100.p57 .bar:after,
.c100.p57 .fill,
.c100.p58 .bar:after,
.c100.p58 .fill,
.c100.p59 .bar:after,
.c100.p59 .fill,
.c100.p60 .bar:after,
.c100.p60 .fill,
.c100.p61 .bar:after,
.c100.p61 .fill,
.c100.p62 .bar:after,
.c100.p62 .fill,
.c100.p63 .bar:after,
.c100.p63 .fill,
.c100.p64 .bar:after,
.c100.p64 .fill,
.c100.p65 .bar:after,
.c100.p65 .fill,
.c100.p66 .bar:after,
.c100.p66 .fill,
.c100.p67 .bar:after,
.c100.p67 .fill,
.c100.p68 .bar:after,
.c100.p68 .fill,
.c100.p69 .bar:after,
.c100.p69 .fill,
.c100.p70 .bar:after,
.c100.p70 .fill,
.c100.p71 .bar:after,
.c100.p71 .fill,
.c100.p72 .bar:after,
.c100.p72 .fill,
.c100.p73 .bar:after,
.c100.p73 .fill,
.c100.p74 .bar:after,
.c100.p74 .fill,
.c100.p75 .bar:after,
.c100.p75 .fill,
.c100.p76 .bar:after,
.c100.p76 .fill,
.c100.p77 .bar:after,
.c100.p77 .fill,
.c100.p78 .bar:after,
.c100.p78 .fill,
.c100.p79 .bar:after,
.c100.p79 .fill,
.c100.p80 .bar:after,
.c100.p80 .fill,
.c100.p81 .bar:after,
.c100.p81 .fill,
.c100.p82 .bar:after,
.c100.p82 .fill,
.c100.p83 .bar:after,
.c100.p83 .fill,
.c100.p84 .bar:after,
.c100.p84 .fill,
.c100.p85 .bar:after,
.c100.p85 .fill,
.c100.p86 .bar:after,
.c100.p86 .fill,
.c100.p87 .bar:after,
.c100.p87 .fill,
.c100.p88 .bar:after,
.c100.p88 .fill,
.c100.p89 .bar:after,
.c100.p89 .fill,
.c100.p90 .bar:after,
.c100.p90 .fill,
.c100.p91 .bar:after,
.c100.p91 .fill,
.c100.p92 .bar:after,
.c100.p92 .fill,
.c100.p93 .bar:after,
.c100.p93 .fill,
.c100.p94 .bar:after,
.c100.p94 .fill,
.c100.p95 .bar:after,
.c100.p95 .fill,
.c100.p96 .bar:after,
.c100.p96 .fill,
.c100.p97 .bar:after,
.c100.p97 .fill,
.c100.p98 .bar:after,
.c100.p98 .fill,
.c100.p99 .bar:after,
.c100.p99 .fill,
.c100.p100 .bar:after,
.c100.p100 .fill {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.c100 {
	position: relative;
	font-size: 120px;
	width: 1em;
	height: 1em;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	float: left;
	margin: 0 0.1em 0.1em 0;
	background-color: #cccccc;
}

.c100 *,
.c100 *:before,
.c100 *:after {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.c100.center {
	float: none;
	margin: 0 auto;
}

.c100.big {
	font-size: 240px;
}

.c100.small {
	font-size: 40px;
}

.c100>span {
	position: absolute;
	width: 100%;
	z-index: 1;
	left: 0;
	top: 0;
	width: 5em;
	line-height: 5em;
	font-size: 0.2em;
	display: block;
	text-align: center;
	white-space: nowrap;
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.c100.small>span {
	width: 40px;
	line-height: 40px;
}

.c100:after {
	position: absolute;
	top: 0.08em;
	left: 0.08em;
	display: block;
	content: ' ';
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	width: 0.84em;
	height: 0.84em;
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-in;
	-moz-transition-timing-function: ease-in;
	-o-transition-timing-function: ease-in;
	transition-timing-function: ease-in;
}

.c100 .slice {
	position: absolute;
	width: 1em;
	height: 1em;
	clip: rect(0em, 1em, 1em, 0.5em);
}

.c100.p1 .bar {
	-webkit-transform: rotate(3.6deg);
	-moz-transform: rotate(3.6deg);
	-ms-transform: rotate(3.6deg);
	-o-transform: rotate(3.6deg);
	transform: rotate(3.6deg);
}

.c100.p2 .bar {
	-webkit-transform: rotate(7.2deg);
	-moz-transform: rotate(7.2deg);
	-ms-transform: rotate(7.2deg);
	-o-transform: rotate(7.2deg);
	transform: rotate(7.2deg);
}

.c100.p3 .bar {
	-webkit-transform: rotate(10.8deg);
	-moz-transform: rotate(10.8deg);
	-ms-transform: rotate(10.8deg);
	-o-transform: rotate(10.8deg);
	transform: rotate(10.8deg);
}

.c100.p4 .bar {
	-webkit-transform: rotate(14.4deg);
	-moz-transform: rotate(14.4deg);
	-ms-transform: rotate(14.4deg);
	-o-transform: rotate(14.4deg);
	transform: rotate(14.4deg);
}

.c100.p5 .bar {
	-webkit-transform: rotate(18deg);
	-moz-transform: rotate(18deg);
	-ms-transform: rotate(18deg);
	-o-transform: rotate(18deg);
	transform: rotate(18deg);
}

.c100.p6 .bar {
	-webkit-transform: rotate(21.6deg);
	-moz-transform: rotate(21.6deg);
	-ms-transform: rotate(21.6deg);
	-o-transform: rotate(21.6deg);
	transform: rotate(21.6deg);
}

.c100.p7 .bar {
	-webkit-transform: rotate(25.2deg);
	-moz-transform: rotate(25.2deg);
	-ms-transform: rotate(25.2deg);
	-o-transform: rotate(25.2deg);
	transform: rotate(25.2deg);
}

.c100.p8 .bar {
	-webkit-transform: rotate(28.8deg);
	-moz-transform: rotate(28.8deg);
	-ms-transform: rotate(28.8deg);
	-o-transform: rotate(28.8deg);
	transform: rotate(28.8deg);
}

.c100.p9 .bar {
	-webkit-transform: rotate(32.4deg);
	-moz-transform: rotate(32.4deg);
	-ms-transform: rotate(32.4deg);
	-o-transform: rotate(32.4deg);
	transform: rotate(32.4deg);
}

.c100.p10 .bar {
	-webkit-transform: rotate(36deg);
	-moz-transform: rotate(36deg);
	-ms-transform: rotate(36deg);
	-o-transform: rotate(36deg);
	transform: rotate(36deg);
}

.c100.p11 .bar {
	-webkit-transform: rotate(39.6deg);
	-moz-transform: rotate(39.6deg);
	-ms-transform: rotate(39.6deg);
	-o-transform: rotate(39.6deg);
	transform: rotate(39.6deg);
}

.c100.p12 .bar {
	-webkit-transform: rotate(43.2deg);
	-moz-transform: rotate(43.2deg);
	-ms-transform: rotate(43.2deg);
	-o-transform: rotate(43.2deg);
	transform: rotate(43.2deg);
}

.c100.p13 .bar {
	-webkit-transform: rotate(46.8deg);
	-moz-transform: rotate(46.8deg);
	-ms-transform: rotate(46.8deg);
	-o-transform: rotate(46.8deg);
	transform: rotate(46.8deg);
}

.c100.p14 .bar {
	-webkit-transform: rotate(50.4deg);
	-moz-transform: rotate(50.4deg);
	-ms-transform: rotate(50.4deg);
	-o-transform: rotate(50.4deg);
	transform: rotate(50.4deg);
}

.c100.p15 .bar {
	-webkit-transform: rotate(54deg);
	-moz-transform: rotate(54deg);
	-ms-transform: rotate(54deg);
	-o-transform: rotate(54deg);
	transform: rotate(54deg);
}

.c100.p16 .bar {
	-webkit-transform: rotate(57.6deg);
	-moz-transform: rotate(57.6deg);
	-ms-transform: rotate(57.6deg);
	-o-transform: rotate(57.6deg);
	transform: rotate(57.6deg);
}

.c100.p17 .bar {
	-webkit-transform: rotate(61.2deg);
	-moz-transform: rotate(61.2deg);
	-ms-transform: rotate(61.2deg);
	-o-transform: rotate(61.2deg);
	transform: rotate(61.2deg);
}

.c100.p18 .bar {
	-webkit-transform: rotate(64.8deg);
	-moz-transform: rotate(64.8deg);
	-ms-transform: rotate(64.8deg);
	-o-transform: rotate(64.8deg);
	transform: rotate(64.8deg);
}

.c100.p19 .bar {
	-webkit-transform: rotate(68.4deg);
	-moz-transform: rotate(68.4deg);
	-ms-transform: rotate(68.4deg);
	-o-transform: rotate(68.4deg);
	transform: rotate(68.4deg);
}

.c100.p20 .bar {
	-webkit-transform: rotate(72deg);
	-moz-transform: rotate(72deg);
	-ms-transform: rotate(72deg);
	-o-transform: rotate(72deg);
	transform: rotate(72deg);
}

.c100.p21 .bar {
	-webkit-transform: rotate(75.6deg);
	-moz-transform: rotate(75.6deg);
	-ms-transform: rotate(75.6deg);
	-o-transform: rotate(75.6deg);
	transform: rotate(75.6deg);
}

.c100.p22 .bar {
	-webkit-transform: rotate(79.2deg);
	-moz-transform: rotate(79.2deg);
	-ms-transform: rotate(79.2deg);
	-o-transform: rotate(79.2deg);
	transform: rotate(79.2deg);
}

.c100.p23 .bar {
	-webkit-transform: rotate(82.8deg);
	-moz-transform: rotate(82.8deg);
	-ms-transform: rotate(82.8deg);
	-o-transform: rotate(82.8deg);
	transform: rotate(82.8deg);
}

.c100.p24 .bar {
	-webkit-transform: rotate(86.4deg);
	-moz-transform: rotate(86.4deg);
	-ms-transform: rotate(86.4deg);
	-o-transform: rotate(86.4deg);
	transform: rotate(86.4deg);
}

.c100.p25 .bar {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.c100.p26 .bar {
	-webkit-transform: rotate(93.6deg);
	-moz-transform: rotate(93.6deg);
	-ms-transform: rotate(93.6deg);
	-o-transform: rotate(93.6deg);
	transform: rotate(93.6deg);
}

.c100.p27 .bar {
	-webkit-transform: rotate(97.2deg);
	-moz-transform: rotate(97.2deg);
	-ms-transform: rotate(97.2deg);
	-o-transform: rotate(97.2deg);
	transform: rotate(97.2deg);
}

.c100.p28 .bar {
	-webkit-transform: rotate(100.8deg);
	-moz-transform: rotate(100.8deg);
	-ms-transform: rotate(100.8deg);
	-o-transform: rotate(100.8deg);
	transform: rotate(100.8deg);
}

.c100.p29 .bar {
	-webkit-transform: rotate(104.4deg);
	-moz-transform: rotate(104.4deg);
	-ms-transform: rotate(104.4deg);
	-o-transform: rotate(104.4deg);
	transform: rotate(104.4deg);
}

.c100.p30 .bar {
	-webkit-transform: rotate(108deg);
	-moz-transform: rotate(108deg);
	-ms-transform: rotate(108deg);
	-o-transform: rotate(108deg);
	transform: rotate(108deg);
}

.c100.p31 .bar {
	-webkit-transform: rotate(111.6deg);
	-moz-transform: rotate(111.6deg);
	-ms-transform: rotate(111.6deg);
	-o-transform: rotate(111.6deg);
	transform: rotate(111.6deg);
}

.c100.p32 .bar {
	-webkit-transform: rotate(115.2deg);
	-moz-transform: rotate(115.2deg);
	-ms-transform: rotate(115.2deg);
	-o-transform: rotate(115.2deg);
	transform: rotate(115.2deg);
}

.c100.p33 .bar {
	-webkit-transform: rotate(118.8deg);
	-moz-transform: rotate(118.8deg);
	-ms-transform: rotate(118.8deg);
	-o-transform: rotate(118.8deg);
	transform: rotate(118.8deg);
}

.c100.p34 .bar {
	-webkit-transform: rotate(122.4deg);
	-moz-transform: rotate(122.4deg);
	-ms-transform: rotate(122.4deg);
	-o-transform: rotate(122.4deg);
	transform: rotate(122.4deg);
}

.c100.p35 .bar {
	-webkit-transform: rotate(126deg);
	-moz-transform: rotate(126deg);
	-ms-transform: rotate(126deg);
	-o-transform: rotate(126deg);
	transform: rotate(126deg);
}

.c100.p36 .bar {
	-webkit-transform: rotate(129.6deg);
	-moz-transform: rotate(129.6deg);
	-ms-transform: rotate(129.6deg);
	-o-transform: rotate(129.6deg);
	transform: rotate(129.6deg);
}

.c100.p37 .bar {
	-webkit-transform: rotate(133.2deg);
	-moz-transform: rotate(133.2deg);
	-ms-transform: rotate(133.2deg);
	-o-transform: rotate(133.2deg);
	transform: rotate(133.2deg);
}

.c100.p38 .bar {
	-webkit-transform: rotate(136.8deg);
	-moz-transform: rotate(136.8deg);
	-ms-transform: rotate(136.8deg);
	-o-transform: rotate(136.8deg);
	transform: rotate(136.8deg);
}

.c100.p39 .bar {
	-webkit-transform: rotate(140.4deg);
	-moz-transform: rotate(140.4deg);
	-ms-transform: rotate(140.4deg);
	-o-transform: rotate(140.4deg);
	transform: rotate(140.4deg);
}

.c100.p40 .bar {
	-webkit-transform: rotate(144deg);
	-moz-transform: rotate(144deg);
	-ms-transform: rotate(144deg);
	-o-transform: rotate(144deg);
	transform: rotate(144deg);
}

.c100.p41 .bar {
	-webkit-transform: rotate(147.6deg);
	-moz-transform: rotate(147.6deg);
	-ms-transform: rotate(147.6deg);
	-o-transform: rotate(147.6deg);
	transform: rotate(147.6deg);
}

.c100.p42 .bar {
	-webkit-transform: rotate(151.2deg);
	-moz-transform: rotate(151.2deg);
	-ms-transform: rotate(151.2deg);
	-o-transform: rotate(151.2deg);
	transform: rotate(151.2deg);
}

.c100.p43 .bar {
	-webkit-transform: rotate(154.8deg);
	-moz-transform: rotate(154.8deg);
	-ms-transform: rotate(154.8deg);
	-o-transform: rotate(154.8deg);
	transform: rotate(154.8deg);
}

.c100.p44 .bar {
	-webkit-transform: rotate(158.4deg);
	-moz-transform: rotate(158.4deg);
	-ms-transform: rotate(158.4deg);
	-o-transform: rotate(158.4deg);
	transform: rotate(158.4deg);
}

.c100.p45 .bar {
	-webkit-transform: rotate(162deg);
	-moz-transform: rotate(162deg);
	-ms-transform: rotate(162deg);
	-o-transform: rotate(162deg);
	transform: rotate(162deg);
}

.c100.p46 .bar {
	-webkit-transform: rotate(165.6deg);
	-moz-transform: rotate(165.6deg);
	-ms-transform: rotate(165.6deg);
	-o-transform: rotate(165.6deg);
	transform: rotate(165.6deg);
}

.c100.p47 .bar {
	-webkit-transform: rotate(169.2deg);
	-moz-transform: rotate(169.2deg);
	-ms-transform: rotate(169.2deg);
	-o-transform: rotate(169.2deg);
	transform: rotate(169.2deg);
}

.c100.p48 .bar {
	-webkit-transform: rotate(172.8deg);
	-moz-transform: rotate(172.8deg);
	-ms-transform: rotate(172.8deg);
	-o-transform: rotate(172.8deg);
	transform: rotate(172.8deg);
}

.c100.p49 .bar {
	-webkit-transform: rotate(176.4deg);
	-moz-transform: rotate(176.4deg);
	-ms-transform: rotate(176.4deg);
	-o-transform: rotate(176.4deg);
	transform: rotate(176.4deg);
}

.c100.p50 .bar {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.c100.p51 .bar {
	-webkit-transform: rotate(183.6deg);
	-moz-transform: rotate(183.6deg);
	-ms-transform: rotate(183.6deg);
	-o-transform: rotate(183.6deg);
	transform: rotate(183.6deg);
}

.c100.p52 .bar {
	-webkit-transform: rotate(187.2deg);
	-moz-transform: rotate(187.2deg);
	-ms-transform: rotate(187.2deg);
	-o-transform: rotate(187.2deg);
	transform: rotate(187.2deg);
}

.c100.p53 .bar {
	-webkit-transform: rotate(190.8deg);
	-moz-transform: rotate(190.8deg);
	-ms-transform: rotate(190.8deg);
	-o-transform: rotate(190.8deg);
	transform: rotate(190.8deg);
}

.c100.p54 .bar {
	-webkit-transform: rotate(194.4deg);
	-moz-transform: rotate(194.4deg);
	-ms-transform: rotate(194.4deg);
	-o-transform: rotate(194.4deg);
	transform: rotate(194.4deg);
}

.c100.p55 .bar {
	-webkit-transform: rotate(198deg);
	-moz-transform: rotate(198deg);
	-ms-transform: rotate(198deg);
	-o-transform: rotate(198deg);
	transform: rotate(198deg);
}

.c100.p56 .bar {
	-webkit-transform: rotate(201.6deg);
	-moz-transform: rotate(201.6deg);
	-ms-transform: rotate(201.6deg);
	-o-transform: rotate(201.6deg);
	transform: rotate(201.6deg);
}

.c100.p57 .bar {
	-webkit-transform: rotate(205.2deg);
	-moz-transform: rotate(205.2deg);
	-ms-transform: rotate(205.2deg);
	-o-transform: rotate(205.2deg);
	transform: rotate(205.2deg);
}

.c100.p58 .bar {
	-webkit-transform: rotate(208.8deg);
	-moz-transform: rotate(208.8deg);
	-ms-transform: rotate(208.8deg);
	-o-transform: rotate(208.8deg);
	transform: rotate(208.8deg);
}

.c100.p59 .bar {
	-webkit-transform: rotate(212.4deg);
	-moz-transform: rotate(212.4deg);
	-ms-transform: rotate(212.4deg);
	-o-transform: rotate(212.4deg);
	transform: rotate(212.4deg);
}

.c100.p60 .bar {
	-webkit-transform: rotate(216deg);
	-moz-transform: rotate(216deg);
	-ms-transform: rotate(216deg);
	-o-transform: rotate(216deg);
	transform: rotate(216deg);
}

.c100.p61 .bar {
	-webkit-transform: rotate(219.6deg);
	-moz-transform: rotate(219.6deg);
	-ms-transform: rotate(219.6deg);
	-o-transform: rotate(219.6deg);
	transform: rotate(219.6deg);
}

.c100.p62 .bar {
	-webkit-transform: rotate(223.2deg);
	-moz-transform: rotate(223.2deg);
	-ms-transform: rotate(223.2deg);
	-o-transform: rotate(223.2deg);
	transform: rotate(223.2deg);
}

.c100.p63 .bar {
	-webkit-transform: rotate(226.8deg);
	-moz-transform: rotate(226.8deg);
	-ms-transform: rotate(226.8deg);
	-o-transform: rotate(226.8deg);
	transform: rotate(226.8deg);
}

.c100.p64 .bar {
	-webkit-transform: rotate(230.4deg);
	-moz-transform: rotate(230.4deg);
	-ms-transform: rotate(230.4deg);
	-o-transform: rotate(230.4deg);
	transform: rotate(230.4deg);
}

.c100.p65 .bar {
	-webkit-transform: rotate(234deg);
	-moz-transform: rotate(234deg);
	-ms-transform: rotate(234deg);
	-o-transform: rotate(234deg);
	transform: rotate(234deg);
}

.c100.p66 .bar {
	-webkit-transform: rotate(237.6deg);
	-moz-transform: rotate(237.6deg);
	-ms-transform: rotate(237.6deg);
	-o-transform: rotate(237.6deg);
	transform: rotate(237.6deg);
}

.c100.p67 .bar {
	-webkit-transform: rotate(241.2deg);
	-moz-transform: rotate(241.2deg);
	-ms-transform: rotate(241.2deg);
	-o-transform: rotate(241.2deg);
	transform: rotate(241.2deg);
}

.c100.p68 .bar {
	-webkit-transform: rotate(244.8deg);
	-moz-transform: rotate(244.8deg);
	-ms-transform: rotate(244.8deg);
	-o-transform: rotate(244.8deg);
	transform: rotate(244.8deg);
}

.c100.p69 .bar {
	-webkit-transform: rotate(248.4deg);
	-moz-transform: rotate(248.4deg);
	-ms-transform: rotate(248.4deg);
	-o-transform: rotate(248.4deg);
	transform: rotate(248.4deg);
}

.c100.p70 .bar {
	-webkit-transform: rotate(252deg);
	-moz-transform: rotate(252deg);
	-ms-transform: rotate(252deg);
	-o-transform: rotate(252deg);
	transform: rotate(252deg);
}

.c100.p71 .bar {
	-webkit-transform: rotate(255.6deg);
	-moz-transform: rotate(255.6deg);
	-ms-transform: rotate(255.6deg);
	-o-transform: rotate(255.6deg);
	transform: rotate(255.6deg);
}

.c100.p72 .bar {
	-webkit-transform: rotate(259.2deg);
	-moz-transform: rotate(259.2deg);
	-ms-transform: rotate(259.2deg);
	-o-transform: rotate(259.2deg);
	transform: rotate(259.2deg);
}

.c100.p73 .bar {
	-webkit-transform: rotate(262.8deg);
	-moz-transform: rotate(262.8deg);
	-ms-transform: rotate(262.8deg);
	-o-transform: rotate(262.8deg);
	transform: rotate(262.8deg);
}

.c100.p74 .bar {
	-webkit-transform: rotate(266.4deg);
	-moz-transform: rotate(266.4deg);
	-ms-transform: rotate(266.4deg);
	-o-transform: rotate(266.4deg);
	transform: rotate(266.4deg);
}

.c100.p75 .bar {
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg);
}

.c100.p76 .bar {
	-webkit-transform: rotate(273.6deg);
	-moz-transform: rotate(273.6deg);
	-ms-transform: rotate(273.6deg);
	-o-transform: rotate(273.6deg);
	transform: rotate(273.6deg);
}

.c100.p77 .bar {
	-webkit-transform: rotate(277.2deg);
	-moz-transform: rotate(277.2deg);
	-ms-transform: rotate(277.2deg);
	-o-transform: rotate(277.2deg);
	transform: rotate(277.2deg);
}

.c100.p78 .bar {
	-webkit-transform: rotate(280.8deg);
	-moz-transform: rotate(280.8deg);
	-ms-transform: rotate(280.8deg);
	-o-transform: rotate(280.8deg);
	transform: rotate(280.8deg);
}

.c100.p79 .bar {
	-webkit-transform: rotate(284.4deg);
	-moz-transform: rotate(284.4deg);
	-ms-transform: rotate(284.4deg);
	-o-transform: rotate(284.4deg);
	transform: rotate(284.4deg);
}

.c100.p80 .bar {
	-webkit-transform: rotate(288deg);
	-moz-transform: rotate(288deg);
	-ms-transform: rotate(288deg);
	-o-transform: rotate(288deg);
	transform: rotate(288deg);
}

.c100.p81 .bar {
	-webkit-transform: rotate(291.6deg);
	-moz-transform: rotate(291.6deg);
	-ms-transform: rotate(291.6deg);
	-o-transform: rotate(291.6deg);
	transform: rotate(291.6deg);
}

.c100.p82 .bar {
	-webkit-transform: rotate(295.2deg);
	-moz-transform: rotate(295.2deg);
	-ms-transform: rotate(295.2deg);
	-o-transform: rotate(295.2deg);
	transform: rotate(295.2deg);
}

.c100.p83 .bar {
	-webkit-transform: rotate(298.8deg);
	-moz-transform: rotate(298.8deg);
	-ms-transform: rotate(298.8deg);
	-o-transform: rotate(298.8deg);
	transform: rotate(298.8deg);
}

.c100.p84 .bar {
	-webkit-transform: rotate(302.4deg);
	-moz-transform: rotate(302.4deg);
	-ms-transform: rotate(302.4deg);
	-o-transform: rotate(302.4deg);
	transform: rotate(302.4deg);
}

.c100.p85 .bar {
	-webkit-transform: rotate(306deg);
	-moz-transform: rotate(306deg);
	-ms-transform: rotate(306deg);
	-o-transform: rotate(306deg);
	transform: rotate(306deg);
}

.c100.p86 .bar {
	-webkit-transform: rotate(309.6deg);
	-moz-transform: rotate(309.6deg);
	-ms-transform: rotate(309.6deg);
	-o-transform: rotate(309.6deg);
	transform: rotate(309.6deg);
}

.c100.p87 .bar {
	-webkit-transform: rotate(313.2deg);
	-moz-transform: rotate(313.2deg);
	-ms-transform: rotate(313.2deg);
	-o-transform: rotate(313.2deg);
	transform: rotate(313.2deg);
}

.c100.p88 .bar {
	-webkit-transform: rotate(316.8deg);
	-moz-transform: rotate(316.8deg);
	-ms-transform: rotate(316.8deg);
	-o-transform: rotate(316.8deg);
	transform: rotate(316.8deg);
}

.c100.p89 .bar {
	-webkit-transform: rotate(320.4deg);
	-moz-transform: rotate(320.4deg);
	-ms-transform: rotate(320.4deg);
	-o-transform: rotate(320.4deg);
	transform: rotate(320.4deg);
}

.c100.p90 .bar {
	-webkit-transform: rotate(324deg);
	-moz-transform: rotate(324deg);
	-ms-transform: rotate(324deg);
	-o-transform: rotate(324deg);
	transform: rotate(324deg);
}

.c100.p91 .bar {
	-webkit-transform: rotate(327.6deg);
	-moz-transform: rotate(327.6deg);
	-ms-transform: rotate(327.6deg);
	-o-transform: rotate(327.6deg);
	transform: rotate(327.6deg);
}

.c100.p92 .bar {
	-webkit-transform: rotate(331.2deg);
	-moz-transform: rotate(331.2deg);
	-ms-transform: rotate(331.2deg);
	-o-transform: rotate(331.2deg);
	transform: rotate(331.2deg);
}

.c100.p93 .bar {
	-webkit-transform: rotate(334.8deg);
	-moz-transform: rotate(334.8deg);
	-ms-transform: rotate(334.8deg);
	-o-transform: rotate(334.8deg);
	transform: rotate(334.8deg);
}

.c100.p94 .bar {
	-webkit-transform: rotate(338.4deg);
	-moz-transform: rotate(338.4deg);
	-ms-transform: rotate(338.4deg);
	-o-transform: rotate(338.4deg);
	transform: rotate(338.4deg);
}

.c100.p95 .bar {
	-webkit-transform: rotate(342deg);
	-moz-transform: rotate(342deg);
	-ms-transform: rotate(342deg);
	-o-transform: rotate(342deg);
	transform: rotate(342deg);
}

.c100.p96 .bar {
	-webkit-transform: rotate(345.6deg);
	-moz-transform: rotate(345.6deg);
	-ms-transform: rotate(345.6deg);
	-o-transform: rotate(345.6deg);
	transform: rotate(345.6deg);
}

.c100.p97 .bar {
	-webkit-transform: rotate(349.2deg);
	-moz-transform: rotate(349.2deg);
	-ms-transform: rotate(349.2deg);
	-o-transform: rotate(349.2deg);
	transform: rotate(349.2deg);
}

.c100.p98 .bar {
	-webkit-transform: rotate(352.8deg);
	-moz-transform: rotate(352.8deg);
	-ms-transform: rotate(352.8deg);
	-o-transform: rotate(352.8deg);
	transform: rotate(352.8deg);
}

.c100.p99 .bar {
	-webkit-transform: rotate(356.4deg);
	-moz-transform: rotate(356.4deg);
	-ms-transform: rotate(356.4deg);
	-o-transform: rotate(356.4deg);
	transform: rotate(356.4deg);
}

.c100.p100 .bar {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}

.c100:hover {
	cursor: default;
}

.c100:hover>span {
	width: 3.33em;
	line-height: 3.33em;
	font-size: 0.3em;
	color: #307bbb;
}

.c100:hover:after {
	top: 0.04em;
	left: 0.04em;
	width: 0.92em;
	height: 0.92em;
}

.c100.dark {
	background-color: #777777;
}

.c100.dark .bar,
.c100.dark .fill {
	border-color: #c6ff00 !important;
}

.c100.dark>span {
	color: #777777;
}

.c100.dark:after {
	background-color: #666666;
}

.c100.dark:hover>span {
	color: #c6ff00;
}

.c100.green .bar,
.c100.green .fill {
	border-color: #4db53c !important;
}

.c100.green:hover>span {
	color: #4db53c;
}

.c100.green.dark .bar,
.c100.green.dark .fill {
	border-color: #5fd400 !important;
}

.c100.green.dark:hover>span {
	color: #5fd400;
}

.c100.orange .bar,
.c100.orange .fill {
	border-color: #fc8332 !important;
}

.c100.orange:hover>span {
	color: #fc8332;
}

.c100.orange.dark .bar,
.c100.orange.dark .fill {
	border-color: #e08833 !important;
}

.c100.orange.dark:hover>span {
	color: #e08833;
}

/* ----------------- css cirle percentage end -------------------- */

/* Cancel Ticket in Top Strip */

.cancel-ticket-top-strip {
	padding: 5px 14px;
	height: 50px;
	width: 136px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	border-radius: 30px;
}

.cancel-ticket-top-strip .cancel-ticket-top-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cancel-ticket-top-strip .cancel-ticket-top-strip-inner img {
	height: 20px;
	width: auto;
	margin-right: 13px;
}

.cancel-ticket-top-strip .cancel-ticket-top-strip-inner span {
	margin-top: 1px;
}

/* About page CSS */
.about-head-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	margin-bottom: 35px;
}

.about-head-section {
	display: grid;
	grid-template-columns: 2fr 8fr;
	grid-gap: 15px;
	padding: 35px 20px;
}

.about-head-section img {
	height: 100px;
	width: auto;
}

.about-head-sections .about-head-section .head-img {
	display: flex;
	align-items: center;
}

.about-head-section-title {
	margin-bottom: 5px;
}

.about-head-section-desc {
	line-height: 1.5;
	text-align: justify;
}

.about-mid-heading {
	justify-content: center;
	text-align: center;
	font-size: 17px;
	margin: 50px 0px;
}

.about-head-mid-sections {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 60px;
	margin: 50px 0px;
}

.about-head-mid-section {
	display: grid;
	grid-template-columns: 2fr 8fr;
	grid-gap: 15px;
}

.about-head-mid-section .head-img {
	display: flex;
	align-items: center;
}

.about-head-mid-section img {
	height: 80px;
	width: auto;
}

.pages-investors .page-title,
.pages-travel-agency .page-title {
	position: absolute;
	top: 180px;
	left: 0;
	right: 0;
	margin-bottom: 0;
}

.travel-agency-input-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.travel-agency-input-container-four {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.travel-agency-input-container .rut-input {
	max-width: 100%;
	width: 100% !important;
}

.kupos-pool-modal-container {
	width: 76vw;
	position: relative;
	left: -22vw;
	top: 0px;
	/* bottom: 35vh; */
}

.bip-info-modal-container {
	width: 30vw;
	position: relative;
	left: 0vw;
	top: 0px;
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px;
}

.bip-info-modal-container .close-button {
	width: 25px;
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 99;
}

.bip-info-modal-container .close-button .svg-span {
	width: 100%;
}

.kupos-pool-modal-container .close-button {
	width: 25px;
	position: absolute;
	top: 120px;
	right: 30px;
	z-index: 99;
}

.kupos-pool-modal-container .close-button .svg-span {
	width: 100%;
}

.kupos-pool-popup-image-back {
	position: relative;
}

.kupos-pool-modal-text-container {
	position: absolute;
	top: 20vh;
	right: 6vw;
}

.kupos-pool-modal-text-heading {
	width: 20vw;
	display: flex;
	text-align: center;
	justify-content: center;
	margin: auto;
	margin-top: 40px;
}

.kupos-pool-modal-image {
	text-align: center;
	margin: 15px 0px;
	margin-top: 0px;
}

.kupos-pool-modal-image .pool-image {
	height: 78px;
	width: auto;
}

.kupos-pool-modal-text-sub-heading {
	width: 30vw;
	display: flex;
	text-align: center;
	justify-content: center;
	margin: auto;
	margin-top: 30px;
}

.kupos-pool-download-app {
	margin: auto;
	margin-top: 15px;
	display: flex;
	text-align: center;
	justify-content: center;
}

.kupos-pool-modal-image-stores {
	margin-top: 50px;
}

.kupos-pool-modal-image-stores img {
	height: 46px;
	margin: 0px 10px;
}

.my-account-default-page .sub-section-description.bip-selection-container {
	padding: 50px 8%;
}

.my-bip-container {
	/* padding: 10px; */
	/* padding-top: 30px; */
	/* overflow: hidden; */
	height: 100%;
	margin: 0px 0%;
	/* padding-bottom: 10px; */
	margin-top: -8px;
}

.my-bip-container .bip-top-strip {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	grid-gap: 4px;
	align-items: center;
	/* position: absolute;
  background: #fff; */
}

.my-bip-container .bip-top-strip .end-bip-icon {
	display: flex;
	justify-content: flex-end;
	flex: 1;
	height: 100%;
	align-items: baseline;
}

.my-bip-container .bip-top-strip .bip-icon-top img {
	height: 25px;
	width: auto;
}

.my-bip-container .bip-top-strip .bip-icon-top img:hover {
	cursor: pointer;
}

.my-bip-container .bip-rows-container-main {
	overflow: auto;
	height: calc(100% - 45px);
}

.bip-row {
	display: grid;
	grid-template-columns: 2fr 0.1fr 3fr 2fr;
	grid-gap: 20px;
	padding: 20px 30px;
	width: 98%;
}

.bip-row .card-and-card-details {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.bip-row .bip-card-details-middle {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bip-row .bip-item-border {
	border-right: 1px solid #ccc;
	margin: 0px 20px;
	text-align: center;
}

.bip-row .card-and-card-details img {
	height: 25px;
	width: auto;
	margin-right: 30px;
}

.bip-card-details .bip-head,
.bip-card-details-middle .bip-head {
	margin-bottom: 6px;
}

.bip-row .bip-edit-delete-icons {
	display: flex;
	justify-content: flex-end;
}

.bip-row .bip-edit-delete-icons img {
	height: 20px;
	width: auto;
	margin-left: 15px;
	cursor: pointer;
}

.bip-rows-container {
	margin-top: 20px;
	padding: 5px;
	padding: 5px 12px;
	/* height: 88%;
  overflow: scroll; */
}

.my-bip-container .bip-icon-top img {
	height: 30px;
	width: auto;
}

.bip-top-strip .bip-top-strip-sub-heading {
	margin-top: 10px;
}

.bip-top-strip .end-bip-icon img {
	margin-right: 20px;
}

.bip-top-strip .end-bip-icon2 img {
	margin-right: 34px;
}

.bip-top-strip .end-bip-icon .display-flex {
	display: flex;
	align-items: center;
}

.bip-top-strip .end-bip-icon .display-flex .bip-admin-capsule {
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	border-radius: 20px;
	width: 100%;
	color: var(--white-color);
	padding: 7px 14px;
	cursor: pointer;
}

.bip-rows-container-main img {
	width: 290px;
	height: auto;
	margin-top: 10px;
}

.bip-rows-container-main .image-holder {
	display: flex;
	justify-content: center;
}

.bip-sub-body-container .recarge-input-label {
	margin-bottom: 10px;
	margin-top: 5px;
}

.bip-sub-body-container .recarge-input-info-footer {
	margin-top: 10px;
}

.bip-sub-body-container .bip-recharge-button {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.bip-sub-body-container .bip-recharge-button .bip-button-inner {
	width: 150px;
	height: 40px;
}

.bip-rows-container-main .bip-sub-body-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bip-rows-container-main .bip-sub-body-container .bip-recharge-input {
	height: 40px;
}

.my-bip-container .bip-top-strip .back-arrow img {
	height: 17px;
	margin-left: 40px;
}

.my-bip-container .bip-top-strip .back-arrow {
	height: 100%;
}

.bip-sub-body-container .bip-sub-body-container-inner {
	width: 295px;
}

.delete-bip-card {
	background-color: #ffffff;
	padding: 40px;
	border-radius: 20px;
	padding-top: 40px;
	padding-bottom: 20px;
}

.delete-bip-card .bip-pop-up-title {
	padding: 12px;
	text-align: center;
	display: flex;
	padding-top: 0px;
	justify-content: center;
	line-height: 1.2;
}

.delete-bip-card .bip-pop-up-title-edit {
	padding: 22px;
	text-align: center;
	display: flex;
	padding-top: 0px;
	justify-content: center;
	line-height: 1.2;
}

.edit-bip-card-inout-label {
	margin-bottom: 10px;
}

.edit-bip-card-inout-label-1 {
	margin-bottom: 10px;
	margin-top: 20px;
}

.delete-bip-card .bip-popup-sub-body {
	padding: 10px;
	display: flex;
	justify-content: center;
}

.delete-bip-card .bip-popup-sub-body div {
	margin: 10px 0px;
}

.delete-bip-card .bip-popup-button-container {
	display: flex;
	flex-direction: column;
	width: 50%;
	margin: auto;
	margin-top: 10px;
}

.delete-bip-card .bip-popup-button-container-edit {
	display: flex;
	flex-direction: column;
	width: 60%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.at-no-trips-modal .bip-popup-button-container-edit {
	display: flex;
	flex-direction: column;
	width: 60%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.at-no-trips-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.bip-edit-button {
	height: 40px;
}

.delete-bip-card .bip-popup-button-container button {
	margin-bottom: 10px;
}

.bip-popup-button-container .bip-popup-button1 {
	height: 40px;
	font-size: 13.5pt;
}

.bip-popup-button-container .bip-popup-button2 {
	height: 40px;
	background-color: #fde8e0;
	color: var(--primary-color);
	font-size: 13.5pt;
}

.add-bip-card-input-container .bip-input-add-container {
	margin-bottom: 15px;
}

.main-bip-add-parent-container .add-bip-card-main-image {
	display: flex;
	margin: auto;
	justify-content: center;
	margin-top: 0px;
	margin-bottom: 15px;
}

.main-bip-add-parent-container .add-bip-card-main-image img {
	height: auto;
	width: 285px;
}

.add-bip-card-input-container {
	display: flex;
	justify-content: center;
}

.add-bip-card-input-container .add-bip-card-input-container-inner {
	width: 85%;
}

.add-bip-input {
	height: 40px;
}

.add-bip-card {
	width: 85%;
}

/* BIP DESKTOP */

.home-selected-bip-container {
	display: flex;
	align-items: flex-start;
	margin: 0 -5px;
	margin-bottom: 20px;
	position: relative;
	z-index: 100;
	margin-top: 10px;
	display: grid;
	grid-template-columns: 1.8fr 1.8fr 1.8fr 1.8fr 1fr;
}

.bip-input-height {
	height: 40px;
	margin-top: 4px;
}

.bip-offer-notice img {
	height: 18px;
	width: auto;
	margin-right: 4px;
}

.bip-offer-notice {
	margin-left: 10px;
}

.bip-offer-title {
	padding-top: 4px;
}

.bip-payment-inputs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 16px;
	margin-bottom: 24px;
}

.home-selected-bip-container .common-kupos-input input {
	min-width: 120px;
}

.border-less-date-input input {
	border: none !important;
	padding-left: 35px !important;
	min-width: 100px;
	height: 35px !important;
	transition: min-width 1s ease-in-out;
}

.optional-box .border-less-date-input input {
	border: none !important;
	padding-left: 35px !important;
	min-width: 60px;
	height: 35px !important;
	transition: min-width 1s ease-in-out;
}

.border-less-time-input input {
	border: none !important;
	height: 35px !important;
}

.summary-details .bip-side-amount-x {
	margin: 5px 0px;
	margin-bottom: 10px;
}

.bip-sub-amount-side .payment-seat-row {
	justify-content: space-between;
	margin-bottom: 5px;
	margin-top: 5px;
}

.bip-dont-have-account-block {
	display: grid;
	grid-template-columns: 1fr 6fr 3fr;
	grid-gap: 5px;
	align-items: center;
}

.bip-dont-have-account-block .no-account-sub-head {
	margin-top: 5px;
}

.bip-dont-have-account-block .no-account-img img {
	height: 50px;
	width: auto;
}

/* Train Layout */

.coach-layout-front-text {
	writing-mode: vertical-rl;
	font-size: 13px;
	text-align: center;
	/* padding-bottom: 43px; */
	display: flex;
	align-items: center;
	margin: auto;
	justify-content: center;
	/* padding-top: 15px; */
	justify-content: center;
	margin-left: -5px;
}

.train-coach-layout.train {
	padding-left: 40px;
}

.rotate-x-180 {
	transform: rotateX(180deg);
}

.webkit-text-rotate-180 {
	-webkit-transform: rotate(180deg);
}

.rotateY-180-deg {
	transform: rotateY(180deg);
}

.rotate-180-deg {
	transform: rotate(180deg);
}

.pb-service-list-train-coach-layout {
	max-width: 720px;
}

.coach-layout-bottom-text-container {
	position: absolute;
	top: 0;
	width: 100%;
	text-align: center;
	padding: 0px;
	background-color: #faf1ec;
	color: #fc763b;
	border-radius: 0px 0px 20px 20px;
	margin: 0px 1.5px;
	transform: rotateX(180deg);
	margin-left: -32px;
	display: grid;
	grid-template-columns: 1fr 8fr 1fr;
	padding: 8px 16px;
	align-items: center;
	z-index: 100;
}

.coach-layout-bottom-text-container img {
	cursor: pointer;
}

.train-coach-layout {
	margin-top: 12px;
	border-radius: 20px;
	background-color: #fff;
	padding: 32px;
	padding-right: 8px;
	min-width: 660px;
	flex-direction: column;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	position: relative;
	padding-top: 68px;
}

.train-coach-layout.lower {
	padding-left: 70px;
}

.train-coach-layout table {
	width: 100%;
}

.train-coach-layout table img {
	height: 28px;
	width: auto;
	margin: 7px 4px;
}

.train-coach-layout td.gw {
	height: 20px;
}

.train-coach-layout table img.steering {
	margin: 0;
}

.train-coach-layout table img.steering-seat {
	margin: 0;
	margin-right: 10px;
}

.coach-layout-bottom-text-container img {
	width: 85px;
	height: auto;
}

.driver .front-text-image {
	margin-top: 4px;
	width: 16px;
}

.train-seat-popup {
	z-index: 10000;
}

.coach-table .train-seat-mousover {
	transform: rotateX(180deg) scale(0.2);
	top: 90%;
	left: 135%;
}

.train-coach-layout .driver.rotate-x-180 {
	width: 40px;
	padding: 15px;
}

/* Kupos Go Styling */
.home-selection-input-boxes-kupos-go {
	display: grid;
	grid-template-columns: 4fr 2fr 1.5fr 2fr;
}

.kupos-go-body-container {
	padding-top: 5%;
}

.kupos-go-body-container-extended {
	padding-top: 27%;
}

.why-kupos-go-container .why-kupos-go-body-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin-top: 35px;
}

.why-kupos-go-container .why-kupos-go-body-items span {
	text-align: justify;
	color: var(--primary-text-color);
}

.why-kupos-go-container .kupos-icons-container {
	margin-top: 60px;
}

.kupos-go-return-inps {
	margin-top: 20px;
}

.people-comments-section {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 80px;
	grid-gap: 80px;
}

.people-comments-section .person-comment-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

.people-comments-section .person-comment-item .comment-body {
	background-color: #f4f4f4;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	text-align: center;
	border-radius: 12px;
	color: var(--primary-text-color);
	line-height: 1.5;
}

.people-comments-section .image-name-company {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	align-items: center;
	justify-content: center;
}

.people-comments-section .image-name-company .commenter-image {
	height: 90px;
	width: auto;
}

.people-comments-section .commenter-name {
	margin-top: 15px;
}

.people-comments-section .commenter-comp-name {
	margin-top: 5px;
}

.arrow-down {
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 20px solid #f4f4f4;
}

.kupos-media-items-line-2 {
	margin-top: 45px;
	display: flex;
	justify-content: space-evenly;
}

.y-kupos-items-kupos-go {
	/* padding: 0px 80px; */
	display: flex;
	margin-top: 40px;
	justify-content: space-between;
}

.y-kupos-item-kupos-go {
	/* flex: 1; */
	text-align: center;
	padding: 0px 20px;
}

.y-kupos-icon-stripe-kupos-go {
	width: auto;
	height: 100px;
	margin: auto;
	margin-bottom: 15px;
}

.y-kupos-icon-stripe-kupos-go img {
	width: auto;
	height: 100px;
}

.y-kupos-label {
	margin-bottom: 8px;
}

.kupos-go-body-items .kupos-go-body-row {
	display: grid;
	grid-template-columns: 6fr 2.5fr 1.5fr;
	grid-gap: 5px;
	margin-top: 12px;
}

.kupos-go-body-items .kupos-go-body-row-2 {
	/* display: flex; */
	display: grid;
	grid-template-columns: 6fr 4fr;
	grid-gap: 5px;
}

.kupos-go-body-items .kupos-go-body-row-3 {
	display: flex;
}

.kupos-go-body-items .kupos-go-body-row-3 .add-return-trip-kupos-go-button-container {
	display: flex;
	align-items: center;
	height: 40px;
	margin-top: 20px;
}

.kupos-go-body-items .kupos-go-body-row-3 .add-return-trip-kupos-go-button-container .svg-span {
	width: 20px;
}

.add-return-trip-kupos-go-button-container {
	display: flex;
	align-items: center;
	padding: 5px;
}

.add-return-trip-kupos-go-button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 10px 20px;
	margin-top: 17px;
	flex: 1;
	color: var(--white-color);
}

.add-return-trip-kupos-go-button-container .return-trip-icon {
	height: 20px;
	width: auto;
	margin-right: 10px;
}

.kupos-go-body-items .add-stop-container {
	display: flex;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px 5px;
}

.kupos-go-body-items .add-stop-icon img {
	height: 20px;
	width: auto;
	margin-right: 10px;
}

.kupos-go-body-items .add-stop-title {
	margin-top: 5px;
}

.kupos-go-body-items .kupos-go-seperation-line {
	border-top: 1px solid #ccc;
	margin: 36px 5px;
}

.kupos-go-body-items .kupos-go-passenger-input-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
}

.kupos-go-passenger-details-container .kupos-go-passenger-details {
	margin-top: 20px;
	margin-bottom: 10px;
}

.kupos-go-button-container {
	display: flex;
	justify-content: center;
	margin-top: 40px;
	margin-bottom: 15px;
}

.kupos-go-button-container button {
	height: 40px;
}

.kupos-go-body-position {
	position: relative;
	/* bottom: -57vh */
	/* bottom: 120px; */
	/* top: 63.8vh; */
	top: 54.3vh;
}

.media-item-kupos-go img {
	width: 140px;
	height: auto;
}

.media-item-kupos-go .height-image {
	width: auto;
	height: 50px;
}

.kupos-go-button {
	padding: 0px 40px;
}

.kupos-go-modal-image img {
	height: 80px;
	width: auto;
	margin-bottom: 10px;
}

.kupos-media-items-line-1 {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 30px;
	justify-items: center;
}

.kupos-media-items-line-1 .media-item-kupos-go {
	display: flex;
	align-items: flex-end;
}

.add-return-trip-kupos-go-button .return-trip-label {
	margin-top: 3px;
}

.tabs-container-cancel-modal {
	margin: 10px 0px;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tabs-container-cancel-modal .map-container-selector {
	border-radius: 75px;
	background: #ccc;
	margin: 0px auto;
	display: flex;
}

.map-link:hover {
	color: #eee;
}

.tabs-container-cancel-modal .map-container-selector .selector-item {
	width: 175px;
	min-height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 7px;
}

.bip-payment-inputs .name-input,
.bip-payment-inputs .surname-input {
	margin-bottom: 8px;
}

.hidden-fb-login-button {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	height: 35px;
	width: 100%;
	position: absolute;
	border-radius: 15px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
}

.hidden-fb-login-button>* {
	width: 100%;
	height: 100%;
}

.hidden-fb-login-button .kep-login-facebook {
	height: 35px;
	width: 100%;
	border-radius: 20px;
}

.facebook {
	background-color: #3b5998;
	align-items: flex-start;
	justify-content: center;
	height: 50;
	margin-bottom: 15px;
	margin-top: 0px;
	width: 100%;
}

.google {
	background-color: #464647;
	align-items: flex-start;
	justify-content: center;
	height: 50;
	margin-bottom: 15;
	margin-top: 0;
	width: 100%;
}

.page-not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.page-not-found .page-not-found-icon {
	height: auto;
	width: 80px;
}

.page-not-found .page-not-found-head {
	font-size: 22px;
	margin-top: 12px;
}

.page-not-found .page-not-found-desc {
	font-size: 16px;
	margin-top: 17px;
}

.env-impact-container {
	padding-top: 30px;
}

.env-top-strip {
	width: 98%;
	margin: auto;
	margin-top: 70px;
	display: grid;
	grid-template-columns: 1fr 2fr 2fr 2fr 2fr;
}

.env-top-strip .env-top-strip-icon-container {
	display: flex;
	justify-content: center;
}

.env-top-strip-icon-container .env-top-strip-icon {
	height: 50px;
	width: auto;
	margin-top: 0px;
}

.env-top-strip-icon-container .env-top-strip-icon-inner {
	height: 50px;
	width: auto;
	margin-top: 0px;
	margin-right: 10px;
}

.env-top-strip .env-top-strip-icon {
	height: 50px;
	width: auto;
	margin-top: 0px;
}

.env-strip-text-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.env-impact-body .movements-in-capsule-menu {
	margin-top: 30px;
}

.env-impact-body .movements-in-capsule-menu img {
	height: 25px;
	width: auto;
	margin-top: 0px;
}

/* .env-impact-heading{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
  } */

.env-impact-body .env-transactions-body-item {
	display: grid;
	grid-template-columns: 0.6fr 0.1fr 3fr 0.1fr 1.3fr;
}

.env-impact-body .env-impact-heading {
	padding: 15px 17px;
	position: relative;
	top: 20px;
	margin-bottom: 10px;
}

.env-impact-body .vl {
	border-left: 1px solid #444;
	height: auto;
	margin: 0px 25px;
	padding: 0;
	position: relative;
	height: 100%;
	/* top: -30%; */
}

.env-impact-body .env-transactions-body-item {
	display: grid;
	grid-template-columns: 0.6fr 0.1fr 3fr 0.1fr 1.3fr;
	width: 98%;
	margin-left: 1%;
}

.env-impact-body .my-movements-heading>div {
	/* padding: 0 10px; */
	height: 3vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.env-impact-body .my-movements-subitem img {
	height: auto;
	width: 20px;
	height: 1.5vw;
	margin-top: 0px;
}

/* .my-cards-sub-body .txn-item {
    padding-top: 10px;
    padding-bottom: 12px;
    margin-bottom: 15px;
    margin-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
  } */

.my-cards-main-item {
	display: grid;
	grid-template-columns: 2.7fr 0.3fr 6.5fr;
}

.my-cards-main-item .card-item {
	display: flex;
}

.my-cards-main-item .name-action {
	display: flex;
	justify-content: space-between;
}

.my-cards-main-item .name-action .action-buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 6vw;
}

.my-cards-main-item .card-item img {
	height: 36px;
	width: auto;
	margin-right: 10px;
}

.my-cards-main-item .name-action .action-buttons img {
	height: 24px;
	width: auto;
	margin-left: 14px;
}

.my-cards-main-item .name-action .action-buttons img:hover {
	cursor: pointer;
}

.my-cards-main-item .two-items {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	justify-content: space-evenly;
}

.my-cards-sub-body {
	margin-top: 50px;
}

.my-cards-main-item .cards-vl {
	border-right: 1px solid #555;
	margin-right: 20px;
}

.my-cards-right-icon img {
	height: 32px;
	width: auto;
	margin-right: 1%;
}

.my-cards-right-icon img:hover {
	cursor: pointer;
}

.my-cards-right-icon {
	display: flex;
	justify-content: flex-end;
}

.card-item {
	height: 8vh;
	justify-content: center;
	padding-top: 10;
	display: flex;
	align-items: center;
}

.card-item .txn-item {
	display: flex;
	padding-top: 10;
	padding-bottom: 10;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.card-item .txn-item .card-image-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
}

.payment-radio-button {
	border-radius: 10px;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	border-width: 2px;
	border-color: var(--secondary-color);
	margin-right: 10px;
}

.payment-radio-button-inner {
	border-radius: 10px;
	width: 8px;
	height: 8px;
	background-color: var(--secondary-color);
}

.add-card {
	width: 100%;
}

.two-inputs-row {
	margin-bottom: 15px;
}

.add-my-card-body {
	margin-top: 15px;
}

.modal-dialog .modal-body .content-container {
	width: 100%;
}

.modal-loader {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-loader .loader-cricle {
	width: 50px;
	height: 50px;
	/* border-color: #ccc; */
	border-top: 1.1em solid rgba(0, 0, 0, 0.2);
	border-right: 1.1em solid rgba(0, 0, 0, 0.2);
	border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
	border-left: 1.1em solid var(--secondary-color);
}

.pager-controls .pager-control .control-icon {
	width: 30px;
}

.anim-container div svg {
	height: 90px !important;
	width: auto !important;
}

/* date time picker styling  */
.date-time-container {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	margin-top: 3px;
	min-width: 170px;
	height: 40px;
	padding-right: 12px;
	position: relative;
	transition: min-width 500ms ease-in-out;
}

.optional-box .date-time-container {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	margin-top: 3px;
	min-width: 60px;
	height: 40px;
	padding-right: 12px;
	position: relative;
	transition: min-width 500ms ease-in-out;
}

.date-time-picker {
	position: absolute !important;
	right: 1% !important;
	width: 240% !important;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
	padding: 10px 18px;
	box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 8%);
}

.time-counter .value {
	display: 'flex' !important;
	justify-content: center !important;
}

.mask-optional-date-time {
	height: 40px;
	background-color: #cecece;
	position: absolute;
	width: 97%;
	bottom: 6px;
	border-radius: 10px;
	display: flex;
	align-items: center;
}

.mask-optional-date-time-transparent {
	height: 40px;
	position: absolute;
	bottom: 6px;
	display: flex;
	align-items: center;
	right: 3px;
}

.mask-optional-date-time .at-cross {
	position: absolute;
	right: 10px;
}

.mask-calendar-icon {
	margin: 0 10px !important;
}

.input-cross {
	height: 10px !important;
	margin-right: 0px !important;
	cursor: pointer;
}

.cross {
	position: absolute;
	right: 0px;
	/* right: 10px; */
}

.common-kupos-input .cross {
	position: absolute;
	/* right: 0px; */
	right: 10px;
}

.common-kupos-input .input-outer div {
	/* flex: 1; */
}

/* AT drop down counter style  */
.show-count {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 14px;
	margin-top: 3px;
	height: 40px;
}

.at-count-user-icon {
	height: 23px !important;
}

.at-count-down-icon {
	margin: 0 !important;
	padding-left: 7px;
	height: 8px !important;
}

.at-counter-popoup {
	margin-top: 6px;
	border-radius: 10px;
	position: absolute;
	/* width: 250px; */
	background-color: #fff;
	box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 8%);
	padding: 10px;
}

.at-counter-row {
	display: grid;
	/* gap: 10px; */
	grid-template-columns: 2fr 1fr;
}

.at-count-user-type-icon {
	height: 30px !important;
	margin: 0px !important;
}

.at-icon-text {
	display: flex;
	align-items: center;
}

.at-count-age-text {
	font-size: 10px;
	color: #919191;
}

.at-horizonatal-line {
	border-top: 1px solid var(--border-color);
}

.at-kupos-info {
	min-width: 105px;
}

/* kupos service amenities styles  */

.common-kupos-service-emenities {
	display: grid;
	grid-template-columns: 2fr 8fr;
	gap: 20px;
	background-color: #f4f4f4;
	padding: 20px 30px;
	margin-top: -10px;
	position: relative;
}

.border-raduis-bottom {
	border-radius: 0px 0px 15px 15px;
}

.description-text {
	margin-top: 2px;
	margin-bottom: 12px;
}

.text-and-icons {
	display: flex;
	align-items: flex-start;
}

.icon-size {
	height: 25px;
	width: 20px;
	margin-right: 2px;
}

.icon-size-new {
	height: 18px;
	width: 20px;
	margin-right: 2px;
}

.at-hr-line {
	border-top: 1px solid #cecece;
	width: 92%;
	position: absolute;
	bottom: 10px;
	margin-left: 30px;
}

.show-more {
	position: absolute;
	left: 30px;
	bottom: 30px;
	background: var(--secondary-color);
	color: #fff;
	padding: 2px 10px;
	border-radius: 20px;
}

.show-more:hover {
	cursor: pointer;
}

.at-arrow-down-icon {
	height: 10px;
	width: 10px;
	margin-right: 5px;
}

.carousel .control-dots .selected {
	background-color: var(--primary-color) !important;
}

.carousel .control-dots .dot {
	transition: opacity 0.25s ease-in;
	opacity: 0.3;
	filter: alpha(opacity=30);
	/* box-shadow: 1px 1px 2px rgb(0 0 0 / 90%); */
	box-shadow: none !important;
	background: #fff;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	cursor: pointer;
	display: inline-block;
	margin: 0 8px;
}

/* AT terminal suggestions styling starts  */

.at-termninal-suggestions {
	position: absolute;
}

.at-termninal-suggestions.auto-suggestions {
	max-height: 250px;
	overflow-y: auto;
	position: absolute;
	z-index: 990;
	background-color: #fff;
	border: 1px solid #ccc;
	min-width: 96%;
	border-radius: 0 0 10px 10px;
	padding-top: 10px;
	margin-top: -10px;
}

.at-termninal-suggestions.auto-suggestions a {
	padding: 10px 14px;
	border-bottom: 1px solid #ccc;
	display: block;
	cursor: pointer;
	background-image: url(../images/icons/home/airport-icon-vertical.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	padding-left: 32px;
	background-position-x: 8px;
	background-position-y: 10px;
}

.at-termninal-suggestions.auto-suggestions a.active {
	color: var(--primary-color);
	background-color: var(--light-primary-color);
	border-color: var(--primary-color);
}

.at-termninal-suggestions.auto-suggestions a.active:last-child {
	border-bottom: 0;
}

.at-termninal-suggestions.auto-suggestions a.cursor {
	color: var(--primary-color);
	background-color: var(--light-primary-color);
	border-color: var(--primary-color);
}

.at-termninal-suggestions.auto-suggestions a:hover {
	color: #fff;
	background-color: var(--secondary-color);
	background-image: url(../images/icons/home/airport-icon-white-vertical.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	padding-left: 32px;
}

.date-time-picker .time-picker-title {
	background-color: var(--secondary-color);
	padding: 8px;
	border-radius: 6px;
	font-size: 10pt;
	text-align: center;
	color: #fff;
	animation: time_picker_title 1000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.at-hundred-width {
	width: 100% !important;
}

.no-return-trip-icon-container img {
	width: 80px;
}

.at-terminal-item img {
	width: 20px;
}

.at-terminal-item {
	display: flex !important;
	justify-content: center;
	/* align-items: center; */
}

/* Hoppa hour experience  */

.hour-selection-container {
	background-color: #fff;
	/* height: 25vh; */
	/* width: 100%; */
	/* padding: 20px; */
	border-radius: 6px;
}

.hour-selection-container .hour-selection-container-inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 100%;
	width: 100%;
	justify-content: center;
}

.hour-selection-container .hour-selection-container-inner .hor-row {
	width: 100%;
	/* height: 7vh; */
	display: flex;
}

.hour-selection-container .hour-selection-container-inner .hour-row {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

.hour-selection-container .hour-selection-container-inner .hour-row div {
	padding: 5px 20px;
}

.date-time-picker-hour-min-sel {
	position: absolute !important;
	right: -25% !important;
	width: 350% !important;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
	padding: 10px 18px;
	box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 8%);
}

.date-time-picker-hour-min-sel .time-picker-title {
	background-color: var(--secondary-color);
	padding: 8px;
	border-radius: 6px;
	font-size: 10pt;
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
	animation: time_picker_title 1000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.hour-selection-container .hour-selection-container-inner .hour-row div:hover {
	cursor: pointer;
}

.css-1wa3eu0-placeholder {
	margin-top: 3px;
	font-size: 13px;
	top: 42% !important;
}

/* //kupos go time picker specific setting  */

.kupos-go-body-row .home-selection-input-box .common-kupos-time-picker>.time-picker {
	left: -47%;
	width: 150% !important;
	max-width: 230px !important;
}

.kupos-go-body-row .home-selection-input-box .time-picker-title {
	background-color: var(--secondary-color);
	padding: 8px;
	border-radius: 6px;
	font-size: 10pt;
	text-align: center;
	color: #fff;
	margin-bottom: 10px;
	animation: time_picker_title 1000ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*  */

.mb-30 {
	margin-bottom: 30px;
}

.primary-pet {
	margin-top: 8px;
	margin-bottom: -10px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: space-between;
}

.primary-pet .primary-pet-icon {
	width: 35px;
	height: auto;
	margin-left: 15px;
}

.link-underline {
	text-decoration: underline !important;
}

.home-selection-input-boxes-ref {
	position: absolute;
}

.copyright-message:hover {
	cursor: pointer;
}

/* is_mot */

.is-mot-input {
	display: flex;
	align-items: center;
	gap: 15px;
	align-items: end;
}

.is-mot-input-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	align-items: end;
}

.mt-12 {
	margin-top: 12px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-5 {
	margin-bottom: 5px;
}

/* CUPONERA STYLING STARTS  */

.couponera_home_inputs_wrapper {
	display: flex;
	justify-content: center;
}

.couponera_home_inputs {
	width: 72%;
}

/* home page cuponera */

.cuponera_seat_item {
	transition: all 0.5s ease-in-out;
}

.cuponera_seat_item:hover {
	transform: scale(1.03);
	transition: all 0.3s ease-in-out;
}

.cuponera_seat_item:hover .price_tag {
	background-color: #fa5e00 !important;
	transition: all 0.3s ease-in-out;
}

.cuponera_wrapper {
	padding: 3rem 0;
	height: 100%;
}

.cuponera_parent {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	padding: 1rem 10rem;
	overflow-y: auto;
	height: 100%;
	row-gap: 46px;
}

.coupon_item_outer {
	position: relative;
	flex: 1;
	cursor: pointer;
}

.coupon_item_outer .info_icon {
	position: absolute;
	top: 12px;
	right: 12px;
}

.coupon_item_outer .info_icon img {
	width: 18px;
	height: auto;
}

.coupon_item_outer .cupon_item {
	position: relative;
	z-index: 10;
}

.cupon_item .cupon_title {
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}

.cupon_item .cupon_title span {
	margin-left: 4px;
}

.cupon_item .ticket_items_outer {
	display: flex;
	justify-content: center;
}

.cupon_item .ticket_items {
	display: flex;
	justify-content: center;
	background-color: var(--corporate-blue-color);
	/* width: 30%; */
	padding: 6px 12px;
	border-radius: 20px;
	color: #fff;
	padding-top: 8px;
}

.cupon_item .qr_container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
}

.cupon_item .qr_container img {
	width: 44%;
}

.cupon_item .cupon_cod {
	margin: 0.5rem 0;
}

.cupon_item .operator_name {
	margin: 0.5rem 0;
}

.cupon_item .location_item {
	margin: 0.5rem 0;
	display: flex;
	align-items: center;
}

.cupon_item .location_item img {
	width: 18px;
	height: auto;
	margin-bottom: 2px;
	margin-right: 6px;
}

.coupon_item_outer .download_strip {
	position: absolute;
	width: 100%;
	background-color: var(--secondary-color);
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	margin-top: -32px;
	padding-top: 30px;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
	padding-right: 20px;
	padding-left: 20px;
	color: white;
}

.cuponera_modal .img_container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.cuponera_modal .img_container img {
	width: 20%;
}

.cuponera_modal .desc {
	margin: 20px 0;
}

.cuponera_modal .btn_container {
	margin-top: 22px;
	display: flex;
	justify-content: center;
}

.cuponera_modal .btn_container .modal_btn {
	width: 56%;
	background-color: var(--corporate-blue-color);
	border-radius: 100px;
}

.gap-30 {
	gap: 30px;
}

.myn-15 {
	margin-top: -15px;
	margin-bottom: 15px;
}

/**************new styles**************/
.coup-select .common-kupos-select-box-outer .common-kupos-select-box {
	background-color: #fafafa !important;
}

.coup-select .common-kupos-select-box-outer {
	opacity: 1 !important;
}

.coup-select .common-kupos-select-box-outer input {
	opacity: 0.6;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	/* gap: 10px !important; */

}

/* .slick-slide img {
	height: 310px !important;
} */
.pt-color{
	color: var(--primary-text-color);
}
.newcontact-styles
{
	margin-top: 100px;
}
.newcontact-styles .input-label{
color: #464647 !important;
margin-bottom: 4px;
}
.footer_link a
{
	color:#fff;
}
.common-kupos-input input
{
	border-bottom: 1px solid var(--border-color) !important;
	border-radius: 0 !important;
}
.common-kupos-select-box-outer .react-selectbox .css-yk16xz-control{
	border: none;
	border-bottom: 1px solid var(--border-color) !important;
	border-radius: 0 !important;
}


.common-kupos-date-picker input
{
	border: none !important;
	border-bottom: 1px solid var(--border-color) !important;
	border-radius: 0 !important;
}
.common-kupos-date-picker img {

	left: 3px  !important;

}
.css-6q0nyr-Svg{
	display: none  !important;
}



