.btn-circle.btn-xl {
    display: block !important;
    float: right;
    width: 70px !important;
    height: 70px !important;
    padding: 20px 20px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
    margin: 10px;
    margin-right: 10%;
   /*align: left;*/    
}

.btn-circle {
    width: 30px !important;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}
.busqueda-puntos{
    display: flex;
    margin-right: 10%;
    margin-left: 25%;
    float: right;
    width: 70%;
    align-items: normal;
}
.tipo-punto-busqueda{
    margin-right: 5%;
    margin-left: 2.5%;
}
/* Estilos generales */
.distrigal-excel-catalogos {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  .grid-container {
    display: grid;
    grid-gap: 20px;
    max-width: 100%;
  }
  
  .grid-column {
    display: grid;
    grid-gap: 20px;
  }
  
  .grid-item {
    position: relative;
  }
  
  /* Estilos de la imagen */
  .grid-item img {
    width: 100%;
    height: auto;
  }
  
  /* Estilos del título superpuesto */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .grid-item:hover .overlay {
    opacity: 1;
  }
  
  .title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    /*text-align: center;*/
    padding: 10px;
    margin-bottom: 5px;
    line-height: 1;
  }
  