<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
.cerca_negozi{display: flex; justify-content: center; align-items: center; flex-wrap: wrap; margin: 20px 0}
.neg_citta{flex-basis: 20%; box-sizing: border-box; padding: 10px}
.neg_distanza{flex-basis: 20%;box-sizing: border-box; padding: 10px}
.neg_best{flex-basis: 12%;box-sizing: border-box; padding: 10px}
.neg_button{flex-basis: 20%}
input.ricerca_negozi {BORDER: #d5d5d5 0px solid;FONT-SIZE: 16px;color:#fff; margin-top: 15px; padding: 10px 20px; BACKGROUND-COLOR: #e36665;border-radius: 10px;box-sizing: border-box;  min-width: 100px; max-width: 460px}
.box_mappa_risultato{background-color: #f2f3f3; text-align: center; padding: 10px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center}

.container_risultati_ricerca{display: flex; justify-content:flex-start; gap: 0px 20px; margin-top: 20px; flex-wrap: wrap}
.box_negozio_1{box-sizing: border-box; padding: 10px 10px 40px 10px; background-color: #dc5655; transition: all 0.5s; flex: 0 1 calc(25% - 1em); color: #fff;border-radius: 10px; line-height: 1.1em; margin-bottom: 20px; position: relative}
.box_negozio_1:hover{background-color: #c42e2d;}
.box_negozio_1 a{color: #fff; text-decoration: underline}

.box_negozio_2{box-sizing: border-box; padding: 10px 10px 40px 10px; background-color: #eb9d9d; transition: all 0.5s; flex: 0 1 calc(25% - 1em); color: #fff;border-radius: 10px; line-height: 1.1em; margin-bottom: 20px; position: relative}
.box_negozio_2:hover{background-color: #d67f7f;}
.box_negozio_2 a{color: #fff; text-decoration: underline}

.box_negozio_3{box-sizing: border-box; padding: 10px 10px 40px 10px; background-color: #907675; transition: all 0.5s; flex: 0 1 calc(25% - 1em); color: #fff;border-radius: 10px; line-height: 1.1em; margin-bottom: 20px; position: relative}
.box_negozio_3:hover{background-color: #79605f;}
.box_negozio_3 a{color: #fff; text-decoration: underline}

.box_negozio_distanza{text-align: right; padding: 5px 0 5px 0}
.box_negozio_azioni{text-align: right;padding: 5px 0 5px 0; position: absolute; bottom: 10px; right: 10px}
.nome_negozio{border-bottom: solid 1px rgba(255, 255, 255, 0.5);border-top: solid 1px rgba(255, 255, 255, 0.5); margin: 10px 0; padding: 5px 0}

.bollo_best_shop{position: absolute; top: -15px; left: 5px}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 40px; margin-top: 5px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 4px;
  bottom: 5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #e36665;
}

input:focus + .slider {
  box-shadow: 0 0 1px #e36665;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


@media only screen and (min-width: 768px) and (max-width: 995px) {
.neg_citta{flex-basis: 25%; padding: 10px}
.neg_distanza{flex-basis: 25%;padding: 10px}
.neg_best{flex-basis: 15%; padding: 10px}
.neg_button{flex-basis: 25%}
input.ricerca_negozi { margin-top: 10px; padding: 10px 20px;width: 80%}
}	
	
/*iPHONE*/
@media only screen and (max-width: 767px) {
.cerca_negozi{display: flex; justify-content: center; align-items: center; flex-wrap: wrap; margin: 10px 0 20px 0}
.neg_citta{flex-basis: 33.333%; padding: 10px}
.neg_distanza{flex-basis: 33.333%;padding: 10px}
.neg_best{flex-basis: 33.333%; padding: 10px}
.neg_button{flex-basis: 100%}
input.ricerca_negozi { margin-top: 10px; padding: 10px 20px;width: 90%}
.box_negozio_1{flex: 0 1 calc(50% - 1em);}	
	.help_risultati_negozi{margin-top: 5px}	
}

/*PICCOLI*/
@media only screen and (max-width: 479px) {

}
</pre></body></html>