#block-eurl-fia-partnersmap {
  padding: 0 !important;
}
#map_wrapper {
  display: grid;
  gap: 10px;
  @media (min-width : 800px) {
    grid-template-columns: 1fr 2fr;  
  }
}

#map {
  order:2;
  width: 100%;
  height: 0px !important;
  max-width: 100%;
  z-index: 0;
  background: transparent;
  
  .leaflet-control-attribution {
    display: none;
  }
  @media (min-width : 800px) {
    display: visible;
    height: 713px !important;
    border: 1px solid #d3d3d3;
    border-radius: 15px;
  }
}
#tooltip_map {
  font-family: "Twemoji Country Flags", "Arial", sans-serif;
  order:1;
  padding: var(--sp2);
  background: white;
  border: 1px solid #d3d3d3;
  border-radius: 15px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  max-height: 713px;
  @media (max-width : 800px) { 
    #tooltip_title {
      font-size: var(--font-size-h4);
    }
    .form-item {
      margin: 0;
    }
  }
  #tooltip_title {
    text-align: center;
    margin: 0 0 5px 0;
  }
   .form-item {
    label {
      font-weight: bold;
      display: block;
      margin-block-end: var(--sp0-5);
    }
    .select2-container .select2-selection--single {
      min-height: 50px;
      .select2-selection__rendered {
        height: 100%;
        align-content: center;
      }
      .select2-selection__arrow {
        height: 100%;
      }
    }
   }
  
  .partners-list {
    max-height: 480px;
    margin: 0;
    overflow-y: auto;
    scrollbar-color: var(--color-primary) transparent;
    scrollbar-width: thin;
  }
  .partner {
    & > * {
      margin-bottom: 0;
    }
  }
}