#preloader {
	display: none;
}

:root {
	--md-sys-color-primary: var(--primary-color);
	--md-sys-shape-corner-full: var(--bs-border-radius);
	--md-elevated-button-container-shape: var(--bs-border-radius);
	--md-filled-button-container-color: var(--primary-color);
	--md-elevated-button-label-text-color: var(--light);
	--md-elevated-button-pressed-label-text-color: var(--light);
	--light-secondary: #b9b9b9;
	--bs-border-color: #dee2e6;
	--bg-secondary-color: #f5f5f5;
	--accent-color: #FF6D00;
	--body-background: #f8f8f8;
	--bg-dark: #4d4d4d;
}

md-filled-button {
	--md-filled-button-container-color: var(--primary-color);
	--md-filled-button-container-elevation: 0;
	--md-filled-button-container-shape: 5px;
	--md-filled-button-disabled-container-color: var(--secondary);
	--md-filled-button-disabled-container-elevation: 0;
	--md-filled-button-disabled-container-opacity: 0.5;
	--md-filled-button-disabled-label-text-color: white;
	--md-filled-button-disabled-label-text-opacity: 1;
	--md-filled-button-focus-label-text-color: white;
	--md-filled-button-hover-label-text-color: var(--dark);
	--md-filled-button-hover-state-layer-color: var(--secondary-color);
	--md-filled-button-hover-state-layer-opacity: 1;
	--md-filled-button-label-text-color: white;
	--md-filled-button-label-text-weight: 600;
	--md-filled-button-pressed-container-elevation: 0;
	--md-filled-button-pressed-label-text-color: white;

	&.accent {
		--md-filled-button-container-color: var(--secondary-color);
		--md-filled-button-focus-label-text-color: var(--dark);
		--md-filled-button-hover-label-text-color: white;
		--md-filled-button-hover-state-layer-color: var(--primary-color);
		--md-filled-button-label-text-color: var(--dark);
		--md-filled-button-pressed-label-text-color: var(--dark);
	}
}

.d-line-clamp-3 {
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

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

.text-decoration-none {
	text-decoration: none;
	color: inherit;
}

.cursor-pointer {
	cursor: pointer;
}

#more-info-interface {
	position: fixed;
	top: 0;
	background: white;
	height: 100%;
	width: 0%;
	z-index: 1050;
	transition: width 0.7s ease-in-out;

	* {
		visibility: hidden;
	}

	&.show {
		width: 100%;

		* {
			visibility: visible;
		}

		@media only screen and (min-width: 992px) {
			width: 50%;
		}

		@media only screen and (min-width: 1200px) {
			width: 40%;
		}

		@media only screen and (min-width: 1400px) {
			width: 30%;
		}
	}

	img.cover {
		width: 100%;
		object-fit: cover;
		object-position: center;
		aspect-ratio: 16/9;
		max-height: 140px;

		@media only screen and (min-width: 992px) {
			max-height: 200px;
		}
	}

	.scrollable-content {
		overflow-y: auto;
		overflow-x: hidden;
		max-height: 90vh;
		max-height: 94dvh;
		margin-right: -10px;
		padding-right: 15px;
	}
}

.backdrop {
	position: fixed;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1040;
	background-color: rgba(0, 0, 0, .2);
}

.choosen-card-check {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.fare-img {
	object-fit: cover;
	object-position: center;
	aspect-ratio: 16/9;
	width: 100%;
	max-height: 164px;
}

.service-img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	border-radius: var(--bs-border-radius);
}

ul[id$="-incluso"] li {
	list-style-type: none;
}

ul[id$="-incluso"] li:before {
	content: "\2713";
	/* Codice unicode per il check */
	color: var(--primary-color);
	margin-right: 8px;
}

.select-fare-card {
	height: 100%;
}

.card-disabled {
	background-color: rgba(80, 80, 80, .2);
	cursor: default;

	.scegli-all-inclusive {
		background-color: white;
		padding: .5rem;
		margin-top: 1rem;
		border-radius: var(--bs-border-radius);
		border-left: 3px solid var(--primary-color);
	}
}

md-elevated-button.proceed-btn {
	--md-sys-color-primary: var(--dark);
	--md-sys-color-surface-container-low: var(--secondary-color);
	font-weight: 600;
}

.cruise-card-price {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 20px;
}

.btn-custom {
	background-color: var(--primary-color);
	color: var(--light);
}

.solutions-swiper {

	.prev-custom-button,
	.next-custom-button {
		opacity: 0;
		transition: opacity 0.3s;
		pointer-events: none;
	}

	&:hover .prev-custom-button,
	&:hover .next-custom-button {
		opacity: 1;
		pointer-events: auto;
	}
}

#page {
	margin-top: 65px;
	margin-bottom: 80px;
	padding-bottom: 1.5rem;
	min-height: 90vh;
	background-color: var(--bg-secondary-color);
}

.card {
	border: 1px solid rgba(0, 0, 0, .125);
}

.page-title {
	font-size: 20px;
	font-weight: 500;
	color: var(--dark);
}

.page-subtitle {
	font-size: 16px;
	font-weight: 500;
	color: var(--light-secondary);
}

.main-title {
	font-size: 24px;
	color: var(--dark);
	font-weight: 600;
}

.text-h1 {
	font-size: 4.5rem;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -0.015625em;
	color: var(--dark);
}

.text-h2 {
	font-size: 2.8rem;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -0.0083333333em;
	color: var(--dark);
}

.text-h3 {
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: normal;
	color: var(--dark);
}

.text-h4 {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.175;
	letter-spacing: 0.007em;
	color: var(--dark);
}

.text-h5 {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.333;
	line-height: normal;
	color: var(--dark);
}

.text-h6 {
	font-size: 0.94rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.012em;
	color: var(--dark);
}

.text-subtitle-1 {
	font-size: 0.85rem;
	font-weight: normal;
	line-height: 1.75;
	letter-spacing: 0.009em;
	color: var(--dark);
}

.text-subtitle-2 {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.007em;
	color: var(--dark);
}

.text-body-1 {
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.031em;
	color: var(--dark);
}

.text-body-2 {
	font-size: 0.7rem;
	font-weight: 400;
	line-height: 1.425;
	letter-spacing: 0.018em;
	color: var(--dark);
}

.text-caption {
	font-size: 0.6rem;
	font-weight: 400;
	line-height: 1.667;
	letter-spacing: 0.0333333333em;
}

.cruise-information-card img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	object-fit: cover;
	object-position: center;
	max-height: 200px;
}

.overflow-y-auto {
	overflow-y: auto;
}

.price {
	font-size: 16px;
	font-weight: 600;
	color: var(--success);
}

.best-price-text,
.text-accent {
	color: var(--accent-color) !important;
}

.cruise-date-card {
	--bs-border-radius: 0px;
	margin-bottom: 0px;
}

.w-fit-content {
	width: fit-content !important;
}

nav[aria-label="breadcrumb"] {
	background-color: var(--body-background);
	border-bottom: 1px solid #cccccc80;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: ">";
	padding-right: .25rem;
}

.breadcrumb {
	background-color: transparent;
	border-radius: 0px;
	margin-bottom: 0rem;

	.breadcrumb-item {
		padding-left: .25rem;

		&.active {
			font-weight: 600;
			color: var(--secondary-color);
		}
	}
}

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

button.btn.btn-back {
	border-right: 1px solid #cccccc80;
	border-radius: 0;
}

.cruise-card {
	.badge.badge-success.rounded-pill {
		max-width: 50%;
		text-wrap: auto;
		margin-top: 1rem;
		line-height: 1.2em;
	}
}

.bg-low-key {
	background-color: var(--bg-secondary-color);
}

#cabin-number-dialog {
	p {
		margin-top: 0;
		margin-bottom: 1rem !important;
	}
}

.d-grid {

	button.btn_1,
	button.btn_2 {
		width: 100%;
	}
}

span.badge.badge-outlined-dark,
div.badge.badge-outlined-dark {
	border: 1px solid var(--bg-dark);
	color: var(--dark);
	border-radius: 50rem;
	display: inline;
	font-weight: 500;
}

span.badge.badge-outlined-secondary,
div.badge.badge-outlined-secondary {
	border: 1px solid #939393;
	color: #939393;
	border-radius: 50rem;
	display: inline;
	font-weight: 500;
	margin: 0 .3rem .3rem 0;
	padding: .4em;
}

.service-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

ul>li.check-icon-list {
	list-style-type: none;
	position: relative;
	padding-left: 20px;
}

ul>li.check-icon-list:before {
	content: "\2713";
	color: var(--primary-color);
	position: absolute;
	left: 0;
}

.modal .swiper.macro-category-images {
	background-color: var(--bg-dark);

	img {
		object-fit: contain;
		width: 100%;
		max-height: 200px;

		@media only screen and (min-width: 1200px) {
			max-height: 500px;
		}
	}
}

/* MSC */
.Select-menu-outer {
	top: auto !important;
	bottom: 100% !important;
}

.hero_in.tours:before {
	background: url(../img/msc/ship_wide.jpg) center center no-repeat !important;
}

.people_selector {
	background-color: #fff;
	height: 36px;
	border: 1px solid #ededed;
	margin-top: 0px;
	border-radius: 15px;
	/* margin-bottom: 15px; */
}

.destinationCust {
	margin-bottom: 5px;
}

.custom-search-input-2 input[type='submit'] {
	height: 55px !important;
	font-size: 1.3rem;
}

.departure_port_select {
	max-width: 200px;
}

@media screen and (max-width: 699px) {
	.big_date {
		display: none !important;
	}
}

@media screen and (min-width: 700px) {
	.big_date {
		display: inline-block !important;
	}
}

.box_list {
	position: absolute;
	left: 0px;
	top: 0px;
	min-height: 310px;
	/*width: 100% !important;*/
}

.best_price {
	font-size: 20px;
	background-color: #ffffff !important;
	color: var(--primary-color) !important;
}

#our-solutions .best_price {
	color: #239939 !important;
}

.score {
	color: white
}

.cruise_btm_line {
	background-color: var(--primary-color);
}

#our-solutions .cruise_btm_line {
	background-color: #1b9939;
}

.big_date {
	color: white;
}

#list_sidebar .box_list {
	min-height: 310px;
}

#list_sidebar .box_list.solution-box {
	box-shadow: 0px 0px 15px 0px rgb(69 191 69 / 50%);
	overflow: hidden;
}


.weight_icon {
	font-weight: 700;
	font-size: 17px;
}

.nice-select .list {
	z-index: 9999;
	border-radius: 6px;
	max-height: 200px;
	overflow-y: auto;
	top: -200px !important;
}

.bordered {
	border: 1px solid #d2d8dd !important;
}

/* custom scroll bar style start*/

::-webkit-scrollbar {
	width: 8px;
	background: transparent;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	min-height: 50px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f2f2f2;
	border-color: white;
}

p {
	margin-bottom: 0px !important;
}

.error {
	color: #e76a76 !important;
}

input.error {
	border: 3px solid #ff000059;
}

/*DatePicker*/
.daterangepicker .calendar-table td,
.daterangepicker .calendar-table th {
	color: #66676b;
}

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

/*WIZARD CUSTOM*/
.hero_in {
	height: 200px
}

.bs-wizard>.bs-wizard-step>.passengers-icon:after {
	content: "\ee80" !important;
	left: 7px !important;
	color: #ffffff !important;
}

.bs-wizard>.bs-wizard-step>.cabin-icon:after {
	content: "\ee75" !important;
	left: 7px !important;
	color: #ffffff !important;
}

.bs-wizard>.bs-wizard-step>.finish-icon:after {
	content: "\e81b" !important;
	left: 9px !important;
	color: #ffffff !important;
}

.search_buttons {
	padding: 15px 18px !important;
	margin-left: 10px;
}

.cabin-title {
	font-size: 19px;
	margin-bottom: 1px !important;
}

.cabin_experience {
	/* background-color: #a9f3b3; */
	width: fit-content;
	font-size: 11pt;
	color: #808080;
}

.cabin_experience span {
	font-size: 14px;
}

.cabin-info-button {
	font-size: 22px;
	color: #008df5;
	cursor: pointer;
}

.fb-iframe {
	width: auto;
	height: auto;
}

.popup_dialog {
	background: #fff;
	padding: 30px;
	padding-top: 0;
	text-align: left;
	max-width: 600px;
	margin: 40px auto;
	position: relative;
	box-sizing: border-box;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	height: auto;
}

/* Popup close button*/
.popup_dialog .mfp-close,
#lang-dialog .mfp-close {
	color: #666;
	background-color: #e4e4e4;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	top: 12px;
	right: 20px;
	width: 32px;
	height: 32px;
	line-height: 32px;
}

.popup_dialog .mfp-close:hover,
#lang-dialog .mfp-close:hover {
	color: #fff;
	background-color: #66676b;
}

.popup_dialog .mfp-close:before {
	font-size: 24px;
	font-family: 'ElegantIcons';
	content: "\4d";
}

.popup_dialog .form-group {
	position: relative;
}

.popup_dialog .form-group input.form-control {
	padding-left: 40px;
}

.popup_dialog .form-group i {
	font-size: 21px;
	font-size: 1.3125rem;
	position: absolute;
	left: 12px;
	top: 34px;
	color: #ccc;
	width: 25px;
	height: 25px;
	display: block;
	font-weight: 400 !important;
}

.popup_dialog .form-group i.icon_lock_alt {
	top: 36px;
}

.sign-in-wrapper {
	height: auto !important;
}

.icon-confirm {
	width: 170px;
	margin-top: 10px;
}

.text-confirm {
	font-size: 26px !important;
}

.header-confirm {
	margin-top: 40px;
	font-weight: 600;
	color: white;
}

.no_offers_available {
	color: var(--primary-color);
	border-left: 3px solid var(--primary-color);
	padding-left: 7px;
}


.hero_in.tours_detail:before {
	background: url(../img/crociera.png) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/*START OWL CAROUSEL CUSTOM*/
@media (max-width: 600px) {
	#price-slider {
		width: 50% !important;
	}

	#owl-headers-prices {
		width: 50% !important;
	}
}

#owl-headers-prices {
	padding: 0px;
}

.owl-carousel {
	display: inline-block !important;
	padding: 0px !important;
}

.owl-day {
	background-color: var(--primary-color)5c;
	border-bottom: 1px solid white;
	font-weight: 700;
	text-align: center;
	padding: 2px;
}

.owl-cabin {
	background-color: #e0e0e000;
	border-bottom: 1px solid #fec4c6;
	font-weight: 500;
	text-align: center;
	font-size: 16px;
	padding: 3px;
}

.owl-date {
	background-color: var(--primary-color)5c;
	border-bottom: 1px solid white;
	font-weight: 700;
	text-align: center;
	padding: 2px;
}

.owl-price {
	background-color: #e0e0e000;
	border-bottom: 1px solid #fec4c6;
	font-weight: 500;
	text-align: center;
	font-size: 16px;
	padding: 3px;
}

.item:hover>.owl-price {
	background-color: #eef3f7;
	cursor: pointer;
}

.owl-prev {
	width: 30px;
	height: 60px;
	border-bottom-right-radius: 110px !important;
	border-top-right-radius: 110px !important;
	border-bottom: 0;
	position: absolute;
	top: 150px;
	left: -15px;
	/* margin-left: -15px !important; */
	/* display: block !important; */
	display: flex !important;
	align-items: center;
	border: 0px solid black;
}

.owl-theme .owl-nav [class*=owl-] {
	color: white;
	background-color: #fffa !important;
}

.owl-next {
	width: 30px;
	height: 60px;
	border-bottom-left-radius: 110px !important;
	border-top-left-radius: 110px !important;
	border-bottom: 0;
	position: absolute;
	top: 150px;
	right: -15px;
	/* margin-right: -15px !important; */
	/* display: block !important; */
	display: flex !important;
	align-items: center;
	border: 0px solid black;
}

.owl-theme .owl-nav [class*=owl-]:focus {
	outline: none;
}

.owl-dots {
	display: none;
}

.owl-prev i,
.owl-next i {
	/* transform: scale(1, 6); */
	color: var(--bg-dark);
	font-size: 48px;
}

.owl-carousel a {
	color: inherit;
}

.owl-prev i {
	margin-left: -5px;
}

/*END OWL CAROUSEL CUSTOM*/

@media (max-width: 1024px) {
	#hero_video {
		background: url(../img/msc/ship_wide.jpg) no-repeat center center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;

	}
}


.hero_in.hotels:before {
	background: url(../img/msc/ship_wide.jpg) center center no-repeat !important;
}



.summary_shorty {
	font-size: initial;
	color: var(--primary-color);
	font-weight: 600;
	margin-right: 10px;
}

.summary_people>div {
	margin-bottom: 7px;
}

.summary_people>hr {
	margin: 10px 0 10px 0;
}

.white-page-summary {
	background: white;
	padding-top: 21px;
	padding-bottom: 21px;
	border-radius: 9px;
	box-shadow: 0px -5px 33px -15px;
}

.summary_cruise_details>div {
	margin-bottom: 10px
}

.success-toast {
	display: none;
	background-color: #5b6ffc;
	text-align: center;
	color: white;
	padding: 10px;
	padding-top: 30px;
	border-radius: 8px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4)
}

.failure-toast {
	display: none;
	background-color: #7c1c1c;
	text-align: center;
	color: white;
	padding: 10px;
	padding-top: 30px;
	border-radius: 8px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4)
}

.contacts a:focus {
	color: unset;
}

.mm-slideout {
	background-color: white;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
	background-color: #444 !important;
}

#loading {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.9;
	background-color: #fff;
	z-index: 1060;
}

#loading-image {
	z-index: 100;
}

#input_date [readonly] {
	background-color: white;
	opacity: 1;
}

.rounded-lg {
	border-radius: 8px !important;
}

.rounded-b-lg {
	border-bottom-left-radius: 8px !important;
	border-bottom-right-radius: 8px !important;
}

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

.elevation-4 {
	box-shadow: 0 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, .2)), 0 4px 5px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .14)), 0 1px 10px 0 var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, .12)) !important;
}

.rounded-t-lg {
	border-top-left-radius: 8px !important;
	border-top-right-radius: 8px !important;
}

@media (min-width: 768px) {
	.cruise-card {
		.badge.badge-success.rounded-pill {
			max-width: 75%;
		}
	}

	.mdAndDown-fixed-bottom {
		display: none;
	}

	.md-show {
		display: block;
	}
}

@media (max-width: 768px) {
	.mdAndDown-fixed-bottom {
		position: fixed;
		bottom: 0;
		padding: 1rem;
		width: 100%;
		background: #FFF;
		z-index: 1021;
	}

	.md-show {
		display: none;
	}

	.hero_in {
		height: 100px;
	}
}

.px-30 {
	padding-left: 60px;
	padding-right: 60px;
}

.sm:px-20 {
	padding-left: 20px;
	padding-right: 20px;
}

.call-button {
	padding: 0.7rem 1.3rem;
	border: 2px solid #ffc107;
	border-radius: 15px;
	color: unset;
	font-weight: bold;
}

.call-button:hover {
	color: unset;
}

.whatsapp-button {
	padding: 0.7rem 1.3rem;
	border: 2px solid #008009;
	border-radius: 10px;
	color: #008009;
	text-decoration: none;
	font-weight: bold;
}

.whatsapp-button:hover {
	color: #008009;
}

.main-menu>ul>li>span>a {
	font-size: unset;
}

.container-my {
	width: 100%;
	padding: 15px, 15px;
	margin-right: auto;
	margin-left: auto
}

.background-img-blurred {
	background-size: cover;
	background-position: center;
	filter: blur(8px);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

@media screen and (min-width: 992px) {
	#page {
		margin-top: 75px;
		margin-bottom: 0px;
	}

	.text-h1 {
		font-size: 6rem;
		font-weight: 300;
		line-height: 1;
		letter-spacing: -0.015625em;
		color: var(--dark);
	}

	.text-h2 {
		font-size: 3.75rem;
		font-weight: 300;
		line-height: 1;
		letter-spacing: -0.0083333333em;
		color: var(--dark);
	}

	.text-h3 {
		font-size: 3rem;
		font-weight: 400;
		line-height: 1.05;
		letter-spacing: normal;
		color: var(--dark);
	}

	.text-h4 {
		font-size: 2.125rem;
		font-weight: 400;
		line-height: 1.175;
		letter-spacing: 0.0073529412em;
		color: var(--dark);
	}

	.text-h5 {
		font-size: 1.5rem;
		font-weight: 400;
		line-height: 1.333;
		line-height: normal;
		color: var(--dark);
	}

	.text-h6 {
		font-size: 1.25rem;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0.0125em;
		color: var(--dark);
	}

	.text-subtitle-1 {
		font-size: 1rem;
		font-weight: normal;
		line-height: 1.75;
		letter-spacing: 0.009375em;
		color: var(--dark);
	}

	.text-subtitle-2 {
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 0.0071428571em;
		color: var(--dark);
	}

	.text-body-1 {
		font-size: .9rem;
		font-weight: 400;
		line-height: 1.5;
		letter-spacing: 0.03125em;
		color: var(--dark);
	}

	.text-body-2 {
		font-size: 0.85rem;
		font-weight: 400;
		line-height: 1.425;
		letter-spacing: 0.0178571429em;
		color: var(--dark);
	}

	.text-caption {
		font-size: 0.75rem;
		font-weight: 400;
		line-height: 1.667;
		letter-spacing: 0.0333333333em;
	}

	.page-title {
		font-size: 26px;
		font-weight: 500;
		color: var(--dark);
	}

	.page-subtitle {
		font-size: 22px;
		font-weight: 500;
		color: var(--light-secondary);
	}

	.fare-img {
		max-height: 144px;
	}

	.cruise-information-card img {
		width: 100%;
		object-fit: cover;
		object-position: center;
		max-height: unset;
		margin-bottom: 0rem;
	}

	.price {
		font-size: 20px;
	}

	.breadcrumb-item+.breadcrumb-item::before {
		padding-right: .5rem;
	}

	.breadcrumb-item {
		padding-left: .5rem;
	}

	.cruise-card {
		.badge.badge-success.rounded-pill {
			max-width: unset;
			margin-top: 0rem;
		}
	}


	.call-button,
	.whatsapp-button {
		font-size: 14px;
	}

	.menu-voices-container {
		margin-left: -1rem;
	}

	.menu-voice {
		font-size: 17px;
		font-weight: 600;
	}
}

@media (min-width: 1200px) {

	.container-xl-my {
		max-width: 1400px
	}
}

@media screen and (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

span.h6>a {
	color: unset;
	text-decoration: none;
}


/* From Uiverse.io by satyamchaudharydev */
.loader-custom {
	--clr: #3498db;
	/* color of spining  */
	width: 50px;
	height: 50px;
	position: relative;
	margin-bottom: 2rem;
}

.loader-custom:before,
.loader-custom:after {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 10px solid transparent;
	border-top-color: var(--clr);
}

.loader-custom:before {
	z-index: 100;
	animation: spin 1s infinite;
}

.loader-custom:after {
	border: 10px solid #ccc;
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* ===================================
   Button Responsive Utilities
   =================================== */

/* btn-md-auto: Full width on mobile, auto width on md+ */
@media (min-width: 768px) {
  .btn-md-auto {
    width: auto !important;
    display: inline-flex !important;
  }
}

/* ===================================
   Width Responsive Utilities
   =================================== */

/* w-md-auto: Full width on mobile, auto width on md+ */
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

/* ===================================
   Choose Fare Code Page Styles
   =================================== */

/* Fare Cards Grid */
.fare-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
    .fare-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Desktop: 3 columns */
@media (min-width: 1200px) {
    .fare-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Fare Card Styling */
.fare-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fare-card:not(.disabled):hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fare-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
}

.fare-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f8f9fa;
}

.fare-card.selected .choosen-card-check {
    opacity: 1;
    transform: scale(1);
}

/* Card Title */
.fare-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .fare-card-title {
        font-size: 1.25rem;
    }
}

/* Card Subtitle */
.fare-card-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Price Section */
.fare-price-section {
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.fare-old-price {
    font-size: 1rem;
    font-weight: 500;
    color: #dc3545;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.fare-current-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

@media (max-width: 767px) {
    .fare-current-price {
        font-size: 1.875rem;
    }
}

/* Additional Fees */
.fare-fees {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.75rem;
    line-height: 1.6;
}

.fare-fees div {
    margin-bottom: 0.25rem;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fare-card {
    animation: fadeInUp 0.5s ease-out backwards;
}

.fare-card:nth-child(1) {
    animation-delay: 0.05s;
}

.fare-card:nth-child(2) {
    animation-delay: 0.1s;
}

.fare-card:nth-child(3) {
    animation-delay: 0.15s;
}

/* Container Enhancement */
.choose-fare-code-page .container {
    max-width: 100%;
}

@media (min-width: 576px) {
    .choose-fare-code-page .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .choose-fare-code-page .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .choose-fare-code-page .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .choose-fare-code-page .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .choose-fare-code-page .container {
        max-width: 1320px;
    }
}
