﻿@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Poppins', sans-serif !important;
}

.wrapper {
	flex: 1; /* prende tutto lo spazio rimanente */
}

.footer {
	margin-top: auto; /* spinge il footer in fondo */
}

a, a:hover, a:focus {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

/*navBar*/

.navbar-custom {
	background-color: #921125;
}

.container-custom {
	margin-top: 40px;
}

.nav-link-custom {
	color: white;
}





/*intestazione*/
.custom-title-menu {
	width: 100%;
	margin-bottom: 5px;
	border-radius: 4px;
	text-align: center;
	color: black;
	font-weight: bold;
}

.about-border {
	display: block;
	width: 80px;
	height: 3px;
	/*background: #f1cd8f;*/
	background: #2483a2;
	margin: 5px auto;
}



/*/* Nascondo la checkbox standard */
input[type=checkbox].toggle-btn {
	display: none;
}

	/* Stile del bottone quando la checkbox è unchecked */
	input[type=checkbox].toggle-btn + label {
		display: inline-block;		
		border: 1px solid #0d6efd;
		border-radius: 0.375rem;
		color: #0d6efd;
		background-color: #fff;
		cursor: pointer;
		user-select: none;
		text-align: center;
		width: 100%;
	}

	/* Stile quando è checked */
	input[type=checkbox].toggle-btn:checked + label {
		background-color: #0d6efd;
		color: #fff;
	}
