/* CSS Reset for buttons */
/* New style for buttons */
.btn {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 1em;
  background-color: rgba(150, 203, 159, 0);
  border-radius: 0.3rem;
}

.btn:hover {
  background-color: #96cb9f;
}

.btn:focus {
  outline: none;
  background-color: #96cb9f;
  box-shadow: 0 0 0 2px rgba(150, 203, 159, 0), 0 0 0 1px rgba(150, 203, 159, 0);
}

.show-more-btn {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 1em;
  background-color: rgba(150, 203, 159, 0);
  margin: 0;
  position: relative;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
}

.show-more-btn span {
  position: absolute;
  transition: 300ms;
  background: #333333;
  border-radius: 1rem;
}

/* Create the "+" shape by positioning the spans absolutely */
.show-more-btn span:first-child {
  top: 0;
  left: 31.25%;
  width: 4px;
  height: 62.5%;
  margin-left: -2px;
  border-radius: 1rem;
}

.show-more-btn span:last-child {
  top: 31.25%;
  left: 0;
  width: 62.5%;
  height: 4px;
  margin-top: -2px;
  border-radius: 1rem;
}

/* Morph the shape when the button is clicked on */
.show-less-btn span:first-child {
  transform: rotate(90deg);
}

.show-less-btn span:last-child {
  transform: rotate(180deg);
}

.location-btn-bg {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 1em;
  background-color: #fff;
  border-radius: inherit;
  text-align: center;
}

.location-btn-bg:hover {
  background-color: #cdcdcd;
}

.location-btn-bg:focus {
  outline: none;
  background-color: #cdcdcd;
  box-shadow: 0 0 0 2px #fff, 0 0 0 1px #fff;
}

.clock-btn {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 0.5em 1em;
  background-color: #fff;
  border-radius: 10rem;
  text-align: center;
}

.clock-btn:hover {
  background-color: #cdcdcd;
}

.clock-btn:focus {
  outline: none;
  background-color: #cdcdcd;
  box-shadow: 0 0 0 2px #fff, 0 0 0 1px #fff;
}

.reseted-input {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

.sustaintable-home-map, .sustaintable-vendors-list {
  font-family: "Montserrat", sans-serif;
}

.sustaintable-home-map .quartiers-selector {
  margin: 0.5rem 0.25rem;
}

.loading-spinner {
  height: 10rem;
  margin: 1rem;
}

.products .sustaintable.nothing-found {
  color: white;
  border: #ff0000 solid 1px;
  background: #ff5454;
  margin: 0;
  padding: 0.27rem 1rem;
  border-radius: 0.3rem;
}

fieldset.map-list-select-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0 auto 1rem auto;
  border: none;
  min-width: 0;
  width: 100%;
  text-align: center;
}

/* TOGGLE STYLING */
.map-list-toggle {
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  font-size: 0;
}
.map-list-toggle input[type=radio] {
  width: 0;
  height: 0;
  position: absolute;
  left: -9999px;
}
.map-list-toggle input[type=radio] + label {
  margin: 0;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: solid 1px #ddd;
  background-color: #fff;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  line-height: 125%;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.map-list-toggle input[type=radio] + label:first-of-type {
  border-radius: 1.5rem 0 0 1.5rem;
  border-right: none;
}
.map-list-toggle input[type=radio] + label:last-of-type {
  border-radius: 0 1.5rem 1.5rem 0;
  border-left: none;
}
.map-list-toggle input[type=radio] + label #map-window,
.map-list-toggle input[type=radio] + label #list-window {
  width: 5rem;
}
@media only screen and (min-width: 768px) {
  .map-list-toggle input[type=radio] + label {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
    line-height: 140%;
  }
  .map-list-toggle input[type=radio] + label:first-of-type {
    border-radius: 1.5rem 0 0 1.5rem;
    border-right: none;
  }
  .map-list-toggle input[type=radio] + label:last-of-type {
    border-radius: 0 1.5rem 1.5rem 0;
    border-left: none;
  }
}
.map-list-toggle input[type=radio]:hover + label {
  border-color: #213140;
}
.map-list-toggle input[type=radio]:checked + label {
  background-color: #98cca1;
  color: #fff;
  box-shadow: 0 0 10px rgba(152, 204, 162, 0.5);
  border-color: #98cca1;
  z-index: 1;
}
.map-list-toggle input[type=radio]:checked + label img {
  filter: invert(1);
}
.map-list-toggle .window-selector-label {
  display: table;
}
.map-list-toggle .window-selector-label * {
  display: table-cell;
  vertical-align: middle;
}
.map-list-toggle .window-selector-label img {
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
}
@media only screen and (min-width: 768px) {
  .map-list-toggle input + label {
    padding: 0.75rem 0.25rem;
    flex: 0 0 50%;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

select#map-quartiers-selector {
  border-radius: 3rem;
  padding: 0.35rem 0.25rem;
}

select#vendor-list-quartiers-selector {
  border: 0px;
  outline: 0px;
}

.sustaintable-vendors-list {
  font-family: "Montserrat", sans-serif;
}

ul.sus-vendors-list {
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
  height: 23rem;
  width: 100%;
  background-color: #f5f5f5;
  list-style: none;
  padding-left: 0;
  overflow-y: scroll;
}

.sus-vendors-list-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: #96cb9f;
  border-radius: 3px 3px 0px 0px;
}
.sus-vendors-list-filters > div {
  margin-bottom: 0.2rem;
}
.districts-search {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding: 0.15em 1em;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 10rem;
  height: fit-content;
  max-width: 90%;
}
.districts-search > :first-child {
  max-width: 75%;
}
@media only screen and (min-width: 480px) {
  .districts-search > :first-child {
    max-width: 85%;
  }
}
@media only screen and (min-width: 768px) {
  .districts-search > :first-child {
    max-width: none;
  }
}
@media only screen and (min-width: 600px) {
  .districts-search {
    max-width: none;
  }
}

.sus-vendors-list-filters .search-localize-separator {
  border: solid 1px #646464;
  margin: 0.4rem 0.5rem;
  height: 65%;
  background-color: #333;
}

.sus-vendors-list-localize {
  text-align: center;
}

.sustaintable-vendors-list .sus-vendor {
  padding: 0.5rem 1rem 0;
  background: rgba(150, 203, 159, 0.26);
  border: 1px solid #bebebe;
}

#no-sus-vendor {
  padding: 2rem 1rem;
  color: #6a6a6a;
  text-align: center;
  font-weight: 600;
}
#no-sus-vendor img {
  filter: invert(40%) sepia(10%) saturate(0%) hue-rotate(145deg) brightness(96%) contrast(76%);
}

.sus-vendor .sus-vendor-main {
  display: grid;
  grid-gap: 3px;
  grid-template-columns: repeat(16, 1fr);
}

.sus-vendor .sus-vendor-top {
  display: flex;
  justify-content: flex-start;
  grid-column: 1/14;
}

.map-marker-icon {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  padding-left: 1rem;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.map-marker-icon p {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

.sus-vendor .fa-map-marker {
  font-size: 3.5rem;
  vertical-align: middle;
  grid-row: 1/-1;
}
@media only screen and (min-width: 768px) {
  .sus-vendor .fa-map-marker {
    font-size: 3.5rem;
    margin-left: 0;
  }
}

.sus-vendor-distance {
  text-align: center;
}

.sustaintable-vendors-list .sus-vendor-status {
  grid-row: 4/-1;
}

.sus-vendor-top .sus-vendor-pre-description {
  overflow: hidden;
  padding: 1rem 1.15rem 0.75rem;
}

.will-be-open {
  animation: blinkingBackground 1s infinite;
}

@keyframes blinkingBackground {
  0% {
    background-color: rgba(150, 203, 159, 0.26);
  }
  50% {
    background-color: #f1fff5;
  }
}
.sustaintable-vendors-list .sus-vendor .sus-vendor-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.sustaintable-vendors-list .sus-vendor .sus-vendor-hours-of-day {
  font-size: 0.85rem;
  font-weight: 500;
  color: #545454;
}

.sus-vendor .sus-vendor-bottom {
  grid-column: 15/-1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sus-vendor .hidden-info,
.hidden-info {
  display: none;
}

.sus-vendor .sus-vendor-more-info {
  font-size: 0.75rem;
  display: flex;
  justify-content: space-evenly;
  justify-items: center;
}

.sus-vendor .sus-vendor-more-info p {
  font-size: 0.9em;
  margin: 0;
  padding: 0;
}

.sus-vendor hr {
  width: 100%;
}

.sus-vendor hr.hidden-info {
  -webkit-transition: width 200ms ease-in-out;
  /* For Safari 3.1 to 6.0 */
  transition: width 200ms ease-in-out;
  width: 0%;
}

.sus-vendor-more-info .sus-vendor-timetable p:first-child,
.sus-vendor-more-info .sus-vendor-address p:first-child {
  text-align: center;
  font-weight: 600;
}

.rotate.down {
  -webkit-animation: spin 200ms ease-in-out;
  -moz-animation: spin 200ms ease-in-out;
  animation: spin 200ms ease-in-out;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(180deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(180deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.sustaintable-vendors-list .sus-vendor-open .map-marker-icon,
.sustaintable-vendors-list .sus-vendor-open .sus-vendor-status {
  color: #fa7268;
}

.sustaintable-vendors-list .sus-vendor-closed .map-marker-icon,
.sustaintable-vendors-list .sus-vendor-closed .sus-vendor-status {
  color: #7a5a58;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
.snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  background-color: #f44336;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 1.125rem;
  /* Rounded borders */
  padding: 1rem;
  /* Padding */
  position: relative;
  /* Sit on top of the screen */
  z-index: 3;
  /* Add a z-index if needed */
  bottom: 3%;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
   However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
#no-sus-vendor-open {
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
  font-size: 0.8rem;
  border: 1px solid #bebebe;
}
#no-sus-vendor-open img {
  display: inline;
  filter: invert(1);
}
@media only screen and (min-width: 768px) {
  #no-sus-vendor-open {
    max-width: 50%;
  }
}

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