:root {
	color: #777;
	--primary-color: #ed1e79 !important;
	--primary-light-color: #f6e8e0;
	--secondary-color: #ff5c60;
	--secondary-light-color: #ffcbcc;
	--dark-font: #464647;
	--light-font: #919191;
	--light-color: #c0c0c0;
	--border-color: #ddd;
	--primary-color-2: #572a85;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	select,
	textarea,
	input {
		font-size: 16px;
	}
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {

	select:focus,
	textarea:focus,
	input:focus {
		font-size: 16px;
		/* background: #eee; */
	}
}

@supports (-webkit-overflow-scrolling: touch) {
	input {
		font-size: 16px;
	}
}

.focus-none:focus {
	outline: none;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

/* @font-face {
  font-family: "AvenirNextLTPro-Light";
  src: url("/assets/fonts/AvenirLTStd-Light.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url("/assets/fonts/AvenirNextLTPro-Regular.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-Demi";
  src: url("/assets/fonts/AvenirNextLTPro-Demi.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-Bold";
  src: url("/assets/fonts/AvenirNextLTPro-Demi.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNextLTPro-Black";
  src: url("/assets/fonts/AvenirLTStd-Black.otf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

@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-Bold.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;
}

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

body {
	font-family: "DMSans-Regular", sans-serif !important;
	font-size: 14px;
}

html.md {
	--ion-default-font: "DMSans-Regular", sans-serif !important;
	font-size: 14px;
}

html.ios {
	--ion-default-font: "DMSans-Regular", sans-serif !important;
	font-size: 14px;
}

.no-offset-content {
	--offset-bottom: 0 !important;
}

.keyboard-up {
	height: auto !important;
}

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

textarea {
	background-color: white;
}

li::marker,
::marker {
	display: none !important;
	content: none !important;
}

ul li::marker {
	content: none;
}

.main-app-outer {
	background-color: #fff;
	/* min-height: 100vh; */
}

.discount-block {
	margin-top: 10px;
}

.countdown_counter {
	display: flex;
	align-items: center;
}

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

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

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

.light-grey-font {
	color: #a4a4a6;
}

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

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

.blue-text {
	color: #007bff;
}

.white-text {
	color: #fff;
}

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

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

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

.uppercase {
	text-transform: uppercase;
}

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

.flex1 {
	flex: 1;
}

.flex-center {
	justify-content: center;
	align-items: center;
}

.flex-wrap {
	flex-wrap: wrap;
}

.inline-flex {
	display: inline-flex !important;
}

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

.align-start {
	align-items: flex-start;
}

.relative {
	position: relative;
}

.border-rad {
	border-radius: 20px;
}

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

input {
	border-top-style: hidden;
	border-right-style: hidden;
	border-left-style: hidden;
	border-bottom-style: hidden;
	background-color: #ffffff;
	font-family: "DMSans-Regular", sans-serif !important;
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #bbb;
	opacity: 1;
	/* Firefox */
}

::-webkit-input-placeholder {
	color: #bbb;
}

/* Chrome/Opera/Safari */
::-moz-placeholder {
	color: #bbb;
}

/* Firefox 19+ */
:-ms-input-placeholder {
	color: #bbb;
}

/* IE 10+ */
:-moz-placeholder {
	color: #bbb;
}

input:focus {
	outline: none;
}

button:focus {
	outline: none;
}

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

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

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

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

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

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

.root-container {
	height: 100%;
	overflow: hidden;
}

.body-container {
	overflow: scroll;
}

.flex-center-column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.full-flex {
	flex: 1;
}

.margin-top-0 {
	margin-top: 0px !important;
}

.margin-20 {
	margin: 0px 20px !important;
}

.margin-40 {
	margin: 0px 40px !important;
}

.margin-top-10 {
	margin-top: 10px !important;
}

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

.float-right {
	float: right;
}

.height-100-percent {
	height: 100%;
	overflow: hidden;
}

.dark-font {
	color: #464647 !important;
}

.green-font {
	color: #9acd32 !important;
}

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

.white-text {
	color: #fff !important;
}

.black-font {
	color: #000000;
}

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

.light-grey-font {
	color: #a4a4a6;
}

.aaa-font {
	color: #aaa;
}

.bbb-font {
	color: #bbb;
}

.nine-font {
	color: #999;
}

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

.primary-font {
	color: var(--primary-color-2) !important;
}

.red-font {
	color: red !important;
}

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

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

.light-color {
	color: #c0c0c0 !important;
}

.underlined-text {
	text-decoration: underline;
}

.white-font {
	color: #ffffff !important;
}

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

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

.white-space {
	width: 5px;
}

.underline-text {
	text-decoration: underline;
}

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

.px-5 {
	padding: 0 5px !important;
}

.py-5 {
	padding: 5px 0 !important;
}

.py-10 {
	padding: 10px 0 !important;
}

.px-10 {
	padding: 0 10px !important;
}

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

.rounded-100 {
	border-radius: 100px;
}

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

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

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

a {
	text-decoration: none;
}

.triangle-up {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 100px solid #fff;
}

.triangle-down {
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 100px solid #fff;
}

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

.font6 {
	font-size: 6px !important;
}

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

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

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

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

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

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

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

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

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

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

.font17 {
	font-size: 17px !important;
}

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

.font19 {
	font-size: 19px !important;
}

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

.font21 {
	font-size: 21px !important;
}

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

.font23 {
	font-size: 23px !important;
}

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

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

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

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

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

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

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

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

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

.grecaptcha-badge {
	visibility: hidden;
}

/* ----------- add to home start --------- */

.react-dropdown-container {
	width: 100%;
	margin-top: 5px;
}

.react-dropdown-container .Dropdown-root {
	height: 40px;
}

.react-dropdown-container .Dropdown-root .Dropdown-control {
	height: 100%;
	border-radius: 8px;
	display: flex;
	align-items: center;
}

.react-dropdown-container .border-less .Dropdown-control {
	border: none !important;
}

.react-dropdown-container .Dropdown-root .Dropdown-control .Dropdown-placeholder {
	font-size: 14px;
}

/* .Dropdown-arrow-wrapper{
	flex: 1;
} */

.react-dropdown-container .Dropdown-root .Dropdown-control .Dropdown-arrow {
	top: 17px !important;
}

.Dropdown-menu {
	border-radius: 8px;
}

.Dropdown-placeholder {
	color: #bbb;
	font-size: 12px;
}

.Dropdown-placeholder.is-selected {
	color: #464647;
}

.add-to-home-button {
	display: flex;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	bottom: 0px;
	max-width: 900px;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background-color: #fff;
	border: 1px solid #ddd;
}

.add-to-home-button .add-to-home-logo {
	display: flex;
	align-items: center;
	justify-self: center;
}

.add-to-home-button .add-to-home-logo img {
	width: 40px;
	margin-right: 10px;
	border-radius: 5px;
}

.add-to-home-button .add-to-home-link {
	color: var(--primaryColor);
	text-transform: uppercase;
	text-decoration: underline;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-self: center;
}

.add-to-home-button .add-to-home-link img {
	width: 25px;
}

.add-to-home-button .close-btn {
	position: absolute;
	top: -24px;
	height: 22px;
	width: 22px;
	background-color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 2px;
	color: var(--primaryColor);
	font-size: 1.2rem;
	display: none;
}

.add-to-home-button .store-details {
	flex: 1;
}

.add-to-home-button .instant-access {
	font-size: 0.85rem;
	margin-top: 0px;
}

/* ----------- add to home end --------- */

.main-seat-layout-container ion-select {
	/* min-width: 75vw; */
	min-width: 100%;
	flex: 1;
	padding-left: 0px;
}

.main-seat-layout-container ion-item {
	padding-left: 0px;
	border-bottom: none;
	height: 40px;
	width: 100%;
}

.input-wrapper ion-item {
	padding-left: 0px;
	border-bottom: none;
	height: 36px !important;
	width: 100%;
}

.main-seat-layout-container .button-inner-container {
	padding-top: 0px;
	padding-bottom: 0px;
}

/* ---------------- svgs start ------------------ */
.common-svg-amenities .ac-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .ac-grey-cls-1 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .restrooms-white-cls-1,
.common-svg-amenities .restrooms-white-cls-2 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.common-svg-amenities .restrooms-grey-cls-1,
.common-svg-amenities .restrooms-grey-cls-2 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.common-svg-amenities .restrooms-white-cls-1,
.common-svg-amenities .restrooms-grey-cls-1 {
	stroke-width: 30px;
}

.common-svg-amenities .restrooms-white-cls-2,
.common-svg-amenities .restrooms-grey-cls-2 {
	stroke-width: 26px;
}

.common-svg-amenities .charger-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .charger-grey-cls-1 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .food-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .food-white-cls-2 {
	fill: #fff;
}

.common-svg-amenities .food-grey-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .food-grey-cls-2 {
	fill: #fff;
}

.common-svg-amenities .mobile-ticket-white-cls-1,
.common-svg-amenities .mobile-ticket-white-cls-3 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.common-svg-amenities .mobile-ticket-white-cls-2 {
	fill: #fff;
}

.common-svg-amenities .mobile-ticket-grey-cls-1,
.common-svg-amenities .mobile-ticket-grey-cls-3 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.common-svg-amenities .mobile-ticket-grey-cls-2 {
	fill: #464648;
}

.common-svg-amenities .mobile-ticket-white-cls-1,
.common-svg-amenities .mobile-ticket-grey-cls-1 {
	stroke-width: 30px;
}

.common-svg-amenities .mobile-ticket-white-cls-3,
.common-svg-amenities .mobile-ticket-grey-cls-3 {
	stroke-width: 20px;
}

.common-svg-amenities .music-white-cls-1,
.common-svg-amenities .music-white-cls-2 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.common-svg-amenities .music-grey-cls-1,
.common-svg-amenities .music-grey-cls-2 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.common-svg-amenities .music-white-cls-1,
.common-svg-amenities .music-grey-cls-1 {
	stroke-width: 30px;
}

.common-svg-amenities .music-white-cls-2,
.common-svg-amenities .music-grey-cls-2 {
	stroke-width: 46px;
}

.common-svg-amenities .snack-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .snack-white-cls-2 {
	fill: #fff;
}

.common-svg-amenities .snack-grey-cls-1 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .snack-grey-cls-2 {
	fill: #464648;
}

.common-svg-amenities .baggage-white-cls-1,
.common-svg-amenities .baggage-white-cls-2 {
	fill: none;
	stroke: #fff;
}

.common-svg-amenities .baggage-grey-cls-1,
.common-svg-amenities .baggage-grey-cls-2 {
	fill: none;
	stroke: #464648;
}

.common-svg-amenities .baggage-white-cls-1,
.common-svg-amenities .baggage-grey-cls-1 {
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .baggage-white-cls-2,
.common-svg-amenities .baggage-grey-cls-2 {
	stroke-linecap: square;
	stroke-miterlimit: 10;
	stroke-width: 46px;
}

.common-svg-amenities .tv-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .tv-grey-cls-1 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .handicap-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .handicap-grey-cls-1 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .wifi-white-cls-1 {
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .wifi-white-cls-2 {
	fill: #fff;
}

.common-svg-amenities .wifi-grey-cls-1 {
	fill: none;
	stroke: #464648;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 30px;
}

.common-svg-amenities .wifi-grey-cls-2 {
	fill: #464648;
}

/* --------------------- svgs end ------------------ */

@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);
	}
}

.kupos-page-scroll {
	height: calc(100vh - 55px);
	overflow: scroll;
	position: relative;
}

.top-strip-margin {
	margin-top: 85px;
}

.invert-color {
	filter: invert(1);
}

.flex-100 {
	width: 100%;
	display: flex;
}

.margin-left-6vw {
	margin-left: 6vw;
}

.margin-left-2vw {
	margin-left: 2vw;
}

.item-container-outer.kupos-card {
	background-color: #fff;
	padding: 12px;
	margin: 20px 0px;
	z-index: 10;
	position: relative;
	padding-bottom: 12px;
}

.item-container-outer.kupos-card:nth-child(1) {
	margin-top: 12px;
}

.item-container-outer.kupos-card .direct-service-ui {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	/* position: absolute;
  top: -13px;
  right: 37%; */
}

.item-container-outer.kupos-card .direct-service-ui .bg {
	width: 85px;
}

.item-container-outer.kupos-card .direct-service-ui .wrapper {
	width: 79px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 2px;
}

.item-container-outer.kupos-card .direct-service-ui .direct-arrow {
	width: 9px;
	margin-right: 10px;
}

.item-container-outer.kupos-card .direct-service-ui .directo {
	font-size: 10px;
	color: white;
	font-weight: bolder !important;
	margin-top: -1px;
}

.train-directo {
	background-color: var(--secondary-color) !important;
	padding: 6px 10px;
	border-radius: 20px;
	display: flex;
	align-items: center;

	span {
		color: #fff !important;
	}

	img {
		height: 10px !important;
	}
}

.boarding-stage-ui {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	/* background-color: #fef1ec; */
	background-color: #ffe5fc;
	/* width: 150px; */
	padding: 5px 10px;
	border-radius: 100px;
	/* position: absolute; */
	/* top: -13px;
  right: 13px; */
	z-index: 20;
}

.boarding-stage-ui-label {
	font-size: 12px;
	color: #464647;
	margin-left: 3px;
}

.conexion-stage-ui {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-color: #ffdede;
	padding: 5px 10px;
	border-radius: 100px;
	z-index: 20;
}

.conexion-stage-ui-label {
	font-size: 12px;
	color: #fb6363;
	margin-left: 3px;
	margin-top: 1.6px;
}

.conexion_wrapper_payment_page {
	display: flex;
	flex-direction: column;
	/* justify-content: flex-end; */
	/* align-items: center; */
	/* padding: 5px 5vwpx; */
}

.conexion_wrapper_payment_page .conexion_top_label {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.conexion_wrapper_payment_page .conexion_top_label img {
	width: 20px;
	height: auto;
	margin-right: 8px;
}

.conexion_wrapper_payment_page .conexion_bottom_details {
	display: flex;
	/* align-items: center; */
	margin-bottom: 8px;
}

.topMainIconLabelContainer {
	margin-top: 4px;
}

.header-back-arrow {
	width: auto;
	height: 23px;
	/* margin-top: 5px; */
	/* filter: invert(1); */
}

ion-menu {
	--background: transparent;
	--width: 260px;
}

ion-menu ion-content {
	--background: transparent;
	overflow: hidden;
}

ion-content {
	--keyboard-offset: 0 !important;
}

.content-transparent {
	--background: transparent;
}

.pic-cropper-div {
	position: fixed !important;
	z-index: 999;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

.pic-cropper-buttons {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	background-color: rgba(0, 0, 0, 0.6);
}

.pic-cropper-buttons div {
	flex: 1;
	text-align: center;
	padding: 10px;
	color: #fff;
	cursor: pointer;
}

.pic-cropper-buttons div:nth-child(1) {
	border-right: 1px solid #aaa;
}

.ReactCrop {
	position: absolute !important;
	display: inline-block;
	cursor: crosshair;
	overflow: hidden;
	max-width: 100%;
	top: 0;
	bottom: 50px;
	right: 0;
	left: 0;
}

.menu-inner {
	box-shadow: 0;
}

.menu-container-div {
	background-color: #fff;
	overflow: hidden;
	/* border-radius: 0px 20px 20px 0px !important; */
	border-radius: 0px 20px 20px 0px !important;
	height: 100%;
}

.menu-container-div-right {
	background-color: #fff;
	overflow: hidden;
	border-radius: 20px 0px 0px 20px !important;
	height: 100%;
}

.split-menu-custom {
	border-radius: 0 20px 20px 0;
}

.no-padding {
	padding: 0px;
}

.kupos-card {
	border-radius: 8px;
	background-color: rgb(256, 256, 256);
	box-shadow: 0px 10px 10px 0px #ddd;
	box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
	z-index: 2;
	padding: 20px;
	margin: 20px;
	padding-bottom: 20px;
}

.labels-container {
	position: absolute;
	top: -13px;
	width: 100%;
	display: flex;
	gap: 10px;
	right: 15px;
	justify-content: flex-end;
}

.display-fex-start {
	display: flex;
	align-self: flex-start;
}

.common-kupos-counter {
	margin-top: 3px;
	width: 100%;
	max-width: 200px;
}

.common-kupos-counter .coumter-inner {
	height: 45px;
	align-items: center;
	border-radius: 10px;
}

.common-kupos-counter .coumter-inner img {
	padding: 0;
	margin: 0 10px;
	width: 20px;
}

.common-kupos-counter span.svg-span {
	width: 20px;
	margin: 10px;
}

.home-screen-background {
	background-image: url("/assets/images/default-home-bg.png");
	width: 100%;
	height: 100%;
}

.mainBgImg {
	width: 100%;
	/* width: auto; */
	height: 380px;
	position: absolute;
	top: -40px;
	/* z-index: -1; */
}

.mainBgImgNew {
	width: 100%;
	/* width: auto; */
	height: 30%;
	position: absolute;
	top: 0px;
	/* z-index: -1; */
}

.newBgStyle {
	width: 100%;
	/* width: auto; */
	height: 60%;
	position: absolute;
	top: 0px;
}

.removeBg {
	width: 100%;
	/* width: auto; */
	height: 60%;
	position: absolute;
	top: 70px;
}

.main-bg-short {
	width: 100%;
	position: absolute;
	top: 0;
	/* z-index: -1; */
}

.main-bottom-image {
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0px;
	z-index: 0;
}

.main-bottom-image-gomez {
	width: 100%;
	position: absolute;
	bottom: 0px;
	z-index: 0;
	/* left: -30px; */
}

.main-bottom-image-terraustral {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0px;
	z-index: 0;
	object-fit: cover;
	/* left: -30px; */
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.carpol-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 56px;
	align-items: center;
	position: relative;
	padding-top: 16px;
	padding: 0px 10px;
	padding-bottom: 6px;
	padding-top: 6px;
	/* position: fixed; */
	width: 100%;
	z-index: 999;
	top: 0;
}

.carpol-header .label-center {}

.carpol-header+* {
	/* position: relative; */
	/* top: 56px; */
}

.carpol-header.white-bg {
	background-color: #fff;
}

.main-body-container {
	position: relative;
}

.carpol-homeMenu {
	margin-top: -4px;
}

.carpol-homeMenuInner {
	padding: 15px 9px 10px;
}

.carpol-homeMenuInner img {
	height: 25px;
	width: auto;
}

.carpol-menu-home-icon img {
	height: 25px;
	margin-right: 10px;
}

.carpol-label {
	width: 100%;
	height: 40px;
	position: absolute;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	margin-top: -10px;
}

.topMainContainer {
	margin-top: 10px 10px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.display-flex {
	display: flex;
}

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

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

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

.pb-modal-backdrop {
	display: flex;
	flex: 1;
	width: 100vh;
	height: 100vh;
	position: absolute;
	align-items: center;
	justify-content: center;
}

ion-select {
	opacity: 1 !important;
	color: #464647;
}

select-placeholder {
	color: var(--dark-font) !important;
	opacity: 1 !important;
}

.pb-modal {
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
}

.pb-modal-icon-container {
	width: 100%;
	padding: 10px;
	padding-top: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	/* margin-top: 15px; */
}

.pb-modal-container {
	border-radius: 20px;
	width: 82vw;
	padding-bottom: 25px;
}

.modal-outer {
	width: 90%;
}

.pb-modal-body-content {
	margin-bottom: 15px;
	margin-top: 15px;
}

.pb-modal-bottom {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
}

.modal-back-drop {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 0;
}

.pb-modal-content {
	position: relative;
	/* bottom: 5vh; */
	z-index: 1;
	/* width: 90vw; */
}

.contact-modal {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 80px;
	line-height: 1.3;
	background-color: rgba(0, 0, 0, 0.4);
}

.contact-modal .contact-row {
	margin: 3px 0;
}

.contact-modal .contact-icons {
	display: grid;
	/* grid-template-columns: 1fr 1fr 1fr; */
	margin-top: 30px;
	margin-bottom: 15px;
}

.contact-modal .contact-icons img {
	width: 25%;
	margin-bottom: 7px;
}

.contact-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.pb-loader {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
}

.pb-loader ion-spinner {
	--color: #fff;
}

.dropdown-wrapper {
	position: relative;
	padding: 0 !important;
}

.dropdown-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dropdown-mask img {
	margin: 0;
	width: 17px;
}

.dropdown-transparent {
	height: 100%;
	width: 100%;
	position: relative;
	opacity: 0;
}

/* calendar styling */
.common-kupos-calendar {
	width: 300px;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
	padding: 20px;
	box-shadow: 1px 1px 16px 0px rgba(0, 0, 0, 0.08);
	margin: auto;
}

.common-kupos-calendar b {
	font-weight: normal !important;
}

.common-kupos-calendar .month-label {
	display: flex;
	flex-direction: row;
	/* align-items: center; */
	justify-content: space-between;
	background-color: var(--primary-color);
	color: #fff;
	margin-bottom: 8px;
	border-radius: 10px;
	padding: 10px;
}

.common-kupos-calendar .month-label div {
	color: #fff;
}

.common-kupos-calendar .month-label img {
	/* filter: grayscale(1); */
	width: auto;
	height: 18px;
	/* position: static; */
	display: flex;
	margin-top: 2px;
	align-items: center;
	align-self: center;
}

.common-kupos-calendar .month-label .svg-span {
	width: 15px;
	position: static;
	margin: 0;
}

.common-kupos-calendar .WeekDays {
	display: flex;
	text-align: center;
}

.common-kupos-calendar .WeekDays .unit {
	background-color: transparent;
	flex: 1;
	color: var(--primary-color);
	padding: 5px 0;
}

.common-kupos-calendar .monyear {
	margin-top: 3px;
}

.common-kupos-calendar .days {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	min-height: 165px;
}

.common-kupos-calendar .day-number {
	width: 36px;
	height: 31px;
	padding: 3px;
}

.common-kupos-calendar .day-number .day-number-inner {
	width: 28px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	padding-top: 5px;
}

.common-kupos-calendar .day-number.selected .day-number-inner {
	color: var(--primary-color);
	/* background-color: rgba(252, 118, 59, 0.2); */
	background-color: #e7267a3d;

	display: block;
}

.common-kupos-calendar .day-number.past .day-number-inner,
.common-kupos-calendar .day-number.deactivate .day-number-inner {
	opacity: 0.3;
}

.common-kupos-calendar .day-number.next-month {
	height: 0px;
}

.common-kupos-calendar .day-number.next-month {
	padding: 0px;
}

.calendar-heading {
	margin: 10px 0px;
	margin-bottom: 18px;
}

/*  */

.top-menu-icon {
	display: flex;
}

.top-menu-icon img {
	height: 50px;
}

.topMainIconContainer {
	margin: 10px 0 0;
	width: 100%;
	/* display: flex;
  flex-direction: row;
  justify-content: space-betweenlogin-main-icon-container; */
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.bodyIconContainer {
	width: 100%;
}

.bodyIconContainerRow {
	margin: 25px 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.topMainIconItemContainer {
	align-items: center;
	justify-content: flex-start;
}

.third-party-icon-body .topMainIconItemContainer {
	width: 100% !important;
	align-items: center;
	display: flex;
	flex-direction: row;
	padding: 14px 14px 14px 30px;
}

.third-party-icon-body .topMainIconItemContainer .topMainIconLabelContainer {
	margin-top: 4px;
	margin-left: 15px;
}

.topMainIconImg {
	border-radius: 50%;
	height: 52px;
	width: auto;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}

.bodyIconContainer .topMainIconImg {
	width: 60px;
	height: 60px;
}

.bodyIconContainer .topMainIconImg .top-menu-icon img {
	height: 60px;
	width: auto;
}

.kupos-com-main-image-container {
	display: flex;
	justify-content: center;
}

.kupos-com-main-image {
	/* position: absolute;
  top: 15px; */
	width: 150px !important;
	height: 35px !important;
}

.availableBalance {
	padding-inline: 5px 8px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.third-party-home-page-body {
	height: 100vh;
	display: flex;
	flex-direction: column !important;
	justify-content: space-between;
}

.homeContainer {
	flex: 1;
	padding: 0px 20px;
	margin-top: 35px;
}

.homeContainer .kupos-card.home-main-card {
	margin: 0;
	position: relative;
	bottom: 24px;
	border-radius: 8px;
}

.line {
	width: 100%;
	margin: 5px 25px;
	border-bottom: 1px solid #ccc;
}

.amount-seperator {
	width: 100%;
	margin: 5px 0px;
}

.border-half-three {
	border-bottom: 1px solid #ccc;
}

/* Home Page */

.home-container {
	flex: 1;
	/* padding:0px 20px; */
}

.home-header {
	width: 100%;
	flex-direction: row;
	padding-top: 25px;
	padding-bottom: 5px;
	justify-content: space-between;
}

.home-menu-inner {
	width: 8vw + 18px;
	padding: 5px;
	padding: 0px 9px;
}

.home-menu-inner img {
	width: 35px;
	height: auto;
}

hr {
	height: 0;
	border-top: 1px solid #ccc;
}

.home-menu-title-text {
	margin-top: 0px;
	margin-bottom: 5px;
	align-items: center;
}

.home-menu {
	margin-left: -10px;
}

.logo-container {
	margin-top: 40px;
	width: 100%;
	margin-bottom: 40px;
}

.city-box-container {
	display: grid;
	grid-template-columns: 9fr 1fr;
	border-radius: 10px;
	height: 105px;
	padding: 5px 10px;
	width: 100%;
	border: 1px solid #ccc;
	margin-top: 5px;
}

.city-container {
	display: grid;
	grid-template-rows: 1fr 0.01fr 1fr;
	padding: 12px 0px;
	grid-gap: 8px;
}

.city-container {
	width: 100%;
}

.city-container>div {
	width: 90%;
}

.city-box-item {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	margin-top: 6px;
}

.city-box-item img {
	width: 18px;
	height: 18px;
	/* height: 23px; */
	margin-left: 0px;
	margin-right: 13px;
}

.city-box-item-inner {
	width: 20px;
	align-items: center;
}

.city-box-city {
	margin: 0px 10px;
}

.city-box-label-container {
	width: 80px;
	padding-left: 10px;
}

.city-item-divider {
	border-bottom: 1px solid #ccc;
	margin-left: 15px;
}

.swap-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 10px;
}

.swap-container img {
	height: auto;
	width: 5vw;
}

.date-box-container {
	/* display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px; */
	margin-top: 18px;
	width: 100%;
	position: relative;
}

.date-box-button {
	overflow: hidden;
	width: 95%;
	margin-top: 5px;
}

.date-item {
	background-color: rgba(255, 255, 255, 0.94);
	border-radius: 5px;
	/* padding: 10px; */
	flex: 1;
	/* margin-top: 13px;  dont enable it */
}

.new-date-item {
	background-color: rgba(255, 255, 255, 0.94);
	border-radius: 5px;
	/* padding: 10px; */
	flex: 1;
	/* margin-top: 15px; */
}

.date-label-contaner {
	width: 100%;
	margin-top: 15px;
}

.dateLabel {
	color: #aaa;
	font-size: 10px;
}

.date-value-contaner {
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: center;
	margin-top: 5px;
}

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

.primary-color {
	background-color: #fc763b;
}

.search-button-container {
	height: 40px;
	margin-top: 35px;
	border-radius: 5px;
}

.pb-button {
	/* height: 100%; */
	width: 100%;
	background-color: var(--primary-color);
	padding: 12px 0px;
	justify-content: center;
	align-items: center;
	align-self: center;
	height: 11vw;
	border-radius: 8px;
	color: #fff;
	font-size: 17px;
	max-height: 44px;
	border: none;
	font-family: "DMSans-Light";
}

.pb-button[disabled] {
	background-color: #ccc;
}

.pb-button div,
.pb-button span {
	color: #fff;
}

button.pb-button.secondary-button,
button.pb-button.secondary-button span {
	background-color: var(--primary-light-color);
	color: var(--primary-color);
}

button.pb-button.normal-button,
button.pb-button.normal-button span {
	background-color: #fff;
	color: var(--primary-color);
}

button.pb-button.primary-button,
button.pb-button.primary-button span {
	background-color: #fff;
	color: var(--primary-color) !important;
	border: 0.5px solid rgba(255, 143, 69, 1);
}

/* button.pb-button.secondary-button-white,
button.pb-button.secondary-button-white span {
	background-color: #fff ;
	color: #464647 ;
	border: 0.5px solid rgba(192, 192, 192, 0.7) ;
} */

.buttons-container button.pb-button.secondary-button {
	margin-top: 10px;
}

.white-button span {
	color: rgb(252, 131, 50);
	background-color: rgb(255, 255, 255);
}

.pb-button-else {
	height: 11vw;
	width: 100%;
	background-color: var(--primary-color);
	justify-content: center;
	align-items: center;
	align-self: center;
	border-radius: 8px;
}

.pb-button-else-else {
	height: 11vw;
	width: 100%;
	background-color: #ddd;
	justify-content: center;
	align-items: center;
	align-self: center;
	border-radius: 8px;
}

.button-seat-selected {
	/* margin-bottom: 15px; */
	width: 90%;
	height: 44px;
	border: 0;
	/* height: 11vw; */
}

.pb-button-text-container {
	display: flex;
	/* flex:1; */
	width: 100%;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pb-button-text {
	text-align: center;
	color: #ffffff !important;
	background-color: transparent;
}

.bottom-strip-container {
	width: 100%;
	display: flex;
	flex: 1;
	position: absolute;
	bottom: 0;
	flex-direction: row;
	align-items: center;
	height: 50px;
	justify-content: space-evenly;
}

.bottom-strip-item-container {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.bottom-menu-icon {
	margin-bottom: 3px;
	height: 18px;
}

.bottom-menu-label {
	font-size: 10px;
	color: #fff;
}

.side-menu-main-container {
	display: flex;
	flex: 1;
	background-color: #fff;
	justify-content: space-between;
}

.menu-item-list {
	/* margin-top: 10px;
	margin-top: 20px; */
	margin-top: 10px;
}

.side-menu-item {
	height: 40px;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	padding: 5px 30px;
	/* padding: 5px 25px; */
	/* padding: 5px 16px; */
}

.side-menu-item .item-inner {
	--border-width: 0;
}

.side-menu-item img {
	height: auto;
	width: 20px;
	width: 20px;
	width: 18px;
}

.side-menu-item .side-menu-label {
	padding-left: 10px;
}

.home-icon-sprite {
	display: inline-block;
	overflow: hidden;
	background-repeat: no-repeat;
	background-image: url(/assets/sprite/home-sprite.png);
}

.home-icon-sprite.bl {
	width: 32px;
	height: 32px;
	background-position: 0.892857% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.buy-in-cash {
	width: 32px;
	height: 32px;
	background-position: 16.0714% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.chat {
	width: 32px;
	height: 32px;
	background-position: 31.25% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.contact {
	width: 32px;
	height: 32px;
	background-position: 61.6071% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.contact-us {
	width: 32px;
	height: 32px;
	background-position: 46.4286% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.fb {
	width: 32px;
	height: 32px;
	background-position: 76.7857% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.glossary {
	width: 32px;
	height: 32px;
	background-position: 91.9643% 0.892857%;
	background-size: 800%;
}

.home-icon-sprite.group {
	width: 32px;
	height: 32px;
	background-position: 0.892857% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_avatar_circular {
	width: 32px;
	height: 32px;
	background-position: 16.0714% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_contact {
	width: 32px;
	height: 32px;
	background-position: 31.25% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_discuss_issue {
	width: 32px;
	height: 32px;
	background-position: 46.4286% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_group {
	width: 32px;
	height: 32px;
	background-position: 61.6071% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_info {
	width: 32px;
	height: 32px;
	background-position: 76.7857% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_my_trips {
	width: 32px;
	height: 32px;
	background-position: 91.9643% 16.0714%;
	background-size: 800%;
}

.home-icon-sprite.icon_promotions {
	width: 32px;
	height: 32px;
	background-position: 0.892857% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.icon_QR_code {
	width: 32px;
	height: 32px;
	background-position: 16.0714% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.in {
	width: 32px;
	height: 32px;
	background-position: 31.25% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.info {
	width: 32px;
	height: 32px;
	background-position: 46.4286% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.log-out {
	width: 32px;
	height: 32px;
	background-position: 61.6071% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.movements {
	width: 32px;
	height: 32px;
	background-position: 76.7857% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.my-account {
	width: 32px;
	height: 32px;
	background-position: 91.9643% 31.25%;
	background-size: 800%;
}

.home-icon-sprite.my-movements {
	width: 32px;
	height: 32px;
	background-position: 0.892857% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.my-tickets {
	width: 32px;
	height: 32px;
	background-position: 16.0714% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.pencil {
	width: 32px;
	height: 32px;
	background-position: 31.25% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.profile {
	width: 32px;
	height: 32px;
	background-position: 46.4286% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.promo {
	width: 32px;
	height: 32px;
	background-position: 61.6071% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.promotion {
	width: 32px;
	height: 32px;
	background-position: 76.7857% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.qr-code {
	width: 32px;
	height: 32px;
	background-position: 91.9643% 46.4286%;
	background-size: 800%;
}

.home-icon-sprite.rate-us {
	width: 32px;
	height: 32px;
	background-position: 0.892857% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.scan {
	width: 32px;
	height: 32px;
	background-position: 16.0714% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.terms {
	width: 32px;
	height: 32px;
	background-position: 31.25% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.tickets {
	width: 32px;
	height: 32px;
	background-position: 46.4286% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.transfer-money {
	width: 32px;
	height: 32px;
	background-position: 61.6071% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.tw {
	width: 32px;
	height: 32px;
	background-position: 76.7857% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.user {
	width: 32px;
	height: 32px;
	background-position: 91.9643% 61.6071%;
	background-size: 800%;
}

.home-icon-sprite.wallet {
	width: 32px;
	height: 32px;
	background-position: 0.892857% 76.7857%;
	background-size: 800%;
}

.home-icon-circular-sprite {
	display: inline-block;
	overflow: hidden;
	background-repeat: no-repeat;
	background-image: url(/assets/sprite/home-circular-sprite.png);
}

.home-icon-circular-sprite.airport-transfer-circle {
	width: 96px;
	height: 96px;
	background-position: 71.1538% 24.0385%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.bip-circle {
	width: 96px;
	height: 96px;
	background-position: 0.480769% 0.480769%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.bus-circle {
	width: 96px;
	height: 96px;
	background-position: 47.5962% 0.480769%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.camera-add-circle {
	width: 96px;
	height: 96px;
	background-position: 24.0385% 0.480769%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.carpool-circle {
	width: 96px;
	height: 96px;
	background-position: 71.1538% 0.480769%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.icon_kupos-go {
	width: 96px;
	height: 96px;
	background-position: 94.7115% 0.480769%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.icon_kupos_premium {
	width: 96px;
	height: 96px;
	background-position: 94.7115% 24.0385%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.recharge-circle {
	width: 96px;
	height: 96px;
	background-position: 0.480769% 47.5962%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.scan-circle {
	width: 96px;
	height: 96px;
	background-position: 0.480769% 24.0385%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.train-circle {
	width: 96px;
	height: 96px;
	background-position: 47.5962% 24.0385%;
	background-size: 533.333%;
}

.home-icon-circular-sprite.transfer-circle {
	width: 96px;
	height: 96px;
	background-position: 24.0385% 24.0385%;
	background-size: 533.333%;
}

.side-menu-item div.home-icon-sprite {
	width: 18px;
	height: 18px;
}

div.home-icon-circular-sprite.size60 {
	width: 60px !important;
	height: 60px !important;
}

div.home-icon-circular-sprite.size50 {
	width: 50px !important;
	height: 50px !important;
}

div.home-icon-circular-sprite.size55 {
	width: 55px !important;
	height: 55px !important;
}

.welcome-image-container {
	display: flex;
	flex: 1;
	align-items: center;
	/* align-items: flex-end; */
	/* justify-content: center; */
	padding: 25px;
	padding-top: 40px;
}

.welcome-image-container-not-loggedin {
	display: flex;
	flex: 1;
	align-items: center;
	/* align-items: flex-end; */
	/* justify-content: center; */
	padding: 25px;
	padding-top: 40px;
}

.welcome-image {
	width: auto;
	height: 60px;
}

.welcome-image-circle {
	height: 55px;
	width: 55px;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	/* align-items: center;
  justify-content: center;
  background-color: #ccc; */
	/* background-image: url('/assets/carpool/camera-add-circle.png'); */
	background-size: cover;
	background-position: center;
}

.welcome-image-logged-in {
	background-position: center center;
	height: 55px;
	width: 55px;
	overflow: hidden;
	border-radius: 50%;
}

.upload-image-div {
	/* image-orientation: from-image; */
}

.show-strip {
	height: 80px;
	width: 100%;
	margin: 10px 20px;
	margin-right: 50px;
	background-color: #fc763b;
	border-radius: 20px;
}

.pink-box {
	background-color: #fde9e0;
	height: 8vh;
	border-radius: 10px;
	margin: 0px 20px;
	/* margin-bottom:20px; */
}

.welcome-container {
	display: flex;
	flex: 1;
	flex-direction: row;
	align-items: center;
}

.welcome-image-container {
	padding: 20px;
	padding-top: 35px;
	padding-top: 35px;
	padding-top: 25px;
}

.user-name-container {
	justify-content: center;
	margin-left: 10px;
}

.input-container {
	margin-bottom: 10px;
}

.input-50 {
	min-height: 50px !important;
	max-height: 50px !important;
}

.input-box-shadow {
	box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
}

.search-input-container input {
	box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
	margin-bottom: 10px;
}

.text-input {
	width: 100%;
	border-color: #ccc;
	border-width: 1px;
	border-radius: 10px;
	padding: 10px;
}

.loader-container {
	width: 100vw;
	height: 75vh;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.model-top-strip {
	padding: 15px 15px;
	display: grid;
	grid-template-columns: 1fr 6fr 1fr;
	grid-gap: 10px;
	background-color: #fc763b;
	z-index: 99;
	width: 100%;
}

.model-top-strip a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.white-model-top-strip {
	padding: 15px 20px;
	background-color: #fff;
	z-index: 99;
	width: 100%;
}

.model-top-strip img {
	width: auto;
	height: 20px;
	filter: invert(1);
}

.model-top-strip-label {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

textarea {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 10px;
	min-height: 80px;
	padding: 10px;
	font-family: "DMSans-Light";
}

.select-city-body {
	height: 90%;
	max-height: 90%;
}

.select-city-body .select-city-body-inner {
	height: 100%;
	padding: 20px;
	padding-top: 0px;
}

.select-city-body .select-city-body-inner .PB-input-container {
	position: relative;
}

.city-list {
	height: 90%;
}

.city-list-scroll {
	height: 100%;
	overflow-y: auto;
	max-height: 84vh;
}

.city-list .city-box-item {
	flex-direction: row;
	width: 100%;
	align-items: center;
	/* height: 35px; */
	height: 32px;
}

.city-list .city-icon-container {
	width: 30px;
}

.city-list .city-icon-container img {
	width: auto;
	height: 21px;
}

.city-list .city-icon-container.at {
	width: 24px;
}

.city-list .city-icon-container.at img {
	width: auto;
	height: 18px;
}

.city-box-search-icon {
	height: 20px;
	width: auto;
}

/* Service List Screen */

.service-list-container {
	flex: 1;
}

.service-list-header {
	/* position: fixed;  */
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
}

.service-list-header+* {
	margin-top: 165px;
}

.travel-details-header-container {
	padding: 2px;
	z-index: 100;
	/* background-color: #fff; */
	z-index: 1;
	padding-top: 0;
	position: sticky;
	/* top: 48px; */
}

.travel-details-header-container .from-to {
	text-align: center;
}

.travel-details-header-container .date-details-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
	margin-bottom: 6px;
	text-transform: capitalize;
}

.date-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
}

.date-arrow img {
	height: 16px;
	width: auto;
	/* filter: invert(1); */
	/* box-shadow: inset 0px 0px 64px 64px cornflowerblue, 0px 0px 4px 4px cornflowerblue; */
}

.travel-date {
	margin: 0px 20px;
}

.sort-strip-container-outer {
	position: sticky;
	/* top: 96px; */
	background-color: #fff;
	z-index: 100;
	border: 1px solid #fff;
}

.sort-strip-container {
	text-align: center;
	padding: 5px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	overflow-x: hidden;
	color: #fff !important;
	position: relative;
	/* margin: 0 15px; */
}

.sort-strip-container.padding-right {
	padding-right: 20px;
	/* overflow-x: scroll; */
}

.sort-strip-container.padding-left {
	padding-left: 20px;
}

.sort-strip-container .scrollitem {
	min-width: 100%;
	transition: 0.2s all ease-in-out;
}

.sort-strip-container .sort-scroll-arrow {
	position: absolute;
	width: 25px;
	top: 10px;
	top: 0;
	z-index: 99;
	height: 100%;
	display: flex;
	padding: 0 3px;
	background-color: var(--secondary-color);
}

.sort-strip-container .sort-scroll-arrow img {
	width: 18px;
	height: auto;
}

.sort-strip-container .sort-scroll-arrow.right {
	right: -0px;
}

.sort-strip-container .sort-scroll-arrow.left {
	left: -0px;
}

.sort-strip-container img.sort-strip-img {
	filter: inherit;
	height: 20px;
	width: auto;
	margin-left: 3px;
}

.sort-strip-container img.sort-strip-img.desc {
	transform: rotate(180deg);
}

.view-flex {
	width: 100%;
	align-items: center;
	z-index: 1;
}

.sort-item {
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	display: flex;
	width: 33%;
	max-width: 33%;
}

.sort-item-last {
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	display: flex;
}

.sort-item-inner {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.sort-item-inner .sort-item-name {
	color: #fff !important;
}

.sort-item-inner img {
	width: 20px;
	max-width: initial;
}

.sort-item-inner>div {
	margin-right: 8px;
}

.sort-item-inner .whitebg {
	background-color: #fff;
	border-radius: 50%;
	padding: 4px;
	width: 28px;
	height: 28px;
}

.sort-strip-img {
	height: auto;
	width: 25px;
	filter: invert(1);
}

.sort-strip-filter-item {
	height: 100%;
	display: flex;
}

.list-item-container {
	margin-left: 15px;
	margin-right: 15px;
}

.list-item-container .offer-text {
	/* text-align: center; */
	padding: 3px;
	padding-left: 10px;
	background-color: var(--primary-color-2);
	color: #fff;
	padding-top: 14px;
	margin-top: -30px;
	position: relative;
	/* border-radius: 0px 0px 6px 6px; */
	/* padding: 18px 15px 6px 15px; */
	display: flex;
	align-items: center;
	/* margin-bottom: 16px; */
	/* border-radius: 0px 0px 6px 6px; */
	border-radius: 0px 0px 13px 13px;

	padding: 17px 15px 10px 15px;
	/* display: flex;
	align-items: center; */
	/* margin-bottom: 16px; */
	z-index: -1;
}

.list-item-container .offer-text1 {
	/* text-align: center; */
	padding: 3px;
	padding-left: 10px;
	background-color: var(--primary-color-2);
	color: #fff;
	padding-top: 14px;
	margin-top: -10px;
	position: relative;
	/* border-radius: 0px 0px 6px 6px;
	padding: 15px 15px 6px 15px; */
	/* display: flex;
	align-items: center; */
	margin-top: -30px;
	position: relative;
	/* border-radius: 0px 0px 6px 6px;
	padding: 15px 15px 6px 15px; */
	border-radius: 0px 0px 13px 13px;
	padding: 19px 15px 10px 15px;
	display: flex;
	align-items: center;
	z-index: -2;
	/* margin-bottom: 16px; */
}

.list-item-container .offer-text,
.list-item-container .offer-text1 img {
	/* margin-top: 2px; */
}

.list-item-container .offer-text span.offer-percent {
	margin-right: 5px;
}

.item-container {
	width: 100%;
	/* display: grid;
  grid-gap: 5px;
  grid-template-columns: .85fr .05fr 1.5fr 1fr; */
}

.border-bottom-item-list {
	border-bottom: 1px solid #343434;
}

.item-container .v-line {
	height: 100%;
	border-right: 1px solid #ccc;
}

.item-container .rating {
	/* margin:4px 0 9px 0; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 6px;
}

.item-container .rating img {
	margin-right: 3px;
}

.service-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}

.amenities-date {
	min-width: 55%;
	margin-right: 10px;
	display: flex;
	flex-direction: column;
	align-items: baseline;
	justify-content: space-between;
	/* min-height: 40px; */
}

.amenities-date .date-item-service {
	min-width: 17vw;
	/* background-color: red; */
}

.seperator-dot {
	width: 4px;
	height: 4px;
	background: #000;
	border-radius: 5px;
	margin-right: 6px;
	margin-left: 2px;
	margin-top: 0px;
	display: inline-block;
	min-width: 4px;
}

.time-row-outer {
	/* margin-bottom: 12px; */
	display: flex;
	align-items: center;
}

.timer_wrapper {
	position: absolute;
	right: 20px;
	top: 10px;
	top: 20px;
}

.time-row-outer:nth-child(2) {
	/* margin-top: 12px; */
}

.origin_date_container {
	height: 38px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.time-row.flex-row {
	/* align-items: center; */
}

.amenities-date .date-row {
	width: 100%;
	text-transform: capitalize;
	margin-top: 3px;
}

.time-seperator {
	margin-left: 5px;
	margin-right: 5px;
	flex: 1 1;
	text-align: center;
	position: relative;
	top: 3px;
}

.time-seperator img {
	position: relative;
	top: -6px;
}

.thirtypx-space {
	margin: 0px 5px;
}

.service-details .time-row {
	width: 100%;
	justify-content: flex-start;
	margin: 5px 0;
	margin-bottom: 2px;
}

.service-details .time-row span.ampm {
	margin-left: 2px;
}

.time-row span.ampm {
	margin-left: 2px;
}

.bottom-op-name {
	/* width: 20vw; */
	/* max-width: 30vw; */
}

.service-details .duration-hours {
	text-align: center;
	margin: 0 5px;
	position: relative;
	flex: 1;
}

.service-details .duration-hours span {
	display: block;
}

.service-details .duration-hours img {
	position: absolute;
	width: 100%;
	left: 0;
	/* top: 45%; */
}

.service-details .duration-hours span.hours {
	display: inline-block;
	margin-top: 3px;
}

/* .service-details{
  align-items:flex-start; 
  margin-top:321px;
} */
.horizonatl-line {
	/* height: 0.1px; */
	background-color: rgb(192, 192, 192, 0.6);
	margin-left: -12px;
	margin-right: -12px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.amenities-rating-main-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* display: grid; */
	grid-template-columns: 1.5fr 1fr 1fr;
}

.amenities-rating-main-container.all_items {
	/* grid-template-columns: 1.3fr 1.2fr 1fr 1fr; */
	grid-template-columns: 1.7fr 1.2fr 1fr 1fr;
}

.amenities-container-op-name {
	font-size: 10px;
}

.amenities-container {
	display: flex;
	position: relative;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-end;
	/* width:100%; */
	/* margin-top: 5px; */
}

.amenities-container.all_items {
	justify-content: center;
}

.change_ticket_pet_seat_wrapper {
	display: flex;
	position: relative;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}

.sold-out-text {
	width: 100%;
	align-items: flex-start;
	text-align: right;
}

.sold-service {
	/* opacity: 0.4; */
}

.sold-service span {
	color: #bbb !important;
}

.sold-service img {
	filter: grayscale(100%);
}

.sold-service.offer-text {
	background-color: #ccc;
}

.sold-service .boarding-stage-ui {
	background-color: #ccc;
}

.arrow {
	padding: 0px 10px 0px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* .op-name{
  font-size:12px;
  position:absolute;
  top:9px;
  left:20px;
} */
.op-name-row.flex-row {
	align-items: center;
	margin-bottom: 10px;
}

.operator-image {
	/* width: 29%; */
	/* width: 29%; */
	width: 25vw;
	height: auto;
	/* margin-left: -9px; */
	/* padding: 0px 10px; */
}

.on-name {
	/* width: 180px; */
	width: 120px;
	/* text-align: center; */
	margin-left: 10px;
}

.rating img {
	width: 10px;
	margin-left: 3px;
	margin-bottom: 2px;
}

.star-rating-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
}

.rating-bg {
	position: absolute;
	background-color: #fa8039;
	height: 15px;
	/* width: 40px; */
	display: flex;
	margin-top: 3px;
	margin-left: 10px;
}

.rating-stars {
	position: relative;
	width: auto;
	height: 18px;
	padding: 0px 10px;
	z-index: 1;
}

.rating-badge-text-container {
	position: absolute;
	align-items: center;
	justify-content: center;
	margin-left: 4px;
	/* width:22px */
}

.rating-badge-text {
	font-size: 8px;
	color: #fff;
	text-align: center;
}

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

.service-details-row {
	/* display: flex; */
	/* align-items: baseline; */
	height: 35px;
}

/* .service-details-row  */
.service-pet {
	display: flex;
	align-items: center;
}

/* .service-details-row  */
.service-pet .pet-icon {
	margin-right: 3px;
	margin-top: -2px;
	width: 14px;
	height: auto;
}

.date_seat_and_price {
	/* min-height: 48px; */
	min-height: 40px;
}

.seat-type-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	/* align-items: center; */
	/* height: 20px;
  margin-top: 2px; */
	gap: 12px;
}

.seat-type-container-big {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	/* align-items: center; */
}

.seat-type-container.single-service {
	margin-top: 23px;
}

.seat-type-container .secondary-font {
	color: #f47373;
}

.seat-type-container:nth-child(2),
.seat-type-container:nth-child(3) {
	/* margin-top: 9.2px; */
	margin-top: 3.4px;

}

.seat-type-container-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	/* height: 44px; */
	justify-content: center;
}

.seat-type-rows-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

/* .op-name{
  position:absolute;
  top:9;
  left:100
} */

.amenity {
	margin-right: 5px;
}

.three-row-grid {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
}

/*Loader Modal*/
.loader-container {
	flex: 1;
}

.loader-from-to-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 80px;
	text-align: center;
}

.loader-travel-date {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 5px;
}

.bus-icon {
	position: absolute;
	bottom: 0px;
}

.animation-container {
	margin-top: 10px;
}

.animation-container .loader-scene-img {
	width: 100%;
}

.loader-white-line {
	width: 100%;
}

/* .model-top-strip{
  width: 100%;
  position: fixed;
} */

.service-details-container {
	height: calc(100dvh - 106px);
	display: flex;
	flex-direction: column;
	/* overflow: hidden; */
}

.seat-layout-container {
	display: flex;
	width: 100%;
	overflow: hidden;
	padding: 10px 20px;
	/* height: calc(98vh - 55px - 170px); */
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	height: calc(100dvh - 244px);
}

.train-layout-container {
	grid-template-columns: 1fr 1.9fr;
}

.seat-layout-h-line {
	/* border-top: 1px solid #ccc; */
	border-top: 0.5px solid #c0c0c0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1px 20px;
	margin: 5px 20px;
}

.legend-row-container {
	margin-bottom: 8px;
}

.floor-tabs-container {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
	position: absolute;
	width: 100%;
	top: 0px;
	z-index: 999;
}

.floor-tabs {
	display: flex;
	width: auto;
	background-color: #ccc;
	border-radius: 16px;
	margin-bottom: 5px;
}

.selected-floor,
.floor-tabs .active {
	background-color: var(--primary-color);
	border-radius: 20px;
	padding: 5px;
}

.floor-tabs .tab-item-outer {
	border-radius: 20px;
	padding: 7px 12px;
	align-items: center;
	justify-content: center;
}

.deselected-floor {
	border-radius: 20px;
	padding: 5px;
}

.seat-details {
	/* height: 100%; */
	padding: 20px 4px 20px 0;
	display: flex;
	flex-direction: column;
	/* flex: 1; */
	justify-content: space-between;
	/* height: calc(90vh - 210px); */
	height: 100%;
}

.seat-types {
	flex: 1;
	margin-bottom: 10px;
}

.legend-row {
	display: flex;
	flex-direction: row;
	margin-top: 20px;
	align-items: center;
}

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

.legend-circle.available {
	background-color: #f6a3c8;
	border-color: #bfbfbf;
}

.legend-circle.selected {
	background-color: #572a85;
	border-color: #bfbfbf;
}

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

.seat-row {
	padding: 0px 10px;
	display: grid;
	grid-template-columns: 1fr 1fr 24px 1fr 1fr;
	row-gap: 4px;
	column-gap: 2px;
}


.seat-row-small {
	padding: 0px 10px;
	display: grid;
	grid-template-columns: 1fr 1fr 24px 1fr;
	row-gap: 4px;
	column-gap: 2px;

}

.seat_item_wrapper {
	position: relative;
	/* padding: 4px; */
	/* padding: 5px 5px;
  align-items: center;
  margin: 5px 0; */
	width: 36px;
	/* height: 36px; */
}

.train-seat-layout-inner .seat_item_wrapper {
	width: 32px !important;
	padding: 0px 0;

	&.descrease_seat {
		width: 30px !important;
	}
}

.seat_item_wrapper.normal-dir {
	transform: rotate(180deg);
}

.seat_item_wrapper img {
	/* transform: rotate(90deg); */
	width: 100%;
	max-width: 100%;
}

.train-seat-gangway {
	width: 24px;
}

.seat_item_wrapper .steering-img {
	width: 23px;
	/* margin: 0 2px; */
	transform: rotate(90deg);
	margin-left: 6px;
	margin-bottom: 6px;
}

.seat-number {
	position: absolute;
	top: 0%;
	/* top: -3%; */
	left: 0;
	/* bottom: 10px; */
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.train-seat-layout-inner .seat-number {
	top: 4%;
}

.seat_item_wrapper.normal-dir .seat-number {
	transform: rotateY(180deg) rotate(180deg);
}

.seat_item_wrapper.reverse-dir .seat-number {
	transform: rotateY(180deg);
}

.train-seat-layout-inner .seats-dir-gap {
	/* height: 25px; */

	.tren_direction {
		background-color: var(--secondary-light-color);
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80%;
		margin: 12px auto;
		transform: rotatey(180deg);
		padding: 6px;
		border-radius: 24px;

		.tren_direction_text {
			margin: 0 10px;
			color: var(--secondary-color);
		}
	}
}

.seat_name_in_coach {
	/* background-color: #faf1ec; */
	padding: 7px 10px;
	border-radius: 31px;
	align-items: center;
	display: flex;
	width: fit-content;
	margin-left: 20px;
	margin-top: 10px;
}

.button-inner-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 6px 20px;
	align-items: center;
	/* border-bottom: 0.1px solid var(--primary-color); */
}

.drop-down-button-icon {
	margin-right: 7px;
}

.seat-type-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
}

.pet-seat-info-container {}

.pet-seat-info-container .pet-seat-info {
	margin: 10px 0;
	display: flex;
	align-items: center;
}

.pet-modal .pet-modal-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin-top: -20px; */
}

.pet-modal .pet-modal-icon img {
	width: 80px;
}

.pet-modal .pet-modal-title {
	text-align: center;
	margin-top: 5px;
}

.pet-modal .pet-modal-title-underline {
	height: 3px;
	background: #f6ca3d;
	width: 50px;
	margin: auto;
	margin-top: 5px;
}

.pet-modal .pet-modal-subtitle {
	margin-top: 10px;
	text-align: center;

	/* margin-top: 10px; */
	text-align: center;

	width: 240px;
	margin: 10px auto;
}

.pet-modal .pet-modal-list {
	margin-top: 10px;
}

/* .pet-modal .pet-modal-list span .pet-modal-list-dot {
	width: 7px;
	height: 7px;
	min-width: 7px;
	background-color: var(--corporate-blue);
	display: inline-block;
	border-radius: 50%;
	margin-right: 12px;
} */

.pet-modal-list-dot {
	width: 5%;
	height: 2px;
	min-width: 5px;
	margin-top: 7px;
	/* background-color: var(--corporate-blue); */
	background-color: black;
	display: inline-block;
	/* border-radius: 50%; */
	margin-right: 12px;
}

.pet-modal .pet-modal-list .pet-modal-list-item {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.pet-modal .pet-modal-button {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.pet-modal .pet-modal-list .pet-modal-terms {
	padding-left: 19px;
}

.seat-layout-inner {
	/* border-left: 1px solid #ccc; */
	padding: 10px 0;
	flex: 1 1;
	height: 98%;
	overflow: scroll;
	margin: 5px 0px;
	/* margin-top: 17px; */
}

.main-seat-layout-container {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
	overflow: hidden;
}

.seats-section-container {
	/* height: calc(60vh - 17px); */
	border: 1px solid #ccc;
	border-radius: 10px;
	margin-top: 17px;
	padding-top: 10px;
	flex: 1;
	/* max-height: calc(96% + 10px); */
	height: calc(90dvh - 240px);
	/* height: 100%; */
	background-color: #fafafa;
}

.seats-section-container-train {
	/* height: calc(60vh - 17px); */
	border: 1px solid #ccc;
	border-radius: 10px;
	margin-top: 17px;
	padding-top: 10px;
	flex: 1;
	max-height: calc(96% + 10px);
}

.seat-type-item .seat-type-show-image {
	width: 30px;
	height: 30px;
}

.driver {
	height: 30px;
	width: 30px;
	padding-top: 10px;
	padding-left: 15px;
	padding-bottom: 10px;
}

.selected-seats-container {
	height: 60px;
	padding: 0px 10px;
	background-color: #fff;
	margin-top: 5px;
	padding-bottom: 5px;
}

.selected-seats-container-inner {
	border: 1px solid var(--primary-color);
	border-radius: 8px;
	width: auto;
	padding: 0px;
	flex: 1;
	height: 100%;
	display: flex;
	margin: 0px 10px;
	justify-content: center;
}

.floor-and-seats-section {
	display: flex;
	flex-direction: column;
	position: relative;
	min-width: 180px;
	top: 0px;
	padding-bottom: 15px;
	/* height: calc(90vh - 210px); */
	height: calc(100dvh - 256px);
}

.emptydiv {
	height: 65px;
	padding: 6px 10px;
	opacity: 0.5;
}

.seat-types-fare {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1;
	flex-direction: column;
}

.seat-type-numbers {
	display: flex;
	flex-direction: row;
}

.seat-type-number-item {
	border-left: 1px solid #ccc;
	padding: 0px 5px;
	margin: 0px 5px;
}

.seat-type-number-text {
	font-size: 13px;
}

.fare-details-text {
	/* font-size:14px; */
}

.seat-layout-inner-container {
	height: 100%;
	/* overflow: scroll; */
}

.tab-item {
	padding: 5px 10px;
}

.seat-type-item {
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.seat-type-item img {
	margin-right: 10px;
	transform: rotate(90deg);
}

.border-top {
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	padding: 5px 10px;
}

.border-bottom {
	border-bottom: 1px solid #ccc;
	padding: 5px 10px;
}

.seat-details-label-first {
	background-color: #572a85;
	padding: 1px 15px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-container {
	margin-bottom: 10px;
}

.booking-detail-container {
	width: 100%;
}

.origin-dest-text-container {
	padding: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.cityname {
	display: flex;
	/* flex:1; */
	align-items: flex-end;
	padding-right: 3px;
	/* color: var(--primary-color); */
}

.origin-dest-text {
	font-size: 16px;
	text-align: center;
}

.origin-dest-card-container {
	height: 87vh;
	overflow: scroll;
	position: relative;
	border-radius: 10px;
}

.origin-dest-card-container hr {
	height: 0;
	border-top: 1px solid #ccc;
}

.origin-dest-card-container .kupos-card {
	margin-top: 5px;
}

.origin-dest-card-container .ion-dropdown {
	--padding-start: 0;
	--padding-end: 0;
}

.pb-select .ion-dropdown {
	display: flex;
	align-items: center;
	width: 100%;
	--padding-start: 10px;
	height: 11vw;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.ion-dropdown {
	display: flex;
	align-items: center;
	width: 100%;
	--padding-start: 0px;
	height: 11vw;
	margin-top: 5px;
	/* border: 1px solid #ccc; */
	border-radius: 8px;
}

.op-name {
	display: flex;
	width: 100%;
}

.op-label-text {
	font-size: 18px;
}

.op-name-text {
	font-size: 18px;
}

.service-bus-details {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.date-details {
	padding: 10px;
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.date-text {
	font-size: 25px;
}

.booking-input-item {
	margin-top: 15px;
	padding-bottom: 1px;
}

.checkbox-passenger-return {
	display: flex;
	margin: 10px 0px;
	align-items: center;
}

.passenger-return-checkbox-new {
	--background-checked: var(--secondary-color);
	--border-color: var(--secondary-color);
	--border-color-checked: var(--secondary-color);
	margin-right: 10px;
}

.common-checkbox {
	--background-checked: var(--secondary-color);
	--border-color: var(--secondary-color);
	--border-color-checked: var(--secondary-color);
	margin-right: 10px;
}

.passenger-input-container-inner {
	margin: 12px 0px;
}

.passenger-details-button {
	width: 100%;
	position: relative;
	top: 5px;
	margin: 10px 0;
}

.passenger-promo-code-container-parent {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 6px;
}

.touchable-opacity {
	margin-top: 10px;
}

.v-line {
	height: 30px;
	border-right: 1px solid #343434;
}

.service-detail-rows {
	flex: 1;
	justify-content: center;
}

.service-detail-row {
	display: flex;
	font-size: 11px;
	width: 100%;
	padding: 2px 10px;
}

.service-detail-row-label {
	width: 65px;
}

.service-detail-row-value {
	flex: 1;
}

.seat-details-label {
	display: flex;
	width: 100%;
	font-size: 14px;
	align-items: center;
}

.v-lign-seat-details {
	height: auto;
	border: 0.1px solid #ccc;
	width: 1px;
}

.seat-details-label-seat {
	padding: 5px;
	display: flex;
	margin-top: 4px;
	flex-direction: row;
}

.selected-item-text-container {
	flex: 1;
}

.drop-down-button-text {
	color: var(--primary-color);
	font-size: 14px;
}

.icon-container {
	height: 100%;
	align-items: center;
	width: 50px;
}

.list-item {
	width: 84vw;
	display: flex;
	padding: 10px;
}

.list-item-text {
	margin-left: 10px;
	font-size: 14;
}

.arrow {
	margin-right: 10px;
}

.error-text-container {
	padding: 0px 2px;
}

.error-text {
	color: #f00;
	font-size: 11px;
}

.label-text-container {
	padding: 0px 2px;
}

.label-text {
	color: var(--primary-color);
	font-size: 14px;
}

.modal-dropdown-button {
	justify-content: center;
}

.modal-dropdown-button-text {
	font-size: 12;
}

.modal-dropdown-modal {
	flex-grow: 1;
}

.modal-dropdown {
	position: absolute;
	height: 100;
	border: 100px solid lightgrey;
	border-radius: 2px;
	background-color: white;
	justify-content: center;
	/* elevation: 3,
  shadowColor: "#000",
  shadowOpacity: 0.88,
  shadowOffset: { width: 3, height: 3 },
  shadowRadius: 3 */
}

.row-text {
	padding: 10px 6px;
	font-size: 11px;
	color: gray;
	background-color: white;
	text-align: "center";
}

.modal-seperator {
	height: 100;
	background-color: lightgray;
}

.PB-input-container {
	width: 100%;
	/* min-height: 60px; */
}

.input-wrapper {
	border: 1px solid #ccc;
	border-radius: 8px;
	display: flex;
	height: 100%;
	align-items: center;
	/* margin-top: 4px; */
	width: inherit;
	padding: 5px 10px;
}

.input-wrapper.disabled,
.input-wrapper.disabled input {
	/* background-color: #f3f3f3 !important; */
	background-color: #fff !important;
}

.PB-input-icon-ontainer {
	height: 100%;
	width: 40px;
	align-items: center;
	justify-content: center;
}

.icon-container-right {
	height: 100%;
	width: 40px;
	align-items: center;
	justify-content: center;
}

/* .text-input{
  height: 100%;
  padding:0px 10px;
  color:var(--primary-color);
  font-size:14px;
  flex:1;
  margin:0px;
} */

.payment-card {
	padding: 10px;
	margin-bottom: 10px;
}

.show-password-container {
	height: 100%;
	width: 36px;
	align-items: center;
	justify-content: center;
}

.error-text-container {
	padding: 0px 2px;
}

.error-text {
	color: #f00;
	font-size: 11px;
}

.PB-text-input {
	height: 100%;
	flex: 1 1;
	margin: 0px;
	padding-right: 0px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
	font-size: 16px;
	font-family: "DMSans-Regular", sans-serif !important;
}

.seat-number-passenger-details {
	text-align: center;
	width: 100%;
	height: 100%;
	flex: 1 1;
	margin: 0px;
	padding-right: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radio-group-container {
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

.radion-button {
	width: 45%;
	margin: 0px 10px;
}

.radio-button-input {
	display: flex;
	padding: 2dp;
}

.outer-border-radio-button {
	border: 1px solid var(--secondary-color);
	height: 15px;
	width: 15px;
	align-self: center;
	border-radius: 12px;
	margin-right: 5px;
}

.inner-radio-button {
	background-color: var(--secondary-color);
	width: 8px;
	height: 8px;
	border-radius: 4.5px;
	align-items: center;
	margin-top: 2.5px;
	justify-content: center;
	display: flex;
	margin-left: 2.4px;
}

.passenger-details-continue-button {
	display: flex;
	justify-content: center;
	margin: 14px auto;
	border-radius: 5px;
}

.passenger-label-input {
	display: flex;
	flex-direction: column;
}

.passenger-label-input .input-wrapper,
.login-input-container .input-wrapper {
	min-height: 40px;
	height: 42px;
	max-height: 50px;
}

.passenger-details-booking-input-inner-top .input-wrapper {
	min-height: 40px;
	height: 42px;
	max-height: 50px;
}

.cuponera-input {
	display: grid;
	grid-template-columns: 2.5fr 1.5fr 0.8fr;
	align-items: end;
	gap: 10px;
}

.cuponera-payment-input-group {
	/* margin-top: 10px; */
}

.cuponera-payment-input-btn {
	margin-top: 10px;
}

.no-label-input {
	display: flex;
	flex-direction: column;
	width: 40px;

	/* width: 50px; */
}

.nombre-label-input {
	display: flex;
	flex-direction: column;
	width: 100%;
	/* margin-right: 2px; */
}

/* .apellido-label-input {
	display: flex;
	flex-direction: column;
	width: auto;
	margin-left: 5px;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-right: 2px;
} */

.apellido-label-input {
	display: flex;
	flex-direction: column;
	width: auto;
	/* margin-left: 5px; */
	margin-bottom: 10px;
}

.gender-label-input {
	display: flex;
	flex-direction: column;
	width: auto;
	margin-left: 5px;
}

.passenger-details-booking-input-inner-top {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	width: 100%;
	/* margin: 12px 0px; */
	/* align-items: flex-end; */
	gap: 10px;
}

.passenger-details-booking-inpute-inner-coupon {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 14px;
	width: 100%;
	/* margin: 7px 0px; */
}

.passenger-details-booking-inpute-inner {
	display: grid;

	grid-template-columns: 0.3fr 1fr 2fr;
	/* grid-template-columns: 0.4fr 1.1fr 1.2fr; */
	grid-gap: 10px;
	width: 100%;
	/* margin: 7px 0px; */
}

.drop-down-down-arrow {
	position: absolute;
	right: 0px;
	top: 13px;
}

.block-container {
	margin: 12px 0px;
}

.title-text {
	font-size: 16px;
}

.mobile-row {
	display: flex;
	width: 100%;
}

.note-text-container {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	/* margin-top: -10px; */
}

.note-icon-text {
	font-size: 40px;
	margin-left: 20px;
	margin-right: 10px;
}

.payment {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	align-content: space-between;
	margin-top: 20px;
	margin-bottom: 20px;
}

.payment-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-radion-button {
	border: 1px solid var(--primary-color-2);
	width: 14px;
	height: 14px;
	border-radius: 8px;
	align-self: center;
	justify-content: center;
	margin-right: 5px;
	align-items: center;
	display: flex;
}

.payment-button-inner {
	background-color: var(--primary-color-2);
	width: 8px;
	height: 8px;
	border-radius: 5px;
	align-self: center;
}

span.radio-label {
	position: relative;
	top: 2px;
	margin-left: 5px;
}

.payment-details {
	padding: 5px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.payment-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	font-size: 15px;
	margin: 2px 15px;
}

.promo-apply-btn span {
	margin-top: 2px;
}

.confirm-modal {
	margin-top: 10px;
}

.confirm-modal .line {
	margin: 10px 0px;
}

.confirm-row {
	display: flex;
}

.confirm-col {
	flex: 1;
	align-items: flex-start;
}

.confirm-row-column {
	display: flex;
	flex: 1;
	align-items: flex-start;
}

.confirm-text {
	color: var(--dark-font);
	font-size: 15px;
}

.hr {
	margin: 10px 0px;
}

.tabs-container {
	height: 30px;
	width: 100%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: block;
	align-items: center;
	justify-content: center;
}

.tabs-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
	z-index: 1;
}

.tabs-inner>.tab-item {
	flex: 1;
	height: 100%;
	padding: 4px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs-animation-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #ccc;
}

.tab-indicator {
	height: 100%;
	position: absolute;
	background-color: var(--primary-color-2);
	transition: all 0.2s ease-in-out 0s;
}

.promo-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 0px;
}

.promo-container-section {
	display: flex;
	flex-direction: row;
	padding-right: 10%;
	width: 100%;
	position: absolute;
	z-index: 9;
	height: 30px;
	align-items: center;
	display: grid;
	grid-template-columns: 1fr 7fr 2fr;
}

.payment-circle-checkbox {
	border: 1px solid #fff;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	align-items: center;
	display: flex;
	justify-content: center;
	margin-right: 10px;
}

.payment-circle-checkbox img {
	max-width: inherit;
}

.applied-promo-container {
	border-radius: 8px;
	border: 1px solid #ccc;
	width: 100%;
	display: flex;
	padding: 7px;
	padding-left: 10px;
	align-items: center;
	margin-top: 5px;
}

.applied-promo-container .trash-image {
	height: 20px;
	width: auto;
}

.star-animation-image {
	margin: auto;
	display: flex;
	height: 40px;
	/* margin-top: 20px; */
}

.thank-you-card {
	margin-top: 65px;
}

.note-icon {
	margin: 0px 10px;
}

.check-box-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.select-box-title {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 5px 0px;
	width: 100%;
}

.kupos-payment-card {
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0px 10px 10px 0px #ddd;
	box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
	z-index: 2;
	padding: 7px;
	margin: 15px;
	padding-bottom: 25px;
	padding-top: 10px;
}

.tnc-main-container {
	margin-top: 30px;
	margin-bottom: 10px;
	/* display: flex; */
	/* flex-direction: column; */
	text-align: center;
}

.payment-checkbox-new {
	--background-checked: var(--secondary-color);
	--border-color: var(--secondary-color);
	--border-color-checked: var(--secondary-color);
}

.promo-code-button {
	width: 100%;
	height: 11vw;
	border-radius: 8px;
	/* margin-top: 4px; */
	font-size: 15px;
}

.end-payment-button {
	width: 185px;
	height: 40px;
	margin: 10px auto;
	display: flex;
	border-radius: 8px;
}

.end-payment-button span {
	margin-top: 1px;
}

.payment-screen-seat-top {
	display: grid;
	grid-template-columns: 1fr 9fr;
}

.promocode-checkbox-new {
	--background-checked: #fc763b;
	--border-color: #fc763b;
	--border-color-checked: #fc763b;
}

.static-page {
	overflow: hidden;
}

.content-slider {
	overflow: scroll;
	margin-top: 50px;
}

.ion-dropdown-parent {
	width: 100px;
	margin-right: 10px;
}

.ion-dropdown {
	height: 33px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	width: 100%;
}

.ion-dropdown .select-dropdown {
	display: flex;
	width: 100%;
	/* width: 90vw !important; */
	min-width: -webkit-fill-available;
	/* min-width: 90vw !important; */
	padding: 0px;
	align-items: center;
}

.popover-content.sc-ion-popover-md {
	width: 65vw !important;
	left: 41px !important;
}

.select-text {
	min-width: 30px;
	font-size: inherit;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1 1 0%;
	overflow: hidden;
}

.input-wrapper .item-native {
	padding-left: unset;
	padding-right: unset;
	padding-inline-start: calc(var(--padding-start) + var(--ion-safe-area-left, 0px));
	padding-inline-end: var(--padding-end);
}

.input-outer-div {
	height: 40px;
}

.PB-input-container .input-wrapper {
	min-height: 40px;
	height: 11vw;
	/* max-height: 40px; */
	overflow: hidden;
	/* z-index: 1; */
	/* z-index: 1; */
}

.input-wrapper .country-code-container {
	/* height: 40px; */
	margin-top: -5px;
	margin-bottom: -5px;
	width: 38px;
	border-right: 1px solid #ccc;
	margin-right: 10px;
}

.input-wrapper .country-code-container input {
	height: 100%;
	width: 100%;
}

.code-and-phone-style {
	margin: 5px 0px;
	height: 95%;
	padding-top: 3px;
}

.modal-buttons-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}

.modal-button-container {
	flex: 1;
	align-items: center;
	justify-content: center;
	min-width: 100%;
	margin-bottom: 8px;
	align-self: center;
	margin-top: 25px;
}

.modal-buttons-container2 .modal-button-container:nth-child(2) {
	margin-top: 15px;
}

.model-dark-text {
	color: var(--dark-font);
	font-size: 15px;
}

.thank-you-icon-container {
	display: flex;
	width: 100%;
	/* padding: 10px; */
	padding-bottom: 0px;
	padding-top: 0px;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	max-height: 78vh;
}

.failure-container {
	position: relative;
}

.thank-you-button-style {
	width: 100%;
	/* margin: 0px auto; */
	display: flex;
	justify-content: center;
	margin-top: 15px;
	border-radius: 8px;
}

/* Login Page styling */

.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;
}

.show-password-container {
	height: 100%;
	width: 36px;
	align-items: center;
	justify-content: center;
}

.show-password-container .ion-icon {
	font: icon;
	--color: var(--primary-color);
}

.login-main-icon-container {
	display: flex;
	justify-content: center;
	margin-top: 5px;
	margin-bottom: 20px;
}

.login-main-icon-container img {
	height: 100px;
	width: auto;
}

.login-title {
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 15px;
}

.login-left-icon-container {
	height: 100%;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-left-icon-container img {
	width: 20px;
	height: auto;
}

.login-input-container {
	padding: 5px 0px;
}

.login-button-container {
	margin-bottom: 8px;
}

.bottom-links {
	display: grid;
	grid-template-columns: 1fr 0.1fr 1fr;
	align-items: center;
	margin-top: 15px;
}

.margin-hr-25 {
	margin: 0px 25px;
}

.margin-hr-20 {
	margin: 0px 20px;
}

.cancellation-body {
	padding: 35px 10px;
}

.desc-container {
	margin-top: 80px;
}

.cancel-ticket {
	margin-top: 15px;
}

.cancel-ticket .input-wrapper {
	/* height: 40px; */
	height: 12vw;
}

.cancel-inp-row {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 15px;
	/* align-items: baseline; */
}

.cancellation-grid-items-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1.4fr;
	grid-gap: 10px;
}

.cancellation-grid-row-container {
	display: grid;
	grid-template-columns: 0.3fr 0.8fr 1.5fr;
	/* grid-template-columns: 0.1fr 0.4fr 1.5fr 0.5fr; */
	grid-gap: 5px;
	margin-top: 10px;
}

.cancellation-grid-row-container-bus {
	display: grid;
	grid-template-columns: 0.1fr 0.4fr 1.5fr 0.5fr;
	grid-gap: 5px;
	margin-top: 10px;
}

.cancellation-input-container {
	padding: 5px 15px;
}

.cancellation-button-container {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.cancellation-details-desc-container {
	padding: 0px 30px;
	width: 80%;
	align-self: center;
	margin: 30px auto;
	margin-top: 85px;
	margin-bottom: 10px;
}

.cancellation-detail-card {
	/* width:90%;
  margin:0px 5px; */
	/* padding:0px */
	margin-top: 5px;
	margin: 20px;
}

.cancellation-detail-card .title-name {
	margin-bottom: 15px;
}

.cancellation-detail-card .city-names {
	margin-top: 5px;
}

.cancellation-detail-card .city-names>div {
	display: flex;
	align-items: center;
	padding: 3px 0;
}

.cancellation-detail-card .city-names img {
	height: 18px;
	margin-right: 6px;
}

.cancellation-detail-white-line {
	border-bottom: 1px solid #fff;
	width: 100%;
	margin: 6px 0px;
}

.cancellation-detail-op-info {
	margin: 10px 0px;
}

.cancellation-detail-touchable {
	padding-left: 10px;
	padding-right: 10px;
	z-index: 9;
	align-items: center;
	margin: 0;
	position: absolute;
	left: 0;
	padding: 2px;
	padding-left: 25px;
	top: 0;
	z-index: 9;
}

.cancellation-detail-button {
	display: flex;
	margin: auto;
	margin-top: 26px;
}

.cancellation-service-info-item {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.cancellation-service-info-label {
	/* color:#fff; */
	font-size: 10px;
}

.cancellation-service-info-value {
	/* color:#fff; */
	font-size: 10px;
}

.cancellation-seat-checkbox {
	/* width: 40px;
  max-width: 40px;
  padding: 4px; */
	text-align: left;
}

.cancellation-seat-row {
	display: flex;
	flex-direction: row;
	/* border-bottom: 1px solid #bbb; */
	/* margin: 0px 12px; */
	align-items: center;
}

.cancellation-header {
	border-radius: 8px 8px 0px 0px;
	/* padding: 10px; */
}

.cancellation-seat-name {
	flex: 1;
	align-items: flex-start;
	padding-right: 4px 0px;
}

.cancellation-seat-no {
	width: 70px;
	align-items: flex-start;
	padding: 4px 0px;
}

.cancellation-seat-fare {
	display: flex;
	justify-content: center;
	/* width: 60px;
  align-items: flex-start;
  padding: 4px 0px; */
}

.cancellation-item-flex-start {
	display: flex;
	justify-content: flex-start;
}

.cancellation-seats-container {
	padding-bottom: 12px;
	margin-top: 12px;
}

.cancellation-seats-container div:nth-child(1) {
	/* margin-top: 10px; */
}

.checkbox-icon {
	height: 90%;
	width: auto;
}

.cancellation-detail-sub-card {
	/* padding: 16px; */
	z-index: 10;
	position: absolute;
	width: 90vw;
}

.cancellation-detail-sub-card .refund-pg-types {
	margin-top: 16px;
	justify-content: space-between;
}

.cancellation-detail-sub-card .kupos-pay {
	width: 110px;
}

.cancellation-detail-sub-card .kupos-pay img {
	/* margin-top: 10px; */
	width: 100%;
}

.cancellation-footer-container {
	align-items: center;
	justify-content: center;
	padding: 20px 20px 0px;
	display: flex;
	flex-direction: column;
}

.cancellation-pg-row {
	display: flex;
	align-items: center;
	min-width: 110px;
	position: relative;
	min-height: 24px;
}

.cancellation-note {
	align-self: center;
	display: flex;
	margin: auto;
	margin: 35px 0 20px;
	text-align: center;
}

.refund-inp-item {
	width: 48%;
	min-width: 48%;
	margin: 2%;
}

.refund-inp-item:nth-child(2n + 1) {
	margin-left: 0;
}

.refund-inp-item:nth-child(2n + 2) {
	margin-right: 0;
}

.refund-inp-item .input-wrapper {
	height: 100%;
}

.refund-inp-item.email {
	width: 100%;
	margin-right: 0;
}

.refund-inp-item .ion-dropdown {
	height: 40px;
	--padding-top: 5px;
}

.refund-title {
	margin-bottom: 10px;
}

.credit-card-input-field {
	margin-bottom: 15px;
}

.refund-tnc {
	margin: 15px 0;
	text-align: center;
	margin-top: 22px;
}

.bank-form .button-container {
	width: 100%;
	margin: 15px 0;
}

.cancel-success-screen {
	padding: 50px 5vw;
	text-align: center;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-bottom: 0px;
	overflow: hidden;
}

.cancel-success-screen .wallet-success-container {
	/* flex:1 */
}

.cancel-success-screen .cancel-success-title {
	margin-top: 10px;
}

.cancel-success-screen .cancellation-button-container {
	position: absolute;
	display: flex;
	width: 80vw;
	bottom: 1.5vh;
	flex-direction: column;
	align-items: center;
	margin: auto;
	margin-left: 5vw;
}

.cancel-success-screen .cancellation-button-container .pb-button {
	margin-bottom: 15px;
}

.cannot-cancel-body {
	padding: 20px 0;
}

.ion-checkbox {
	--background: var(--primary-color);
	--background-checked: var(--primary-color);
	--border-color: var(--primary-color);
	--border-color-checked: var(--primary-color);
}

.cancellation-checkbox {
	--background: var(--primary-color);
	--background-checked: var(--primary-color);
	--border-color: var(--primary-color);
	--border-color-checked: var(--primary-color);
}

.transaction-list-main-container {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.transaction-list-header-container-parent {
	margin: 20px;
	margin-bottom: 0px;
	margin-top: 14px;
}

.transaction-list-details-container {
	flex: 1;
	padding: 8px 0px;
	align-items: center;
	display: grid;
	grid-gap: 6px;
	grid-template-columns: 1.2fr 0.1fr 6fr 0.1fr 3.6fr;
}

.transaction-list-date-container {
	display: flex;
	flex-direction: column;
	padding: 0px 6.5px;
	justify-content: center;
	align-items: center;
}

.transaction-list-v-line {
	width: 1px;
	border-right: 1px solid #ccc;
	height: 100%;
}

.transaction-list-type-container {
	flex: 1;
	padding: 0px;
}

.transaction-list-amount-container {
	margin-right: 5px;
}

.transaction-list-heading {
	/* width: 200px; */
	display: flex;
	/* flex-direction: row; */
	border-bottom-color: rgb(204, 204, 204);
	border-bottom-width: 1px;
	margin-top: 25px;
	margin: 10px 18px;
	align-items: center;
	justify-content: baseline;
	/* justify-content: space-between; */
	align-items: flex-end;
	justify-content: center;
	align-items: center;
}

.transaction-details-h-line {
	border-bottom: 1px solid #ccc;
	width: 100%;
	margin: 10px 0px;
	margin-bottom: 15px;
}

.transaction-details-time-hour-container {
	display: grid;
	grid-template-columns: 1.06fr 1fr;
	grid-gap: 5px;
}

.transaction-details-amount-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	padding: 10px 0px;
	margin-top: 20px;
}

.my-account-txn-head {
	display: flex;
	/* flex-direction: row; */
	border-bottom-color: rgb(204, 204, 204);
	border-bottom-width: 1px;
	margin-top: 25px;
	margin: 10px 18px;
	align-items: center;
	justify-content: baseline;
	/* justify-content: space-between; */
	align-items: flex-end;
	justify-content: center;
	align-items: center;
}

.my-account-arrow-container {
	width: 22px;
	align-items: center;
	justify-content: center;
	display: flex;
	background-color: var(--primary-color);
	border-radius: 0px 8px 8px 0px;
}

.transaction-list-card {
	padding: 5px 15px !important;
	/* padding-right: 0px; */
	margin-top: 6px !important;
	margin-bottom: 8px !important;
}

.transaction-list-container-padding {
	margin: 0px 15px;
	margin-top: 5px;
	margin-bottom: 0px;
}

.my-accounts-settings-icon {
	position: absolute;
	right: 22px;
	top: 85px;
	z-index: 9;
	border-radius: 18px;
}

.my-account-bg-container {
	width: 100%;
	border-radius: 8px;
	padding: 20px 25px;
	align-items: center;
	z-index: 1;
}

.my-account-container {
	display: flex;
	width: 100%;
	margin-top: 15px;
}

.my-account-amount {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.my-account-flex-end {
	display: flex;
	justify-content: flex-end;
}

.edit-profile-person-image {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.edit-profile-account-info {
	display: flex;
	margin-top: 10px;
	flex-direction: column;
	align-items: center;
}

.edit-profile-input-container {
	padding-bottom: 10px;
}

.edit-profile-button-container {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

ion-datetime {
	width: calc(100% + 20px);
	margin: 0px -10px;
	padding-left: 10px;
	padding-top: 15px;
	z-index: inherit;
}

.screen-container {
	margin-top: 80px;
}

.cancel-success-main-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wallet-success-container {
	width: 100%;
	margin-top: 15px;
}

.wallet-success-row {
	width: 100%;
	display: flex;
	border-bottom: 1px solid #ccc;
	padding: 15px 0px;
}

.cancel-success-text-container {
	margin: 10px 0px;
	align-items: center;
}

.txn-details-flex {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 10px 0px;
}

.txn-details-h-line {
	border-bottom: 1px solid rgb(0, 0, 0);
	width: 100%;
	margin: 10px 0px;
	margin-bottom: 15px;
}

.transaction-history-txn-head {
	width: 92%;
	margin: 0px 4%;
	display: flex;
	border-bottom: 1px solid #ccc;
	margin-top: 25px;
	justify-content: space-between;
	align-items: flex-end;
}

.center-items {
	align-items: center;
	justify-content: center;
	padding: 3px;
}

.transaction-history-date-header {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin-top: 10px;
	background-image: linear-gradient(to right, #fc763b, #febb3d);
}

.transaction-history-date-header-internal {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.transaction-history-date-header-internal div {
	display: flex;
	justify-content: center;
	align-items: center;
}

.transaction-history-date-header-internal div img {
	margin-left: 5px;
}

.transaction-history-date-header-item {
	width: 50%;
	padding: 10px;
	display: flex;
	justify-content: center;
}

.transaction-history-h-line {
	border-bottom: 1px solid #ccc;
	margin: 10px 0px;
	width: 100%;
}

.transaction-history-txn-container {
	display: flex;
	width: 90%;
	margin-left: 4%;
}

.transaction-history-v-line {
	margin-right: 5px;
	border-right: 1px solid #ccc;
}

.txn-history-top-strip-margin {
	margin-top: 40px;
}

.transaction-history-date-header .txn-month-picker {
	position: absolute;
	z-index: 100;
	opacity: 0;
	width: auto;
}

.my-account-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	height: 50px;
	align-items: center;
	position: relative;
	padding-top: 16px;
	width: 100%;
	padding: 0px 20px;
	margin-bottom: 6px;
	margin-top: 6px;
	top: 0px;
}

.header-back-button {
	position: relative;
	z-index: 999;
	padding: 0 4px;
	margin-left: -4px;
	margin-top: 12px;
}

.my-account-header img.kupos-pay-title-logo {
	height: 19px;
	width: auto;
}

.my-account-header-space {
	margin-top: 60px;
}

.my-account-header img {
	width: 23px;
	height: auto;
}

.my-account-header .qr-back-arrow {
	/* filter: invert(1); */
}

.my-account-header-label {
	text-align: center;
	color: #fff !important;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-left: -15px;
	flex: 1;
	/* margin-top: 12px; */
}

.my-account-header-label-black {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-left: -15px;
	flex: 1;
}

.my-account-header-label div {
	color: #fff;
}

.my-account-main-card {
	padding: 15px;
	position: relative;
	margin-top: 40px;
}

.my-account-main-card-new {
	padding: 15px;
	position: relative;
	margin-top: 60px;
}

.new-home-header {
	display: grid;
	grid-template-columns: 1fr 8fr 1fr;
	height: 50px;
	align-items: center;
	position: relative;
	padding-top: 16px;
	padding: 0px 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.new-home-header img {
	width: 22px;
	height: 22px;
}

img.qr-back-arrow {
	width: 22px;
	height: 22px;
}

.kupos-com-main-image-container img {
	width: 144px;
	height: 22px;
}

.flex-end {
	display: flex;
	align-items: flex-end;
}

.my-account-wallet-strip {
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	display: flex;
}

.my-account-h-line {
	border-bottom: 0.5px solid rgba(203, 203, 203, 0.7);
	margin-bottom: 10px;
	width: 100%;
}

.my-account-dp-container {
	align-items: center;
	margin-bottom: 10px;
}

.my-account-img-circle {
	width: 70px;
	height: 70px;
	border-radius: 35px;
	overflow: hidden;
	border: 2px solid #fff;
	/* position: absolute;
  top: -35px;
  left: 39.5%; */
	background-color: #fff;
	background-size: cover;
	background-position: center;
}

.my-account-img-circle-new {
	width: 70px;
	height: 70px;
	border-radius: 35px;
	overflow: hidden;
	border: 2px solid #fff;
	/* position: absolute;
	top: -35px;
	left: 39.5%; */
	background-color: #fff;
	background-size: cover;
	background-position: center;
}

.my-account-img-circle img {
	height: auto;
	height: 70px;
	width: 70px;
	margin: 0px;
	border-radius: 40px;
	border: 2px solid #fff;
}

.my-account-img-circle-new img {
	height: auto;
	height: 70px;
	width: 70px;
	margin: 0px;
	border-radius: 40px;
	border: 2px solid #fff;
}

.my-account-main-details-container {
	margin-top: 25px;
	align-items: center;
	line-height: 1.3;
}

.my-account-dp-container-dp {
	width: 80px;
	border-radius: 80px;
	border-color: rgb(255, 255, 255);
	border-width: 2px;
	position: relative;
	top: -85px;
	left: 135px;
}

.my-account-menu-card-row {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin-bottom: 20px;
	margin: 10px 30px;
}

.my-account-title-container {
	align-items: center;
	margin: 20px 0px;
	line-height: 1.2;
}

.my-account-menu-card {
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden;
	padding: 16px 22px;
	margin-bottom: 20px;
	/* width: 29%; */
	/* height: 90px; */
	position: relative;
	/* box-shadow: 0px 0px 6px 0px #ccc; */
	border: 1px solid rgba(192, 192, 192, 0.7);
}

.my-account-menu-icon-container {
	align-items: flex-end;
	position: absolute;
	right: 10px;
	top: 10px;
}

.my-account-menu-icon-container img {
	height: 35px;
	width: auto;
}

.my-account-card-image-container {
	/* justify-content: flex-end; */
	/* flex: 1 1; */
	position: absolute;
	left: 5px;
	bottom: 10px;
	width: 93%;
}

.my-account-card-image-container-bottom {
	/* justify-content: flex-end; */
	/* flex: 1 1; */
	position: absolute;
	left: 8px;
	bottom: 10px;
	width: 93%;
}

.full-flex-end {
	justify-content: flex-end;
	flex: 1;
}

.my-trips-icons-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 5px 15px;
	justify-content: center;
	gap: 20px;
}

.single-trip-item {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 15px !important;
}

.my-trips-icon-container {
	width: 14vw;
	border-radius: 7vw;
	overflow: hidden;
	height: 14vw;
}

.my-trips-icon {
	width: 14vw;
	height: 14vw;
	resize: horizontal;
}

.my-trips-head-text {
	margin: 30px 0px;
}

.my-trips-inner-card {
	padding: 15px;
}

.my-trips-full-flex {
	display: flex;
	width: 100%;
	align-items: flex-start;
}

.my-trips-trip-card {
	padding: 0px;
	overflow: hidden;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.09);
	margin: 0 5px;
	position: relative;
	z-index: 9;
	margin-top: 10px;
}

.carpool-trips-card-cancel-btn {
	overflow: hidden;
	margin: -15px 5px 0;
	z-index: 1;
	border-radius: 10px;
	background-color: var(--secondary-color);
	position: relative;
	margin-bottom: 15px;
}

.carpool-trips-card-details {
	position: relative;
	z-index: 9;
}

.my-trips-ticket-item-container {
	padding: 10px;
	width: 100%;
	margin-top: 8px;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0px 0px 2px 0px #898989;
}

.my-trips-ticket-item-inner-row {
	display: flex;
	width: 100%;
}

.my-trips-row-value {
	width: 50%;
	display: flex;
}

.my-trips-main-container {
	height: 82vh;
	overflow: scroll;
	width: 100%;
	padding: 8px 0px;
	position: relative;
}

.my-trips-carpol-container {
	align-items: center;
	margin: 15px 0px;
	margin-top: 5px;
}

.ticket-item-conatiner {
	display: grid;
	grid-template-columns: 8fr 2.5fr;
	grid-gap: 10px;
	margin: 2px 5px 13px;
}

.my-trips-row-price-container {
	width: 100%;
	display: flex;
	background-color: #a4a4a6;
	color: white;
	justify-content: center;
	padding: 3px;
	border-radius: 15px;
}

.my-trips-detailed-body-bottom {
	padding: 10px 20px;
	margin: 0px 20.6px;
	margin-top: -35px;
	background: var(--primary-color);
	color: #fff;
	padding-top: 26px;
	border-radius: 0px 0px 8px 8px;
	position: relative;
}

.my-trips-root-container {}

.my-trips-root-container .trip-body {
	margin: 10px 15px;
}

.qr-scan-container {
	position: absolute;
	z-index: 9;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.qr-recipient-icon {
	width: 100vw;
	flex: 1;
}

.qr-bg-transparent {
	background-color: #000;
	opacity: 0.4;
	flex: 1;
}

.qr-full-flex-center {
	flex: 1;
	align-items: center;
}

.qr-scan-frame {
	width: 50vw;
	height: 50vw;
}

.qr-scan-full-main {
	flex: 1;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
}

.qr-bottom-container {
	background-color: #fff;
	padding: 15px 30px;
	width: 100%;
	border-top-left-radius: 300px;
	border-top-right-radius: 30px;
	margin-top: -30px;
}

.qr-main-container {
	flex: 1;
	background-color: #fff;
}

.qr-last-element {
	z-index: 10;
	position: absolute;
	top: 0px;
	width: 100%;
}

.qr-white-BG {
	background-color: #fff;
}

.qr-modal-icon-container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 10px;
	justify-content: center;
}

.qr-info-modal-content {
	padding: 20px;
	background-color: #fff;
	position: absolute;
	bottom: 0px;
	width: 100%;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.qr-qr-code-container-main {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 75px;
}

.qr-shot-container {
	width: 100vw;
	align-items: center;
	margin-top: 40px;
	background-color: #fff;
}

.qr-rut-container {
	display: flex;
	justify-content: space-between;
	width: 70vw;
	padding-top: 20px;
	margin: auto;
	margin-top: 25px;
	border-top: 1px solid #ddd;
}

.qr-buttons-container {
	width: 70vw;
	margin: 0px 15vw;
	position: absolute;
	bottom: 9vw;
}

.qr-button-container {
	margin-top: 10px;
}

.qr-image {
	width: 55vw;
	height: auto;
}

.qr-code-container {
	flex: 1;
	align-items: center;
}

.carpool-homescreen-full {
	height: 100%;
	overflow: hidden;
}

.new-home-page-date-box {
	margin-top: 5px;
}

.new-home-body-container {
	flex: 1 1;
	padding: 15px 20px;
	position: relative;
	/* bottom: 20px; */
}

.new-home-body-container-card {
	margin: 0px 0;
	width: 100%;
	padding: 25px 0;
}

.new-home-body-container-card-kuposG0 {
	margin-bottom: 56px;
}

.new-home-location-container-kupos-go {
	display: flex;
}

.new-home-location-container-kupos-go .swap-icon {
	width: 20px;
	margin: 0 10px;
}

.new-home-location-container-kupos-go-input-container {
	flex: 1;
}

.new-home-location-container-kupos-go .new-home-location-container {
	margin: 0;
}

.new-home-location-container-kupos-go-line {
	margin-left: 30px;
	height: 1px;
	background-color: #000;
}

.new-home-location-container-kupos-go .input-wrapper {
	margin: 0;
}

.new-home-location-container {
	margin-top: 10px;
}

.new-home-location-container .origin-dest-container {
	padding: 0px 10px;
	padding-left: 0px;
	padding-right: 5px;
}

.new-home-location-container .input-wrapper {
	padding: 5px 10px;
	padding-right: 0px;
}

.inner_date_container {
	border: 1px solid #ccc;
	display: flex;
	border-radius: 10px;
	justify-content: space-between;
	padding: 0px 10px;
	align-items: center;
	margin-top: 4px;
	height: 40px;
}

.new_inner_date_container {
	border: 1px solid #ccc;
	display: flex;
	border-radius: 14px;
	justify-content: space-between;
	padding: 0px 10px;
	align-items: center;
	margin-top: 4px;
	height: 13vw;
	/* background-color: #f9f9f9; */
}

.new-home-date-box-inner-hybrid {
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 14px;
	height: 13vw;
	margin-top: 4px;
	position: relative;
	padding: 0 10px;
}

.new-home-date-box-inner-hybrid img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.new-home-date-box-inner {
	display: flex;
	align-items: center;
	/* border: 1px solid #ccc; */
	border-radius: 6px;
	/* height: 40px; */
	/* margin-top: 4px; */
	position: relative;
	/* padding: 0 10px; */
}

.new-home-date-box-inner img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.new-home-date-box-inner-new {
	display: flex;
	align-items: center;
	/* border: 1px solid #ccc; */
	border-radius: 6px;
	/* height: 40px; */
	/* margin-top: 4px; */
	position: relative;
	/* padding: 0 10px; */
}

.new-home-date-box-inner-new img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.inner_date_container .cross_img {
	width: 12px;
	height: auto;
}

.new_inner_date_container .cross_img {
	width: 12px;
	height: auto;
}

.new-home-count-button {
	width: 25px;
	height: 25px;
	border-radius: 12px;
	border: 1px solid #888;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.new-home-count-button-inner {
	width: 25px;
	height: 25px;
	align-items: center;
	justify-content: center;
}

.new-home-preference-icon-container {
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.new-location-box-swap-inner {
	flex: 1;
	align-items: center;
	justify-content: center;
}

.new-location-box-swap-inner img {
	width: 5vw;
	height: 5vw;
}

.new-home-location-button {
	width: 100%;
	display: flex;
	align-items: center;
	height: 10vw;
}

.new-home-location-button img {
	width: auto;
	height: 5vw;
	margin-left: 0px;
	margin-right: 15px;
	/* resize: horizontal; */
}

.new-home-display-center {
	align-items: center;
	justify-content: center;
}

.new-home-display-center img {
	width: 15vw;
	height: 15vw;
}

.new-home-footer-buttons {
	width: 100vw;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	bottom: 0px;
	left: 0px;
	border-top: 0.5px solid lightgrey;
	background-color: white;
	/* box-shadow: 0px 0px 10px 3px #ccc; */
	/* border-top-left-radius: 20px;
	border-top-right-radius: 20px; */
}

.new-home-footer-buttons .new-home-footer-buttons-container-inner {
	display: flex;
	justify-content: space-around;
	width: 100%;
	height: 100%;
	transform: translateY(2px);
}

.main-image-footer-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.main-image-footer-button .toast_wrapper {
	/* display: flex; */
	position: absolute;
	bottom: 120%;
	width: 120px;
	background-color: var(--secondary-color);
	color: white;
	padding: 6px;
	text-align: center;
	border-radius: 4px;
}

.main-image-footer-button .toast_wrapper span {
	margin-top: 2px;
}

.main-image-footer-button .toast_wrapper .toast_triangle {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 20px solid var(--secondary-color);
	position: absolute;
	bottom: -10px;
	left: calc(50% - 10px);
}

.main-image-footer-button .selected_footer_button_toast {
	position: absolute;
	bottom: 95%;
	width: 100px;
}

.main-image-footer-button img {
	width: 32px;

	height: 27px;
}

.main-image-footer-button-container {
	flex: 1 1 0%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main-home-footer-round-button {
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 42.5vw;
	bottom: 0.8vh;
	background-color: var(--primary-color);
	border-radius: 9vw;
	width: 15vw;
	height: 15vw;
	overflow: hidden;
	display: flex;
}

.new-btn-styles {
	border-top: 1px solid #d7d7d7 !important;
	box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.09) !important;
	height: 20vw !important;
	bottom: 2px !important;
	padding: 15px 10px 0px 0px !important;
}

.main-home-footer-round-button-inner {
	width: 10vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.new-btn-styles .main-image-footer-button {
	position: relative;
}

.new-btn-styles .main-image-footer-button:hover:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(/assets/carpool/nueva-función.png);
	position: absolute;
	top: -48px;
	background-repeat: no-repeat;
}

.new-btn-styles .main-image-footer-button:after {
	content: "";
	border-bottom: 3px solid var(--primary-color);
	width: 63px;
	display: block;
	text-align: center;
	position: absolute;
	left: 19px;
	bottom: 0px;
	border-radius: 10px;
	opacity: 0;
}

.new-btn-styles .main-image-footer-button:hover:after {
	opacity: 1;
	transition: 0.5s linear ease-in;
}

/* .custom-button-couponera button {
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
} */
.custom-button-couponera .new-home-body-container .coponera-btn {
	text-align: center;
}

.main-home-footer-button-inner-cuponera {
	text-align: center;
}

.foot-image-cuponera img {
	position: relative !important;
}

.cuponera-top .mobile-header_mobile_header__GFgBP .homeicon-cuponera {
	fill: white;
}

.homeicon-cuponera {
	filter: invert(1) brightness(100);
}

.new-cupoun-footer {
	height: auto;
}

/*******************sheeba's style end**********************/
.main-home-location-box {
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	margin-top: 5px;
}

.main-home-location-box-buttons {
	flex: 1;
	overflow: hidden;
}

.main-home-location-box-swap {
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-home-count-button-box {
	overflow: hidden;
	width: 100%;
	display: flex;
	align-items: center;
	border: 1px solid #ccc;
	padding: 0px 15px;
	border-radius: 10px;
	height: 12vw;
	margin-top: 4px;
}

.main-home-date-count-container {
	margin-top: 20px;
}

.main-home-counter-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.main-home-preference-icon-item-container {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8vw;
	width: 15vw;
	height: 15vw;
	overflow: hidden;
}

.full-height {
	height: 100vh;
}

.main-home-footer-button-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 16px;
	height: 100%;
	/* position: relative; */
}

.main-home-footer-button-selected {
	position: absolute;
	bottom: 2px;
	height: 5px;
	background-color: var(--primary-color);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	width: 60px;
}

.new-home-footer-bg {
	position: fixed;
	bottom: 9px;
	display: flex;
	width: 100vw;
}

.main-image-footer-botton-text {
	margin-top: 5px;
}

.main-home-forward-img {
	width: 6.3vw;
	height: auto;
	resize: horizontal;
}

.train-cancel-button-container {
	margin-top: 15px;
}

.train-cancel-button-container .pb-button {
	margin-top: 10px;
}

.forget-page-main-image {
	margin: 20px 32vw;
	width: 36vw;
}

.forget-page-des-container {
	display: flex;
	align-items: center;
	padding: 5px 50px;
}

.forget-page-button {
	height: 40px;
	/* border-radius: 12px; */
}

.forget-password-card-container {
	margin-top: 25px;
	margin-bottom: 20px;
}

.reset-modal-inp .inp {
	margin: 20px 0;
}

.forgot-tabs-container {
	margin: 0 34px;
}

.forgot-flag-container {
	border-right: 1px solid #ccc;
	padding-right: 10px;
}

/* tnc page */

.tnc-body {
	font-size: 14px;
	padding-top: 0px;
	height: 100%;
	overflow: scroll;
	padding-bottom: 100px;
	text-align: justify;
	margin-top: -14px;
}

.tnc-body .privacy-sub-details {
	margin-left: 20px;
}

.tnc-body .primary-circle {
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	height: 29px;
	width: 29px;
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 10px;
	margin-right: 7px;
	font-size: 0.8rem;
}

.mt-y-3 {
	margin-bottom: 15px;
}

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

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

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

.tnc-item {
	margin-bottom: 20px;
}

.tnc-item p {
	text-align: justify;
}

.tnc-item p {
	text-align: justify;
	word-wrap: break-word;
	line-height: 22px;
	margin-top: 10px;
}

.tnc-item strong {
	font-weight: normal;
	font-family: "DMSans-Bold", sans-serif;
}

.secondary-circle {
	border-radius: 50%;
	/* background: var(--secondary-color); */
	/* color: #fff; */
	height: 8px;
	width: 10px;
	padding: 8px 0;
	margin-right: 10px;
	align-items: center;
	display: flex;
	justify-content: center;
	font-weight: bold;
	text-align: left;
}

.tnc-item>.privacy-sub-details .number-and-text {
	margin-left: 10px;
}

.primary-circle {
	margin-right: 10px;
	font-weight: bold;
	text-align: left;
}

.privacy-sub-details .privacy-sub-details .primary-circle {
	width: 50px;
}

.number-and-text.my-3 .secondary-circle,
.number-and-text.my-1 .secondary-circle {
	margin-left: 10px !important;
	margin-right: 15px;
}

.number-and-text {
	display: flex;
	margin-bottom: 10px !important;
}

span.image-inside-text {
	display: inline-block;
	width: 70px;
	position: relative;
	top: 3px;
}

/* Contact modal styling */
.contact-modal-padding {
	padding: 5px 20px;
}

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

.contact-modal-subtitle {
	margin-top: 5px;
	margin-bottom: 20px;
	align-items: center;
}

.contact-main-modal {
	background-color: #fff;
	box-shadow: 0px 3px 7px 3px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	padding: 30px;
}

.embission-main-modal {
	background-color: #fff;
	box-shadow: 0px 3px 7px 3px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	padding: 30px;
	margin: 20px;
	margin-top: 23%;
}

.cuponera-main-modal {
	background-color: #fff;
	box-shadow: 0px 3px 7px 3px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	padding: 40px;
	margin: 20px;
	margin-top: 23%;
}

.bip-main-modal {
	background-color: #fff;
	box-shadow: 0px 3px 7px 3px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	padding: 20px;
	margin: 20px;
	margin-top: 23%;
	width: 350px;
}

.modal-image-container {
	/* width: 50px; */
	margin: auto;
}

.modal-image-container-embission {
	width: 80px;
	margin: auto;
}

.modal-image-container-bip {
	width: 70px;
	margin: auto;
}

.bip-modal-cross-icon {
	position: absolute;
	top: -10px;
	right: -7px;
}

.modal-cross-icon {
	position: absolute;
	top: -9px;
	right: 0;
}

.modal-cross-icon-cuponera {
	position: absolute;
	top: -25px;
	right: -25px;
}

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

/* .contact-modal-whatsapp img{
  margin-left: 6%;
} */

/* .contact-modal-email{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
} */

/* .contact-modal-email img{
  margin-right: 6%;
} */

.recharge-flex {
	flex: 1;
	align-items: center;
	justify-content: center;
}

.recharge-body {
	padding: 20px;
}

.recharge-input-container {
	margin-top: 32px;
}

.recharge-input-container .kupos-card {
	/* margin-top: 15px; */
}

.recharge-desc-container {
	padding: 0px 15px;
	margin-bottom: 0px;
}

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

.rechrage-input-container {
	padding: 10px 0px;
	padding-top: 0px;
}

.recharge-tabs-container {
	width: 60vw;
	margin-left: 5vw;
	display: flex;
	justify-content: center;
	margin: auto;
	margin-top: 2px;
	margin-bottom: 10px;
}

.recharge-link-container {
	margin: 10px 0px;
	align-items: center;
	justify-content: center;
}

.tansfer-container {
	/* margin-top: 25px; */
}

.tansfer-container .kupos-card {
	/* margin-top: 15px; */
}

.recharge-number-card {
	display: flex;
	width: 100%;
}

.recharge-number-card .step-icon {
	/* width: 50px; */
	height: 30px;
	display: flex;
	min-width: 30px;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary-color);
	border-radius: 50%;
	color: #fff;
	margin-right: 10px;
}

.recharge-number-card-image {
	margin-right: 10px;
}

.rechrage-number-card-text {
	color: var(--dark-font);
}

.recharge-bank-details-row {
	display: flex;
}

.bank-detail-rows-container {
	margin-left: 40px;
	margin-top: 15px;
	margin-bottom: 15px;
	line-height: 1.5;
}

.tansfer-container hr {
	height: 0;
	border-top: 1px solid #ccc;
	margin-bottom: 20px;
}

.recharge-bottom-container {
	width: 100%;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 15px;
}

.recharge-contact-numbers-container {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.recharge-contact-item {
	display: flex;
	justify-content: center;
	margin: 10px;
}

.recharge-account-card {
	margin: 20px;
	position: relative;
	margin-top: 14px;
	padding-bottom: 14px;
}

.recharge-account-card .my-account-h-line {
	margin: 10px 0;
}

.recharge-submit-button {
	display: flex;
	justify-content: center;
	margin: 15px auto;
	margin-bottom: 0px;
}

.my-account-header.transparent-bg {
	background-color: rgba(255, 255, 255, 0.3);
	position: fixed;
	z-index: 99;
	top: 0;
	margin-top: 0;
	padding-top: 6px;
	padding-bottom: 6px;
}

.recharge-steps-container {
	margin-top: 20px;
}

.steps-button-container {
	z-index: 1;
	position: absolute;
	/* width: 100%; */
	bottom: 50px;
	left: 20px;
	right: 20px;
}

.recharge-steps-container .wallet-recharge-extra-items {
	margin-top: 7px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	margin: 0 25px;
	line-height: 1.4;
	position: relative;
}

.recharge-steps-container .wallet-recharge-extra-items .kupos-card {
	height: 140px;
	margin: 0;
	padding: 12px;
	margin-bottom: 20px;
}

.recharge-steps-container .wallet-recharge-extra-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	text-align: justify;
}

.recharge-steps-container .wallet-recharge-extra-item img {
	width: 45px;
	height: auto;
}

.reecharge-transfer-inp button {
	margin-top: 20px;
}

.my-favorities-list-container {
	margin: 25px 0 10px;
}

.my-favorities-title {
	padding: 5px 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
}

.my-favorities-row {
	padding: 5px 0;
}

.recipient-container {
	margin: 20px 0;
	line-height: 1.4;
}

.recipient-icon-container {
	position: absolute;
	top: 0;
	right: 0;
}

.recharge-transfer-modal-body-container {
	margin: 20px 0;
	line-height: 1.4;
}

.recharge-transfer-modal-body-container hr {
	height: 0;
	border-top: 1px solid #ccc;
}

.common-kupos-map .gmnoprint {
	display: none;
}

.common-kupos-map .gm-fullscreen-control {
	display: none;
}

.common-kupos-map .autocomplete-places.kupos-border {
	position: absolute;
	left: 15px;
	right: 15px;
	top: 50px;
	height: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
}

.common-kupos-map .autocomplete-places.kupos-border img {
	position: absolute;
	height: 45%;
	width: auto;
	filter: brightness(0.5);
	left: 15px;
}

.common-kupos-map .autocomplete-places.kupos-border input {
	border: 0;
	height: 100%;
	width: 100%;
	padding: 10px;
	padding-left: 50px;
	padding-top: 12px;
	font-family: "DMSans-Regular", sans-serif !important;
}

.common-kupos-map .info-window {
	width: 220px;
	padding: 15px;
	font-family: "DMSans-Regular", sans-serif !important;
}

.common-kupos-map .info-window .kupos-button {
	height: 35px;
	width: 100%;
	margin-top: 10px;
	background-color: var(--primary-color);
	color: #fff;
	text-transform: uppercase;
	border-radius: 8px;
}

.common-kupos-map .info-window .marker-icon-name {
	margin-bottom: 7px;
	display: flex;
	align-items: center;
}

.common-kupos-map .info-window .marker-icon-name span.marker-icon {
	height: 36px;
	width: 36px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 7px;
}

.common-kupos-map .info-window .marker-icon-name span.marker-name {
	margin-top: 14px;
}

.common-kupos-map .info-window .marker-icon-name span.marker-icon img {
	width: 75%;
	position: relative;
	top: 16%;
}

.common-kupos-map .info-window .marker-service {
	line-height: 1.5;
}

.common-kupos-map .info-window .marker-service span {
	display: inline;
}

.common-kupos-map .info-window hr {
	margin-top: 8px;
	margin-bottom: 8px;
	border: 1px solid #ccc;
	height: 0;
}

.common-kupos-map .gm-style .gm-style-iw-d {
	max-height: initial !important;
	overflow: hidden !important;
	max-width: 220px !important;
}

.gm-style-mtc {
	display: none !important;
}

.gm-fullscreen-control {
	display: none !important;
}

.common-kupos-map .gm-style-iw {
	padding: 0px;
	max-height: initial !important;
	margin-left: -55px;
}

.common-kupos-map .gm-style-iw>button {
	display: none !important;
}

.common-kupos-checkbox {
	display: inline;
}

.common-kupos-checkbox label {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

.common-kupos-checkbox .kupos-checkbox {
	display: inline-block;
	margin-right: 10px;
}

.common-kupos-checkbox .kupos-checkbox.circle {
	width: 20px;
	height: 20px;
	border-radius: 10px;
}

.common-kupos-checkbox input {
	display: none;
}

.common-kupos-checkbox img {
	display: none;
}

.common-kupos-checkbox input:checked+img {
	display: block;
}

.common-kupos-checkbox .checkbox-label {
	margin-top: 2px;
}

.icon-selection-circle-not-selected,
.icon-selection-circle-selected,
.icon-check-square-pink,
.icon-check-square-pink-line {
	display: inline-block;
	background: url("/assets/icons/check-sprite-new-icon.svg") no-repeat;
	overflow: hidden;
	text-indent: -9999px;
	text-align: left;
	background-size: 200% 200%;
	position: relative;
	top: 2px;
	width: 18px;
	height: 18px;
	/* z-index: 100; */
}

.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%;
}

.services-gif-loader-container {
	text-align: center;
}

.services-gif-loader-container img {
	width: 100px;
}

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

.payment-details-service {
	padding: 25px 15px;
}

.payment-details-service .line {
	margin: 10px 0;
}

.summary-date {
	text-transform: capitalize;
}

.total-payment-strip-passenger-details {
	/* background-color: var(--secondary-color); */
	background-color: rgb(255, 222, 222);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 20px;
	padding-top: 20px;
	margin-top: -30px;
	/* margin: 15px; */
	z-index: -1;
	position: relative;
	color: black;
	border: 1px solid #f4babb;
}

.total-payment-strip-passenger {
	/* background-color: var(--secondary-color); */
	background-color: rgb(255, 222, 222);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 20px;
	padding-top: 20px;
	margin-top: -30px;
	/* margin: 15px; */
	z-index: -1;
	position: relative;
	color: black;
	border: 1px solid #f4babb;
}

.payment-tnc {
	margin: 25px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-options-card {
	padding: 25px 15px;
	padding-bottom: 0px;
}

.promo-apply-btn .pb-button {
	font-size: 15px;
}

.payment-history-h-line {
	border-bottom: 1px solid #ccc;
	margin: 14px 0px;
	width: 100%;
}

.payment-box-item {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}

.payment-box-item img {
	width: auto;
	height: 18px;
	margin-left: 0px;
	margin-right: 3px;
}

.position-relative {
	position: relative;
}

/* thank you page */

.thank-you-icon-container img {
	width: 100px;
	height: auto;
	margin: auto;
}

.thankyou-page-text-container {
	margin-top: 10px;
	padding: 0px 8vw;
}

.thankyou-page-text-container-new {
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 0px 8vw;
}

.failure-card-icon-text-container {
	display: flex;
}

.failure-card-icon-text-container img {
	height: 25px;
	width: auto;
	margin-right: 10px;
	margin-top: 3px;
}

.failure-card-header-label {
	text-align: center;
	display: flex;
	align-items: flex-end;
}

.failure-page-text-container {
	margin-top: 25px;
	padding: 0px 8vw;
}

.thankyou-buttons-container {
	width: 84vw;
	margin: 0px 8vw;
	margin-top: 30px;
	position: absolute;
	bottom: 8vh;
	z-index: 30;
}

.thankyou-buttons-container-failure {
	width: 84vw;
	margin: 0px 8vw;
	margin-top: 50px;
	/* position: absolute; */
	z-index: 10;
}

.failure-screen-container {
	height: 92vh;
	overflow: hidden;
	position: relative;
	z-index: 99;
}

.failure-screen-container-body {
	height: 90%;
	overflow: scroll;
	/* margin-bottom: 50px; */
	/* padding-bottom: 60px; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Register screen */

.register-social-links-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}

.fb-background {
	/* width: 40vw; */
	height: 6vw;
	background-color: #3b5998;
	display: flex;
	border-radius: 8px;
	align-items: center;
	position: relative;
}

.fb-background img {
	height: 5vw;
	width: auto;
	margin: 0.5vw 1vw;
	margin-right: 0px;
}

.fb-background .fb-login-btn {
	position: absolute;
	z-index: 99;
	opacity: 0;
}

.login-fb-login-btn {
	position: absolute;
	z-index: 99;
	opacity: 0;
}

.login-fb-login-btn .kep-login-facebook.metro {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90vw;
	justify-content: flex-start;
	margin-left: 20px;
	margin-right: 20px;
	font-size: 17px;
	font-family: inherit;
	font-weight: inherit;
}

.insta-background {
	/* width: 40vw; */
	height: 6vw;
	background-color: #464647;
	border-radius: 8px;
	display: flex;
	align-items: center;
	position: relative;
}

.insta-background img {
	height: 4vw;
	width: auto;
	margin: 0.5vw 2vw;
}

.register-screen-container {
	flex: 1 1 0%;
	height: 100%;
	overflow: hidden;
}

.register-screen-container .input-outer-div .input-wrapper {
	padding: 0 10px;
}

.register-input-body-container {
	/* height: 76vh; */
	overflow: scroll;
	margin-top: 2px;
}

.register-input-body-container .input-wrapper {
	height: 40px;
}

.register-input-body-container .ion-dropdown {
	--padding-start: 0;
	--padding-end: 0;
}

.list-md {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding-top: 8px;
	padding-bottom: 0px !important;
	background: var(--ion-item-background, var(--ion-background-color, #fff));
}

.register-input-container {
	/* height: 44px; */
	margin: 10px 0px;
	margin-top: 0px;
}

/* Transactions Screen */

.transactions-header-container {
	display: flex;
	margin: 0px 20px;
	align-items: center;
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 0px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.transactions-header-inner {
	display: flex;
	width: 100%;
	padding: 10px 20px;
	justify-content: space-between;
}

.transactions-header-inner-row {
	display: flex;
}

.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;
}

.transactions-deep_date-picker {
	/* position: absolute; */
	width: 100%;
	opacity: 1;
	height: 36px;
}

/* promotions screen  */

.promotion-full-screen {
	height: 100%;
	overflow: hidden;
}

.promotion-txns {
	margin-top: 25px;
}

.promotion-transaction-container {
	background: #fff;
	border-radius: 15px 15px 0px 0px;
	/* box-shadow: 0px -2px 6px 0px #ccc; */
	padding: 10px 20px;
	height: 76vh;
	/* overflow: scroll; */
	padding-bottom: 60px;
}

.promotion-txn-item {
	display: grid;
	grid-template-columns: 2fr 4fr 2fr;
	grid-gap: 10px;
	padding: 18px 0px;
	border-bottom: 1px solid #ccc;
}

.promotion-amount {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promotion-amount img {
	width: auto;
	height: 12px;
}

.promotion-info-modal-content {
	padding: 20px;
	background-color: #fff;
	position: absolute;
	bottom: 0px;
	width: 100%;
	border-radius: 15px 15px 0px 0px;
}

.promotion-modal-icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	margin-top: 10px;
}

.promotion-modal-icon-container img {
	width: 60px;
	height: auto;
}

/* Modify Profile */
.modify-profile-image-container {
	width: 25vw;
	height: 25vw;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	/* margin: auto; */
	position: relative;
	max-width: 140px;
	max-height: 140px;
}

.modify-profile-image-container-inner {
	border-radius: 20vw;
	overflow: hidden;
	width: 22vw;
	height: 22vw;
	align-self: center;
	justify-content: center;
	align-items: center;
	/* background-color: rgba(255, 255, 255, 0.3); */
	/* border: 2px solid #ff5a5e; */
	max-width: 140px;
	max-height: 140px;
	background-size: cover;
	background-position: center;
}

.modify-profile-pencil-container {
	position: absolute;
	bottom: 12px;
	right: 4px;
	z-index: 9;
	background-color: #fff;
	/* width: 8vw; */
	border-radius: 50%;
	overflow: hidden;
	width: 25px;
	height: 25px;
}

.modify-profile-pencil-container input[type="file"] {
	position: absolute;
	z-index: 999;
	left: 0;
	top: 0;
	height: 100%;
	opacity: 0;
}

.modify-profile-content-container {
	padding: 30px 0px;
	margin: 20px 0px;
}

.modify-profile-body-container {
	height: 75vh;
	overflow: scroll;
	margin-top: 2px;
}

.modify-profile-body-container .input-wrapper {
	height: 40px;
}

/* airport transfer css */
.carpool-AirportTransferHomeScreen-full.airport-transfer-home {
	height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.carpool-AirportTransferHomeScreen-full.airport-transfer-home .new-home-footer-bg {
	bottom: 5px;
}

.airport-transfer-home .city-box-container {
	display: flex;
	height: auto;
	padding: 10px;
}

.airport-transfer-home .city-container {
	/* display: flex; */
	padding: initial;
}

.airport-transfer-home .city-box-item {
	align-items: center;
}

.airport-transfer-home .counter-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 10px;
}

.airport-transfer-home .counter-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 10px;
	margin-top: 15px;
}

.airport-transfer-home .service-tabs {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: auto;
	margin-top: 2px;
	margin-bottom: 25px;
}

.airport-transfer-home .time-item ion-datetime {
	--padding-start: 0;
	flex: 1;
}

.airport-transfer-home .luggage-capsule {
	display: flex;
	width: 100%;
	border-radius: 20px;
	background-color: var(--secondary-color);
	padding: 5px 10px;
	color: #fff;
	align-items: center;
	justify-content: center;
	margin-top: 21px;
}

.airport-transfer-home .luggage-capsule img {
	height: 20px;
	margin-right: 5px;
}

.airport-transfer-service-item .kupos-card {
	position: relative;
	z-index: 2;
	padding: 10px;
	margin-bottom: 0;
	margin-top: 10px;
}

.airport-transfer-service-item .facilites-list {
	margin: 20px;
	margin-top: -15px;
	padding-top: 20px;
	background-color: #f4f4f4;
	border-radius: 0 0 15px 15px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.airport-transfer-service-item .facilites-list-unauthorised {
	/* margin: 20px; */
	margin-top: -15px;
	padding-top: 20px;
	background-color: #f4f4f4;
	border-radius: 0 0 15px 15px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/* .carousel .control-next.control-arrow:before {
  border-left: 8px solid #000 !important;
}

.carousel .control-prev.control-arrow:before {
  border-left: 8px solid #000 !important;
} */

.carousel .control-dots .dot {
	box-shadow: none !important;
	background-color: grey !important;
}

.carousel .control-dots {
	bottom: -65px !important;
	padding-bottom: 26px !important;
}

.airport-transfer-facilities-item {
	display: grid;
	/* grid-auto-columns: 1fr 1fr; */
	grid-template-columns: 1fr 5fr;
	grid-gap: 7px;
	align-items: center;
	background-color: #f4f4f4;
	padding: 10px 0;
	margin: 0 10px;
	margin-top: -1px;
	border-radius: 0 0 15px 15px;
	position: relative;
	z-index: 0;
	line-height: 1.3;
	/* padding-top: 0; */
	border-radius: 0;
	border-top: 1px solid #ccc;
}

.airport-transfer-facilities-item:nth-child(1) {
	border-top: 0;
}

.airport-transfer-facilities-item .facility-icon img {
	width: 50px;
}

.airport-transfer-facilities-item .kupos-button {
	height: 40px;
	width: 100%;
	padding-top: 10px;
}

.airport-transfer-facilities-item-lower {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
}

.airport-transfer-service-grid {
	display: grid;
	grid-template-columns: 3.5fr 9fr 1.7fr;
	grid-column-gap: 7px;
}

.airport-transfer-service-grid .op-info {
	/* border-right: 1px solid #ccc; */
}

.airport-transfer-service-grid .service-details {
	padding: 0;
	/* white-space: nowrap; */
	overflow: hidden;
	text-overflow: ellipsis;
}

.airport-transfer-service-grid .rating img {
	height: 11px;
	width: auto;
	position: relative;
	top: -0.5px;
	margin-left: -0px;
}

.airport-transfer-service-grid .amenities img {
	height: 17px;
	width: auto;
}

.airport-transfer-service-grid .amenities svg {
	height: 15px;
	margin-right: 6px;
}

.airport-transfer-service-grid .op-logo img {
	/* height: 35px; */
	width: 66px;
	height: auto;
	margin-top: 5px;
}

.airport-transfer-service-grid .op-logo span {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
	height: 23px;
}

.airport-transfer-service-grid .service-date {
	/* height: 35px; */
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	text-transform: capitalize;
}

.airport-transfer-service-grid .rating {
	margin-bottom: 3px;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	width: 100%;
}

.airport-transfer-service-grid .rating>* {
	margin-right: 5px;
}

.airport-transfer-service-grid .from-to {
	margin-top: 5px;
	display: flex;
}

.airport-transfer-service-grid .from-to .common-svg-home.svg-span,
.airport-transfer-service-grid .from-to img {
	width: 14px;
	position: relative;
	top: 0px;
	height: 14px;
	margin-left: -4px;
	right: -3px;
	margin-right: 5px;
}

.airport-transfer-service-grid .from-to.from .common-svg-home.svg-span #Destination {
	fill: var(--primary-color) !important;
}

.airport-transfer-service-grid .seats-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 60px;
}

.airport-transfer-service-grid .price span {
	display: block;
	text-align: center;
	line-height: 1.1;
}

.airport-transfer-service-grid .seats-details .price {
	margin-bottom: -1px;
}

.airport-transfer-service-item {
	margin-bottom: 10px;
	margin: 0px 0px 10px;
}

.airport-transfer-service-item-inner {
	margin: 10px 0px 0px;
	padding: 10px;
	background-color: #fff;
	z-index: 100;
	position: relative;
	padding-bottom: 0px;
}

.payment-inputs {
	margin-bottom: 30px !important;
}

.pb-payment-details-payment-right-side-bar {
	margin: 20px 0;
}

.pb-payment-details-payment-right-side-bar .kupos-card {
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.pb-payment-details-payment-right-side-bar .city-name img {
	width: 18px;
	position: relative;
	top: 2px;
}

.pb-payment-details-payment-right-side-bar .summary-title {
	margin-bottom: 15px;
}

.pb-payment-details-payment-right-side-bar .op-name {
	display: initial;
}

.pb-payment-details-payment-right-side-bar .location-details {
	margin-top: 10px;
}

.pb-payment-details-payment-right-side-bar .duration-col {
	text-align: right;
}

.pb-payment-details-payment-right-side-bar .date-time-row {
	padding: 15px 0;
	/* border-bottom: 1px solid #ccc; */
	/* margin-bottom: 15px; */
}

.pb-payment-details-payment-right-side-bar .payment-seat-row {
	/* margin: 3px 0; */
}

.pb-payment-details-payment-right-side-bar .total.bold {
	margin: 0 20px;
	/* padding: 10px 15px 0px; */
	/* background-color: var(--secondary-color); */
	/* border-radius: 0 0 8px 8px; */
	/* margin-top: -5px; */

	/* padding: 10px 15px 0px; */
	padding: 20px 15px 6px;
	background-color: var(--primary-color);
	/* border-radius: 0 0 8px 8px;
	margin-top: -5px; */
	border-radius: 0 0 14px 14px;
	margin-top: -13px;
}

.pb-payment-details-payment-right-side-bar .total.bold .total-row div {
	color: #fff;
}

.carpool-AirportTransferPaymentScreen-full .payment-block-promo .pb-button {
	/* max-width: 84px; */
	margin-top: 5px;
	/* margin-left: 6px; */
}

.carpool-AirportTransferPaymentScreen-full .kupos-card.payment-inputs {
	margin-top: 10px;
}

.carpool-AirportTransferPaymentScreen-full .payment-methods {
	/* margin-top: 20px; */
	flex-wrap: wrap;
	flex: 1;
}

.carpool-AirportTransferPaymentScreen-full .webpay-payment-method,
.carpool-AirportTransferPaymentScreen-full .kupos-payment-method {
	width: 100%;
	display: flex;
	margin-bottom: 15px;
	align-items: center;
	padding-bottom: 8px;
	/* border-bottom: 1px solid #ccc; */
}

.carpool-AirportTransferPaymentScreen-full .kupos-payment-method {
	display: block;
	text-align: right;
	margin-bottom: 0;
}

.carpool-AirportTransferPaymentScreen-full .kupos-payment-method span.kupos-amount {
	/* position: relative;
  right: 25%; */
}

.carpool-AirportTransferPaymentScreen-full .webpay-payment-method img,
.kupos-payment-method img {
	width: 80px;
	height: auto;
	margin-left: 5px;
	/* margin-bottom: 10px; */
}

.carpool-AirportTransferPaymentScreen-full .tnc.flex-row {
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.carpool-AirportTransferPaymentScreen-full .pay-button {
	margin: 20px;
}

.carpool-AirportTransferPaymentScreen-full .pay-button .pb-button {
	/* height: 50px; */
}

.carpool-AirportTransferPaymentScreen-full .payment-inputs .card-title.black-text {
	margin-bottom: 15px;
}

.carpool-AirportTransferPaymentScreen-full .payment-inputs .inp-row {
	margin-top: 15px;
}

.carpool-AirportTransferPaymentScreen-full .payment-inputs .inp-row .PB-input-container:nth-child(2) {
	margin-left: 8px;
}

/* kupos go css */
.kupos-go-inputs .input-wrapper {
	height: 40px;
}

.kupos-go-inputs .add-stop-icon {
	width: 30px;
	padding-left: 8px;
	margin-top: 31px;
}

.kupos-page-scroll {
	overflow: auto;
	height: calc(100vh - 55px);
	padding: 10px 0;
	padding-bottom: 150px;
}

.page-with-footer {
	height: calc(100vh - 55px - 20vw);
}

.kupos-go-return {
	border-top: 1px solid #ccc;
	margin-top: 20px;
	padding-top: 5px;
}

.otp-inps {
	justify-content: space-around;
	padding: 0 15px;
}

.otp-inps input {
	flex: 1;
	width: 60px;
	width: 60px;
	max-width: 60px;
	padding: 18px 0;
	text-align: center;
	/* border-bottom: 1px solid #ccc; */
	background-color: rgba(217, 217, 217, 0.2);
	/* margin-bottom: 10px; */
	border-radius: 6px;
	font-size: 16px;
}

.phone-inp-with-flag-new {
	align-items: center;
	border: 0.6px solid #ccc;
	border-radius: 10px;
	padding: 0 10px;
	height: 13vw;
	margin-top: 30px;
}

.phone-inp-with-flag-new .input-flag {
	display: flex;
	padding-right: 10px;
	align-items: center;
	/* margin-bottom: 4px; */
	/* border-right: 1px solid #ccc; */
}

.phone-inp-with-flag-new img {
	height: 15px;
	/* margin-top: 5px; */
	border-radius: 4px;
}

.phone-inp-with-flag-new .input-wrapper {
	border: 0;
	margin-top: 0;
	min-height: inherit;
	height: inherit;
	/* width: 40px;
	max-width: 40px; */
	padding: 5px 0;
	text-align: center;
	/* border-bottom: 1px solid #ccc; */
	margin-bottom: 10px;
}

.phone-inp-with-flag {
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 0 10px;
	height: 11vw;
}

.phone-inp-with-flag .input-flag {
	display: flex;
	padding-right: 10px;
	align-items: center;
	margin-bottom: 4px;
	border-right: 1px solid #ccc;
}

.phone-inp-with-flag img {
	height: 20px;
	margin-top: 5px;
	border-radius: 4px;
}

.phone-inp-with-flag .input-wrapper {
	border: 0;
	margin-top: 0;
	min-height: inherit;
	height: inherit;
}

.preference-scren {
	padding: 15px;
}

.bip-home {
	flex: 1;
}

.bip-home .all-inputs .one-row {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.bip-home .all-inputs .one-row .selction-controller,
.bip-home .all-inputs .one-row .choosen-selction {
	/* flex:0.6; */
}

.bip-home .all-inputs .one-row .selction-controller {
	/* flex: 1.5 !important; */
	width: 60%;
}

@media screen and (max-width: 385px) {
	.gender-label-container {
		height: 35px;
		display: flex;
		align-items: center;
	}
}

@media screen and (max-width: 360px) {
	.seat_item_wrapper img {
		width: 30px;
	}

	.train-seat-gangway {
		width: 20px;
	}

	.seat_item_wrapper .steering-img {
		width: 28px;
		margin: 0 1px;
	}

	.seat-row {
		padding: 0px 5px;
	}
}

@media screen and (max-width: 320px) {
	.seat-details {
		padding: 0px 5px 0 0;
	}

	.seat_item_wrapper img {
		width: 27px;
	}

	.train-seat-gangway {
		width: 27px;
	}

	.seat_item_wrapper .steering-img {
		width: 25px;
		margin: 0 1px;
	}

	.seat-layout-inner {
		height: 90%;
	}
}

/* Train seat layout */
.rotate-180-deg {
	transform: rotate(180deg);
}

.seat-icon-model {
	transform: rotate(90deg);
	margin-right: 7px;
}

.coach-layout-front-text {
	display: flex;
	align-items: center;
	margin-top: 20px;
	justify-content: space-evenly;
}

.front-text-image {
	height: 14px;
}

.seats-in-train img {
	transform: rotate(90deg);
	width: 24px;
	max-width: initial;
}

.train-tab-item {
	padding: 5px;
}

.seat-type-item .train-layout-showcase-img {
	width: auto;
	height: 24px;
}

.train-seat-number {
	height: 30px;
}

.train-floor-and-seats-section {
	display: flex;
	flex-direction: column;
	position: relative;
	min-width: 190px;
	top: -4px;
	padding-bottom: 15px;
}

.train-seat-layout-inner {
	padding: 10px 5px;
	flex: 1 1;
	/* height: 96%; */
	height: 93%;
	overflow: scroll;
	margin: 5px 0px;
	transform: rotateY(180deg);
	padding-top: 0px;
	padding: 10px;
	margin-top: 0px;
}

.train-floor-tabs-container {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
	position: absolute;
	width: 100%;
	/* top: -17px; */
}

/* ---------------- bip start ------------------ */

.find-bip-number {
	display: flex;
	margin-top: 30px;
	justify-content: center;
}

.bip-card-number-payment {
	margin: 14px 0px;
}

.bip-checkbox-tnc {
	margin: 20px 0px;
}

.add-bip-card-body {
	margin: 0px 20px;
}

.example-add-card {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	margin-top: 5px;
	margin-bottom: 25px;
}

.example-add-card img {
	height: auto;
	width: 54%;
}

.add-bip-card-container {
	margin: 12px 0px;
	margin-top: 30px;
}

.bip-add-input-container {
	margin: 10px 0px;
	margin-bottom: 20px;
}

.example-add-card .edit-card-icon-holder img {
	height: 30px;
	width: auto;
	position: absolute;
	right: 24%;
	bottom: 2%;
}

.my-bip-cards-container .edit-card-icon-holder {
	height: 30px !important;
	width: 30px !important;
	position: absolute !important;
	right: -4% !important;
	bottom: -4% !important;
}

.suggested-recharges {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.suggested-recharges .suggested-amount {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 6px 1px;
}

.edit-bip-card-container {
	margin-top: 9%;
}

.delete-popup-content {
	padding: 10px 10%;
	margin-top: 20px;
}

.delete-popup-content .value-delete-item-popup {
	margin-left: 5px;
}

.body-amy-cards-my-account {
	height: 90%;
	overflow: scroll;
}

.overflow-scroll {
	overflow: scroll;
}

.new-bip-home-footer-buttons {
	width: 100vw;
	height: 12vh;
	position: absolute;
	/* margin-top: 31vh; */
	bottom: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.new-bip-home-footer-bg {
	display: flex;
	width: 100vw;
	position: absolute;
}

.bip-container-footer-page {
	height: 50vh;
}

.new-bip-center-button {
	bottom: 5vh;
}

.counter-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	margin-top: 12px;
}

.kupos-go-counter-row {
	margin-top: 10px;
}

.counter-row .luggage-col .kupos-go-luggage-capsule img {
	height: 15px;
	margin-right: 10px;
}

.kupos-go-luggage-capsule {
	display: flex;
	width: 100%;
	border-radius: 20px;
	background-color: var(--secondary-color);
	padding: 5px 10px;
	color: #fff;
	align-items: center;
	justify-content: center;
	margin-top: 23px;
}

.add-stop-section {
	display: flex;
	margin-top: 8px;
	align-items: center;
}

.add-stop-section img {
	height: 16px;
	margin-right: 5px;
}

.kupos-go-body-inner {
	height: 72vh;
	overflow: scroll;
}

.kupos-go-passenger-details-booking-input-inner-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	margin: 12px 0px;
	margin-bottom: 0px;
	/* align-items: flex-end; */
}

/* At details screen page styleing */
.at-details-item-container {
	padding-top: 10px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}

.at-details-text {
	font-size: 14px;
	margin-top: 2px;
	color: #464647;
}

.at-details-cancel-strip {
	background-color: var(--primary-color);
	margin-left: 20px;
	margin-right: 20px;
	padding: 14px;
	padding-top: 20px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-top: -26px;
	position: relative;
}

.carbon-emmission-row {
	display: flex;
	justify-content: space-between;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px;
}

.clear-date {
	width: 100%;
	justify-content: center;
	padding: 2px;
}

.clear-date-inner {
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 3px;
}

.ver-button-my-trips {
	font-size: 11px;
	color: rgb(70, 70, 71);
	background-color: #eee;
	width: 14vw;
	height: 4vw;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.datetime-text {
	margin-top: 4px;
}

.my-cards-main-item {
	display: grid;
	grid-template-columns: 2fr 8fr 1fr;
}

.my-cards-main-item .card-item {
	display: flex;
	align-items: center;
	justify-content: center;
	/* border-right: 1px solid #aaa; */
}

/* react crop css start */
.ReactCrop {
	position: relative;
	display: inline-block;
	cursor: crosshair;
	overflow: hidden;
	max-width: 100%;
}

.ReactCrop:focus {
	outline: none;
}

.ReactCrop--disabled,
.ReactCrop--locked {
	cursor: inherit;
}

.ReactCrop__image {
	display: block;
	max-width: 100%;
	touch-action: manipulation;
}

.ReactCrop__crop-selection {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate3d(0, 0, 0);
	box-sizing: border-box;
	cursor: move;
	box-shadow: 0 0 0 9999em rgba(0, 0, 0, 0.5);
	touch-action: manipulation;
	border: 1px solid;
	border-image-source: url("data:image/gif;base64,R0lGODlhCgAKAJECAAAAAP///////wAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OEI5RDc5MTFDNkE2MTFFM0JCMDZEODI2QTI4MzJBOTIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OEI5RDc5MTBDNkE2MTFFM0JCMDZEODI2QTI4MzJBOTIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4MDgzQzNDMjA5MzREQ0ZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjAyODAxMTc0MDcyMDY4MTE4MDgzQzNDMjA5MzREQ0ZDIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoAAgAsAAAAAAoACgAAAhWEERkn7W3ei7KlagMWF/dKgYeyGAUAIfkEBQoAAgAsAAAAAAoACgAAAg+UYwLJ7RnQm7QmsCyVKhUAIfkEBQoAAgAsAAAAAAoACgAAAhCUYgLJHdiinNSAVfOEKoUCACH5BAUKAAIALAAAAAAKAAoAAAIRVISAdusPo3RAzYtjaMIaUQAAIfkEBQoAAgAsAAAAAAoACgAAAg+MDiem7Q8bSLFaG5il6xQAIfkEBQoAAgAsAAAAAAoACgAAAg+UYRLJ7QnQm7SmsCyVKhUAIfkEBQoAAgAsAAAAAAoACgAAAhCUYBLJDdiinNSEVfOEKoECACH5BAUKAAIALAAAAAAKAAoAAAIRFISBdusPo3RBzYsjaMIaUQAAOw==");
	border-image-slice: 1;
	border-image-repeat: repeat;
}

.ReactCrop--disabled .ReactCrop__crop-selection {
	cursor: inherit;
}

.ReactCrop--circular-crop .ReactCrop__crop-selection {
	border-radius: 50%;
	box-shadow: 0px 0px 1px 1px white, 0 0 0 9999em rgba(0, 0, 0, 0.5);
}

.ReactCrop--invisible-crop .ReactCrop__crop-selection {
	display: none;
}

.ReactCrop__rule-of-thirds-vt::before,
.ReactCrop__rule-of-thirds-vt::after,
.ReactCrop__rule-of-thirds-hz::before,
.ReactCrop__rule-of-thirds-hz::after {
	content: "";
	display: block;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.4);
}

.ReactCrop__rule-of-thirds-vt::before,
.ReactCrop__rule-of-thirds-vt::after {
	width: 1px;
	height: 100%;
}

.ReactCrop__rule-of-thirds-vt::before {
	left: 33.3333%;
	left: calc(100% / 3);
}

.ReactCrop__rule-of-thirds-vt::after {
	left: 66.6666%;
	left: calc(100% / 3 * 2);
}

.ReactCrop__rule-of-thirds-hz::before,
.ReactCrop__rule-of-thirds-hz::after {
	width: 100%;
	height: 1px;
}

.ReactCrop__rule-of-thirds-hz::before {
	top: 33.3333%;
	top: calc(100% / 3);
}

.ReactCrop__rule-of-thirds-hz::after {
	top: 66.6666%;
	top: calc(100% / 3 * 2);
}

.ReactCrop__drag-handle {
	position: absolute;
}

.ReactCrop__drag-handle::after {
	position: absolute;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-sizing: border-box;
	outline: 1px solid transparent;
}

.ReactCrop .ord-nw {
	top: 0;
	left: 0;
	margin-top: -5px;
	margin-left: -5px;
	cursor: nw-resize;
}

.ReactCrop .ord-nw::after {
	top: 0;
	left: 0;
}

.ReactCrop .ord-n {
	top: 0;
	left: 50%;
	margin-top: -5px;
	margin-left: -5px;
	cursor: n-resize;
}

.ReactCrop .ord-n::after {
	top: 0;
}

.ReactCrop .ord-ne {
	top: 0;
	right: 0;
	margin-top: -5px;
	margin-right: -5px;
	cursor: ne-resize;
}

.ReactCrop .ord-ne::after {
	top: 0;
	right: 0;
}

.ReactCrop .ord-e {
	top: 50%;
	right: 0;
	margin-top: -5px;
	margin-right: -5px;
	cursor: e-resize;
}

.ReactCrop .ord-e::after {
	right: 0;
}

.ReactCrop .ord-se {
	bottom: 0;
	right: 0;
	margin-bottom: -5px;
	margin-right: -5px;
	cursor: se-resize;
}

.ReactCrop .ord-se::after {
	bottom: 0;
	right: 0;
}

.ReactCrop .ord-s {
	bottom: 0;
	left: 50%;
	margin-bottom: -5px;
	margin-left: -5px;
	cursor: s-resize;
}

.ReactCrop .ord-s::after {
	bottom: 0;
}

.ReactCrop .ord-sw {
	bottom: 0;
	left: 0;
	margin-bottom: -5px;
	margin-left: -5px;
	cursor: sw-resize;
}

.ReactCrop .ord-sw::after {
	bottom: 0;
	left: 0;
}

.ReactCrop .ord-w {
	top: 50%;
	left: 0;
	margin-top: -5px;
	margin-left: -5px;
	cursor: w-resize;
}

.ReactCrop .ord-w::after {
	left: 0;
}

.ReactCrop__disabled .ReactCrop__drag-handle {
	cursor: inherit;
}

.ReactCrop__drag-bar {
	position: absolute;
}

.ReactCrop__drag-bar.ord-n {
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	margin-top: -3px;
}

.ReactCrop__drag-bar.ord-e {
	right: 0;
	top: 0;
	width: 6px;
	height: 100%;
	margin-right: -3px;
}

.ReactCrop__drag-bar.ord-s {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
	margin-bottom: -3px;
}

.ReactCrop__drag-bar.ord-w {
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	margin-left: -3px;
}

.ReactCrop--new-crop .ReactCrop__drag-bar,
.ReactCrop--new-crop .ReactCrop__drag-handle,
.ReactCrop--fixed-aspect .ReactCrop__drag-bar {
	display: none;
}

.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-n,
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-e,
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-s,
.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-w {
	display: none;
}

@media (pointer: coarse) {

	.ReactCrop .ord-n,
	.ReactCrop .ord-e,
	.ReactCrop .ord-s,
	.ReactCrop .ord-w {
		display: none;
	}

	.ReactCrop__drag-handle {
		width: 24px;
		height: 24px;
	}
}

/* react crop css end */

/* new recharge transfer screen */

.open-contacts-input {
	width: 100%;
	margin-top: 3px;
}

.open-contacts-inout-inner {
	flex: 1;
	height: 11vw;
	align-items: center;
	display: flex;
	border-radius: 10px;
	border: 1px solid #ccc;
	padding-left: 20px;
	padding-right: 20px;
}

.new-transfer-screen-h-line {
	border-bottom: 1px solid #ccc;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 100%;
}

.new-transfer-screen-fav-item {
	width: 100%;
	display: flex;
	margin-top: 8px;
	justify-content: space-between;
}

.recipient-info-image {
	width: 9vw;
	height: 9vw;
	border-radius: 8vw;
}

.transfer-money-payment-radio-button {
	border-radius: 10px;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	border: 2px solid #ff5c60;
	margin-right: 10px;
}

.recipient-image-circle {
	width: 15vw;
	height: 15vw;
	border-radius: 7px;
	overflow: hidden;
	border: 2px solid #fff;
	align-items: center;
	justify-content: center;
}

/* Kupos pool Modal settings */

.modal-bottom-img-container {
	width: 100%;
	position: absolute;
	left: 0px;
	bottom: -5px;
}

.modal-item-conatiner {
	margin-top: 20px;
	/* margin-bottom: 120px; */
}

.modal-social-icon-container {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	position: absolute;
	bottom: 40px;
	left: 0px;
	width: 100%;
}

.modal-download-desc-container {
	margin-bottom: 120px;
	margin-top: 30px;
}

.modal-social-icon-container img {
	height: 30px;
	width: auto;
}

.modal-bottom-img {
	width: 100%;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.modal-top-img {
	width: 90%;
	height: auto;
	margin-left: 5%;
}

.modal-desc-container {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin-left: 10px;
}

.pager-controls .pager-control .control-icon {
	width: 30px;
}

/* .track div:nth-child(1) { */
/* width: 100% !important; */
/* display: inline-block; */
/* } */

.track-first {
	width: 500% !important;
}

/* AT COUNTER STYLING  */

.at-counter-row {
	display: grid;
	gap: 10px;
	grid-template-columns: 1.6fr 1fr;
	padding-top: 15px;
}

.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);
}

.kupos-card-title {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.kupos-card-at-container {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.6);
	height: 100%;
	width: 100%;
	z-index: 1000;
}

.kupos-card-at {
	/* position: absolute; */
	/* top: 120px; */
	width: 90%;
	margin-left: 15px;
}

/* kupos timepicker style  */

.date-time-picker {
	position: absolute !important;
	right: 1% !important;
	width: 200% !important;
	background-color: #fff;
	border-radius: 15px;
	overflow: hidden;
	padding: 10px 18px;
	box-shadow: 1px 1px 16px 0px rgb(0 0 0 / 8%);
}

.common-kupos-time-picker {
	margin-top: 3px;
}

.kupos-no-boder {
	border: 0px solid #fff !important;
}

.date-inner {
	height: 41px;
	/* margin-top: 7px; */
}

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

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

.up-down-icon {
	height: 30px;
}

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

.time-picker-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	/* padding: 25px; */
	background: #fff;
	/* margin-top: -20px; */
	border-radius: 0px 0px 15px 15px;
	display: flex;
	justify-content: center;
}

.value-ampm {
	/* padding: 6px; */
	max-width: 40px;
	min-width: 40px;
	border-radius: 7px;
	border: 1px solid #ccc;
	height: 36px;
	font-size: 13px;
	text-align: center;
	padding-top: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.value input {
	/* padding: 9px; */
	max-width: 40px;
	min-width: 40px;
	border-radius: 7px;
	border: 1px solid #ccc;
	height: 36px;
	font-size: 13px;
	background-color: transparent;
	text-align: center;
	padding-top: 4px;
}

.calendar-clock-container {
	background-color: #fff;
	border-radius: 15px;
}

.timepicker-hr {
	border-bottom: 0.5px solid #ddd;
	width: 90%;
	margin: auto;
}

.time-title {
	display: flex;
	justify-content: center;
	margin: 20px 0px;
}

.calendar-clock-btn {
	width: 80%;
	margin: auto;
	margin-top: 5%;
	padding-bottom: 30px;
}

.optional-date-time-container {
	position: relative;
}

.calendar-clock-container .common-kupos-calendar {
	box-shadow: none !important;
}

.optional-field-mask {
	height: 43px;
	position: absolute;
	bottom: 0;
	width: 100%;
	border-radius: 10px;
	border: 1px solid var(--border);
	background-color: #e5e5e5;
	display: flex;
	align-items: center;
}

.mask-icon {
	height: 20px;
	margin: 0px 10px;
}

/* new airport transfer changes */

.origin-dest-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 0px 10px;
	margin-top: 6px;
}

.masked {
	background-color: #dedcd8;
}

.origin-dest-container .origin-dest-inner {
	width: 100%;
}

.cross-icon-container {
	position: absolute;
	right: 0px;
	top: 12px;
}

.cross-icon {
	height: 15px !important;
	width: 15px !important;
}

/* amenities section styling  */

.read-more {
	background-color: var(--secondary-color);
	color: #fff !important;
	border-radius: 15px;
	padding: 2px 8px;
	display: flex;
	align-items: center;
	/* max-width: 120px; */
	margin-left: 10px;
	margin-bottom: 10px;
	display: inline-flex;
}

.read-more-icon {
	height: 10px;
	margin-right: 5px;
}

.main-amenities-container {
	margin: 20px 10px;
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
}

.main-amenities-container .inner-item .section-header {
	padding: 0px;
}

.section-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px 0px;
}

.section-icon {
	margin-right: 5px;
	max-height: 25px;
}

.item-content {
	padding-bottom: 10px;
}

.horizontal-line-amenities {
	border-top: 1px solid #ccc;
	margin: 5px 0px;
}

/* .slider-image-height {
	height: 160px;
}

.slider-height {
	height: 170px;
} */

.carousel.carousel-slider {
	overflow: visible !important;
}

.carousel .control-dots .selected {
	background-color: #572a85 !important;
}

.carousel.carousel-slider .control-arrow:hover {
	background: transparent !important;
}

/* AT terminal suggestions styling starts  */

.at-termninal-suggestions {
	position: absolute;
}

.at-termninal-suggestions a img {
	height: 20px;
	margin-right: 5px;
}

.at-termninal-suggestions a {
	display: flex !important;
	align-items: flex-start;
}

.at-termninal-suggestions.auto-suggestions {
	max-height: 175px;
	overflow-y: auto;
	position: absolute;
	z-index: 990;
	background-color: #fff;
	border: 1px solid #ccc;
	min-width: 80%;
	border-radius: 0 0 10px 10px;
	padding-top: 10px;
	margin-top: -4px;
	left: 9.7%;
	width: 80.5%;
}

.at-termninal-suggestions.auto-suggestions a {
	padding: 10px 14px;
	border-bottom: 1px solid #ccc;
	display: block;
	cursor: pointer;
	color: #464647;
}

.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);
}

.at-termninal-suggestions.auto-suggestions .top-at-terminals {
	padding: 2px 14px;
}

.services-image-container {
	display: flex;
	justify-content: center;
	margin: 10px;
}

.services-image-container img {
	width: 100px;
}

.at-search-city-input div {
	flex: 1;
}

/* 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;
}

.flash-message-container {
	background: #fff;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	z-index: 1;
}

.flash-message-container img {
	width: 100%;
}

.transvip-payment-page-message {
	margin-top: 10px;
}

.authorised-strip {
	/* position: absolute;  */
	/* left: 0; */
	/* top: -25px; */
	background: var(--primary-light-color);
	/* width: 100%; */
	border-radius: 5px 5px 0 0;
	display: flex;
	align-items: center;
	/* margin: -11px -11px 10px -12px; */
	margin: -20px -11px 10px -12px;
}

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

.authorised-strip-img {
	background-color: var(--secondary-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 20px;
	color: #fff;
}

.unauthorised-strip-img {
	background-color: var(--secondary-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 10px;
	color: #fff;
	width: 150px;
}

.authorised-strip-text {
	margin-left: 10px;
}

.hr-line {
	height: 1px;
	background-color: #cecece;
	margin: 10px 0px;
}

.remove-shadow {
	padding-bottom: 0px !important;
	box-shadow: 0px 0px !important;
}

.parent-at-search {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.at-service-list-main-container {
	height: 90vh;
	overflow-y: scroll;
	z-index: 1;
}

.question-emotion-refs {
	display: flex;
	justify-content: space-between;
}

.question-emotion-refs img {
	width: 30px;
}

.question-inner {
	display: flex;
	justify-content: center;
	padding: 10px 0px;
	text-align: center;
}

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

.survery-desc .line-1 {
	padding: 20px 0px;
}

.emo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.info-text-container {
	margin-top: 10px;
}

.info-text-container input[TYPE="radio"] {
	accent-color: #ff5c60;
	-webkit-appearance: none;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	outline: none;
	box-shadow: 0 0 0 2px #ff5c60;
}

.info-text-container input[type="radio"]:checked {
	box-shadow: 0 0 0 2px #ff5c60;
}

.info-text-container input[type="radio"]:before {
	content: "";
	display: block;
	width: 60%;
	height: 60%;
	margin: 20% auto;
	border-radius: 50%;
}

.info-text-container input[type="radio"]:checked:before {
	background: #ff5c60;
}

.comment-box-bottom-message {
	display: flex;
	justify-content: center;
	padding: 10px;
}

.widget-hero-image-container img {
	width: 100%;
}

.unired-at-container .kupos-card {
	border-radius: 0px;
	background-color: white;
	box-shadow: none;
	z-index: 2;
	padding: 0px;
	margin: 0px;
	padding-bottom: 0px;
}

.unired-at-container .new-home-body-container {
	padding: 0px 10px;
}

.internation-modal-body {
	margin-top: 10px;
}

.internation-modal-body .top-bar-modal-text-container {
	margin: 15px 0px;
}

.internation-modal-body .top-bar-modal-text-container span {
	background-color: var(--secondary-color);
	color: #fff;
	border-radius: 50px;
	padding: 5px 10px;
}

.internation-modal-body .int-item-body {
	margin: 7px 0px;
	/* text-align: center; */
}

.int-dot {
	display: inline-block;
	height: 4px;
	width: 4px;
	background: #464647;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
	margin-bottom: 2px;
	margin-right: 3px;
}

.return-trip-selection-modal {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.return-trip-selection-modal .at-no-trips-body {
	width: 70%;
}

.return-trip-selection-modal .at-no-trips-body .no-return-trip-icon-container {
	display: flex;
	justify-content: center;
}

.return-trip-selection-modal .at-no-trips-body .no-return-trip-icon-container img {
	width: 60px;
	height: auto;
}

.return-trip-selection-modal .return-trip-modal-button {
	margin-top: 20px;
	width: 100%;
}

/* toast css */

.kupos-toast {
	visibility: hidden;
	height: 44px;
	margin: auto;
	width: 50px;
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	position: fixed;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 30px;
	white-space: nowrap;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kupos-toast .img {
	width: 50px;
	height: 50px;
	float: left;
	padding-top: 16px;
	padding-bottom: 16px;
	box-sizing: border-box;
	background-color: #111;
	color: #fff;
}

.kupos-toast .desc {
	color: white;
	padding: 6px;
	overflow: hidden;
	white-space: nowrap;
	/* margin-top: 4px; */
}

.kupos-toast.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s,
		fadeout 0.5s 2.5s;
	animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s,
		fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes expand {
	from {
		min-width: 50px;
	}

	to {
		min-width: 350px;
	}
}

@keyframes expand {
	from {
		min-width: 50px;
	}

	to {
		min-width: 350px;
	}
}

@-webkit-keyframes stay {
	from {
		min-width: 350px;
	}

	to {
		min-width: 350px;
	}
}

@keyframes stay {
	from {
		min-width: 350px;
	}

	to {
		min-width: 350px;
	}
}

@-webkit-keyframes shrink {
	from {
		min-width: 350px;
	}

	to {
		min-width: 50px;
	}
}

@keyframes shrink {
	from {
		min-width: 350px;
	}

	to {
		min-width: 50px;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 60px;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 60px;
		opacity: 0;
	}
}

@keyframes scaleAnimation {
	0% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.5);
	}
}

.sold_out_div {
	/* width: 100px; */
	/* height: 100px; */
	/* background-color: #3498db; */
	animation: scaleAnimation 2s infinite ease-in-out;
}

.type-writter-effect {
	display: inline-block;
	color: var(--secondary-color);
	overflow: hidden;
	/* Ensures the content is not revealed until the animation */
	border-right: 0.15em solid var(--secondary-color);
	/* The typwriter cursor */
	white-space: nowrap;
	/* Keeps the content on a single line */
	margin: 0 auto;
	/* Gives that scrolling effect as the typing happens */
	letter-spacing: 0.15em;
	/* Adjust as needed */
	animation: typing 3.5s steps(40, end) infinite,
		/* Infinite typing animation */
		blink-caret 0.75s step-end infinite;
	width: fit-content;
}

/* The typing effect */
@keyframes typing {
	0% {
		width: 0;
	}

	50% {
		width: 100%;
	}

	100% {
		width: 0;
	}

	/* Reset the width to 0 for repeating */
}

/* The typewriter cursor effect */
@keyframes blink-caret {

	from,
	to {
		border-color: transparent;
	}

	50% {
		border-color: var(--secondary-color);
	}
}

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

.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;
}

.loader-cricle-2 {
	border-top: 1em solid rgb(254 92 96);
	border-right: 1em solid rgb(254 92 96 / 87%);
	border-bottom: 1em solid rgb(254 92 96 / 61%);
	border-left: 1em solid #fe5c606e;
}

@-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);
	}
}

/* pnr modal styling */
.transform-component-module_content__FBWxo img {
	width: 100% !important;
}

.terms-container {
	margin: 0px 5vw;
	margin-bottom: 30px;
}

#environmental-body {
	line-height: 1.2;
}

.pb-modal-container .subtitle-container {
	margin-top: 12px;
}

/* popup modal styling */

.popup_modal_container {
	width: 100%;
}

.popup_modal_container img {
	/* width: 94%; */
	width: 100%;
}

/* one click cards styling */

.card-item {
	width: 100%;
	display: flex;
}

.card-image-container {
	display: flex;
	justify-content: space-between !important;
	align-items: center;
	/* border-bottom: 1px solid #ccc; */
	flex: 1;
	padding: 5px 10px;
}

.radio-container {
	display: flex;
	align-items: center;
	/* padding: 5px 0; */
}

.oneclick-cards-wrapper .kupos-payment-method {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.airport-transfer-payment .journey-summary-sidebar .summary-details .duration {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 0px;
}

.telephone-capsule {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ff5c60;
	color: #fff;
	padding: 6px;
	padding-left: 14px;
	padding-right: 14px;
	flex-wrap: nowrap;
	margin-top: 10px;
	border-radius: 20px;
	font-size: 12px;
	padding-top: 7px;
}

.telephone-flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.telephone-timing-item {
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
	margin-bottom: 6px;
}

.tabs-conatiner {
	display: flex;
}

/* // Agency Login */
.activeLogin {
	background-color: white;
	padding: 8px 25px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-weight: bolder;
	color: black;
}

.inActive {
	background-color: #ff5c60;
	padding: 8px 25px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-weight: bolder;
	color: white;
}

.login-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 20px 0;
}

.heading1 {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 16px;
}

.radio-button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
}

.bottom-data {
	margin-top: 25px;
	text-align: center;
}

.col_mp {
	text-align: center;
	padding: 6px 0;
}

/**********************/

.flex-row-coupon {
	/* display: flex; */
	/* flex-wrap: wrap; */
	/* flex: 1; */
	/* display: grid; */
	/* grid-template-columns: 1fr 1fr; */
	/* gap: 20px; */
}

.coupons_wrapper .carousel .slider-wrapper.axis-horizontal .slider .slide {
	height: 300px !important;
	text-align: left !important;
}

.alice_carousel_wrapper {
	display: flex;
	margin-top: 40px;
}

.coupon_item_wrapper {
	position: relative;
	filter: grayscale(1);
	/* margin-top: 20px; */
}

.coupon_item_wrapper .economical {
	position: absolute;
	top: -10px;
	/* height: 20px; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* width: 110px; */
	border-radius: 100px;
	background-color: var(--secondary-light-color);
	padding: 6px 10px;
	right: 20px;
	color: var(--secondary-color);
}

.cuponera_op_name {
	margin-left: 10px;
}

.coupon_item_wrapper.selected {
	filter: grayscale(0);
}

.coupon_item_wrapper .op_details {
	margin-top: 8px;
	margin-bottom: 10px;
	align-items: center;
	display: flex;
}

.coupon_item_wrapper .route-origin,
.coupon_item_wrapper .route-dest {
	display: flex;
	align-items: center;
}

.coupon_item_wrapper .route-dest {
	margin-bottom: 12px;
}

.coupon_item_wrapper .route-origin span,
.coupon_item_wrapper .route-dest span,
.coupon_item_wrapper .op_details span {
	margin-top: 3px;
}

.flex-row-coupon .kupos-card {
	/* flex: 1; */
}

.mycoupons-section {
	line-height: 22px;
}

.coupons-sec img.qr-back-arrow {
	filter: none !important;
}

.coupon-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.coupon-logo {
	width: 60%;
}

.coupon-logo img {
	width: 100%;
}

.coupon-count span {
	color: var(--secondary-color);
}

.coupon-count {
	text-align: right;
}

.coupon-count p>span {
	background: var(--secondary-color);
	color: #fff;
	border-radius: 20px;
	padding: 4px 14px;
}

.coup-icon {
	width: 14px !important;
	margin-right: 4px !important;
}

.total-seats-value {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.coupon-flexbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-items: baseline;
}

.coupon-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	/* border-top: 2px solid #ccc; */
	padding: 10px 20px 3px 20px;
	background-color: var(--secondary-color);
	position: absolute;
	width: 95%;
	bottom: -30px;
	margin: 0 2.5%;
	z-index: -1;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	color: white;
}

.no-border {
	border: none;
	padding-top: 0px;
	margin-top: 0px;
}

.coupon-rating .coup-icon {
	width: 10%;
}

.total-value-coupon p {
	/* color: var(--secondary-color); */
}

.kupos-card-container {
	position: relative;
}

.red-area-coupon {
	padding: 11px 16px 11px !important;
	background-color: var(--secondary-color) !important;
	border-radius: 0 0 8px 8px !important;
	margin-top: -18px !important;
	z-index: -1;
	position: relative;
	color: #fff;
}

.shadow-btn button {
	box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.09);
	padding: 9px 17px !important;
	height: auto;
}

.coupon-payment {
	display: flex;
	align-items: center;
	border-bottom: 2px solid #ccc;
	padding: 9px 0px;
}

.payment-coupon-img {
	width: 29%;
	padding-left: 5px;
}

.payment-coupon-img img {
	width: 100%;
}

.no-border {
	border: none;
	padding-bottom: 4px;
}

.kupos-checkboxes {
	padding-left: 30px;
	line-height: 30px;
	color: var(--secondary-color);
}

.kupos-checkboxes input:checkbox {
	color: var(--secondary-color);
}

.tnc-coupon {
	padding: 18px 38px !important;
}

.tnc-coupon p span {
	padding-left: 5px;
}

.tnc-coupon .custom-button-couponera button {
	width: 60%;
}

.show-whatsapp-info-popup {
	z-index: 1;
	background-color: #ff5c60;
	position: absolute;
	padding: 3px 20px;
	border-radius: 10px;
	top: 89%;
	left: 11%;
	color: white;
	font-size: 14px;
}

.at_city_selection_screen {
	background-color: red;
}

.centro_porto_info_wrapper {
	display: flex;
	flex-direction: column;
}

.centro_porto_info_wrapper .info_section_centro {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.centro_porto_info_wrapper .info_section_centro img {
	height: 14px;
	margin-right: 4px;
}

.centro_porto_info_wrapper .info_section_centro span {
	margin-top: 4px;
}

.info_section_centro_details_title ul {
	padding-left: 10px;
	margin-top: 8px;
}

/* CONFIRM CUPONERA IN PAYMENT SCREEN */

.payment-method-wrapper {
	/* padding: 20px; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
}

.payment-method-wrapper .payment-method {
	padding: 10px;
}

.payment-method-wrapper .payment-method-active {
	background-color: #ff5c60;
	color: #fff;
	font-weight: 700;
	border-radius: 10px;
}

.pl-2 {
	padding-left: 20px;
}

.coupon-info-para {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.coupon-info-para-dot {
	background-color: black;
	width: 5px;
	height: 5px;
	border-radius: 10px;
	margin-right: 8px;
}

.coupon-info-text {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* AT SURVEY PAGE */
.emo-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.info-text-container {
	margin-top: 10px;
}

.seat-info-container {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 6px;
}

.seat-info-description {
	flex: 1;
}

.fast-filling {
	text-align: right;
	margin-top: 6px;
	color: var(--primary-color);
	display: flex;
	justify-content: flex-end;
	/* width: 100%; */
	align-self: flex-end;
}

.hideScrollbar::-webkit-scrollbar {
	display: none;
}

.main-icons-container {
	width: "100%";
	overflow-x: auto;
}

.recharge-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 50px;
	/* margin-top: 10px; */
}

.recharge-item-wrapper {
	border: 0.5px solid lightgrey;
	border-radius: 1000px;
	padding: 17px 1px;
	height: 60px;
	width: 60px;
}

.mainAppsWrapper {
	margin-top: 15px;
}

.mainAppsWrapperNew {
	margin-top: 10px;
}

.mainAppsWrapper-container {
	margin-bottom: 14px;
}

.image-container {
	/* background-color: #fef1ec; */
	background-color: rgba(255, 222, 223, 0.4);
	/* height: 80px; */
	width: 80px;
	border-radius: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.my-account-top-image-container {
	background-color: rgba(255, 222, 223, 0.4);
	height: 70px;
	width: 85px;
	border-radius: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.my-account-bottom-image-container {
	background-color: rgba(255, 222, 223, 0.4);
	height: 70px;
	width: 85px;
	border-radius: 15px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.PB-input-container .floating-label {
	min-height: 40px;
	height: 11vw;
	/* max-height: 40px; */
	/* overflow: hidden; */
}

.main-body-inner {
	background-color: #fff;
	width: 100%;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	margin-top: -80px;
	padding: 20px;
	height: 50vh;
}

.kupos-cards-conatiner {
	border: 1px solid lightgrey;
	border-radius: 8px;
	padding: 20px;
	margin: 20px;
	padding-bottom: 20px;
	background-color: #fff;
	position: relative;
	z-index: 2;
}

.kupos-cards-border-strip {
	display: flex;
	justify-content: space-between;
	margin: 20px;
	background-color: rgb(255, 222, 222);
	padding: 15px 20px;
	margin-top: -25px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border: 1px solid #f4babb;
}

.new-icons-container {
	border-top-right-radius: 30px;
	border-top-left-radius: 30px;
	background-color: #fff;
	padding: 30px 30px 40px;
	height: 60vh;
	/* margin-top: 20px; */
}

.user-info-container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.user-info-inner-container {
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-radius: 100px;
}

.top-list-item-active {
	font-weight: bold;
	color: #ff5722;
	border: 1px solid green;
}

.train-modal-container {
	width: 80px;
	height: 80px;
	background-color: #fef1ec;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	margin: auto;
}

.train-modal-data {
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main_modal_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 0;
}

.img_container {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	margin-left: 34%;
}

.description {
	line-height: 1.2;
	font-size: 14px;
	margin-bottom: 25px;
	padding: 0 0px;
}

.code,
.company,
.purchase-date,
.tickets,
.validity {
	font-size: 14px;
	color: #666;
	/* margin-top: 6px; */
}

.location {
	margin-top: 10px;
}

.location-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #666;
	margin-top: 4px;
}

.location-icon {
	margin-right: 8px;
}

.tickets {
	font-weight: bold;
	color: var(--secondary-color);
	margin-top: 8px;
}

.barcode-button {
	background-color: #ffa552;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border: none;
	border-radius: 16px;
	padding: 10px 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

.barcode-button span {
	margin-right: 8px;
}

.validity {
	text-align: center;
	font-size: 12px;
	color: #999;
	margin-top: 12px;
}

.trans-main-container {
	background-color: #fff;
	height: 80vh;
	border-top-left-radius: 22px;
	border-top-right-radius: 22px;
}

.trans-calender-container {
	border: 1px solid lightgray;
	margin: 10px 30px 20px 30px;
	border-radius: 16px;
	padding: 10px 0;
	/* overflow-y: scroll; */
}

.trans-calender-container-promotions {
	border: 1px solid lightgray;
	margin: 20px 0;
	border-radius: 10px;
	padding: 5px 0;
}

.trans-kupospay-container {
	padding: 10px 20px;
}

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

.trans-date-container {
	display: flex;
	gap: 30px;
}

.trans-label-container {
	display: flex;
	flex-direction: column;
	margin-right: 20px;
}

/* TICKET SCREEN */
.ticket-container {
	border: 1px solid lightgray;
	padding: 10px 15px 5px 15px;
	margin-top: 10px;
	border-radius: 13px;
}

.ticket-type-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 14px 0;
}

.ticket-category {
	background-color: #ff5c60;
	padding: 3px 15px;
	color: white;
	border-radius: 5px;
	position: relative;
	z-index: 1;
}

.ticket-status {
	padding: 8px 18px;
	/* margin-left: -3px; */
	/* position: relative; */
	z-index: 0;
	border-radius: 14px;
}

.ticket-origin-destination {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.dot-seperator {
	background-color: black;
	width: 2px;
	height: 2px;
	border-radius: 100%;
	padding: 2px;
	margin-right: 5px;

	.align-self-end {
		align-self: flex-end;
	}

	.w-fit {
		width: fit-content;
	}

	.shimmer {
		width: 100%;
		height: 100%;
		background: linear-gradient(to right,
				#f0f0f0 0%,
				#e0e0e0 20%,
				#f0f0f0 40%,
				#f0f0f0 100%);
		background-size: 200% 100%;
		animation: shimmer 1.5s infinite;
		border-radius: 8px;
	}

	@keyframes shimmer {
		0% {
			background-position: -200% 0;
		}

		100% {
			background-position: 200% 0;
		}
	}

	.transactions-deep_date-picker {
		/* position: absolute; */
		width: 100%;
		opacity: 1;
		height: 36px;
	}

	.trans-calender-container {
		border: 1px solid lightgray;
		margin: 20px 20px;
		border-radius: 10px;
		padding: 5px 0;
	}

	.tab-main-container {
		display: flex;
		justify-content: center;
		border-radius: 10px;
		margin-bottom: 40px;
		align-items: center;
		gap: 20px;
	}

	.tab-item-container {
		text-align: center;
		padding: 14px 13px;
		border-radius: 50%;
		background-color: transparent;
		transition: all 0.3s ease;
		cursor: pointer;
		background-color: rgba(255, 194, 194, 0.7);
		width: 50px;
		height: 50px;
	}

	.tab-item-container.selected {
		background-color: rgba(255, 255, 255, 0.7);
		width: 50px;
		height: 50px;
	}

	.tab-label {
		margin-top: 5px;
		width: 85px;
		text-align: center;
		color: #fff;
	}

	.tab-inner-container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.show-text-background {
		background-color: #ff5a5e;
		border-radius: 10px;
		padding: 7px 15px;
		display: "flex";
		align-items: "center";
		justify-content: "center";
		width: fit-content;
		margin: 18px auto;
	}

	.carousel .slide img {
		width: "" !important;
	}

	.carousel img {
		width: "" !important;
	}
}

.tab-item-container.selected {
	background-color: rgba(255, 255, 255, 0.7);
	width: 50px;
	height: 50px;
}

.tab-label {
	margin-top: 5px;
	width: 85px;
	text-align: center;
	color: #fff;
}

.tab-inner-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.show-text-background {
	background-color: #ff5a5e;
	border-radius: 10px;
	padding: 7px 15px;
	display: "flex";
	align-items: "center";
	justify-content: "center";
	width: fit-content;
	margin: 18px auto;
}

.auto-focus-none:focus {
	outline: none !important;
	-webkit-tap-highlight-color: transparent !important;
	user-select: none !important;
}

.gmnoprint {
	bottom: 230px !important;
}

.css-q8lghv-MuiModal-root-MuiDrawer-root .MuiDrawer-paper {
	border-top-right-radius: 30px !important;
	border-bottom-right-radius: 30px !important;
}

.css-4bhrkz .MuiDrawer-paper {
	border-top-right-radius: 30px !important;
	border-bottom-right-radius: 30px !important;
}

.my-account-container-new {
	background-color: #fff;
	margin-top: -67px;
	padding-top: 10px;
	height: 50vh;
}

.baselineslider .carousel .slider-height {
	display: flex;
	align-items: center;
	height: 100px;
}

.baselineslider .carousel .slider-height {
	display: flex;
	align-items: baseline !important;
	/* height: 100px; */
}

.baselineslider .carousel .slider-height img {
	align-self: baseline;
	padding: 17px;
}

.baselineslider .slider {
	display: flex;
	align-items: baseline !important;
}

/********************/
/* .baselineslider .carousel .slider-height {
	display: flex;
	align-items: center;
	height: 100px;
} */

.px-2 {
	padding-left: 20px;
	padding-right: 20px;
}

.text-gray-700 p {
	margin-top: 10px;
	text-align: justify;
}

.text-gray-700 h2 {
	text-align: center !important;
}

.new_slider_styles {
	position: relative;
	left: 20%;
}

.new-slider-styles slide img {
	width: 70%;
}

.baselineslider .carousel img {
	padding: 10px;
}

.carousel-slide img {
	width: 100%;
}

.swiper-horizontal {
	padding-bottom: 32px !important;
}

.swiper-pagination {
	bottom: 3px !important;
}

.swiper-pagination-bullet-active {
	background: #572a85 !important;
}

.swiper-wrapper {
	left: -31px !important;
}

.banner-text {
	position: absolute;
	top: 10%;
	margin: 0 auto;
	text-align: center;
	left: 35%;
	top: 41%;
	color: #fff;
	line-height: 27px;
}

.less-left {
	left: 19%;
}

.new-btn-sty .pb-button-text-container span {
	background: none !important;
	color: #fff !important;
}

.modal-buttons-container2 .new-btn span {
	border: none !important;
}

li {
	position: relative;
}

/* li:before {

li:before {
	position: absolute;
	top: 8px;
	margin: 8px 0 0 -12px;
	vertical-align: middle;
	display: inline-block;
	content: '';
	-webkit-border-radius: 0.375rem;
	border-radius: 0.375rem;
	height: 0.75rem;
	width: 0.75rem;
	margin-right: 0.5rem;
	background-color: #bdbdbd;
} */
.no-label-input {
	/* padding-left: 0; */
	height: 12vw;
	/* margin-top: 4px; */
	flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	padding: 0 6px;
	background-color: #572a8526;
	margin-bottom: 10px;
}

.link-style {
	/* font-weight: bold; */
	color: blue !important;
}

.cross-mark {
	position: absolute;
	top: 4%;
	left: -3%;
	width: 100%;
	text-align: center;
	color: #7b7b7b;
	font-weight: bold;
	font-size: 18px;
	z-index: 2;
}

@media screen and (max-width: 360px) {
	.cross-mark {
		top: 4%;
		left: -8%;
		font-size: 16px;
	}
}

@media screen and (min-width: 361px) {
	.cross-mark {
		top: 6%;
		left: 0%;
	}
}

/* Date picker error message styling */
.date-picker-error {
	color: red;
	font-size: 11px;
	display: block;
	position: relative;
	z-index: 5;
	margin-top: 8px;
	/* Default for smaller screens */
}

.dob-divider {
	height: 40px;
	width: 1px;
	margin-right: 6px;
	background-color: var(--border-color);
}

.inputWrapperCombined {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 14px;
	height: 50px;
	gap: 1px;
	position: relative;
	/* z-index: 2000; */


}

/* Adjust spacing for screens wider than 360px */
@media screen and (min-width: 361px) {
	.date-picker-error {
		margin-top: 10px;
	}
}

/* .css-y7ab46-MuiPaper-root-MuiDrawer-paper {
	box-shadow: none !important;
}

.MuiPaper-root MuiPaper-elevation MuiPaper-elevation16 MuiDrawer-paper MuiDrawer-paperAnchorRight css-y50yd7 {
	paper-shadow: none !important;
} */