
/* SSNT */
:root {
	--muted-grey: #808080;
	--dark: #1e1e1e;
	--primary: #ff2424;
	--secondary: #8a0000;
	/*  */
	--transition-base: all .35s ease;
	/*  */
	--font-family-base: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--headings-font-family: 'League Gothic', sans-serif;
	/*  */
	--bs-btn-hover-color: #fff;
	/*  */
	--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

body {
	font-family: var(--font-family-base);
	background-color: #000;
	color: #fff;
	font-size: 16px;
	line-height: normal;
}

/* Utils */
.text-primary {
	color: var(--primary) !important;
}

hr {
	background-color: var(--muted-grey) !important;
	border-color: var(--muted-grey) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--headings-font-family);
	font-weight: regular !important;
}

h1 {
	text-transform: uppercase;
	font-size: 76px;
	letter-spacing: 2px;
}

h2 {
	text-transform: uppercase;
	font-size: 54px;
	letter-spacing: 2px;
}

h3 {
	text-transform: uppercase;
	font-size: 36px;
	letter-spacing: 2px;
}

h4 {
	text-transform: uppercase;
	font-size: 32px;
	letter-spacing: 1.5px;
}

h5 {
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 1.5px;
}

h6 {
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1.5px;
}

/* Header */
.sn_header {
	height: 66px;
	padding: 10px 0;
	background-color: #000;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sn_header .logo {
	display: block;
	height: 100%;
	width: auto;
}

.sn_header .back {
	position: absolute;
	top: 50%;
	left: 44px;
	transform: translateY(-50%);
}

@media (max-width: 991px) {
	.sn_header .back {
		left: 15px;
	}
}

.sn_countdown {
	position: absolute;
	top: 11px;
	right: 44px;
	left: 44px;
	z-index: 100;
	pointer-events: none;
	text-align: right;
}

@media (max-width: 991px) {
	.sn_countdown {
		right: 15px;
		left: 15px;
	}
}

.sn_countdown__in {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background-color: var(--dark);
	border-radius: 4px;
	overflow: hidden;
	padding: 5px;
	max-width: 300px;
	text-align: center;
	line-height: 1;
}

/* Footer */
.sn_footer {
	background-color: #000;
	padding: 36px 0 36px;
}

.sn_footer__menu {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 24px 48px;
	color: var(--muted-grey);
	flex-wrap: wrap;
	font-weight: bold;
}

.sn_footer__menu a {
	color: var(--muted-grey);
}

.sn_footer__menu a:hover {
	color: #fff;
}

.sn_footer__menu li {
	font-size: 10px;
}

.sn_footer__menu li a {
	text-transform: uppercase;
	text-decoration-color: transparent;
	transition: var(--transition-base);
}

.sn_footer__menu li a:hover {
	text-decoration-color: currentColor;
}

.sn_footer__legal {
	margin-top: 20px;
	justify-content: center;
	gap: 20px;
}

/* Buttons */
.btn {
	padding: 15px 20px;
	font-weight: bold;
	line-height: 12px;
	border-width: 2px;
	border-radius: 8px;
	box-shadow: none;
  font-size: 16px;
	outline-offset: 2px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	text-align: center;
	letter-spacing: .5px;
	transition: var(--transition-base);
	text-transform: none !important;	
}

.btn img {
	width: 48px;
	height: 48px;
}

.btn:has(br) {
	flex-direction: column;
}

.btn:has(br) br {
	display: none;
}

.btn:focus-visible {
	outline: 2px solid #fff;
}

.btn-primary {
	color: #000;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:hover {
	color: #000;
	background-color: var(--secondary);
	border-color: var(--secondary);
}

.btn-primary:focus,
.btn-primary:active {
	color: #000;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary-w {
	color: #000;
	background-color: #fff;
	border-color: #fff;
}

.btn-primary-w:hover {
	color: #000;
	background-color: #b3b3b3;
	border-color: #b3b3b3;
}

.btn-primary-w:focus,
.btn-primary-w:active {
	color: #000;
	background-color: #fff;
	border-color: #fff;
}

.btn-black {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.btn-black:hover {
	color: #fff;
	background-color: #4d4d4d;
	border-color: #4d4d4d;
}

.btn-black:focus,
.btn-black:active {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.btn-icon {
	padding: 0;
	border: 0;
	border-radius: 4px;
	width: 48px;
	height: 48px;
}

.btn-link {
	padding: 0;
	border: 0;
	border-radius: 0;
	text-decoration-color: transparent;
	gap: 8px;
	color: #fff;
}

.btn-link img {
	width: 38px;
	height: 38px;
}

.btn-link:hover {
	text-decoration-color: currentColor;
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
	--bs-btn-disabled-bg: #333;
	--bs-btn-disabled-border-color: #333;
}

/* Cards */
.vc-container,
.card {
	background-color: var(--dark) !important;
	border: 0 !important;
	border-radius: 8px !important;
	overflow: hidden;
}

.card-body2:not(:has(div)) {
	display: none !important;
}

/*  */
.icon-featured {
	color: var(--primary) !important;
}

/* Tables */
.table tr {
	border-color: var(--muted-grey) !important;
} 
.table th,
.table td {
	vertical-align: middle;
	border: 0 !important;
} 

.sn_table_scroller {
	position: relative;
	font-size: 12px;
}

.sn_table_scroller::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40px;
	z-index: 100;
	background: rgba(30, 30, 30, 0);
	pointer-events: none;
	background: linear-gradient(90deg,rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 1) 100%);
}

@media (max-width: 991px) {
	.sn_table_scroller .btn {
		padding: 10px 5px;
	}
}

/* Forms */
.sn_form {}

.sn_form .form-label {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .5px;
	margin-bottom: 8px;
}

.sn_form a:focus-visible,
.sn_form .btn:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.sn_form .select2-container--default .select2-selection--single,
.sn_form .form-control,
.sn_form .form-select {
	display: block;
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--muted-grey);
  border-radius: 8px;
	appearance: auto;
}

.select2-container {
	width: 100% !important;
}

.sn_form .select2-container--default .select2-selection--single {
	padding-left: 8px;
	padding-top: 0;
	padding-bottom: 0;
	display: flex;
	align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 50%;
	transform: translateY(-50%);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: var(--muted-grey);
}

.sn_form select:has(option[disabled]:checked) {
	color: var(--muted-grey);
}

.sn_form .select2-container--default .select2-selection--single,
.sn_form input.form-control,
.sn_form .form-select {
	height: 44px;
}

.sn_form input::-webkit-input-placeholder {
	color: var(--muted-grey);
	opacity: 1;
}

.sn_form input:-moz-placeholder {
	color: var(--muted-grey);
	opacity: 1;
}

.sn_form input::-moz-placeholder {
	color: var(--muted-grey);
	opacity: 1;
}

.sn_form input:-ms-input-placeholder {
	color: var(--muted-grey);
	opacity: 1;
}

button:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.form-check {
	margin-top: 20px;
	padding-left: 40px;
}

.form-check .form-check-input {
  flex-shrink: 0;
  width: 1.5em;
  height: 1.5em;
  margin-top: 0em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 2px solid #000;
	margin-left: -40px;
	box-shadow: none !important;
}

.form-check .form-check-input:checked[type="checkbox"] {
  background-image: var(--bs-form-check-bg-image);
  background-color: #000;
}

.form-check .form-check-input:checked[type="radio"] {
  background-image: var(--bs-form-check-bg-image);
  background-color: var(--primary);
  border-color: var(--primary);
}

.sn_form__title {
	font-family: var(--font-family-base);
	font-size: 16px;
	line-height: 1;
	font-weight: 600;
	text-transform: none;
	margin-bottom: 24px;
	letter-spacing: .5px;
}

.sn_form__wr {
	background-color: #fff;
	color: #000;
	border-radius: 8px;
	padding: 16px;
}

.sn_form__wr a:not(.btn) {
	color: currentColor;
}

@media (min-width: 992px) {
	.sn_form__wr {
		padding: 24px;
	}
}

.sn_prices {
	list-style: none;
	margin: 10px auto 0;
	padding: 0;
	font-size: 14px;
	max-width: 300px;
}

.sn_prices li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px 0;
	border-bottom: 1px solid #fff;
}

.sn_prices li:last-child {
	border-bottom: none;
}

.sn_scroll_hint {
	position: absolute;
	bottom: 8px;
	left: 8px;
	width: 44px;
	height: 14px;
	z-index: 100;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	overflow: hidden;
	animation: sn_scroll_hint_fade 2s ease-in-out infinite;
}

.sn_scroll_hint::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 18px;
	height: 10px;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 5px;
	animation: sn_scroll_hint_thumb 2s ease-in-out infinite;
}

@keyframes sn_scroll_hint_thumb {
	0%, 100% { transform: translateX(0); }
	50%       { transform: translateX(22px); }
}

@keyframes sn_scroll_hint_fade {
	0%, 100% { opacity: 0.6; }
	50%       { opacity: 1; }
}


.prenota-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 900;
	color: #ff2424;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	filter: url(#prenota-distress);
}
.prenota-divider {
	position: relative;
	height: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.75rem 0;
}
.prenota-divider::before {
	content: '';
	position: absolute;
	left: 0; right: 0;
	top: 50%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(255,36,36,0.4) 25%, rgba(255,36,36,0.9) 45%, #ff2424 50%, rgba(255,36,36,0.9) 55%, rgba(255,36,36,0.4) 75%, transparent);
	transform: translateY(-50%);
}
.prenota-divider::after {
	content: '';
	position: relative;
	z-index: 1;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #ff2424;
	box-shadow:
			0 0 3px 1px #ff2424,
			0 0 8px 4px rgba(255,36,36,0.75),
			0 0 18px 8px rgba(255,36,36,0.45),
			0 0 35px 14px rgba(255,36,36,0.2);
}
.prenota-card {
	background: rgba(25,25,25,0.85);
	border-radius: 8px;
	padding: 1.5rem 1.25rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.prenota-card p {
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 0;
}
.prenota-highlight {
	color: #ff2424;
}
.prenota-phone-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	padding: 2.5rem 0 3rem;
}
.prenota-phone-number {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #ffffff;
	text-decoration: none;
	white-space: nowrap;
}
.prenota-phone-line {
	width: 90px;
	height: 1px;
	background: linear-gradient(to left, rgba(255,36,36,0.85) 0%, rgba(255,36,36,0.4) 60%, transparent 100%);
	flex-shrink: 0;
}
.prenota-phone-line--right {
	background: linear-gradient(to right, rgba(255,36,36,0.85) 0%, rgba(255,36,36,0.4) 60%, transparent 100%);
}
.prenota-info-list {
	max-width: 720px;
	margin: 0 auto;
}
.prenota-info-item {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	background: rgba(25,25,25,0.85);
	border-radius: 8px;
	padding: .5rem 1rem;
	margin-bottom: 20px;
}
.prenota-info-item:last-child {
	border-bottom: none;
}
.prenota-info-item p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 0;
}
.prenota-info-item ul {
	padding: 0 0 0 20px;
	margin: 10px 0 0 0;
}
.prenota-info-item ul li::marker {
	color: var(--primary);
}
.prenota-info-item ul li {
	color: #fff;
}
.prenota-icon-box {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(30,30,30,0.95);
	border: 1px solid rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.35rem;
	color: #ff2424;
}

.scroll-to-top {
	display: none !important;
}