[data-component-id="first_bus:fb_ldn_garage_map"] {
  /* @todo Add your styles here. */

    /* map svg */
    .fb__map-svg {
      display: flex;
      width: 100%;
      justify-content: center;
    }
  
    .fb__map-svg svg {
        height: 600px;
        max-height: 600px;
        scale: 1.2;
    }
  
    /* map points */
    .fb__map-point {
        fill: #280071;
        cursor: pointer;
        stroke-width: 3px;
        filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0));
        transition: all ease-in-out 0.2s;
    }
  
    .fb__map-point:hover {
        fill: hwb(261 0% 40% / 1);
        stroke: #FD02DE;
        filter: drop-shadow(0px 2px 10px rgba(253, 2, 222, 1));
    }
  
    .fb__map-point--active {
        fill: #FD02DE;
        stroke: #280071;
        filter: drop-shadow(0px 1px 5px rgba(54, 0, 153, 1));
    }
  
    .fb__map-point--active:hover {
        fill: #FD02DE;
        filter: drop-shadow(0px 2px 10px rgba(54, 0, 153, 1));
    }
  
    /* garage list */
    .fb__garage-list {
      position: relative;
      max-height: 600px;
      overflow-y: auto;
      scroll-behavior: smooth;
      z-index: 9;
    }
  
    /* garage list items */
    .fb__garage-item {
        border: 2px solid #f1f1f2;
        cursor: pointer;
        box-sizing: border-box;
        transition: all ease-in-out 0.2s;
    }
  
    .fb__garage-item a:hover {
      text-decoration: none;
      background-color: #280071;
      color: #fff;
    }
  
    /* garage list items > view on may button for mobile */
    .fb__garage-item__view-on-map-btn {
      position: relative;
      display: none;
    }
    .fb__garage-item__view-on-map-btn::before {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0.5rem;
      width: 1rem;
      height: 1rem;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-map"><polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line></svg>');
      background-repeat: no-repeat;
      transition: inherit;
    }
  
    .fb__garage-item img {
      width: auto;
      max-height: 50px;
    }
  
    .fb__garage-item__description {
      display: none;
    }
  
    .fb__garage-item:hover {
        border: 2px solid #FD02DE;
    }
  
    .fb__garage-item--active {
        border: 2px solid #FD02DE;
    }
  
    .fb__garage-item--active .fb__garage-item__description {
        display: block;
    }
  
    /* responsive styles */
    @media only screen and (max-width: 768px) {
  
      .fb__map-svg {
        height: 450px;
      }
  
      .fb__map-svg svg {
        flex: auto;
        min-height: auto;
        height: 550px;
        width: 500px;
        scale: 1.3;
        transform: translateY(-25px);
      }
  
      .fb__garage-list {
        max-height: 100%;
        overflow: none;
        margin-top: 24px;
      }
  
      .fb__garage-item {
        white-space: normal;
        display: inline-block;
      }
  
      .fb__garage-item__view-on-map-btn {
        display: block;
      }
    }
  
    @media only screen and (max-width: 540px) {
  
      .fb__map-svg {
        height: 375px;
      }
  
      .fb__map-svg svg {
        scale: 1.2;
        transform: translateY(-80px);
      }
    }
  
    @media only screen and (max-width: 480px) {
  
      .fb__map-svg {
        height: 350px;
      }
  
      .fb__map-svg svg {
        scale: 1.3;
      }
    }

    @media only screen and (max-width: 420px) {
  
      .fb__map-svg {
        height: 350px;
      }
  
      .fb__map-svg svg {
        height: auto;
        scale: 1.5;
        transform: none;
      }
    }
  
    @media only screen and (max-width: 390px) {
  
      .fb__map-svg {
        height: 300px;
      }
    }
}
