#place_card{
  margin-bottom: 1%;
  margin-left: 1%;
  padding: 0;
  width: 18rem;
}

.card-img-top{
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 1px;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/*
#map{
  width: 100%;
  height: 400px;
}
*/

.app {
  display: flex;
  height: 100%;
}

.link_info{
  text-decoration: none;
}

.map-container {
  flex: 1;
  height: 100%;
  position: relative;
}

.sidebar {
  width: 20%; /* Ajusta el ancho del menú lateral según tus necesidades */
  background: white; /* Estilo de fondo para el menú lateral */
  color: black; /* Color de texto para el menú lateral */
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.collapse{
  background: white;
}

#menu-toggle {
  display: none;
}

/* Estilo del icono del menú hamburguesa */
.menu-icon {
  font-size: 30px;
  cursor: pointer;
}

/* Estilo del menú al mostrarlo */
#menu-toggle:checked + .menu {
  width: 250px;
}

.card_icons{
  padding-top: 5%;
}

.img-fluid{
  max-width: 100px;
  padding-left: 3%;
}

.card_image{
  object-fit: cover!important;
}

.collapsing {
  -webkit-transition: none;
  transition: none;
  display: none;
}

.close_button {
  position: absolute;
  top: -8px; /* Ajusta la posición vertical del botón de cierre según tus necesidades */
  right: 10px; /* Ajusta la posición horizontal del botón de cierre según tus necesidades */
  background: none;
  border: none;
  font-size: 40px;
  color: #fff; /* Color del icono del botón de cierre */
  cursor: pointer;
  -webkit-text-stroke: 1px rgb(95, 88, 88); /* width and color */
}

.card_location{
  /* position: relative; */
  border-top: 1px solid #dee0e2;
  border-bottom: 1px solid #dee0e2;
  margin-right: 0!important;
  padding: 5%;
}

.card_location_selected{
  background-color: #eeeeee;
}

.card_content{
  padding: 5%;
}

.card-title{
  /*padding: 5%; 
  /* position: absolute;
  /* bottom: 10%; /* posiciona el título en la mitad superior */
  /* left: 10%; /* posiciona el título en la mitad izquierda */
 /* 
  /* padding: 5px; /* ajusta el relleno según tus necesidades */
  /* margin: 0; /* elimina los márgenes predeterminados */
  /* text-align: center; /* centra el texto horizontalmente */
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.card-header{
  padding: 5px;
  background-image: url("https://lh3.googleusercontent.com/p/AF1QipMoH-uuAo9zJp66LJuAmBBr-qOR2nz-vax6oyiv=s680-w680-h510-rw"); 
  /*background: url('https://lh3.googleusercontent.com/p/AF1QipMoH-uuAo9zJp66LJuAmBBr-qOR2nz-vax6oyiv=s680-w680-h510-rw') no-repeat center center;*/
}

.card-header:hover{
  filter: none;
}

.card-header::after {
  background-color: rgba(87, 87, 87, 0.5)!important; /* ajusta la opacidad del fondo */
}


.star_checked{
  color: orange!important;
}

.score {
  display: block;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.score-wrap {
  display: inline-block;
  position: relative;
  height: 19px;
  /*margin: 10px;*/
  /*margin-bottom: 5px;*/
  /*margin-left: 2px;*/
  /*margin-right: 2px;*/

  margin: 0 3px 5px 3px;
  
}

.score .stars-active {
  color: #EEBD01;
  position: relative;
  z-index: 10;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.score .stars-inactive {
  color: grey;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: initial;
  /* overflow: hidden; */
}

/* Tablet */
@media (max-width: 1024px) {
  /*
  .app {
     flex-direction: column-reverse; 
  }
  */

  .map-container {
    height: 100%;
  }


  .sidebar {
    width: 40%;
    /* height: 20%; */
  }

  .menu{
    display:block;
    width:100%;
    height:30%;
    margin-top:20;
  }

  #menu-toggle {
    display: block;
  }

}

/* Smartphone */
@media (max-width: 430px) {

  .app {
    flex-direction: column-reverse; 
  }

  .sidebar {
    width: 100%;
    /* height: 20%; */
    /* bottom: 0; */
    height: 60%;
  }

  .card_image{
    object-fit: cover;
    width: 100%;
    height: 100px;
  }

}