/* CSS Document */

/* SELETTORI PRINCIPALI */

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	word-wrap: break-word;
}

body {
	font-family: 'Roboto', serif;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	background-color: #fff;
	margin: 0px;
	padding: 0px;
	width: 100%;
	word-wrap: break-word;
	line-height: 22px;
}

h1, h2 {
	font-weight: 500;
}

h1 {
	text-transform: uppercase;
	margin-bottom: 10px;
}


a {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: underline;
}

main {
    width: 1000px;
    max-width: 100%;
    padding: 20px;
    margin: auto;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    border-width: 0px;
    vertical-align: middle;
    height: auto;
}

a > img {
    vertical-align: middle;
}

#testa {   
	background-color: #000;
	color: #fff;
}
#testa a {   
	color: #fff;
}

#testa > div {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
	width: 1000px;
	max-width: 100%;
	margin: auto;
}

#testa > div > div:nth-child(1) {
	width: 80px;
    text-align: left;
    padding: 5px;
}

#testa > div > div:nth-child(2) {
	width: calc(100% - 80px - 80px);
    text-align: center;
}

#testa > div > div:nth-child(3) {
	width: 80px;
    text-align: right;
}

#testa > div > div:nth-child(3) > span {
    padding: 5px;
}
#testa > div > div:nth-child(3) > div {
    display: inline-block;
    padding: 5px;
}

/*#testa .material-icons-outlined {
    font-size: 32px !important;
}*/


div[id^="setup-lingua"] {
    display: inline-block;
}

#setup-linguaattuale {
	/*font-size: 14px;
	margin-left: 10px;
	display: inline-block;*/
}
#setup-linguacambia {
	cursor: pointer;
}
	

#setup-linguascegli {
    position: absolute;
    background-color: #454F58;
    font-size: 16px;
    height: 0;
    transition: height 0.2s linear;
	/*width: 80px;*/
    text-align: center;
    list-style: none;
	padding: 0 ;
	margin: 0;
	margin-left: -90px;
	margin-top: 9px;
	z-index: 1;
}

#setup-linguascegli li {
    
	padding: 0 30px;
    height: 0px;
	font-size: 0;
	transition: all 0.2s linear;
	text-align: left;
	
}

#setup-linguascegli li img {
    height: 0px;
	
}

#setup-linguascegli li:hover {
    background-color:#666666;
}

#setup-linguascegli li:not(:last-child) {
	border-bottom: solid 1px #fff;
	cursor: pointer;
}

#setup-linguascegli li {
    border: 0px !important;
}



#setup-linguacambia:hover > #setup-linguascegli > li {
    height: 40px;
    font-size: 25px;
    border-bottom: solid 1px #fff !important;
    padding: 5px 30px;
}
#setup-linguaattuale:hover + #setup-linguacambia > #setup-linguascegli > li {
    height: 33px;
    font-size: 16px;
    border-bottom: solid 1px #fff !important;
    padding: 5px;
}
#setup-linguacambia:hover > #setup-linguascegli > li > img {
    height: 20px;
}
#setup-linguacambia:hover > #setup-linguascegli > li:last-child {
	border: none !important;
}


.menu-burger-box {
	cursor: pointer;
	font-size: 32px;
	font-family: "Material Icons";
}

.menu-burger-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1101;
    height: 100%;
    box-sizing: border-box;
    overflow: auto;
    transition: transform 0.4s cubic-bezier(.7,0,.3,1) 0s, left 0.4s cubic-bezier(.7,0,.3,1) 0s;
    -webkit-transition: transform 0.4s cubic-bezier(.7,0,.3,1) 0s, left 0.4s cubic-bezier(.7,0,.3,1) 0s;
    border-width: 1px;
    border-style: dotted;
    border-color: #f0f0f0;
    background-color: #ffffff;
    color: #2b2b2b;
    width: 300px; 
    transform: translateX(-100vw);
}

.menu-burger-nav-titolo {
    font-size: 24px;
    text-transform: uppercase;
    text-align: left;
    padding: 10px;
}

.menu-burger-nav-chiudi {
    width: 24px;
    box-sizing: border-box;
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: "Material Icons";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    text-transform: none;
    text-align: center;
    cursor: pointer;
    word-wrap: normal;
    white-space: nowrap;
    border: none;
    background-color: #fff;
}

.menu-burger-nav ul {
    display: block;
    list-style: none;
    padding: 0;
}

.menu-burger-nav-tasto {
    position: relative;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #f0f0f0;
}
.menu-burger-nav-tasto > a {
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 15px;
    margin-right: 25px;
    width: calc(100% - 25px);
    box-sizing: border-box;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    text-decoration: none;
    color: #2b2b2b;
}
.menu-burger-nav-tasto:hover > a {
    text-decoration: none;
    color: #777777;
}

article, .article {
	margin-top: 50px;
}

article > div > .article:nth-child(1) {
	margin-top: 20px;
}

.align-center {
	text-align: center;
}

.article.indexcerca {
    padding-bottom: 50px;
    border-bottom: dotted 1px #fff;
}

.affinaricerca {
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    text-decoration: underline;
}

.txt-bold {
	font-weight: 400;
}

.txt-didascalia {
	font-size: 12px;
	font-weight: normal;
}

.txt-upper {
	text-transform: uppercase;
}

.txt-lower {
	text-transform: lowercase;
}


.txt-errore {
	color: #DD4B39;	
}

.txt-conferma  { 
	color: #34A853;
}
.btn {
    border: none;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    text-align: center;
    background-color: #757575;
	color: #fff;
    padding: 20px;
    font-weight: 400;
    align-self: flex-end;
    margin: 15px auto;
    width: 350px;
    display: block;
    cursor: pointer;
    font-size: 20px;
    max-width: 100%;
    text-transform: uppercase;
}
   
.btn-p { 
    padding: 10px;
    width: 230px;
    min-width: 130px;
    font-size: 16px;
}

.btn:hover {
	text-decoration: none;
	opacity: 0.8;
}


.btn-cerca {
    background-color: #D6007D;
} 
  
.btn-info {
    background-color: #546E7A;
}

.btn-aggiungi {
    background-color: #FB8C00;
}

.btn-salva {
    background-color: #2E7D32;
}

.material-icons-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

.img-bn {
  	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  	filter: grayscale(100%);
}

.path {
    text-transform: uppercase;
}

.path .material-icons-outlined {
    font-size: 18px;
    vertical-align: sub;
    text-transform: none;
    font-family: "Material Icons";
}

.flexboxcampi,
.flexboxhaicercatoper,
.flexboxvarianti {
    display: flex;
    flex-wrap: wrap;
}

.flexboxcampi {
    margin: 2px 0;
}

.flexboxcampi > div:first-child {
    width: 110px;
}
.flexboxcampi > div:nth-child(2) {
    width: calc(100% - 110px);
}
.flexboxhaicercatoper > div {
    width: 255px;
}

.flexboxvarianti  > div:first-child {
    width: 50%;
}
.flexboxvarianti > div:nth-child(2) {
    width: calc(50% - 15px);
    margin-left: 15px;
}

.gruppofield {
    display: flex;
    flex-wrap: wrap;
}


.gruppofield label {
    display: block;
    text-transform: lowercase;
}

.field-errore {
  border: solid 1px #DD4B39 !important;
  
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(221, 75, 57, .6) !important;
   box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(221, 75, 57, .6) !important;
}

.gruppofield .field {
    margin: 10px 10px 10px 0;
}

.gruppofield .field:last-child {
    margin-right: 0;
}

.gruppofield.perc50 .field {    
    width: calc(50% - 10px);
}

.gruppofield.perc100 .field {    
    width: calc(100% - 10px);
}

.gruppofield .field select {
    font-size: 1rem;
    padding: 4px 12px;
    padding-right: 35px;
    height: 40px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 24 24' xml:space='preserve'%3E%3Cstyle%3E%3C/style%3E%3Cpath d='M12 18c-.3 0-.5-.1-.7-.3l-8-8c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l7.3 7.3 7.3-7.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-8 8c-.2.2-.4.3-.7.3z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px;
    background-color: #fff;
    background-position: right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    border-radius: 4px;
    border: 1px solid #949494;
    background-color: #fff;
    color: #333;
    width: 100%;
    outline: none;
    cursor: pointer;
}


.gruppofield .fieldload, 
.gruppofield .field input[type='text'], 
.gruppofield .field textarea {
    font-size: 1rem;
    padding: 4px 12px;
    height: 40px;
    font-family: inherit;
    border-radius: 4px;
    border: 1px solid #949494;
    background-color: #fff;
    color: #333;
    width: 100%;
    outline: none;
}
 
.gruppofield .field textarea {
    height: 100px;
}

.gruppofield .fieldload {
    padding-top: 13px;
}


.datitecnici {
  display: flex;
  text-align: center;
  justify-content: space-between;
  font-size: 14px;
}
.datitecnici div {
  width: 11%;
}
.datitecnici div strong {
  width: 11%;
  font-size: 16px;
}

#formCerca .submit {
    border: none;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    text-align: center;
    background-color: #D6007D;
	color: #fff;
    padding: 13px 16px;
    height: 40px;
    font-weight: 500;
    align-self: flex-end;
    margin: 15px 0;
    width: 100%;
    display: block;
    cursor: pointer;
}

#formCerca .submit:hover {
	opacity: 0.8;
}

.flexboxstagioni figure ,
.flexboxstagioni > div {
    width: calc(50% - 40px);
    margin: 40px 0;
}
.flexboxstagioni {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.stagioniimg {
    width: 100%;
    border-radius: 65px;
    display: block;
    position: relative;
}

.stagioniimgnome {
    position: absolute;
    font-size: 100px;
    font-weight: 500;
    top: 50%;
	left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.stagioniimg::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}


.flexboxarticoli {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flexboxarticoli > div {
    width: calc(50% - 20px);
}

.articoliimg {
    width: 100%;
    border-radius: 35px;
    display: block;
    position: relative;
}

.articoliimgnome {
    position: absolute;
    font-size: 30px;
    font-weight: 500;
    top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: calc(100% - 40px);
	text-align: center;
}

.articoliimg::after {
    content: "";
    display: block;
    padding-bottom: 40%;
}

.articolivarianti {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: space-between;
    align-items: baseline;
}

.boxvarianti {
    width: 23%;
    margin-bottom: 2%;
	background-color: #efefef;
}

.boxvarianti figure {
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}

.boxvarianti figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: top left;
}

.boxvarianti > div:nth-child(2) {
}

.boxvarianti .articolovariantenome {
	padding: 10px;
	text-align: center;
}

.articolovariantepulsante {
    /*display: flex;
    justify-content: space-between;*/
   text-align: center;
    padding: 0 10px 10px 10px;
}

.articolovariantepulsante .btn {
    display: inline-block;
    margin: 0;
    padding: 5px;
    font-size: 14px;
    width: 48%;
}



.windows_sfondo
	{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000000;
	opacity: .5;
	filter: alpha(opacity=5);
	-moz-opacity: .5;
	z-index: 1000;
}

.windows {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	padding: 0px;
	z-index: 1001; 
	width: 600px;
	border: solid 1px #666;
	border-radius: 10px 10px 10px 10px;	
	background-color: #fff;	
	box-sizing: border-box;
}

.windows_titolo {
	border-bottom: solid 1px #ccc;
	color: #000;
	font-size: 14px;
	margin: 10px;
	padding-bottom: 7px;
	text-transform: uppercase;
	font-weight: 400;
}

.windows_chiudi {
    position: absolute;
    top: 5px;
    right: 5px;
    font-family: 'Material Icons Outlined';
    cursor: pointer;
    font-size: 24px;
    text-transform: lowercase;
}

.windows_contenuto {
	margin: 10px;
	text-align: left;
	overflow: hidden;
	overflow-y: auto;
	max-height: calc(90vh - 80px);
	height: auto;
	box-sizing: border-box;
}

#richiestainfo-esito {
    margin: 30px auto;
    text-align: center;
}

#richiestainfo-pulsanti {
    text-align: center;
}

#richiestainfo-pulsanti .btn {
    display: inline-block;
}

.richiestainfolista {
    padding: 5px 0;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #ccc;
}

.richiestainfolista:nth-child(2) {
    margin-top: 10px;
    border-top: solid 1px #ccc;
}

.richiestainfolista > span:first-child {
    flex-grow: 1;
}

.richiestainfolista > span:nth-child(2) {
    width: 110px;
}

.quantita-remove,
.quantita-add {
    font-size: 18px;
    vertical-align: middle;
    cursor: pointer;
    font-family: 'Material Icons';
    color: #666;
}

#richiestainfo-articoli {
    margin-bottom: 20px;
}
.operazioneeliminare {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    border: solid 1px #DD4B39;
    font-size: 16px;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background-color: #DD4B39;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
}

.FormCerca {
  display: flex;
  align-items: center;
}
.FormCerca > div {
  box-sizing: border-box;
  padding: 0 5px;
    padding-left: 5px;
}
.FormCerca > div:first-child {
  padding-left: 0;
}
.FormCerca > div:not(:last-child) {
  flex-grow: 1;
}

.FormCerca input[type="text"] {
  border: solid 1px #efefef;
  border-radius: 3px;
  padding: 10px;
  width: 100%;
  height: 40px;
}

.FormCerca input[type="submit"].submit-cerca {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-family: "Material Icons";
  text-transform: none;
  -webkit-font-feature-settings: "liga" 1;
  -moz-font-feature-settings: "liga" 1;
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga" 1;
  word-wrap: normal;
  white-space: nowrap;
  vertical-align: bottom;
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: normal;
  border-radius: 5px;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  color: #444444;
  background-color: #CFD8DC;
  border: 0;
}

.bottone {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: inline-block;
  min-width: 130px;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.45s ease-in-out;
  -moz-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  font-weight: normal;
  color: #444444;
  background-color: #CFD8DC;
}

.bottone:hover {
  text-decoration: none;
  font-weight: normal;
  color: #444444;
  background-color: #B0BEC5;
}

.bottone-m {
  min-height: 40px;
  padding: 12px;
  font-size: 16px;
  line-height: 16px;
}

.paragrafo {
  margin: 30px 0;
}

.paragrafo-titolo {
  font-size: 25px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 20px;
}

.paragrafo-pulsante {
  padding: 10px;
}

.paragrafo-foto {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin: 0;
}

.paragrafo-icona {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paragrafo-icona figure {
  width: 200px;
  margin-right: 20px;
}

.paragrafo-icona .paragrafo-contenuto {
  width: calc(100% - 200px - 20px);
}



.paragrafo-foto figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: top left;
}

.paragrafo-foto .paragrafo-contenuto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: 100%;
  padding: 20px;
}

.paragrafo-foto .paragrafo-titolo {
  color: #fff;
  font-size: 36px;
  padding: 10px;
  font-weight: normal;
  line-height: normal;
  margin: 0;
}

.paragrafo-foto .paragrafo-testo {
  color: #fff;
  font-size: 28px;
  padding: 10px;
  font-weight: normal;
  line-height: normal;
}

@media all and (max-width: 600px) {
	.windows {
	    max-width: 95vw;
	   /* height: 95vh;*/
	}

	.windows_contenuto {
		max-height: calc(95vh - 56px);
	}
	
	.boxvarianti {
	    width: 48%;
	}
	
	.articolovariantepulsante {
	    display: block;
	}
	
	.articolovariantepulsante .btn {
	    display: block;
	    width: 100%;
	    padding: 10px;
	}
	.articolovariantepulsante .btn:nth-child(2) {
	    margin-top: 10px;
	}
	.gruppofield .field {
    	width: calc(50% - 10px);
	}	
	

	.gruppofield.fieldstagione .field {
	    width: calc(24% - 10px);
	}

	.gruppofield.fieldstampa .field:nth-child(2) {
	    margin-right: 0;
	}
	
	.flexboxstagioni figure ,
	.flexboxstagioni > div {
	    width: calc(50% - 10px);
	    margin: 10px 0;
	}
	
	.flexboxvarianti {
	    display: block;
	}
	
	.flexboxvarianti > div {
	    margin: 0 !important;
	    width: 100% !important;
	}
	
	
	.stagioniimg {
	    border-radius: 45px;
	}
	
	.stagioniimgnome {
	    font-size: 80px;
	}
	
	.flexboxarticoli {
	    display: block;
	}
	
	.flexboxarticoli > div {
	    width: 100%;
	}
	
	
	.articoliimg {
	    border-radius: 45px;
	}
	
	.articoliimgnome {
	    font-size: 30px;
	}
	
	.datitecnici {
	  flex-wrap: wrap;
	}
	.datitecnici div {
	  min-width: 24%;
	}
}

@media all and (max-width: 400px) {

	#testa > div {
  		height: 62px;
  	}
	
	.stagioniimg {
	    border-radius: 35px;
	}
	
	.stagioniimgnome {
	    font-size: 60px;
	}
	
	
	.articoliimg {
	    border-radius: 35px;
	}
	
	.articoliimgnome {
	    font-size: 25px;
	}
	
	.paragrafo.paragrafo-icona {
	  display: block;
	}
	.paragrafo-icona figure {
	  text-align: center;
	  margin: 0;
	  margin-bottom: 15px;
	  width: 100%;
	}
	.paragrafo-icona figure img {
	  max-width: 150px;
	}
	
	.paragrafo-icona .paragrafo-contenuto {
	  width: 100%;
	}
	
	.paragrafo-foto figure img {
	  height: 100%;
	  width: 100%;
	  object-fit: cover;
	}
	
	.paragrafo-foto .paragrafo-titolo {
		font-size: 28px;
	}
	
	.paragrafo-foto .paragrafo-testo {
	  font-size: 22px;
	}
	
	.datitecnici {
	  flex-wrap: wrap;
	}
	.datitecnici div {
	  min-width: 32%;
	}
}

@media all and (max-width: 300px) {


	.gruppofield .field {
		width: 100% !important;
	    margin-right: 0;
	}	
	.stagioniimg {
	    border-radius: 20px;
	}
	
	.stagioniimgnome {
	    font-size: 40px;
	}
	
	.articoliimg {
	    border-radius: 20px;
	}
	
	.articoliimgnome {
	    font-size: 16px;
	}
	
	.datitecnici {
	  flex-wrap: wrap;
	}
	.datitecnici div {
	  min-width: 49%;
	}
}
