/* 
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/***********************
 * START OF MAIN RULES *
 ***********************/
/*********************
VARIABLES
**********************/
/*Controls Menu top & bottom padding*/
/*Contols Menu left & right padding*/
/*Control Menu Color Scheme*/
/*********************
RESPONSIVE BREAKPOINTS
**********************/
/*********************
NAVIGATION STYLES
**********************/
nav {
  font-family: roboto_light;
  position: relative;
  z-index: 1;
  float: right;
  background: white;
}
@media (max-width: 800px) {
  nav {
    width: 100%;
    margin: 65px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: #191919;
  }
}

nav ul {
  margin: 0 auto;
  list-style: none;
}
@media (max-width: 800px) {
  nav ul {
    margin: 0;
    padding: 0;
    width: 100%;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.7);
    z-index: 15;
  }
}
nav ul li {
  float: left;
  position: relative;
  /******************
  SUBNAV
  ******************/
}
@media (max-width: 800px) {
  nav ul li {
    float: none;
    position: relative;
    margin: 0;
  }
}
nav ul li a {
  font-size: 20px;
  display: block;
  padding: 20px 22px;
  text-align: center;
  color: #707070;
  text-decoration: none !important;
  transition: all 0.1s ease;
}
@media (max-width: 1200px) {
  nav ul li a {
    padding: 20px 12px;
    font-size: 18px;
  }
}
@media (max-width: 995px) {
  nav ul li a {
    padding: 20px 4px;
    font-size: 17px;
  }
}
@media (max-width: 815px) {
  nav ul li a {
    padding: 20px 3px;
  }
}
nav ul li a:hover, nav ul li a.active {
  background: #60A543;
  color: #707070;
  transition: all 0.2s ease;
}
@media (max-width: 800px) {
  nav ul li a {
    display: table;
    margin: 0;
    padding: 15px 2px;
    color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0px 1px 3px rgba(255, 255, 255, 0.03);
    text-shadow: none;
    width: 100%;
  }
}
nav ul li:hover ul {
  opacity: 1;
  max-height: 1000px;
  transition: all 0.4s ease;
}
@media (max-width: 800px) {
  nav ul li:hover ul {
    max-height: 0;
  }
}
nav ul li ul {
  background: #707070;
  list-style: none;
  padding: 0;
  position: absolute;
  width: 200px;
  max-height: 0;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 20px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
@media (max-width: 800px) {
  nav ul li ul {
    max-height: 0;
    opacity: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.5);
    transition: all 2s ease;
  }
}
nav ul li ul li {
  float: none;
  margin: 0;
}
@media (max-width: 800px) {
  nav ul li ul li {
    margin: 0;
  }
}
nav ul li ul li a {
  display: block;
  color: white;
  text-align: left;
  padding: 13.33333px 14.66667px;
  margin: 0;
  border-right: none;
  box-shadow: inset 0px 1px 3px rgba(255, 255, 255, 0.03);
  text-transform: none;
  text-shadow: none;
  transition: all 0.2s ease;
}
nav ul li ul li a:hover, nav ul li ul li a.active {
  color: white;
  background: #60A543;
  transition: all 0.5s ease;
}
@media (max-width: 800px) {
  nav ul li ul li a {
    color: white;
    padding-left: 20px;
    background: none;
  }
}

/***************************
MOBILE NAV STYLES
***************************/
.mobile {
  display: none;
  margin: 0;
  margin-right: 30px;
  padding: 20px 15px;
  background: linear-gradient(to bottom, #353535 0%, #262626 100%);
  position: absolute;
  color: white;
  text-decoration: none !important;
  top: 15px;
  right: 15px;
  line-height: 0;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.35);
}
@media (max-width: 800px) {
  .mobile {
    display: table;
  }
}
.mobile:hover, .mobile:focus, .mobile:active, .mobile:link {
  color: lightgray;
  outline: none;
}

.active {
  max-height: 9000px !important;
  transition: all 1s ease;
}

@media (max-width: 800px) {
  .arrow {
    display: block;
    background: url(../images/arrow.png) no-repeat;
    float: right;
    height: 30px;
    width: 30px;
    position: absolute;
    right: 25px;
    top: 10px;
    transition: all 0.3s ease;
  }
  .arrow:hover {
    cursor: pointer;
  }

  .rotate {
    transition: all 0.3s ease;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}
.link-boxes {
  display: flex;
  display: -ms-flex;
  justify-content: space-between;
  -ms-justify-content: -ms-space-between;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media (max-width: 600px) {
  .link-boxes {
    justify-content: center;
    -ms-justify-content: center;
  }
}

.link-box {
  text-decoration: none !important;
  display: inline-block;
  margin: 10px 5px;
  flex-grow: 0;
  -ms-flex-grow: 0;
  display: block;
  width: 200px;
  height: 200px;
}
@media (max-width: 600px) {
  .link-box {
    margin: auto;
  }
}

.link-box p {
  background-color: white;
  opacity: 0.95;
  text-align: center;
  font-size: 18px;
  padding: 5px;
  margin-bottom: 3px;
  color: #60A543;
  font-family: exo_regular;
}

.news-box:after {
  display: block;
  clear: both;
  content: "";
}

.news-box {
  display: block;
  background-color: white;
  opacity: 0.95;
  padding: 10px;
  position: relative;
}
@media (max-width: 750px) {
  .news-box {
    padding-bottom: 60px;
  }
}

.news-box .news-image {
  width: 265px;
  height: 200px;
  float: right;
}
@media (max-width: 750px) {
  .news-box .news-image {
    display: none;
  }
}

.news-box > h2 {
  margin-bottom: 7px;
}

.news-box > .date {
  color: black;
  font-weight: bold;
  margin-bottom: 5px;
}

.news-box > .controls {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}

.news-box > .controls:after {
  position: absolute;
  content: "";
  left: 5em;
  right: 365px;
  bottom: 24px;
  height: 2px;
  background-color: #60A543;
}
@media (max-width: 750px) {
  .news-box > .controls:after {
    right: 100px;
  }
}

.news-box .open-news {
  vertical-align: middle;
  color: inherit;
  font-size: 37px;
  line-height: 47px;
  text-decoration: none;
  margin-left: 10px;
}

.news-box .prev, .news-box .next {
  float: right;
  vertical-align: middle;
}

.news-box .next {
  margin-right: 285px;
}
@media (max-width: 750px) {
  .news-box .next {
    margin-right: 20px;
  }
}

.news-box .prev {
  margin-right: 20px;
}

.background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
}

.background-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  opacity: 0.3;
  z-index: -1;
}

html.modal {
  background-color: white;
  color: black;
}

html.modal body {
  padding: 10px;
}

html.modal .modal-news {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
html.modal .modal-news:after {
  content: " ";
  display: block;
  clear: both;
}

html.modal .header {
  margin-bottom: 10px;
  overflow: hidden;
  *zoom: 1;
}

html.modal .header > .date {
  width: 9.09091%;
  float: left;
  margin-right: 2.27273%;
  font-weight: bold;
}

html.modal .header > .title {
  width: 88.63636%;
  float: right;
  margin-right: 0;
  text-align: center;
  color: #60a543;
  font-size: 20px;
}

html.modal .body > .image {
  width: 28.57143%;
  float: left;
  margin-right: 2.04082%;
}

html.modal .body > .image img {
  max-width: 100%;
}

html.modal .body > .text {
  width: 69.38776%;
  float: right;
  margin-right: 0;
}

.page {
  margin-top: 110px;
  overflow: hidden;
  *zoom: 1;
}

@media (min-width: 701px) {
  .page .image_gallery {
    width: 34.34343%;
    float: left;
    margin-right: 1.0101%;
  }
}
@media (max-width: 700px) {
  .page .image_gallery {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.page .iconed_image {
  display: block;
  width: 100%;
  max-width: 350px;
  position: relative;
  margin: 0 auto;
}
.page .iconed_image:after {
  position: absolute;
  content: url(/img/fotografica.png);
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -37.5px;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
}
.page .iconed_image img {
  width: 100%;
}

.page .image_gallery img {
  border: solid 5px white;
  border-radius: 2px;
}

@media (min-width: 701px) {
  .page .text {
    width: 64.64646%;
    float: right;
    margin-right: 0;
  }
}
@media (max-width: 700px) {
  .page .text {
    width: 100%;
    float: right;
    margin-right: 0;
    margin-top: 10px;
  }
}

.page .text-inner {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  text-align: justify;
}

.page .text-inner h2 {
  text-align: right;
  margin-bottom: 10px;
}

.lista_prodotti {
  margin-top: 40px;
}

.prodotto {
  margin-top: 30px;
  overflow: hidden;
  *zoom: 1;
}

.prodotto .image_gallery a {
  display: block;
  height: 180px;
  position: relative;
}

.prodotto .image_gallery a img {
  /*    position: absolute;
      top: 50%;
      transform: translate(0,-50%);*/
}

.prodotto.pleft .image_gallery {
  float: left;
  text-align: center;
  height: 180px;
}
@media (max-width: 700px) {
  .prodotto.pleft .image_gallery {
    float: none;
  }
}

.prodotto.pright .image_gallery {
  float: right;
  text-align: center;
}
@media (max-width: 700px) {
  .prodotto.pright .image_gallery {
    float: none;
  }
}

.prodotto .iconed_image {
  display: block;
  width: 100%;
  max-width: 280px;
  position: relative;
  margin: 0 auto;
}
.prodotto .iconed_image:after {
  position: absolute;
  content: url(/img/fotografica.png);
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -37.5px;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
}
.prodotto .iconed_image img {
  width: 100%;
}

.prodotto .text {
  width: auto;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.95);
}

.prodotto.pleft .text {
  margin-left: 290px;
}
@media (max-width: 700px) {
  .prodotto.pleft .text {
    margin-left: 0;
    margin-top: 10px;
  }
}

.prodotto.pright .text {
  margin-right: 290px;
}
@media (max-width: 700px) {
  .prodotto.pright .text {
    margin-right: 0;
    margin-top: 10px;
  }
}

.prodotto .text-inner {
  padding: 20px;
  text-align: justify;
  min-height: 180px;
  position: relative;
}

.prodotto.pleft .text-inner {
  padding-left: 150px;
}
@media (max-width: 900px) {
  .prodotto.pleft .text-inner {
    padding-left: 10px;
  }
}

.prodotto.pright .text-inner {
  padding-right: 150px;
}
@media (max-width: 900px) {
  .prodotto.pright .text-inner {
    padding-right: 10px;
  }
}

.prodotto .text-inner h2 {
  margin-bottom: 5px;
}

.prodotto .text-inner .partner {
  position: absolute;
  bottom: 5px;
  font-size: 18px;
  text-align: right;
}

.prodotto.pleft .text-inner .partner {
  right: 20px;
  left: 150px;
}
@media (max-width: 900px) {
  .prodotto.pleft .text-inner .partner {
    left: 10px;
  }
}

.prodotto.pright .text-inner .partner {
  right: 150px;
  left: 20px;
}
@media (max-width: 900px) {
  .prodotto.pright .text-inner .partner {
    right: 10px;
  }
}

.prodotto .text-inner .partner a {
  text-decoration: none;
  color: #707070;
}

.prodotto .text-inner .partner:before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0.4em;
  right: 4em;
  left: 0;
  border-bottom: solid 2px #60A543;
}

.lista_news .prodotto .text-inner .partner:before {
  right: 2em;
}

.lista_news .prodotto .date {
  position: absolute;
  bottom: 1.2em;
  font-family: exo_regular;
  font-size: 14px;
}

.errorSummary {
  color: red;
  margin: 10px 0;
}

.errorSummary li {
  list-style-type: none;
  margin: 5px 0;
}

.prontuari-page {
  margin-top: 110px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.prontuari-page .prontuario {
  width: 200px;
  height: 200px;
  margin-top: 15px;
}

.prontuari-page h3 {
  background-color: white;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 5px;
  font-family: roboto_light;
  font-size: 17px;
  font-weight: bold;
}

.prontuari-page a, .prontuari-page a:focus {
  color: #60BF60;
  text-decoration: none;
  outline: none;
}

.prontuari-page .prontuario .image {
  height: 155px;
  line-height: 155px;
  background-color: white;
  overflow: hidden;
  position: relative;
}

.prontuari-page .prontuario .image img {
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

#lang-box {
  background-color: white;
  border-radius: 10px;
  padding: 10px 10px;
  margin-left: 92px;
  margin-top: -20px;
  width: 8em;
  position: absolute;
}

#lang-box a, #lang-box span {
  vertical-align: top;
  line-height: 24px;
}

#lang-box strong {
  vertical-align: top;
}

#lang-box a {
  color: black;
}

@font-face {
  font-family: 'exo_light';
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/Exo-Light.ttf);
}
@font-face {
  font-family: 'exo_regular';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/Exo-Regular.ttf);
}
@font-face {
  font-family: 'roboto_light';
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/Roboto-Light.ttf);
}
@font-face {
  font-family: 'roboto_thin';
  font-style: normal;
  font-weight: 300;
  src: url(/fonts/Roboto-Thin.ttf);
}
html {
  overflow-x: hidden;
}

body {
  font-family: 'Helvetica Neue',Helvetica,Arial,Sans-Serif;
}

.container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.container:after {
  content: " ";
  display: block;
  clear: both;
}

/* header */
header {
  background-color: white;
  height: 125px;
  padding: 0 0 0 10px;
}

header:after {
  display: block;
  content: "";
  clear: both;
}

nav > ul > li > a {
  padding-top: 88px;
  padding-bottom: 17px;
}

#logo {
  padding-top: 5px;
}
@media (max-width: 350px) {
  #logo {
    width: 250px;
  }
}
@media (max-width: 330px) {
  #logo {
    width: 200px;
  }
}

/* content */
#content {
  margin-bottom: 90px;
}

.link-boxes {
  margin-top: 110px;
  margin-bottom: 10px;
  padding: 0 5px;
}

.news-box {
  margin: 0 5px;
}

/* footer */
footer {
  padding: 0 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  padding-top: 10px;
  background-color: white;
  opacity: 1;
  border-top: solid 4px #06A92B;
}

.footer-inner {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.footer-inner:after {
  content: " ";
  display: block;
  clear: both;
}

footer {
  font-size: 15px;
}
@media (max-width: 750px) {
  footer {
    font-size: 80%;
  }
}

footer .links {
  float: right;
}
@media (max-width: 750px) {
  footer .links {
    display: none;
  }
}

footer .links a {
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
  line-height: 37px;
  color: #707070;
  font-size: 30px;
  font-family: roboto_thin;
}

footer .links img {
  vertical-align: middle;
}

/* common tags */
h1 {
  text-align: right;
  border-bottom: solid 1px #60A543;
  padding: 0 10000px 10px 10000px;
  margin: 30px -10000px 0 -10000px;
  font-size: 22px;
  font-family: exo_light;
}

h2 {
  color: #60A543;
  font-size: 18px;
  font-family: exo_regular;
}

/* contact page */
.contact_page {
  margin-top: 110px;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}
.contact_page:after {
  content: " ";
  display: block;
  clear: both;
}

.contact_page .google-map {
  width: 36.97479%;
  float: left;
  margin-right: 0.84034%;
}
@media (max-width: 900px) {
  .contact_page .google-map {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.google-map iframe {
  border-top: solid 8px white;
  border-bottom: solid 8px white;
  border-left: solid 5px white;
  border-right: solid 5px white;
}

.contact_page .contact-form {
  width: 62.18487%;
  float: right;
  margin-right: 0;
  background-color: white;
  padding: 10px;
}
@media (max-width: 900px) {
  .contact_page .contact-form {
    margin-top: 10px;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
}

.contact_page .main-form {
  width: 45.94595%;
  float: left;
  margin-right: 1.35135%;
}

.contact_page .consent {
  width: 45.94595%;
  float: right;
  margin-right: 0;
}

.contact_page .contact-text {
  padding-bottom: 20px;
  border-bottom: solid 3px #06A92B;
}

.contact_page form {
  padding-top: 20px;
}

.contact_page .form-group {
  overflow: hidden;
  *zoom: 1;
}

.contact_page .main-form label {
  width: 26.47059%;
  float: left;
  margin-right: 2.94118%;
  color: #707070;
}

.contact_page .main-form input, .contact_page .main-form textarea {
  width: 70.58824%;
  float: right;
  margin-right: 0;
  background-color: #bfbfbf;
  border-radius: 10px;
}

.contact_page .privacy-warning {
  text-align: justify;
  font-size: 80%;
}

.contact_page #consenso_cb {
  float: none;
  width: auto;
  display: inline;
  vertical-align: middle;
  outline: 0;
}

.contact_page #consenso_cb + span {
  vertical-align: middle;
}

.contact_page .submit-wrapper {
  text-align: center;
}

.contact_page input[type=button] {
  display: inline-block;
  width: 100px;
  padding: 10px 30px;
  border-radius: 25px;
  background-color: #11A629;
  font-style: italic;
}

/* remove hidden fields from frontend  */
.lista_Servizi .date {
  display: none !important;
}

/*# sourceMappingURL=local.css.map */
