html, body, input, select, option, button {
	padding: 0;
	margin: 0;
	font-family: Dosis, sans-serif;
	font-size: 18px;
	font-weight: 400;
	scroll-behavior: smooth;
}
header {
    background-color: #8ccded;
    height: 102px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
header img {
    margin-top: 18px;
    height: 50px;
}
h1 {
    background-color: #92cded;
    border-radius: 12px;
    color: white;
    margin: 0 auto;
    font-weight: 600;
    max-width: 320px;
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
}
h2 {
    background-color: aliceblue;
    border-radius: 0 50px 50px 0;
    color: #175ba1;
    font-weight: 600;
    max-width: 350px;
    margin-left: -20px;
    padding: 5px 0 5px 15px;
    text-transform: uppercase;
}
#logo {
    text-align: center;
}
main {
    margin: 160px auto 0 auto;
    max-width: 640px;
    padding: 0 20px;
    width: calc(100% - 40px);
}
section {
    max-width: 980px;
    margin: 0 auto;
}

#general_message {
    border-left: solid 8px red;
    padding: 0 20px;
    position: fixed;
    right: -100vw;
    top: 120px;
    transition: all 0.35s;
    width: 280px;
    z-index: 1000;
}
/* GESTIONE DEL GO TO TOP */
#go_to_top {
	background-color: #341436;
	border-radius: 64px;
	bottom: 10px;
	color: white;
	height: 64px;
	opacity: 0;
	position: fixed;
	right: 10px;
	text-align: center;
	transition: opacity 1s ease;
	width: 64px;
	z-index: 99;
}
#go_to_top span {
    font-size: 40px;
    line-height: 64px;
}
footer {
    background-color: grey;
    color: white;
    padding: 20px 0;
}
#owner {
    margin-top: -10px;
    font-size: 0.8rem;
    color: #bbb;
}
#owner a {
    color: #ddd;
    text-decoration: none;
}

/* CLASSI */
.flex_container {
    display: flex;
    gap: 10px;
}
.hide {
    display: none!important;
}
.grow1 {
    flex-grow: 1;
}
.italic {
    font-style: italic;
}
.mtop30 {
    margin-top: 30px!important;
}
.row_margin {
    margin-bottom: 10px;
}
.standard_input {
	padding: 10px;
    width: calc(100% - 25px);
}
.standard_select {
	padding: 10px;
    width: 100%;
}
.txt_center {
    text-align: center;
}