/*________________________________________________*/


/*     CSS File - created by Marzoli Matteo       */


/*--------------------------------------------------
    FONTS
--------------------------------------------------*/

@font-face {
	font-family: 'BuffStance';
	src: url('fonts/BuffStance.eot');
}

@font-face {
	font-family: 'BuffStance';
	src: url('fonts/BuffStance.ttf');
}

@font-face {
	font-family: 'Digital';
	src: url('fonts/digital.eot');
}

@font-face {
	font-family: 'Digital';
	src: url('fonts/digital.ttf');
}

@font-face {
	font-family: 'AntennaCond-ExtraLight';
	src: url('fonts/antennacond-extralight.eot');
}

@font-face {
	font-family: 'AntennaCond-ExtraLight';
	src: url('fonts/antennacond-extralight.ttf');
}

@font-face {
	font-family: 'AntennaCond-ExtraLight';
	src: url('fonts/antennacond-extralight.woff');
}

@font-face {
	font-family: 'AntennaCond';
	src: url('fonts/antennacond-regular.eot');
}

@font-face {
	font-family: 'AntennaCond';
	src: url('fonts/antennacond-regular.ttf');
}

@font-face {
	font-family: 'AntennaCond';
	src: url('fonts/antennacond-regular.woff');
}


/*--------------------------------------------------
    ANIMATIONS
--------------------------------------------------*/

@keyframes decorationMove {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	10% {
		-webkit-transform: rotate(2deg);
		transform: rotate(2deg);
	}
	20% {
		-webkit-transform: rotate(-2deg);
		transform: rotate(-2deg);
	}
	40% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.loading-spinner {
	width: 35px;
	margin: 15px auto 15px auto;
	-webkit-animation: spin 2s infinite linear;
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}


/*--------------------------------------------------
    GENERIC
--------------------------------------------------*/

.blur {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ms-filter: blur(3px);
}

div.tapper {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.0);
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
	-webkit-transition: transform 0.2s;
	transition: transform 0.2s;
	display: none;
	z-index: 1500;
}

div.tapperVisible {
	background-color: rgba(255, 255, 255, 0.4);
	-ms-transform: scale(3.7, 3.7);
	-webkit-transform: scale(3.7, 3.7);
	transform: scale(3.7, 3.7);
	display: block;
}

.visible-true,
.visible-TRUE {
	display: block;
}

.visible-false,
.visible-FALSE {
	display: none;
}

.row {
	margin: 0px;
}

html {
	height: 100%;
	min-height: 100%;
	margin-top: 0px !important;
}

body {
	font-family: AntennaCond;
	background-image: url('../images/sfondo.jpg');
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	font-size: 17px;
	color: black;
	min-height: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
}

.selectable {
	-webkit-user-select: text;
	-moz-user-select: text;
	-o-user-select: text;
}

#main_body {
	margin-top: 10px;
	margin-bottom: 30px;
	padding: 5px 10px 10px 10px;
	background-color: rgba(255, 255, 255, 0.3);
	max-width: 900px;
	min-width: 750px;
	min-height: 600px;
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(79, 103, 130, 0.7);
}

#main_body.big-margin-top {
	margin-top: 174px;
}

header {
	background-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0px 0px 20px rgba(79, 103, 130, 0.7);
	width: 100%;
}

header.fixed {
	position: fixed;
	margin-top: -290px;
	z-index: 1035;
}

h1 {
	font-family: BuffStance;
	font-size: 43px;
	font-weight: normal;
	color: #DAFFFF;
	padding: 40px 10px 10px 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	background-image: url('../images/sfondo_titolo.jpg');
	background-size: cover;
	text-align: center;
	height: 114px;
	background-position: center;
}

h2 {
	margin-bottom: 10px;
	margin-top: 5px;
	background-image: url('../images/sfondo_titolo.jpg');
	font-family: BuffStance;
	font-size: 33px;
	font-weight: normal;
	color: #DAFFFF;
	text-align: center;
	width: 100%;
	padding-top: 6px;
	height: 45px;
	border-radius: 5px;
	text-transform: capitalize;
}

h3 {
	clear: both;
	text-align: center;
	font-family: BuffStance;
	font-size: 35px;
	font-weight: normal;
	width: 100%;
	color: #0B405E;
	margin-top: 30px;
	text-transform: capitalize;
}

h4 {
	text-align: center;
	font-size: 17px;
	color: #02427A;
	margin-bottom: 10px;
}

footer {
	margin-top: 30px !important;
	color: #193963;
	padding: 20px;
	font-size: 12px;
	border-top-style: solid;
	border-top-width: 1px;
	border-color: whitesmoke;
}

#privacy {
	float: right;
	padding: 2px;
	width: 80px;
	height: 40px;
	margin-right: 10px;
	text-align: center;
}

#privacy:hover {
	border-radius: 5px;
	border-style: solid;
	border-width: 1px;
}

#firma {
	text-align: left;
	float: left;
	height: 20px;
}

#shinyStat {
	float: right;
	margin-top: 0px;
	margin-left: 10px;
}

#html5Validator {
	float: right;
	margin-right: 0px;
}

#cssValidator {
	float: right;
	margin-right: 10px;
	margin-top: 5px;
}

#rssValidator {
	float: right;
	margin-top: 5px;
}

a:link {
	color: #2F4B80;
	text-decoration: none;
}

a:visited {
	color: #2F4B80;
	text-decoration: none;
}

a:hover {
	color: #2F4B80;
	text-decoration: none;
}

a:active {
	color: blue;
	text-decoration: none;
}

a.position {
	height: 15px;
	display: block;
}

img {
	border: 0px none;
}

#page {}

#disqus_thread,
#vecchi_commenti {
	margin-top: 15px;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.80);
	border-radius: 10px;
	border-style: solid;
	border-width: 3px;
	border-color: #b4b4b4;
}

#vecchi_commenti {
	margin-top: 30px;
	text-align: center;
}

img.tappo_large {
	float: left;
	height: 350px;
	width: 350px;
	border-radius: 10px;
}

#risultato-tappi-large #imgTappoLarge_container img.tappo_large {
	height: 230px;
	width: 230px;
}

#risultato-tappi-large #imgTappoLarge_container .logo_prod_tappo {
	width: 55px;
	margin-left: -59px;
}

img.tappo_small,
img.tappo_grande_small {
	margin: 10px;
	border-radius: 8px;
	box-shadow: 5px 5px 5px #4F6782;
	cursor: pointer;
	height: 100px;
	width: 100px;
}

img.tappo_grande_small {
	margin: 3px;
	height: 114px;
	width: 114px;
}

.tappi_content {
	margin: 15px auto 60px auto;
	width: 100%;
	max-width: 740px;
	display: table;
	text-align: center;
}

.goToTop {
	position: fixed;
	bottom: 15px;
	right: 15px;
	top: auto;
	left: auto;
	font-size: 34px;
	color: rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.55);
	padding: 3px 5px 7px 5px;
	cursor: pointer;
}

.goToTop:hover {
	color: rgba(255, 255, 255, 0.8);
	border-color: rgba(255, 255, 255, 0.8);
}


/*--------------------------------------------------
    TENDINA
--------------------------------------------------*/

div#tendina_container {
	position: fixed;
	z-index: 1036;
	top: -48px;
	left: 0px;
	right: 0px;
	padding: 0px 5px 18px 5px;
	background-color: rgba(255, 255, 255, 0.65);
	-webkit-transition: top 0.4s;
	transition: top 0.4s;
}

div#tendina_container.opened {
	top: 0px;
}

div#tendina_container.nascosta {
	top: -80px !important;
}

div#tendina {
	padding: 3px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background-color: rgba(255, 255, 255, 0.80);
}

div#tendina_content {
	height: 45px;
	border-style: solid;
	border-width: 1px;
	border-color: #1C3D78;
	background-color: rgba(255, 255, 255, 0.50);
	border-radius: 10px;
	padding-right: 10px;
	padding-top: 2px;
	overflow: hidden;
}

.arrow_tendina {
	display: block;
	cursor: pointer;
	margin: 3px auto -17px auto;
}

#container_mi_piace {
	margin-top: 10px;
	margin-left: 20px;
	float: left;
	width: 444px;
	height: 30px;
	overflow: hidden;
}

#download-apk-container {
	float: left;
	overflow: hidden;
	height: 38px;
	width: 140px;
	padding-left: 8px;
	overflow: hidden;
}

#download-apk-container img {
	height: 36px;
	position: absolute;
	margin-top: 1px;
}

#download-apk-container span {
	font-size: 13px;
	width: 80px;
	overflow: hidden;
	display: inline-block;
	margin: 7px 0px 0px 8px;
	line-height: 13px;
	position: absolute;
	color: white;
}

#mi_piace {
	float: left;
	width: 185px;
	margin-top: -4px;
}

#feedRSS_header {
	float: left;
	margin-right: 20px;
}

#feedRSS_header>img {
	vertical-align: top;
}

iframe {
	border: none;
	height: 23px;
	margin-right: 15px;
}

.bandiera_lingua {
	float: right;
	cursor: pointer;
	width: 28px;
	margin: 5px;
}


/*--------------------------------------------------
    MODAL TAPPO
--------------------------------------------------*/

.apri {
	font-size: 18px;
	font-family: Verdana, Geneva, sans-serif;
	float: right;
	margin-right: 50px;
}

#tappo-modal-dialog {
	min-width: 690px;
	min-height: 370px;
	border-radius: 10px;
	border: 4px solid #4c699e;
}

.modal-content {
	background-color: #EDEDED;
	background-image: url("../images/sfondo_box.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	height: 100%;
}

#tappo-modal-body {
	padding: 5px;
	height: 100%;
}

#contenuto {
	float: left;
	padding: 5px;
	width: 100%;
	max-width: 610px;
	min-height: 360px;
}

#risultato-tappi-large {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 30px;
}

img.logo_prod_tappo {
	float: left;
	margin: 2px 0px 0px -69px;
	width: 67px;
	border-radius: 7px;
}

#info {
	width: 230px;
	float: left;
	padding: 5px;
	text-align: left;
	margin: 40px 10px 10px 10px;
}

#risultato-tappi-large #info {
	margin: 15px 10px 10px 15px;
}

p.singleInfo {
	margin-bottom: 7px;
}

#info_num {
	font-style: italic;
	font-size: 15px;
}

#info label {
	font-weight: bold;
	margin-right: 6px;
}

.arrow-cambiaTappo {
	width: 30px;
	color: #3d547f;
	text-align: center;
	font-size: 27px;
	margin-top: 160px;
	cursor: pointer;
}

#arrow-back {
	float: left;
}

#arrow-next {
	float: right;
}

.arrow-cambiaTappo.disabled {
	opacity: 0.2;
	cursor: default;
}

#chiudi_overlay {
	position: absolute;
	top: 0px;
	right: 6px;
	cursor: pointer;
	font-size: 20px;
	color: #3d547f;
}

#spunta_verde {
	color: #29A10B;
}


/*--------------------------------------------------
     MODAL ERROR
--------------------------------------------------*/

#error-icon {
	font-size: 45px;
	margin-bottom: -15px;
	color: darkorange;
}

#error-modal .close {
	margin-left: -20px;
	margin-top: -5px;
	outline: none;
}


/*--------------------------------------------------
     DAY DECORATION
--------------------------------------------------*/

.decoration {
	position: absolute;
	-webkit-animation: decorationMove 1.5s infinite;
	animation: decorationMove 1.5s infinite;
}

#halloween_decoration,
#tuttiisanti_decoration {
	margin-left: -9px;
	margin-top: 146px;
}

#capodanno_decoration,
#sansilvestro_decoration {
	margin: 157px 0px 0px -4px;
}

#epifania_decoration {
	margin: 150px 0px 0px -5px;
}

#natale_decoration {
	margin: 105px 0px 0px -6px;
}

#pasqua_decoration,
#lunedidipasquetta_decoration {
	height: 145px;
	margin-left: -12px;
	margin-top: -142px;
}

#liberazione_decoration {
	height: 126px;
	margin-left: 3px;
	margin-top: 149px;
}

#festadellarepubblica_decoration {
	height: 145px;
	margin-left: -2px;
	margin-top: 152px;
}

#festadellavoro_decoration {
	height: 120px;
	margin-left: 8px;
	margin-top: 149px;
}

#assunzione_decoration {
	height: 125px;
	margin-left: -11px;
	margin-top: 150px;
}


/*--------------------------------------------------
     MENU
--------------------------------------------------*/

#menuContainer {
	margin: 0px;
}

#menuContainer li {
	width: 12.5%;
	min-width: 90px;
	list-style-type: none;
	float: left;
	padding: 2px;
}

ul#menu {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 1px;
	padding-left: 0px !important;
	overflow: hidden;
}

.button {
	text-decoration: none;
	font-family: BuffStance;
	font-size: 22px;
	color: #DAFFFF;
	text-align: center;
	background-image: url('../images/tasto-menu-1.png');
	background-size: cover;
	background-position: center;
	background-repeat: repeat;
	height: 38px;
	padding-top: 3px;
	border-radius: 5px;
	cursor: pointer;
}

.button .glyphicon {
	font-size: 19px;
}

a.button {
	display: block;
	width: 100%;
}

.button:hover {
	color: white;
	background-image: url('../images/tasto-menu-2.png');
}

a.button:hover {
	font-size: 24px;
}

a.button:active {
	font-size: 22px;
	color: white;
	background-image: url('../images/tasto-menu-1.png');
}

div.mobileMenuControlBar {
	display: none;
	height: 52px;
	background-image: linear-gradient(#0C5582, #094469);
	width: 100%;
	margin-top: 0px;
	position: fixed;
	z-index: 800;
	-webkit-box-shadow: 0px 6px 36px 0px rgba(0, 0, 0, 0.63);
	-moz-box-shadow: 0px 6px 36px 0px rgba(0, 0, 0, 0.63);
	box-shadow: 0px 6px 36px 0px rgba(0, 0, 0, 0.63);
}

p#titoloMobile {
	color: white;
	font-size: 22px;
	font-family: BuffStance;
	float: left;
	height: inherit;
	padding: 10px 0px 8px 15px;
	margin-bottom: 0px;
}


/*--------------------------------------------------
     MENU HAMBURGER
--------------------------------------------------*/

div#openMobileMenu {
	background-image: linear-gradient(#043957, #002940);
	width: 52px;
	height: 52px;
	float: left;
	text-align: center;
	padding: 0px;
}

.material-design-hamburger button {
	display: block;
	border: none;
	background: none;
	outline: 0;
}

.material-design-hamburger__icon {
	padding: 25px 0px 0px 10px;
	cursor: pointer;
}

.material-design-hamburger__layer {
	display: block;
	width: 29px;
	height: 3px;
	background: #eee;
	position: relative;
	animation-duration: 300ms;
	animation-timing-function: ease-in-out;
}

.material-design-hamburger__layer:before,
.material-design-hamburger__layer:after {
	display: block;
	width: inherit;
	height: 3px;
	position: absolute;
	background: inherit;
	left: 0;
	content: '';
	animation-duration: 300ms;
	animation-timing-function: ease-in-out;
}

.material-design-hamburger__layer:before {
	bottom: 240%;
}

.material-design-hamburger__layer:after {
	top: 240%;
}

.material-design-hamburger__icon--to-arrow {
	animation-name: material-design-hamburger__icon--slide;
	animation-fill-mode: forwards;
}

.material-design-hamburger__icon--to-arrow:before {
	animation-name: material-design-hamburger__icon--slide-before;
	animation-fill-mode: forwards;
	bottom: 200%;
}

.material-design-hamburger__icon--to-arrow:after {
	animation-name: material-design-hamburger__icon--slide-after;
	animation-fill-mode: forwards;
	top: 200%;
}

.material-design-hamburger__icon--from-arrow {
	animation-name: material-design-hamburger__icon--slide-from;
}

.material-design-hamburger__icon--from-arrow:before {
	animation-name: material-design-hamburger__icon--slide-before-from;
}

.material-design-hamburger__icon--from-arrow:after {
	animation-name: material-design-hamburger__icon--slide-after-from;
}

@keyframes material-design-hamburger__icon--slide {
	0% {}
	100% {
		transform: rotate(180deg);
	}
}

@keyframes material-design-hamburger__icon--slide-before {
	0% {}
	100% {
		transform: rotate(45deg);
		margin: 3% 37%;
		width: 75%;
	}
}

@keyframes material-design-hamburger__icon--slide-after {
	0% {}
	100% {
		transform: rotate(-45deg);
		margin: 3% 37%;
		width: 75%;
	}
}

@keyframes material-design-hamburger__icon--slide-from {
	0% {
		transform: rotate(-180deg);
	}
	100% {}
}

@keyframes material-design-hamburger__icon--slide-before-from {
	0% {
		transform: rotate(45deg);
		margin: 3% 37%;
		width: 75%;
	}
	100% {}
}

@keyframes material-design-hamburger__icon--slide-after-from {
	0% {
		transform: rotate(-45deg);
		margin: 3% 37%;
		width: 75%;
	}
	100% {}
}


/*--------------------------------------------------
    PAGE HOME
--------------------------------------------------*/

h2#homeTitle {
	padding-top: 3px;
}

img#foto_tappi {
	width: 360px;
	margin-left: 15px;
	margin-bottom: 10px;
	float: right;
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
}

div#citazioneGuccini {
	text-align: justify;
	padding-top: 1em;
	padding-bottom: 2em;
	max-width: 680px;
	margin-bottom: 5px;
	clear: both;
	border-radius: 5px;
}

blockquote {
	border-left: none;
}

div#fonteCitazione {
	text-align: right;
	font-size: 14px;
	color: #212C56;
}

#containerPresentazione {
	text-align: justify;
	margin-top: 20px;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 0.5em;
	border-radius: 5px;
}

#articoloPrealpina {
	margin-bottom: 3.5em;
	width: 100%;
	min-height: 390px;
	max-height: 400px;
	text-align: center;
}

#img_articoloPrealpina {
	width: 100%;
	border-radius: 5px;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
}

#chartdiv-numTappi {
	width: 100%;
	height: 370px;
	padding-top: 5px;
}

#statistiche_content #chartdiv-numTappi {
	height: 300px;
}

#chartdiv-numTappi a {
	display: none !important;
}

#containerRingraziamenti {
	text-align: center;
	padding-bottom: 20px;
}

.sponsor-container {
	margin-top: 15px;
	text-align: center;
}

.sponsor-item {
	display: inline-block;
	margin: 15px;
}

.sponsor-item img {
	height: 85px;
}

#statistiche_content {
	padding: 15px 15px 15px 0px;
}

#statistiche_dx {
	padding: 25px;
}

.grafico {
	padding: 0px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0px 0px 15px rgba(49, 71, 97, 0.5);
}

#button_storia_collezione,
#button_statistiche {
	width: 100%;
	max-width: 195px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	margin-top: 5px;
	background-repeat: repeat;
}

#contatore {
	font-family: Digital;
	font-size: 35px;
}

#numeroTappi {
	padding: 10px;
	width: 100%;
	color: #212C56;
	background-color: rgba(255, 255, 255, 0.60);
	border-radius: 10px;
	text-align: center;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
	margin-bottom: 25px;
}

select#numTappi {
	background-color: rgba(255, 255, 255, 0.60);
	border-radius: 4px;
	margin-left: 5px;
}

#content_news {
	margin-bottom: 50px;
}

#storia_testo {
	background-color: rgba(255, 255, 255, 0.30);
	border-radius: 7px;
	margin: 10px 0px 10px 0px;
	padding: 10px 20px 10px 20px;
	text-align: center;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
}

#sponsor-commenti {
	background-color: rgba(255, 255, 255, 0.30);
	padding: 25px;
	text-align: center;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
	cursor: pointer;
	border-radius: 5px;
}


/*--------------------------------------------------
    PAGE STATISTICHE
--------------------------------------------------*/

#chartdiv-tipi {
	width: 100%;
	height: 340px;
}

#chartdiv-tipi a {
	display: none !important;
}

#chartdiv-provenienze {
	width: 100%;
	height: 435px;
}

#chartdiv-provenienze a {
	display: none !important;
}

#tabella_provenienze {
	padding: 5px;
}

#table_provenienze {
	width: 100%;
	max-width: 400px;
	background-color: rgba(255, 255, 255, 0.5);
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
}

#table_provenienze td {
	padding: 2px 2px 2px 6px;
}

#table_provenienze tr.pari {
	background-color: rgba(31, 90, 173, 0.2);
}

#table_provenienze th {
	background-color: rgb(12, 84, 129);
	color: #DAFFFF;
	padding: 5px 5px 5px 7px;
}

#vediTutti_provenienze,
#soloTopTen_provenienze {
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
}


/*--------------------------------------------------
    PAGE BIRRE
--------------------------------------------------*/

#planisfero-container {
	text-align: center;
	width: 100%;
}

#planisfero {
	margin: 30px auto 40px auto;
	max-width: 100%;
}

#button_tutte_birre {
	width: 180px;
}

div.birre_menu_stati {
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: rgba(255, 255, 255, 0.60);
	text-align: center;
	width: 100%;
	min-height: 45px;
	border-radius: 10px;
}

img.flag {
	margin-right: 15px;
	width: 55px;
}

img.flag_mini {
	width: 43px;
}

img#back_arrow {
	height: 33px;
	margin-right: 5px;
	margin-bottom: -9px;
}

#link_to_back_page {
	color: #DAFFFF;
	display: block;
	float: left;
	padding: 18px 0px 10px 9px;
	margin-right: -30px;
	cursor: pointer;
}

#link_to_back_page[data-action='apriHome'] {
	padding-top: 14px;
}

#link_to_back_page:hover {
	color: white;
}

.link_bandiera {
	margin: 0px 3px;
	cursor: pointer;
}

.paese-chiudi {
	height: 30px;
	width: 30px;
	margin-left: -30px;
	margin-bottom: -30px;
	margin-top: -3px;
	margin-right: -4px;
	text-align: center;
	font-size: 19px;
	float: right;
	cursor: pointer;
	display: none;
}

.container-opened .paese-chiudi {
	display: block;
}

.continente_container {
	margin-bottom: 40px;
}

.paese-container {
	overflow: hidden;
	box-shadow: 0px 0px 20px #4F6782;
	max-width: 780px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-right: auto;
	margin-left: auto;
	-webkit-transition: max-height 0.9s ease;
	transition: max-height 0.9s ease;
	max-height: 195px;
	min-height: 195px;
}

.container-opened {
	max-height: 4000px;
	overflow-y: auto;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.container-opened::-webkit-scrollbar {
	width: 7px;
}

.container-opened::-webkit-scrollbar-track {
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

.container-opened::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.8);
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.transparentCapCover {
	height: 195px;
	margin-bottom: -195px;
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.5));
	position: relative;
	text-align: center;
	cursor: pointer;
}

.transparentCapCover span.transparentCapBar {
	background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
	text-align: center;
	display: inline-block;
	height: 25px;
	width: 100%;
	position: absolute;
	top: 170px;
	padding-top: 2px;
	font-size: 22px;
	left: 0px;
	color: #0B405E;
}


/*--------------------------------------------------
    PAGE CERCA
--------------------------------------------------*/

#div_cerca {
	margin-top: 5px;
	width: 100%;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
	border-radius: 5px;
}

p#riepilogo_cerca {
	margin-top: 3px;
	padding: 5px 20px 4px 4px;
	background-color: rgba(255, 255, 255, 0.60);
	width: 100%;
	border-radius: 5px;
	color: #0B3D5C;
	min-height: 35px;
	box-shadow: 0px 0px 20px rgba(49, 71, 97, 0.5);
}

#cronologia_cerca {
	margin-top: 3px;
	margin-bottom: 3px;
	width: 100%;
	border-radius: 5px;
	color: #0B3D5C;
	font-size: 13px;
	background-color: rgba(255, 255, 255, 0.30);
	text-align: center;
	max-height: 0px;
	overflow: hidden;
	-webkit-transition: max-height 0.8s ease;
	transition: max-height 0.8s ease;
}

.cronologia-opened {
	min-height: 65px;
	max-height: 500px !important;
	padding-bottom: 15px;
}

#link_cronologia {
	float: right;
	margin-top: 7px;
	margin-right: 4px;
	margin-bottom: -40px;
	cursor: pointer;
	font-size: 26px;
	color: #3d547f;
	border-radius: 50%;
}

#link_cronologia:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

#image_size_cerca {
	padding-left: 5px;
	font-weight: normal;
}

#link_cancella_cronologia {
	float: right;
	text-align: center;
	width: 28px;
	height: 28px;
	margin: 7px 40px -40px -40px;
	font-size: 11px;
	border-radius: 50%;
	color: #A80000;
	cursor: pointer;
}

#link_cancella_cronologia:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

#link_cancella_cronologia .glyphicon {
	font-size: 14px;
	display: block;
}

#titolo_cronologia {
	margin-top: 3px;
	margin-bottom: 14px;
	font-size: 14px;
	color: #000000;
	font-style: italic;
}

.cronologia-item {
	cursor: pointer;
}

#form_cerca {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.60);
	padding-top: 20px;
	padding-bottom: 15px;
	min-height: 115px;
	border-radius: 5px;
}

.autocomplete-suggestion {
	font-size: 13px;
	color: #212C56;
	padding: 5px;
	border-bottom-style: dotted;
	border-width: thin;
	border-color: #6e8ca6;
	cursor: pointer;
}

.autocomplete-suggestion:hover {
	background-color: rgb(200, 218, 231);
}

.autocomplete-suggestions {
	background-color: rgb(236, 246, 255);
	max-height: 400px;
	overflow-x: hidden;
	overflow-y: scroll;
	border-style: groove;
	border-color: #b0bdcc;
	border-width: 2px;
	border-radius: 6px;
	padding-top: 7px;
}

.autocomplete-selected {
	background-color: rgb(200, 218, 231);
}

#header_cerca {
	padding-left: 15px;
	padding-right: 15px;
	min-height: 35px;
}

#opzioni_cerca {
	min-height: 53px;
	margin-top: 15px;
	font-size: 14px;
	border-radius: 6px;
}

#opzioni_cerca>div {
	float: left;
	padding: 5px 15px 5px 15px;
	min-height: 55px;
	min-width: 65px;
}

div#checkbox_container_cerca {
	padding-top: 20px;
}

#submit_cerca {
	display: inline-block;
	width: 30px;
	height: 30px;
	color: #4c699e;
	cursor: pointer;
}

#reset_cerca {
	float: right;
	margin: 0px 5px;
	cursor: pointer;
}

#reset_cerca:hover {
	text-decoration: underline;
}

.label_cerca {
	float: left;
	color: #4D5963;
}

select.select_cerca {
	float: left;
	clear: both;
	outline: none;
}

#colore_container_cerca .label_cerca {
	width: 100%;
}

hr.separation_line {
	width: 100%;
	margin-bottom: 10px;
	display: inline-block;
}

.error {
	background-color: orange;
	padding: 5px;
	color: white;
	text-align: center;
	font-weight: bold;
}

#content {
	border-radius: 5px;
	padding-top: 5px;
	min-height: 180px;
}

#infoDaWikipedia {
	background-color: rgba(255, 255, 255, 0.30);
	padding: 5px 15px 5px 15px;
	border-radius: 5px;
	margin-top: 20px;
	font-size: 16px;
}

#label_text_cerca {
	padding-right: 10px;
}

#text_cerca {
	background-color: rgba(255, 255, 255, 0.60);
	border-radius: 6px;
	font-size: 19px;
	width: 300px;
	padding: 4px 32px 4px 4px;
	margin-right: -30px;
	color: #111b41;
}

#paese_cerca,
#tipo_cerca,
#colore_cerca {
	background-color: rgba(255, 255, 255, 0.60);
	border-radius: 4px;
	color: #111b41;
	padding: 5px;
}

.filtro_cerca.notEmpty {
	background-color: rgb(255, 255, 220) !important;
}

#text_cerca:focus,
#paese_cerca:focus,
#tipo_cerca:focus,
#colore_cerca:focus {
	background-color: rgba(255, 255, 255, 0.80) !important;
	border-color: #4c699e;
	outline: none;
}

#paese_cerca:hover,
#tipo_cerca:hover,
#colore_cerca:hover,
#text_cerca:hover {
	background-color: rgba(255, 255, 255, 0.80);
}

#with_info {}

.switch-description {
	float: left;
	padding: 5px;
	font-weight: 700;
	width: inherit;
}

.switch-container {
	float: left;
	max-height: 30px;
	padding: 8px;
}

.switch-label {
	width: 35px;
	height: 15px;
	background-color: #73ABD9;
	box-shadow: inset 0 0 0 30px #9DA6B0;
	border-radius: 10px;
	display: block;
	left: 0px;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.switch {
	display: none;
}

.switch-label::before {
	content: "";
	position: absolute;
	top: -4px;
	left: -4px;
	height: 22px;
	width: 22px;
	border-radius: 50%;
	display: block;
	background-color: #2D618C;
	border: none;
	z-index: 2;
	box-shadow: inset 0 0 0 40px #E4ECF2, 0 0 1px 0 #5D686E;
	-webkit-transition: box-shadow 300ms ease-in 0s, left 200ms ease-in 0s;
	transition: box-shadow 300ms ease-in 0s, left 200ms ease-in 0s;
}

.switch:checked + label::before {
	left: 17px;
	box-shadow: inset 0 0 0 0 #4a4a4a, 0 0 1px 0 #152F45;
}

.switch:checked + label {
	box-shadow: inset 0 0 0 0 #4a4a4a;
	background-color: #73ABD9;
}


/*--------------------------------------------------
    PAGE CONTATTI
--------------------------------------------------*/

.internal_container {
	padding: 0px 10px 0px 10px;
}

.links_content {
	float: left;
	background-color: rgba(255, 255, 255, 0.60);
	width: 100%;
	min-height: 150px;
	border-radius: 10px;
	padding: 20px 10px 10px 10px;
}

#pergamena {
	height: 40px;
}

.link_img {
	vertical-align: middle;
	margin-right: 10px;
}


/*--------------------------------------------------
    PAGE DOPPI
--------------------------------------------------*/

.check_doppio-container {
	display: inline-block;
	margin: -25px 35px 25px -35px;
	vertical-align: bottom;
}

.checkbox {
	display: none;
}

.checkbox-label::before {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
	position: absolute;
	z-index: 1;
	width: 20px;
	height: 20px;
	border: 3px solid #E0E0E0;
	cursor: pointer;
	margin: 5px;
	border-radius: 3px;
}

.checkbox:checked + label::before {
	-webkit-transform: rotate(-45deg) translate(0px, 0px);
	-ms-transform: rotate(-45deg) translate(0px, 0px);
	transform: rotate(-45deg) translate(0px, 0px);
	height: 12px;
	width: 25px;
	border: 6px solid #2F6591;
	border-top-style: none;
	border-right-style: none;
}

.checkbox + label::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: #FFFFFF;
	cursor: pointer;
	margin: 5px;
	border: 3px solid #FFFFFF;
	border-radius: 3px;
	box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.85);
}

#istruzioni {
	float: left;
	margin-bottom: 15px;
	padding: 5px 10px 5px 10px;
	background-color: rgba(255, 255, 255, 0.60);
	border-radius: 10px;
}

#button_crea_doppi {
	width: 60px;
	float: left;
}

#istruzioni_text {
	float: left;
	margin-right: 10px;
	padding-top: 8px;
}

#numero_selezionati {
	float: right;
	margin-right: 4px;
	margin-top: 0px;
	color: #222680;
	text-align: center;
	padding: 5px 8px 5px 8px;
	background-color: rgba(255, 255, 255, 0.60);
	border-radius: 5px;
	min-width: 120px;
}

#per_contattarmi {
	text-align: center;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
}

.avviso {
   background-color: rgba(255, 255, 255, 0.60);
   margin-top: 40px;
   border-radius: 5px;
}

.avviso #thecollectorsdesk {
   padding: 15px;
   font-size: 25px;
   width: 50%;
   margin: 10px auto;
   display: inline-block;
   min-width: 265px;
   color: white;
   background-color: #2D618C;
   border-radius: 5px;
}

.avviso #thecollectorsdesk:hover {
	background-color: #17466d;
}


/*Advertising*/

div#ad97090 {
	display: none;
}

#yazmpa_txt {
	display: none;
}


/* cookie info message */

#cookieChoiceInfo {
	display: none;
}


/*--------------------------------------------------
 CSS PER ADATTAMENTO ALLE DIMENSIONI DELLO SCHERMO
--------------------------------------------------*/

@media screen and (max-height: 320px) {
	ul#menu {
		overflow-y: auto;
		max-height: 264px;
	}
}

@media screen and (max-height: 360px) and (max-width: 360px) {
	#imgTappoLarge_container {
		max-width: 53% !important;
	}
	#info {
		max-width: 45% !important;
	}
}

@media screen and (max-height: 394px) {
	#menuContainer li > .button {
		height: 33px !important;
	}
}

@media screen and (max-width: 767px) {
	.noPaddingOnMobile {
		padding: 0px;
	}
	html#sitotappi {
		margin-top: 0px !important;
	}
	body {
		background-color: rgb(23, 144, 209);
		background-image: none;
	}
	h2 {
		background-image: linear-gradient(#0C5582, #082D42);
		width: 110%;
		margin-right: -5%;
		margin-left: -5%;
		border-radius: 0px;
	}
	#main_body {
		margin-top: 0px !important;
		margin-bottom: 0px;
		padding: 0px 0px 10px 0px;
		border-radius: 0px;
		min-width: 150px;
		background-color: transparent;
		box-shadow: none;
	}
	#menuContainer {
		position: fixed;
		width: 80%;
		min-height: 100%;
		max-width: 315px;
		background-color: #002940;
		left: -90%;
		top: 51px;
		padding: 0px 5px 0px 5px;
		-webkit-transition: left 0.5s ease;
		transition: left 0.5s ease;
		z-index: 800;
		-webkit-box-shadow: 19px 0px 50px 0px rgba(0, 0, 0, 0.63);
		-moz-box-shadow: 19px 0px 50px 0px rgba(0, 0, 0, 0.63);
		box-shadow: 19px 0px 50px 0px rgba(0, 0, 0, 0.63);
	}
	#menuContainer li {
		width: 100%;
	}
	.opened-menu {
		left: 0px !important;
	}
	#page {
		padding: 60px 10px 0px 10px;
		overflow: hidden;
	}
	#statistiche_content {
		padding: 15px 0px 15px 0px;
	}
	#statistiche_dx {
		padding: 0px;
	}
	.button {
		color: #DAFFFF;
		background-image: linear-gradient(#0C5582, #094469);
	}
	.button:hover {
		background-image: linear-gradient(#094469, #082D42);
	}
	a.button:active {
		background-image: linear-gradient(#082D42, #082D42);
	}
	div.mobileMenuControlBar {
		display: block;
	}
	img#foto_tappi {
		width: 100%;
		margin-left: 0px;
	}
	img.tappo_small {
		margin: 7px;
		height: 81px;
		width: 81px;
		border-radius: 3px;
	}
	img.tappo_grande_small {
		margin: 3px;
		height: 89px;
		width: 89px;
		border-radius: 3px;
	}
	#tappo-modal-dialog {
		min-width: 100%;
		height: 100%;
		border-radius: 0px;
		border: none;
		margin: 0px;
	}
	#contenuto {
		margin-top: 0px;
	}
	#chiudi_overlay {
		top: -6px;
		right: 4px;
		font-size: 32px;
	}
	img.logo_prod_tappo {
		float: left;
		margin: 2px 0px 0px -57px;
		width: 55px;
		border-radius: 5px;
	}
	img.tappo_large {
		width: 100%;
		height: auto;
		border-radius: 0px;
	}
	#imgTappoLarge_container {
		max-width: 260px;
		float: left;
	}
	#info {
		width: auto;
		min-width: 150px;
		max-width: 250px;
		padding: 0px;
		text-align: left;
		margin: 10px 0px 10px 5px;
	}
	p.singleInfo {
		margin-bottom: 3px;
	}
	.arrow-cambiaTappo {
		margin: 2px;
		font-size: 30px;
		top: auto;
	}
	#arrow-back {
		position: absolute;
		bottom: 3px;
		left: 3px;
	}
	#arrow-next {
		position: absolute;
		bottom: 3px;
		right: 3px;
	}
	#text_cerca {
		width: 100%
	}
	#submit_cerca {
		float: right;
		margin-top: 5px;
		font-size: 24px;
	}
	#colore_container_cerca {
		clear: both;
	}
	div#citazioneGuccini {
		padding-bottom: 0px;
		background-color: rgba(255, 255, 255, 0.30);
	}
	#button_storia_collezione {
		margin-top: 0px;
	}
	#containerPresentazione {
		padding-left: 0px;
		padding-right: 0px;
	}
	#ringraziamenti {
		background-color: rgba(255, 255, 255, 0.30);
		border-radius: 5px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	#privacy {
		display: none;
	}
	#risultato-tappi-large {
		padding-left: 6px;
		padding-right: 6px;
	}
	.tappi_content {
		max-width: 640px;
	}
	.autocomplete-suggestions {
		max-height: 170px !important;
		z-index: 799 !important;
	}
	.check_doppio-container {
		margin: -22px 32px 22px -34px;
	}
	.checkbox-label::before {
		width: 25px;
		height: 25px;
	}
	.checkbox:checked + label::before {
		height: 15px;
		width: 28px;
	}
	.checkbox + label::after {
		width: 25px;
		height: 25px;
	}
	#disqus_thread,
	#vecchi_commenti {
		border-radius: 5px;
	}
	#numeroTappi {
		border-radius: 5px;
	}
	div.birre_menu_stati {
		border-radius: 5px;
	}
	.links_content {
		border-radius: 5px;
	}
}

@media screen and (max-width: 536px) {
	#info {
		max-width: 193px;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	#privacy {
		display: none;
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {}

@media screen and (min-width: 1200px) {}