
.lamb_ucnd {
	font-family: 'Lambotype UltraCnd';
	font-weight: bold;
	font-style: normal;
}
.lamb_cnd {
	font-family: 'Lambotype Cnd';
	font-weight: normal;
	font-style: normal;
}
.lamb_norm {
	font-family: 'Lambotype';
	font-weight: normal;
	font-style: normal;
}
select.lamb_norm {
	font-family: 'Lambotype';
	font-weight: normal;
	font-style: normal;
}
.lamb_cnd_black {
	font-family: 'Lambotype Cnd';
	font-weight: 900;
	font-style: normal;
}
.uc_font{
	text-transform: uppercase;
}

select {
	font-family: 'Lambotype', sans-serif;
	font-size: 1rem;
	color: #111;
	background-color: #f5f5f5;
	border-radius: 6px;
	padding: 0.5rem;
}

/* Opzioni interne */
option {
	font-family: 'Lambotype', sans-serif;
	font-size: 0.95rem;
	color: #111;
	background-color: #fff;
}




a {
	color: red;
}

#registration-form-form-validation_errors p {
	margin: 0;
	padding: 0;
}

#packs-options .card {
	transition: border-color .15s ease, box-shadow .15s ease;
	cursor: pointer;
}
#packs-options .card.selected {
	border-color: #0d6efd;
	box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
}
/*.radio-error .form-check-input {
	outline: 2px solid red;
	outline-offset: 2px;
}
.required-error .form-check-input {
	outline: 2px solid red;
	outline-offset: 2px;
}*/

/****** RADIO BUTTON CUSTOM *********/
/* Wrapper per ogni gruppo radio */


/* --- radio boxed compatti e allineati --- */
.radio-box {
	background:#f8f9fa;
	border:1px solid #e2e3e5;
	border-radius:.375rem;
	padding:.5rem .75rem;                 /* più basso */
	display:flex; flex-direction:column; gap:.4rem;
}

/* riga unica: label a sinistra, opzioni a destra */
.radio-box .rowline{
	display:flex; align-items:center; justify-content:space-between;
	gap:.75rem;
}
.radio-box .group-label{
	margin:0; font-weight:600; color:#212529; font-size:.95rem; white-space:nowrap;
}
.radio-box .options{
	display:flex; align-items:center; gap:1rem; flex-wrap:wrap;
	margin:0;
}
.radio-box .option{display:inline-flex; align-items:center; gap:.4rem; margin:0;}
.radio-box input[type="radio"]{width:1.05em; height:1.05em; cursor:pointer;}
.radio-box .hint{margin:0; color:#6c757d; font-size:.85rem;}

/* hover/focus come gli input */
.radio-box:hover{border-color:#d9dbde;}
.radio-box:focus-within{border-color:#86b7fe; box-shadow:0 0 0 .15rem rgba(13,110,253,.25);}

/* su mobile, manda le opzioni sotto la label */
@media (max-width: 576px){
	.radio-box .rowline{flex-direction:column; align-items:flex-start;}
	.radio-box .group-label{white-space:normal;}
}

.party_night_box{
	background-color: rgba(221, 253, 150, 0.74);
	padding: 10px 20px !important;
	margin: 10px;
	border-radius: 5px;
}


/***********************************  BUTTON SUBMIT  **************************************/
.btn-gradient {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border: none;
	border-radius: 6px;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;

	/* gradiente orizzontale blu → verde */
	background: linear-gradient(to right, #0d4b52, #4caf50);

	/* transizione morbida al passaggio */
	transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
}

/* hover */
.btn-gradient:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* focus (accessibilità) */
.btn-gradient:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(72, 239, 128, 0.4);
}

/* active (cliccato) */
.btn-gradient:active {
	transform: translateY(0);
	opacity: 0.8;
}

/*****************************************************************************************************/


/*** UNDER 12 *****/

 .minor-box {
	 background: #f8f9fa;
	 border: 1px solid #dee2e6;
	 border-radius: .5rem;
	 box-shadow: 0 2px 4px rgba(0,0,0,0.05);
 }

/* Titolo del box */
.minor-title {
	font-weight: 600;
	color: #212529;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: .5rem;
}
.minor-title::before {
	content: "👶";
	font-size: 1.2rem;
}

/* Margini coerenti */
.minor-box label {
	font-weight: 500;
	color: #333;
}
.minor-box small {
	color: #6c757d;
	font-weight: 400;
}



.lambo-box {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: .5rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.lambo-title {
	font-weight: 600;
	color: #212529;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: .5rem;
}

.lambo-title::before {
	content: "🏎️";
	font-size: 1.2rem;
	margin-right: 0.4rem;
}

/* Responsive */
@media (max-width: 576px) {
	.minor-box .row > div {
		margin-bottom: .75rem;
	}
}


