:root {
	--font-family-regular: "Gordita Regular", sans-serif !important;
	--font-family-medium: "Gordita Medium", sans-serif !important;
	--font-family-bold: "Gordita Bold", sans-serif !important;
	--background-cetacean-blue: rgb(14, 20, 71);
	--background-turquoise: #44d2ea;
	--border-radius: 10px;
}

.tooltip-mobile {
	display: none;
}

.tooltip-right {
    position: relative;
    display: inline-block;
}

.tooltip-right[data-title]::after {
    content: attr(data-title);
    display: none;
    position: absolute;
    top: 0;
    left: 105%;
    transform: translateY(-50%);
    background-color: #0e1147;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
    white-space: pre-wrap;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    width: 12em;
    font-size: 13px;
}

.tooltip-right:hover[data-title]::after,
.tooltip-right.touch-active[data-title]::after {
    display: block;
    opacity: 1;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

.cky-revisit-bottom-left {
	border: 0.5px solid #fff;
}

#ui-datepicker-div {
	position: fixed !important;
}

/* load */

.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 4px solid #44d2ea;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
}


/*multi step prenotazione*/
.step-wizard {
	display: flex;
	width: inherit;
	background-color: #0e1447;
	padding: 15px 0;
	justify-content: center;
}

.step-wizard-list {
	/* background: #fff; */
	/* box-shadow: 0 15px 25px rgba(0,0,0,0.1); */
	color: #fff;
	list-style-type: none;
	/* border-radius: 10px; */
	display: flex;
	/* padding: 10px; */
	position: relative;
	z-index: 10;
	/* height: 98px; */
	width: 70%;
	/* max-width: 65vw; */
	/* background-color: #0e1447; */
	margin: 0;
}

.step-wizard-item {
	padding: 0 20px;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	/* min-width: 200px; */
	position: relative;
}

.step-wizard-item+.step-wizard-item:after {
	content: "";
	position: absolute;
	left: 0;
	top: 19px;
	background: #fff;
	width: 100%;
	height: 2px;
	transform: translateX(-50%);
	z-index: -10;
}

.progress-count {
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 600;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	color: transparent;
	margin-bottom: 10px;
}

.progress-count:after {
	content: "";
	height: 40px;
	width: 40px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	z-index: -10;
}

.progress-count:before {
	content: "";
	height: 10px;
	width: 20px;
	border-left: 4px solid #0e1447;
	border-bottom: 4px solid #0e1447;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -60%) rotate(-45deg);
	transform-origin: center center;
}

.progress-label {
	font-size: 14px;
	font-family: 'Gordita Bold';
	margin-top: 5px;
}

.current-item .progress-count:before,
.current-item~.step-wizard-item .progress-count:before {
	display: none;
}

.current-item~.step-wizard-item .progress-count:after {
	height: 10px;
	width: 10px;
}

.current-item~.step-wizard-item .progress-label {
	opacity: 0.5;
}

.current-item .progress-count:after {
	background: #0e1447;
	border: 2px solid #fff;
}

.current-item .progress-count {
	color: #fff;
}

/* fine multi step prenotazione*/

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

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

/*popup*/

img.img_modal {
	width: 40px;
}

dialog.custom-alert::backdrop {
	background: rgba(0, 0, 0, 0.5) !important;
}

.custom-alert>header {
	width: auto;
	background-color: var(--background-turquoise);
	display: flex;
	flex-direction: row-reverse;
	height: 40px;
}

.custom-alert>header>button.close-button {
	background-color: white;
	color: black;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 5px 10px 0px 0px;
	border-radius: 30px;
}


.content-wrapper {
	margin: 20px 35px 0;
	display: flex;
	align-items: center;
}

/* .custom-alert>p { */
.content-wrapper>p {
	font-size: 15px !important;
	padding: 10px !important;
	overflow-x: hidden !important;

}

.custom-alert {
	margin-top: 16px;
	width: fit-content;
	min-width: 450px;
	max-width: 750px;
	height: fit-content;
	min-height: 150px;
	border-radius: 15px;
	border: 0;
	padding: 0;
	max-height: 300px;
	position: relative;
	top: 30%;
	font-family: 'Gordita Medium';
}

/* */


.collapse {
	font-size: 25px;
	background-color: transparent !important;
	display: none;
}


/*Loading date animation*/
.container_loading {
	position: absolute;
	display: flex;
	width: 0;
	max-width: 195px;
	height: 45px;
	/* border-radius: 15px; */
	-webkit-animation: rotation 1s infinite;
	animation: rotation 1s infinite;
	justify-content: center;
	align-items: center;
	top: 0;
	right: 50%;
}

.container_loading .shape {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 5px;
}

.container_loading .shape.shape-1 {
	/* left: 0; */
	background-color: rgb(14, 20, 71);
	;
}

.container_loading .shape.shape-2 {
	/* right: 0; */
	background-color: rgb(68, 210, 234);
}

.container_loading .shape.shape-3 {
	/* bottom: 0; */
	background-color: rgb(68, 210, 234);
}

.container_loading .shape.shape-4 {
	/* bottom: 0;
	right: 0; */
	background-color: rgb(14, 20, 71);
	;
}

.container_loading .shape-1 {
	-webkit-animation: shape2 .5s infinite alternate;
	animation: shape2 .5s infinite alternate;
}

.container_loading .shape-2 {
	-webkit-animation: shape1 .5s infinite alternate;
	animation: shape1 .5s infinite alternate;
}

.container_loading .shape-3 {
	-webkit-animation: shape4 .5s infinite alternate;
	animation: shape4 .5s infinite alternate;
}

.container_loading .shape-4 {
	-webkit-animation: shape3 .5s infinite alternate;
	animation: shape3 .5s infinite alternate;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

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

@keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

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

@-webkit-keyframes shape1 {
	from {
		-webkit-transform: translate(-10px, -10px);
		transform: translate(-10px, -10px);
		/* -webkit-transform: translate(0, 0);
		transform: translate(0, 0); */
	}

	to {
		-webkit-transform: translate(10px, 10px);
		transform: translate(10px, 10px);
	}
}

@keyframes shape1 {
	from {
		-webkit-transform: translate(-10px, -10px);
		transform: translate(-10px, -10px);
	}

	to {
		-webkit-transform: translate(10px, 10px);
		transform: translate(10px, 10px);
	}
}

@-webkit-keyframes shape2 {
	from {
		-webkit-transform: translate(10px, -10px);
		transform: translate(10px, -10px);
	}

	to {
		-webkit-transform: translate(-10px, 10px);
		transform: translate(-10px, 10px);
	}
}

@keyframes shape2 {
	from {
		-webkit-transform: translate(10px, -10px);
		transform: translate(10px, -10px);
	}

	to {
		-webkit-transform: translate(-10px, 10px);
		transform: translate(-10px, 10px);
	}
}

@-webkit-keyframes shape3 {
	from {
		-webkit-transform: translate(-10px, 10px);
		transform: translate(-10px, 10px);
	}

	to {
		-webkit-transform: translate(10px, -10px);
		transform: translate(10px, -10px);
	}
}

@keyframes shape3 {
	from {
		-webkit-transform: translate(-10px, 10px);
		transform: translate(-10px, 10px);
	}

	to {
		-webkit-transform: translate(10px, -10px);
		transform: translate(10px, -10px);
	}
}

@-webkit-keyframes shape4 {
	from {
		-webkit-transform: translate(10px, 10px);
		transform: translate(10px, 10px);
	}

	to {
		-webkit-transform: translate(-10px, -10px);
		transform: translate(-10px, -10px);
	}
}

@keyframes shape4 {
	from {
		-webkit-transform: translate(10px, 10px);
		transform: translate(10px, 10px);
	}

	to {
		-webkit-transform: translate(-10px, -10px);
		transform: translate(-10px, -10px);
	}
}

/*end loading animation*/

#AndataPartenzaDataRitiro,
#AndataArrivoDataConsegna,
#RitornoPartenzaDataRitiro,
#RitornoArrivoDataConsegna {
	background-color: #e7e7e7;
}

::placeholder {
	/* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #0E1447;
}

.andata {
	width: 100px;
	font-family: "Gordita Regular";
	text-decoration: none;
	font-size: 16px;
}

html[lang="en-US"] .andata {
	width: 150px;
}

.containerStepOne input {
	border: 2px solid #E6E6E6;
}

.containerAndata {
	margin-top: 40px;
}

.containerRitorno,
.selezionabagaglio {
	margin-top: 30px;
}

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

.containerStepOne {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	font-family: var(--font-family-regular);
	width: 1260px;
	margin-bottom: 80px;
}

#containerSceltaAndataRitorno,
.containerStepOne h3 {
	color: rgb(255, 255, 255);
	display: flex;
	align-items: center;
	flex-direction: row;
	font-family: var(--font-family-medium);
}

#AndataPartenza,
#AndataArrivo,
#RitornoPartenza,
#RitornoArrivo {
	width: 165px;
	border: 2px solid #E6E6E6;
	color: #0E1447;
	font-family: var(--font-family-regular);
	height: 100%;
}

/*.minus, .input-group-field{
border: 2px solid grey !important;
color: grey !important;
}

.minus > i{
color: grey !important;
}*/

.containerPartenzaArrivoSelect input[type],
.containerPartenzaArrivoSelect select,
.containerPartenzaArrivoData input {
	width: 190px;
	height: 44px;
}


input[type],
select {
	background-color: white;
	font-weight: 300;
	border: 2px solid #E6E6E6;
}

.labelDataRitiro {
	text-align: left;
}

.labelDataConsegna {
	text-align: left;
}

.containerPartenzaArrivoSelect {
	justify-content: space-around;
	font-family: monospace;
}

.containerPartenzaArrivoData {
	display: flex;
	position: relative;
	/*flex-direction: row-reverse;*/
}

.containerPartenzaArrivo {
	width: 25%;
}

/* .containerAndataRitornoBagagli {
width: 800px;
} */

#containerAndataArrivoPartenza,
#containerRitornoArrivoPartenza {
	background-color: white;
	width: 70.55vw;
	max-width: 800px;
	padding: 1rem 0.5rem;
	border-radius: var(--border-radius);

}

#containerAndataArrivoPartenza h4,
#containerRitornoArrivoPartenza h4 {
	color: #0E1447;
	font-family: var(--font-family-medium) !important;
	font-size: 18px;
}

.selezionaPartenzaArrivoData {
	display: flex;
	padding-left: 1.2rem;
	flex-direction: column;
	width: 75%;
	justify-content: flex-start;
}

#containerBagagli {
	width: 70.55vw;
	max-width: 800px;
	padding: 5px;
	border-radius: var(--border-radius);
	background-color: #fff;
}

div[id^="bagaglio"] {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	height: 20%;
	padding: 0px 10px;
	border-bottom: 1px solid rgb(238, 238, 238);
}

div[id^="descrizione"] {
	align-self: center;
	display: flex;
}

div[id^="bagaglio"]:nth-last-child(-n+1) {
	border-bottom: 0;
}

#containerBagagli h4 {
	margin-left: 15px;
	margin-top: 20px;
	color: #0E1447;
	font-family: var(--font-family-medium);
	font-size: 16px;
}

#containerBagagli p {
	font-size: 11px;
}

#containerBagagli label {
	font-size: 11px;
}

.imballarebagagli {
	text-align: right;
	margin-top: 20px;
	max-width: 800px;
	padding-bottom: 25px;
}


/*toggle switch*/

.switch-andata,
.switch-ritorno {
	font-size: 20px;
	font-family: var(--font-family-regular);
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	margin: 0 0.5vw;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: var(--background-cetacean-blue);
	-webkit-transition: .4s;
	transition: .4s;
}

.check-switch:checked+.slider {
	background-color: var(--background-cetacean-blue);
}

.check-switch:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
	background-color: white;
}

.check-switch:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

/**/
/* input number */

.plus-minus-input {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: flex;
}

.plus-minus-input .input-group-field {
	text-align: center;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	border: 2px solid grey;
	background-color: transparent;
	border-radius: 10%;
	width: 50px;
	-webkit-appearance: textfield;
}

.input-group-field,
.input-group-field:focus-visible {
	cursor: default;
}

.input-group-field:focus-visible {
	outline: none;
}

.plus-minus-input .input-group-field::-webkit-inner-spin-button,
.plus-minus-input .input-group-field ::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
}

.plus-minus-input .input-group-button .minus {
	border-radius: 50%;
	padding: 0.25em 0.8em;
	width: 1rem;
	background-color: transparent;
	border: 2px solid grey;
	display: flex;
	justify-content: center;
}

.plus-minus-input .input-group-button .plus {
	border-radius: 50%;
	padding: 0.25em 0.8em;
	width: 1rem;
	background-color: transparent;
	border: 2px solid var(--background-turquoise);
	display: flex;
	justify-content: center;
}

.fa-minus,
.fa-plus {
	margin-top: 0.13rem;
}

.fa-plus {
	color: var(--background-turquoise);
}

.fa-minus {
	color: grey;
}

.containerGaranzia {
	display: flex;
	justify-content: space-between;
	width: 70.55vw;
	max-width: 800px;
	flex-direction: row;
}

#bexExclusive {
	position: relative;
}

#bexBasic,
#bexExclusive {
	background-color: white;
	width: 49%;
	height: 110px;
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	text-align: left;
	border-radius: var(--border-radius);
	padding: 10px;
}

#bexBasic {
	border: 2px solid var(--background-turquoise);
}

#bexExclusive {
	border: 2px solid rgb(229, 172, 72);
}

#bexBasic p,
#bexExclusive p {
	font-family: var(--font-family-regular);
	font-weight: 400;
}

.BBBexFacile {
	color: var(--background-turquoise);
	font-size: 17px;
	font-family: var(--font-family-bold);
	font-weight: bold;
}

.BBBexExclusive {
	color: rgb(229, 172, 72);
	font-size: 17px;
	font-family: var(--font-family-bold);
	font-weight: bold;
}

.checkboxGaranzia {
	align-self: center;
}

.imgviaggiosicuro {
	position: absolute;
	top: -20px;
	right: 60px;
	width: 60px;
}

/* .imgviaggiosicuro {
width: 60px;
margin-left: 13px;
margin-top: -50px;
} */

.couponSconto {
	display: flex;
	text-align: center;
	padding-top: 15px;
	padding-left: 15px;
	justify-content: space-between;
}

.containerTotale {
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
	font-family: var(--font-family-bold);
	font-size: 20px;
	color: var(--background-cetacean-blue);
	margin-top: 30px;
	position: relative;
}

.containerTotale::before {
	content: "";
	position: absolute;
	top: 50px;
	left: 4%;
	bottom: 0;
	height: 1px;
	width: 92%;
	border-bottom: 1px solid rgb(238, 238, 238);
}

#promoCode {
	font-size: 13px;
	width: 90%;
	border-radius: 20px;
	margin: 0 10px;
	font-style: italic;
	background-color: #f1f1f1;
}

#btn_coupon {
	height: 43px;
	border-radius: 20px;
	z-index: 2;
	position: absolute;
	right: 8px;
	width: 10vw;
	max-width: 140px;
	padding: 16px 0;
}

#selezionaBexFacile,
#selezionaBexExclusive {
	width: 30px;
	height: 30px;
	accent-color: var(--background-cetacean-blue);
}

#selezionaBexFacile:checked:before {
	color: white;
}

.bexGaranzia {
	width: 68%;
}

.containerDettagliOrdine {
	background-color: white;
	border-radius: var(--border-radius);
}

.imgBexExclusive,
.imgBexBasic {
	width: 40px;
	height: 40px;
}

.uppercase {
	background-color: var(--background-cetacean-blue) !important;
	color: rgb(255, 255, 255) !important;
	font-family: var(--font-family-regular) !important;
	font-weight: bold !important;
	border-radius: 30px !important;
	margin-top: 10% !important;
	background-color: var(--background-cetacean-blue) !important;
	width: 80% !important;
	font-family: var(--font-family-regular) !important;
	font-size: 20px !important;
	border-radius: 26px !important;
}

.containerAssistenza {
	background-color: var(--background-cetacean-blue);
	margin-top: 10%;
	border-radius: var(--border-radius);
}

.telefono,
.indirizzoEmail,
.mailToBagExpress,
.comeImballare {
	color: rgb(255, 255, 255);
}

.comeImballare {
	text-decoration: underline !important;
}

.telefono,
.indirizzoEmail {
	display: flex;
	/* margin-left: 50px; */
}

.containerDettagliOrdineAssistenza {
	display: flex;
	flex-direction: column;
	margin-top: 11%;
	width: 29.45vw;
	max-width: 400px;
	height: fit-content;
	/* height: 544px; */
	position: sticky;
	top: 1.5em;
}

.containerTitoloDettaglioOrdine {
	background-color: var(--background-turquoise);
	padding: 5px 0px 40px 15px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	height: 38px;
}

.containerTitoloDettaglioOrdine h5 {
	color: #fff;
	font-family: var(--font-family-medium);
	font-size: 20px;
	margin-bottom: 0px;
}

/* input[type="button"] {
background-color: var(--background-cetacean-blue);
width: 80%;
font-family: var(--font-family-regular);
font-size: 20px;
border-radius: 26px;
} */

.containerStepOneContinua {
	padding: 15px 0px 25px 0px;
	text-align: center;
}

/* .containerTitoloAssistenza {
	text-align: center;
	padding: 2% 15% 0 15%;
}

.containerTitoloAssistenza h5 {
	font-weight: bold;
	font-family: var(--font-family-regular);
	font-size: 18px;
	color: var(--background-turquoise);
	border-bottom: 1px solid rgb(238, 238, 238);
} */

.containerTitoloAssistenza {
    text-align: center;
    padding: 4% 15% 0 15%;
    place-items: center;
}

.containerTitoloAssistenza h5 {
    font-weight: bold;
    font-family: var(--font-family-regular);
    font-size: 18px;
    color: var(--background-turquoise);
    border-bottom: 1px solid #ffffff9c;
    padding-bottom: 10px;
    width: fit-content;
}

.telefono img,
.indirizzoEmail img {
	width: 35px;
	margin: 0 15px 30px 15px;
	padding-top: 15px;
}

.numeroTelefono,
.mailToBagExpress {
	font-size: 20px;
	color: #fff;
}

.numeroTelefono:hover {
	color: var(--background-turquoise);
}

.mailToBagExpress:hover {
	color: var(--background-turquoise);
}

@media screen and (max-width: 1290px) {
	.containerStepOne {
		display: flex;
		font-family: var(--font-family-regular);
		width: 87vw;
		flex-direction: column;
		padding-left: 10vw;
		align-items: center;
	}

	.containerDettagliOrdineAssistenza {
		display: flex;
		margin-top: 32px;
		width: 70.5vw;
		max-width: 795px;
		flex-direction: row-reverse;
		justify-content: space-between;
		/*align-items: flex-start;*/
		gap: 18px;
	}

	.containerDettagliOrdine {
		width: 50%;
		height: fit-content;
		/* height: 25.5vh; */
	}

	.couponSconto {
		display: flex;
		text-align: center;
		flex-direction: row;
		justify-content: flex-end;
		padding-right: 25px;
	}

	#btn_coupon {
		right: unset;
	}

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

	.uppercase {
		background-color: var(--background-cetacean-blue) !important;
		color: rgb(255, 255, 255) !important;
		font-family: var(--font-family-regular) !important;
		font-weight: bold !important;
		border-radius: 30px !important;
		margin-top: 5% !important;
		background-color: var(--background-cetacean-blue) !important;
		width: 80% !important;
		font-family: var(--font-family-regular) !important;
		font-size: 20px !important;
		border-radius: 26px !important;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza {
		background-color: var(--background-cetacean-blue);
		margin-top: 0;
		border-radius: var(--border-radius);
		width: 50%;
		min-width: 310px;
		/* height: 250px; */
	}

	#containerSceltaAndataRitorno,
	.containerStepOne h3 {
		font-size: 20px;
	}


}

@media screen and (max-width: 1200px) {
	#btn_coupon {
		width: 12vw;
	}
}

@media screen and (max-width: 1120px) {


	.container_loading {
		right: 63%;
	}

	.containerStepOne {
		display: flex;
		font-family: var(--font-family-regular);
		width: 90vw;
		flex-direction: column;
		padding-left: 6vw;
	}

	/* .containerDettagliOrdineAssistenza {
	display: flex;
	width: 70.5vw;
	max-width: 800px;
	flex-direction: row-reverse;
	justify-content: space-between;
} */

	.containerDettagliOrdine {
		width: 50%;
		/* height: 25.5vh; */
	}

	.couponSconto {
		display: flex;
		text-align: center;
		flex-direction: row;
		justify-content: flex-end;
	}

	#btn_coupon {
		right: unset;
	}

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

	.uppercase {
		background-color: var(--background-cetacean-blue) !important;
		color: rgb(255, 255, 255) !important;
		font-family: var(--font-family-regular) !important;
		font-weight: bold !important;
		border-radius: 30px !important;
		margin-top: 5% !important;
		background-color: var(--background-cetacean-blue) !important;
		width: 80% !important;
		font-family: var(--font-family-regular) !important;
		font-size: 20px !important;
		border-radius: 26px !important;
	}

	/* .containerDettagliOrdineAssistenza>.containerAssistenza {
	background-color: var(--background-cetacean-blue);
	margin-top: 5%;
	border-radius: var(--border-radius);
	width: 40%;
} */

	.containerAndataArrivoPartenzaMediaQuery,
	.containerRitornoArrivoPartenzaMediaQuery {
		background-color: white;
		width: 70.55vw;
		max-width: 800px;
		padding: 1rem 0.5rem;
		border-radius: var(--border-radius);
	}

	.selezionaPartenzaArrivoData {
		display: flex;
		flex-direction: column;
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		align-content: space-around;
	}

	.containerPartenzaArrivoSelect {
		display: flex;
		padding-right: 4rem;
		flex-direction: column;
	}

	.containerPartenzaArrivoData {
		display: flex;
		padding-right: 4rem;
		flex-direction: column-reverse;
	}

	.containerPartenzaArrivo {
		display: flex;
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		align-content: space-around;
		flex-direction: column;
	}

	.group-field {
		width: 95%;
		max-width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.containerPartenzaArrivoSelect input[type],
	.containerPartenzaArrivoSelect select,
	.containerPartenzaArrivoData input {
		width: 100%;
		margin-bottom: 15px;
	}

	#AndataPartenza,
	#AndataArrivo,
	#RitornoPartenza,
	#RitornoArrivo {
		width: 100%;
		height: 44px;
	}
}

@media screen and (max-width:1129px) {

	.containerPartenzaArrivoSelect {
		display: flex;
		flex-wrap: nowrap;
	}

	.containerGaranzia,
	.containerDettagliOrdineAssistenza,
	#containerBagagli,
	#containerAndataArrivoPartenza,
	#containerRitornoArrivoPartenza {
		width: 100%;
	}

	#btn_coupon {
		right: unset;
	}
}

@media screen and (max-width:1127px) {

	.containerGaranzia {
		gap: 15px;
	}

	/* .containerGaranzia {
	height: 260px;
	flex-direction: column;
} */

	#bexBasic,
	#bexExclusive {
		width: 100%;
	}

	.imgviaggiosicuro {
		right: 50px;
	}

	#btn_coupon {
		right: unset;
		/* height: 46px; */
	}

}

@media screen and (max-width: 1024px) {
	.step-wizard-list {
		width: 80%;
	}
}
@media screen and (max-width: 1000px) {
	#btn_coupon {
		width: 20vw;
	}
}

@media screen and (max-width:970px) {
	.containerGaranzia {
		height: 260px;
		flex-direction: column;
	}
}

@media screen and (max-width:922px) {
	#btn_coupon {
		right: unset;
		/* height: 43px; */
	}

	.container_loading {
		max-width: 178px;
		height: 43px;
	}

}

@media screen and (max-width:830px) {
	.containerTitoloAssistenza {
		padding: 1vw 2.5vw;
	}

	.containerAssistenza {
		display: none;
	}
}

@media screen and (max-width:830px) {

	.containerDettagliOrdineAssistenza {
		width: 100%;
		flex-direction: column-reverse;
		align-items: flex-start;
		height: fit-content;
		margin-top: 10px;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza {
		height: 250px;
	}

	.containerDettagliOrdine {
		height: 45%;
		margin-top: 30px;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza,
	.containerDettagliOrdine {
		width: 100%;
	}

	.containerTitoloAssistenza {
		padding: 2% 10% 0 10%;
	}

	.telefono img,
	.indirizzoEmail img {
		width: 40px;
	}

	.telefono,
	.indirizzoEmail {
		margin-left: 50px;
	}

	.containerNumeroTelefono,
	.containerMailTo {
		font-size: 20px;
	}

	.numeroTelefono,
	.mailToBagExpress {
		font-size: 15px;
	}


	.containerTitoloDettaglioOrdine {
		padding: 5px 0px 40px 10px;
	}

	.containerTitoloDettaglioOrdine h5,
	.containerTotale {
		font-size: 18px;
	}

	/* #promoCode {
	font-size: 18px
} */

	#btn_coupon {
		right: unset;
		/* height: 58px; */
		border-radius: 35px;
		width: 25%;
	}
}

@media screen and (max-width:787px) {

	/* .imgviaggiosicuro {
	width: 80px;
	margin-left: 80px;
} */

	#btn_coupon {
		right: unset;
	}

	.step-wizard-list {
		width: 90%;
	}

}

@media screen and (max-width:700px) {

	.custom-alert {
		margin-top: 16px;
		min-width: 400px;
		max-width: 500px;
		min-height: 185px;
		max-height: 300px;
		position: absolute;
		top: 35%;
		right: 0;
		font-family: 'Gordita Medium';
	}

}

@media screen and (max-width:674px) {
	/* .imgviaggiosicuro {
	margin-left: 40px;
} */

	#btn_coupon {
		right: unset;
	}
}

@media screen and (max-width:605px) {

	#AndataPartenzaDataRitiro,
	#RitornoPartenzaDataRitiro{
		margin-bottom: 0px;
	}
	
	.tooltip-mobile{
		/* margin: auto; */
		/* gap: 22px; */
		padding: 0 0.7vw;
		font-size: 12px;
		background-color: #0E1447;
		color: #fff;
		/* border-radius: 15px; */
		height: auto;
		display: flex;
		align-items: center;
		width: fit-content;
		position: relative;
		top: -16px;
	}

	.tooltip-right{
		display: none;
	}

	.labelDataRitiro,
	.labelDataConsegna{
		display: flex;
		flex-direction:column;
		align-items: baseline;
		flex-wrap: wrap;
		/* gap: 5px; */
	}

	[data-tooltip]:hover::after,
	[data-tooltip][class*=tooltip-]:hover::before {
		visibility: visible;
		opacity: 1;
	} 

	#containerAndataArrivoPartenza,
	#containerRitornoArrivoPartenza {
		height: 720px;
		position: relative;
	}


	.labelDataRitiro {
		top: -170px;
		position: absolute;
		width: 90%;
	}

	.labelDataRitiro+.containerPartenzaArrivoData {
		top: -110px;
	}

	.containerPartenzaArrivoData {
		width: 100%;
		right: 12px;
		padding: 0 10px;
		max-width: 500px;
	}

	.labelDataConsegna {
		margin-left: 0;
		position: relative;
		top: 8px;
	}

	.container_loading {
		right: 50%;
	}

	.telefono,
	.indirizzoEmail {
		margin-left: 35px;
	}

	.container_loading {
		max-width: 70%;
		height: 42px;
	}

	.containerPartenza {
		flex-direction: column;
	}

	.containerPartenzaArrivoSelect {
		width: 100%;
		padding: 0 10px 0 0px;
	}

	.containerPartenzaArrivo {
		display: flex;
		width: 100%;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		padding-left: 18px;
		position: absolute;
		bottom: 10px;
	}

	.selezionaPartenzaArrivoData {
		display: flex;
		flex-direction: column;
		width: 100%;
		flex-wrap: wrap;
		align-content: center;
	}

	/* .imgviaggiosicuro {
	margin-left: 20px;
} */

	.telefono img,
	.indirizzoEmail img {
		width: 40px;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza {
		height: 40%;
	}

	.numeroTelefono,
	.mailToBagExpress {
		font-size: 21px;
	}

	#btn_coupon {
		right: unset;
	}
}

@media screen and (max-width:595px) {
	/* .imgviaggiosicuro {
	margin-left: 20px;
} */

	#btn_coupon {
		right: unset;
	}
}

@media screen and (max-width:558px) {

	/* .imgviaggiosicuro {
	margin-left: 0;
	width: 60px;
} */

	.custom-alert {
		min-width: unset;
	}

	.containerNumeroTelefono,
	.containerMailTo {
		font-size: 20px;
	}

	#btn_coupon {
		right: unset;
	}
}

@media screen and (max-width:505px) {
	#btn_coupon {
		right: unset;
		width: 26%;
	}
}

@media screen and (max-width:489px) {

	#containerSceltaAndataRitorno {
		flex-direction: column;
		flex-wrap: wrap;
		align-content: flex-start;
		align-items: flex-start;
	}

	div[id^="bagaglio"] {
		flex-direction: column;
		padding: 5px 10px;
		align-items: center;
	}

	#bexExclusive,
	#bexBasic {
		height: 154px;
		align-items: center;
	}

	/* 
	.imgviaggiosicuro {
	padding: 49px 0 5px;
} */

	.containerGaranzia {
		height: 350px;
	}

	.bexGaranzia {
		display: flex;
		flex-direction: column;
		height: 100%;
		justify-content: space-around;
	}

	.telefono,
	.indirizzoEmail {
		margin-left: 15px;
	}

	/* .numeroTelefono,
	.mailToBagExpress {
	font-size: 25px;
} */

	.containerDettagliOrdineAssistenza {
		height: unset;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza {
		height: fit-content;
	}

	.containerDettagliOrdine {
		height: 50%;
	}

	.containerNumeroTelefono,
	.containerMailTo {
		font-size: 15px;
	}

	/* #promoCode {
	font-size: 15px;
} */

	#btn_coupon {
		right: unset;
		height: 50px;
		padding: 0;
	}
}

@media screen and (max-width:545px) {

	.containerStepOneContinua {
		padding: 15px 25px 25px 15px;
		width: 100%;
		max-width: unset;
	}

	.uppercase {
		width: 100%;
	}

	#promoCode {
		width: 100%;
		margin: 0;
	}

	#btn_coupon {
		max-width: unset;
		width: 100%;
		position: static;
	}

	.couponSconto {
		display: flex;
		text-align: center;
		flex-direction: column;
		justify-content: flex-end;
		gap: 15px;
	}

	.cky-revisit-bottom-left {
		bottom: 50px !important;
		left: 15px;
	}

	/* .containerDettagliOrdine {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin-left: 0;
	height: fit-content;
	z-index: 10;
	max-height: 38px;
	touch-action: none;
} */

	.containerTitoloDettaglioOrdine {
		padding: 0% 0% 0% 2%;
		display: flex;
		justify-content: space-between;
	}

	/* .collapse {
	display: block;
	margin-right: 16px;
	width: 35px;
	height: 35px !important;
	text-align: center;
	color: var(--background-cetacean-blue);
	padding-top: 4px;
} */

	/* .collapse:hover,
	.collapse:focus {
	background-color: transparent;
	color: var(--background-cetacean-blue)
} */
}

@media screen and (max-width: 515px) {
	.step-wizard-item {
		display: none;
	}

	li.current-item {
		display: block;
	}

	li:nth-last-child(-n + 1):after {
		width: 15% !important;
		transform: translateX(240%) !important;
	}

	.step-wizard-item:first-of-type::after {
		content: "";
		position: absolute;
		right: 0;
		top: 19px;
		background: #fff;
		height: 2px;
		width: 10%;
		transform: translateX(-400%);
		z-index: -10;
		margin: auto;
	}

	.step-wizard-item+.step-wizard-item:after {
		width: 20%;
		transform: translateX(200%);
	}
}

@media screen and (max-width: 460px) {

	.numeroTelefono,
	.mailToBagExpress {
		font-size: 19px;
	}

}

@media screen and (max-width: 417px) {

	/* #promoCode {
	font-size: 13px;
} */

	.containerDettagliOrdine {
		height: 47%;
	}

	.containerTitoloAssistenza h5 {
		font-size: 15px;
	}

	#bexExclusive,
	#bexBasic {
		height: 190px;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza {
		height: 35%;
	}

	.numeroTelefono,
	.mailToBagExpress {
		font-size: 15px;
	}

	.telefono img,
	.indirizzoEmail img {
		width: 30px;
	}

	.containerTitoloDettaglioOrdine h5,
	.containerTotale {
		font-size: 18px;
	}

	.containerTitoloDettaglioOrdine h5 {
		margin-top: 4px;
	}

	.containerGaranzia {
		margin-top: 15px;
		height: 400px;
	}

	.containerDettagliOrdineAssistenza>.containerAssistenza {
		height: 100%;
	}


	/* .containerDettagliOrdine {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 280px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
} */

	#btn_coupon {
		right: unset;
		height: 43px;
		/* width: 165px; */
	}
}

@media screen and (max-width: 417px) {
	.containerDettagliOrdineAssistenza>.containerAssistenza {
		min-width: unset;
	}
}

@media screen and (max-width: 400px) {

	.telefono,
	.indirizzoEmail {
		margin-left: 8px;
	}
}

@media screen and (max-width: 400px) {
	.custom-alert {
		min-width: unset;
		margin: 0 16px;
	}
}
