/**
 * @license
 * Copyright 2019 Google LLC. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

/*
 * Facultatif : permet à la page d'exemple de remplir la fenêtre.
 */
/*html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/*
 * Définissez toujours explicitement la hauteur de la carte afin de déterminer la taille de l'élément div
 * qui contient la carte.
 */
#map {
  height: 100%;
  width: 100%;
}

/*
 * Styles de propriété non sélectionné.
 */
.property {
  border: 1px solid grey;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #263238;
  display: flex;
  font-size: 14px;
  gap: 15px;
  height: 100px;
  justify-content: center;
  padding: 4px;
  position: relative;
  transition: all 0.3s ease-out;
  width: 100px;
  transform: translateY(-9px);
}

.property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid grey;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}

/*
 * Contenu de Property.
 */
.property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
}

.property .icon svg {
  height: 20px;
  width: auto;
}

.property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}

.property .description {
  margin-top: 5px;
  font-family: 'Boogaloo', cursive;
  color: #9bba1f;
  font-size: 1.2rem;
  font-weight: bold;
}
    
.property .address {
  color: #9E9E9E;
  font-size: 12px;
  text-align: center;
  /*margin-bottom: 10px;*/
  margin-top: 5px;
}

.property .town {
  color: #9E9E9E;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  /*margin-top: 5px;*/
}

/*
 * Styles de propriété sélectionné.
 */
.property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 110px;
  padding: 8px 15px;
  width: auto;
}

.property.highlight::after {
  border-top: 9px solid grey;
}

.property.highlight .details {
  display: flex;
}

.property.highlight .icon svg {
  width: 50px;
  height: 50px;
}

