/* .z-depth-0 { */
/*   box-shadow: none !important; */
/* } */

.card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

/* .z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover { */
/*   box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2); */
/* } */

/* .z-depth-2 { */
/*   box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3); */
/* } */

/* .z-depth-3 { */
/*   box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.3); */
/* } */

/* .z-depth-4, .modal { */
/*   box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.3); */
/* } */

/* .z-depth-5 { */
/*   box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3); */
/* } */

.card-panel {
  transition: box-shadow .25s;
  padding: 20px;
  margin: 0.5rem 0 1rem 0;
  border-radius: 2px;
  background-color: #fff;
}

.card {
  position: relative;
  margin: 0.5rem 0 1rem 0;
  background-color: #fff;
  transition: box-shadow .25s;
  border-radius: 2px;
}

.card .card-title {
  font-size: 24px;
  font-weight: 300;
}

.card .card-title.activator {
  cursor: pointer;
}

.card-footer {padding-bottom:1px;}

.card.small, .card.medium, .card.large {
  position: relative;
}

.card.small .card-image, .card.medium .card-image, .card.large .card-image {
  max-height: 60%;
  overflow: hidden;
}

.card.small .card-image + .card-content, .card.medium .card-image + .card-content, .card.large .card-image + .card-content {
  max-height: 40%;
}

.card.small .card-content, .card.medium .card-content, .card.large .card-content {
  max-height: 100%;
  overflow: hidden;
}

.card.small .card-action, .card.medium .card-action, .card.large .card-action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.card.small {
  height: 300px;
}

.card.medium {
  height: 400px;
}

.card.large {
  height: 500px;
}

.card.horizontal {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.card.horizontal.small .card-image, .card.horizontal.medium .card-image, .card.horizontal.large .card-image {
  height: 100%;
  max-height: none;
  overflow: visible;
}

.card.horizontal.small .card-image img, .card.horizontal.medium .card-image img, .card.horizontal.large .card-image img {
  height: 100%;
}

.card.horizontal .card-image {
  max-width: 50%;
}

.card.horizontal .card-image img {
  border-radius: 2px 0 0 2px;
  max-width: 100%;
  width: auto;
}

.card.horizontal .card-stacked {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.card.horizontal .card-stacked .card-content {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card.sticky-action .card-action {
  z-index: 2;
}

.card.sticky-action .card-reveal {
  z-index: 1;
  padding-bottom: 64px;
}

.card .card-image {
  position: relative;
}

.card .card-image img {
  display: block;
  border-radius: 2px 2px 0 0;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.card .card-image .card-title {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
}

.card .card-content {
  padding: 20px 20px 0;
  border-radius: 0 0 2px 2px;
}

.card .card-content p {
  margin: 0;
  color: inherit;
}

.card .card-content .card-title {
  line-height: 48px;
}

.card .card-action {
  position: relative;
  background-color: inherit;
  border-top: 1px solid rgba(160, 160, 160, 0.2);
  padding: 20px;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating) {
  color: #ffab40;
  margin-right: 20px;
  transition: color .3s ease;
  text-transform: uppercase;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
  color: #ffd8a6;
}

.card .card-reveal {
  padding: 20px;
  position: absolute;
  background-color: #fff;
  width: 100%;
  overflow-y: auto;
  left: 0;
  top: 100%;
  height: 100%;
  z-index: 3;
  display: none;
}

.card .card-reveal .card-title {
  cursor: pointer;
  display: block;
}

.container .row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.row {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.row .col {
  float: left;
  box-sizing: border-box;
  padding: 0 0.75rem;
  min-height: 1px;
}

.row .col[class*="push-"], .row .col[class*="pull-"] {
  position: relative;
}

.row .col.s1 {
  width: 8.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s2 {
  width: 16.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s3 {
  width: 25%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s4 {
  width: 33.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s5 {
  width: 41.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s6 {
  width: 50%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s7 {
  width: 58.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s8 {
  width: 66.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s9 {
  width: 75%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s10 {
  width: 83.3333333333%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s11 {
  width: 91.6666666667%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.s12 {
  width: 100%;
  margin-left: auto;
  left: auto;
  right: auto;
}

.row .col.offset-s1 {
  margin-left: 8.3333333333%;
}

.row .col.pull-s1 {
  right: 8.3333333333%;
}

.row .col.push-s1 {
  left: 8.3333333333%;
}

.row .col.offset-s2 {
  margin-left: 16.6666666667%;
}

.row .col.pull-s2 {
  right: 16.6666666667%;
}

.row .col.push-s2 {
  left: 16.6666666667%;
}

.row .col.offset-s3 {
  margin-left: 25%;
}

.row .col.pull-s3 {
  right: 25%;
}

.row .col.push-s3 {
  left: 25%;
}

.row .col.offset-s4 {
  margin-left: 33.3333333333%;
}

.row .col.pull-s4 {
  right: 33.3333333333%;
}

.row .col.push-s4 {
  left: 33.3333333333%;
}

.row .col.offset-s5 {
  margin-left: 41.6666666667%;
}

.row .col.pull-s5 {
  right: 41.6666666667%;
}

.row .col.push-s5 {
  left: 41.6666666667%;
}

.row .col.offset-s6 {
  margin-left: 50%;
}

.row .col.pull-s6 {
  right: 50%;
}

.row .col.push-s6 {
  left: 50%;
}

.row .col.offset-s7 {
  margin-left: 58.3333333333%;
}

.row .col.pull-s7 {
  right: 58.3333333333%;
}

.row .col.push-s7 {
  left: 58.3333333333%;
}

.row .col.offset-s8 {
  margin-left: 66.6666666667%;
}

.row .col.pull-s8 {
  right: 66.6666666667%;
}

.row .col.push-s8 {
  left: 66.6666666667%;
}

.row .col.offset-s9 {
  margin-left: 75%;
}

.row .col.pull-s9 {
  right: 75%;
}

.row .col.push-s9 {
  left: 75%;
}

.row .col.offset-s10 {
  margin-left: 83.3333333333%;
}

.row .col.pull-s10 {
  right: 83.3333333333%;
}

.row .col.push-s10 {
  left: 83.3333333333%;
}

.row .col.offset-s11 {
  margin-left: 91.6666666667%;
}

.row .col.pull-s11 {
  right: 91.6666666667%;
}

.row .col.push-s11 {
  left: 91.6666666667%;
}

.row .col.offset-s12 {
  margin-left: 100%;
}

.row .col.pull-s12 {
  right: 100%;
}

.row .col.push-s12 {
  left: 100%;
}

@media only screen and (min-width: 601px) {
  .row .col.m1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.m12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-m1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-m1 {
    right: 8.3333333333%;
  }
  .row .col.push-m1 {
    left: 8.3333333333%;
  }
  .row .col.offset-m2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-m2 {
    right: 16.6666666667%;
  }
  .row .col.push-m2 {
    left: 16.6666666667%;
  }
  .row .col.offset-m3 {
    margin-left: 25%;
  }
  .row .col.pull-m3 {
    right: 25%;
  }
  .row .col.push-m3 {
    left: 25%;
  }
  .row .col.offset-m4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-m4 {
    right: 33.3333333333%;
  }
  .row .col.push-m4 {
    left: 33.3333333333%;
  }
  .row .col.offset-m5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-m5 {
    right: 41.6666666667%;
  }
  .row .col.push-m5 {
    left: 41.6666666667%;
  }
  .row .col.offset-m6 {
    margin-left: 50%;
  }
  .row .col.pull-m6 {
    right: 50%;
  }
  .row .col.push-m6 {
    left: 50%;
  }
  .row .col.offset-m7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-m7 {
    right: 58.3333333333%;
  }
  .row .col.push-m7 {
    left: 58.3333333333%;
  }
  .row .col.offset-m8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-m8 {
    right: 66.6666666667%;
  }
  .row .col.push-m8 {
    left: 66.6666666667%;
  }
  .row .col.offset-m9 {
    margin-left: 75%;
  }
  .row .col.pull-m9 {
    right: 75%;
  }
  .row .col.push-m9 {
    left: 75%;
  }
  .row .col.offset-m10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-m10 {
    right: 83.3333333333%;
  }
  .row .col.push-m10 {
    left: 83.3333333333%;
  }
  .row .col.offset-m11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-m11 {
    right: 91.6666666667%;
  }
  .row .col.push-m11 {
    left: 91.6666666667%;
  }
  .row .col.offset-m12 {
    margin-left: 100%;
  }
  .row .col.pull-m12 {
    right: 100%;
  }
  .row .col.push-m12 {
    left: 100%;
  }
}

@media only screen and (min-width: 993px) {
  .row .col.l1 {
    width: 8.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l2 {
    width: 16.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l3 {
    width: 25%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l4 {
    width: 33.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l5 {
    width: 41.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l6 {
    width: 50%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l7 {
    width: 58.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l8 {
    width: 66.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l9 {
    width: 75%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l10 {
    width: 83.3333333333%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l11 {
    width: 91.6666666667%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.l12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
  }
  .row .col.offset-l1 {
    margin-left: 8.3333333333%;
  }
  .row .col.pull-l1 {
    right: 8.3333333333%;
  }
  .row .col.push-l1 {
    left: 8.3333333333%;
  }
  .row .col.offset-l2 {
    margin-left: 16.6666666667%;
  }
  .row .col.pull-l2 {
    right: 16.6666666667%;
  }
  .row .col.push-l2 {
    left: 16.6666666667%;
  }
  .row .col.offset-l3 {
    margin-left: 25%;
  }
  .row .col.pull-l3 {
    right: 25%;
  }
  .row .col.push-l3 {
    left: 25%;
  }
  .row .col.offset-l4 {
    margin-left: 33.3333333333%;
  }
  .row .col.pull-l4 {
    right: 33.3333333333%;
  }
  .row .col.push-l4 {
    left: 33.3333333333%;
  }
  .row .col.offset-l5 {
    margin-left: 41.6666666667%;
  }
  .row .col.pull-l5 {
    right: 41.6666666667%;
  }
  .row .col.push-l5 {
    left: 41.6666666667%;
  }
  .row .col.offset-l6 {
    margin-left: 50%;
  }
  .row .col.pull-l6 {
    right: 50%;
  }
  .row .col.push-l6 {
    left: 50%;
  }
  .row .col.offset-l7 {
    margin-left: 58.3333333333%;
  }
  .row .col.pull-l7 {
    right: 58.3333333333%;
  }
  .row .col.push-l7 {
    left: 58.3333333333%;
  }
  .row .col.offset-l8 {
    margin-left: 66.6666666667%;
  }
  .row .col.pull-l8 {
    right: 66.6666666667%;
  }
  .row .col.push-l8 {
    left: 66.6666666667%;
  }
  .row .col.offset-l9 {
    margin-left: 75%;
  }
  .row .col.pull-l9 {
    right: 75%;
  }
  .row .col.push-l9 {
    left: 75%;
  }
  .row .col.offset-l10 {
    margin-left: 83.3333333333%;
  }
  .row .col.pull-l10 {
    right: 83.3333333333%;
  }
  .row .col.push-l10 {
    left: 83.3333333333%;
  }
  .row .col.offset-l11 {
    margin-left: 91.6666666667%;
  }
  .row .col.pull-l11 {
    right: 91.6666666667%;
  }
  .row .col.push-l11 {
    left: 91.6666666667%;
  }
  .row .col.offset-l12 {
    margin-left: 100%;
  }
  .row .col.pull-l12 {
    right: 100%;
  }
  .row .col.push-l12 {
    left: 100%;
  }
}

.enc {
	padding-top: 88px;
	padding-bottom: 10px;
}
.text-right {text-align:right;}

/*==========================
 * Form
 *==========================*/
form.search label.main, .view-detail label.main {
	width: 100%;
    text-align: center;
    display: block;
    font-size: 1.2rem;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    background-color: #eee;
    color: #666;
}
form.search .input-field.col label {font-size: 13px;}

/*==========================
 * Ricerca
 *==========================*/
.results h2 {
 	font-size: 1.6rem;
    text-align: center;
}
.results ul {
	margin-left: 0;
	list-style: none;
}
.entry {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #ddd;
    position: relative;
    -webkit-transform-origin: top;
    transform-origin: top;
    cursor: pointer;
}
.wrapper {
    margin-top: 15px;
}
.wrapper, .wrapper-body {
    zoom: 1;
    overflow: hidden;
}
.wrapper:first-child {
    margin-top: 0;
}
.entry .wrapper {
    position: relative;
    margin-top: 0;
}
.entry-left, .entry>.pull-left {
    padding-right: 10px;
}
.entry-body, .entry-left, .entry-right {
    display: table-cell;
    vertical-align: top;
}
.entry .entry-left {
    padding-right: 20px;
    position: relative;
    float: left;
}
.entry-item_body {
    position: relative;
    display: block;
    overflow: hidden;
}
.image-cnt {
    width: 320px;
    min-height: 100%;
    text-align: center;
    color: #d0d0d0;
}
.image-cnt, .entry-item_body {
    height: 180px;
}
.entry-item_body .desc {
    display: block;
    display: -webkit-box;
    height: 40px;
    margin: 0 auto;
    width: 100%;
    font-size: 14px;
    line-height: 1.428571429;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.entry-info {
    padding-left: 0;
    list-style: none;
    width: 110%;
}
.entry-info li {
	display: inline-block;
    padding-right: 9px;
    padding-left: 9px;
    line-height: 1.1em;
    border-left: 1px solid transparent;
    text-align:center;
}
.entry-info li label {
	display:block;
	color: #aaa;
}
.entry-info li strong {
	    line-height: 1.2rem;
}
.entry-info li.price {
	font-size: 1.95rem;
	padding-left: 0;
	text-align:left;
	color:#b02b2c;
    font-weight: bold;
}
.entry-info li+li {
    border-color: #ddd;
}
.entry-desc {overflow: hidden; max-height: 100px;}
.entry-desc a,.entry-desc a:hover,.entry-desc a:visited {color:#444; text-decoration:none;} 
.entry-item_action {
	padding-left: 340px;
	display: table;
    width: 100%;
} 
.entry h3 {
	color: #1f4082;
/*     font-size: 1.6rem; */
/*     font-weight: bold; */
/*     margin-top: 0; */
/*     margin-bottom: 0.3rem; */
}
.entry .noimg {
	min-height: 100%;
	width: 100%;
/* 	background-color: #eee; */
}
.entry .noimg i {font-size: 4rem;}
.entry .noimg span {
	display:block;
	text-transform: uppercase;
    font-weight: bold;
    font-size: 1.0rem;
}
.image-cnt .valign-wrapper {
	min-height: 100%;
}
/*==========================
 * Dettaglio
 *==========================*/
 .immobile h1 {
     font-size: 1.8rem;
}
.immobile .av-special-heading {
	    margin-top: 0;
}
/* .immobile dt { */
/* 	font-weight: bolder; */
/*     float: left; */
/*     width: 120px; */
/*     display: inline-block; */
/* } */
/* .immobile dd:last-child {clear:both;} */
.immobile h3 {
/* 	font-size: 1.5rem; */
/*     background-color: #2bbbad; */
/*     color: #fff; */
/*     padding: 8px; */
}
.immobile .price {
/* 	font-size: 2.0rem; */
	color:#b02b2c; 
/* 	line-height: 2.1rem; */
}
.immobile .chars > .col:nth-child(odd) {font-weight:bold;}


@media only screen and (max-width: 600px) {
	.immobile h1 {
     	font-size: 20px;
	}
	.immobile .chars > .col:nth-child(odd) {
		background-color:#bbb;
	}
	.entry .entry-left {
		float:none; 
		padding-right: 0;
		width: 100%;
    	display: inline-block;
	}
	.image-cnt {width:100%;}
	.image-cnt, .entry-item_body {height: auto;}
	.entry-item_action {padding-left:0;} 
	.entry-desc {max-height:100%;}
}

#top  form.search .input-text, #top  form.search input[type="text"], #top  form.search input[type="input"], #top  form.search input[type="password"], #top  form.search input[type="email"], #top  form.search input[type="number"], #top  form.search input[type="url"], #top  form.search input[type="tel"], #top  form.search input[type="search"], #top  form.search textarea, #top  form.search select {
	margin:0;
}

form.search input[type="submit"], #submit, .button {
	padding: 9px 22px;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    border-radius: 0px;
}

form.search input {
	-webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

form.msg button, form.search button, .search-new button {
	margin: 0;
    padding: 16px 20px;
    border-radius: 2px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-weight: normal;
    font-size: 0.92em;
    min-width: 142px;
    outline: none;
    background-color: #a81010;
    color: #ffffff;
    border-color: #860000;
}

form.msg .required {
	color: #a81010;
}
/* .search-new {display:none;} */

button.avia-button {
	font-size:13px!important;
    font-weight: 600!important;
}
.entry-item_action .avia-button {
	background-color: #a81010;
    color: #ffffff;
    border-color: #860000;
	font-size:13px!important;
    font-weight: 600!important;    
}

.ad-desc + [data-readmore-toggle], .ad-desc[data-readmore], .entry-desc + [data-readmore-toggle], .entry-desc[data-readmore] {
    float: right;
    width: auto!important;
    margin-top: -26px;
    background-color: #fff;
    z-index: 99;
    position: relative;
    padding-left: 10px;
/*     opacity: 0.8; */
}
.ad-desc + [data-readmore-toggle] {
	margin-top: -16px;
}
.entry-desc[data-readmore] {
    margin-top: 0.85em!important;
}

.ad-desc + [data-readmore-toggle] a, .ad-desc[data-readmore] a, .entry-desc + [data-readmore-toggle] a, .entry-desc + [data-readmore-toggle] a {
	color: #b02b2c;
}
	
@media only screen and (max-width: 600px) {
	.enc {padding-top:0;}
	.input-field {margin-bottom:10px;}
	.entry h3 {font-size: 1.1rem;}
	.entry-item_action .avia-button {width:100%;}
	form.msg button {width: 100%;}
	.card .card-content {
		padding: 10px 0;
	}
}

.ce_smiles {
    clear: both;
    display: block;
    width: 100%;
}
.ce_smiles strong {
	display: inline-block;
    width: 100%;
}
.ce_smiles .ce_icon { 
	float: left;
	font-size: 1.8rem;
    margin-right: 0.5rem;
    cursor: pointer;
    color: #ccc;
}
.ce_smiles .ce_icon.active {
	color: #666;
}
.ce_smiles .ce_icon:last-child {clear:right;}
.av-special-heading {    color: #919191; padding-bottom:10px;}

.orange {
  background-color: #ff9800 !important;
}
.orange.lighten-4 {
  background-color: #ffe0b2 !important;
}

/*=============
 * Alert
 *===============*/
 .alert {    
 	padding: 10px;
    font-size: 1rem
    display:inline-block;
}
.alert p {text-align: center;}
.alert i {
	float: left;
    font-size: 3.5rem;
    position: absolute;
    top: 3px;
}

input:not([type]).ng-dirty.ng-invalid, input:not([type]):focus.ng-dirty.ng-invalid,
input[type=text].ng-dirty.ng-invalid,
input[type=text]:focus.ng-dirty.ng-invalid,
input[type=password].ng-dirty.ng-invalid,
input[type=password]:focus.ng-dirty.ng-invalid,
input[type=email].ng-dirty.ng-invalid,
input[type=email]:focus.ng-dirty.ng-invalid,
input[type=url].ng-dirty.ng-invalid,
input[type=url]:focus.ng-dirty.ng-invalid,
input[type=time].ng-dirty.ng-invalid,
input[type=time]:focus.ng-dirty.ng-invalid,
input[type=date].ng-dirty.ng-invalid,
input[type=date]:focus.ng-dirty.ng-invalid,
input[type=datetime].ng-dirty.ng-invalid,
input[type=datetime]:focus.ng-dirty.ng-invalid,
input[type=datetime-local].ng-dirty.ng-invalid,
input[type=datetime-local]:focus.ng-dirty.ng-invalid,
input[type=tel].ng-dirty.ng-invalid,
input[type=tel]:focus.ng-dirty.ng-invalid,
input[type=number].ng-dirty.ng-invalid,
input[type=number]:focus.ng-dirty.ng-invalid,
input[type=search].ng-dirty.ng-invalid,
input[type=search]:focus.ng-dirty.ng-invalid,
select.ng-dirty.ng-invalid,
select:focus.ng-dirty.ng-invalid,
.select-wrapper.ng-invalid.ng-dirty.ng-invalid input.select-dropdown,
textarea.materialize-textarea.ng-dirty.ng-invalid,
textarea.materialize-textarea:focus.ng-invalid,
div[input-class=autocomplete].ng-dirty.ng-invalid input[type=text] {
  border: 1px solid #F44336 !important;
/*   box-shadow: 0 1px 0 0 #F44336; */
}
input[type=checkbox].ng-dirty.ng-invalid+label,
input[type=checkbox]:focus.ng-dirty.ng-invalid+label {
	color:#F44336;
}
.nop {padding:0!important;}
.hide {
  display: none !important;
}

@media only screen and (max-width: 600px) {
  .show-on-small {
    display: block !important;
  }
}
@media only screen and (min-width: 601px) {
  .hide-on-med-and-up {
    display: none !important;
  }
}
@media only screen and (max-width: 600px) {
	.immobile h3 {text-align:center!important;width: 100%;}
}
/* @media only screen and (max-width: 600px) { */
	.chiama, .prenota, .messaggio {
		background-color:#b02b2c;
		color: #fff;
		font-size:13px!important;
    	font-weight: 600!important;
    	width: 100%;
    	text-align:center;
	}
/* 	p.chiama { */
/* 		margin: 10px!important; */
/* 	    text-align: center; */
/*     } */
/* } */

/** Stato immobile **/
.stato {
	font-size: 40px;
    display: inline-block;
    line-height: 30px;
    padding: 4px 8px;
    margin-left: 10px;
    border-radius: 3px;
    float: right;
}
/* In trattativa */
.stato.stato1 {
	background-color:#f44336;
	color: #fff;
}
/* Ribasso */
.stato.stato2 {
	background-color:#4caf50;
	color: #fff;
}
/* Stand by*/
.stato.stato3 {
	background-color:#ffeb3b;
	color: #000;
}
/* Venduto */
.stato.stato4 {
	background-color:#27a0c9;
	color: #fff;
}
.input-group .input-field  input[type="text"] {
	width:100%;
}
@media only screen and (max-width: 320px) {
	.input-group .input-field  input[type="text"] {
        width: 132px;
	}
}
.input-group .input-field {
    float: left;
    padding-right: 7px;
	width:50%;
}
.input-group .input-field:last-child {
    clear: right;
    padding-right: 0;
}