html {
	width: 100%;
}

body {
	overflow-x: hidden !important;
}

body.show-spinner > main {
	overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > * {
	opacity: 0;
}

/* Spinner */
body.show-spinner::after {
	content: ' ';
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	border-top-color: rgba(0, 0, 0, 0.3);
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
	left: calc(50% - 15px);
	top: calc(50% - 15px);
	position: fixed;
	z-index: 1;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

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

.hidden {
	display: none !important;
	visibility: hidden !important;
}

.btn-mini {
	padding: 0.2rem 1rem 0.2rem 1rem !important;
}

.btn,
.pointer {
	cursor: pointer !important;
}

.btn-success {
	color: #ffffff !important;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: #fff;
	text-decoration: none;
}

table .highlights_registry td {
	background-color: rgba(216, 216, 183, 1) !important;
}

table .highlights_registry td p {
	color: #575751 !important;
}

.open-medium {
	cursor: pointer !important;
}

.line {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top-color: currentcolor;
	border-top-style: none;
	border-top-width: 0px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.box-group {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 20px 5px;
	margin: 5px;
}

.box-group h5 {
	text-align: center !important;
	text-transform: uppercase !important;
}

.btn-ico {
	font-size: 1rem !important;
}

.p-25 {
	padding: 25px 0 !important;
}

.top-right-button-container-custom {
	float: initial;
	display: flex;
	justify-content: space-between;
}

.arrow {
	display: inline-block;
	margin-left: 5px; /* Spazio tra il testo e l'icona */
}

#tornaSuBtn {
	display: none;
	/* Il pulsante sarà nascosto all'inizio */
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	color: rgb(57, 54, 54);
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
}
