/* stylelint-disable declaration-no-important */
.bubble-close-icon {
  top: -10px !important;
  right: -8px !important;
}

/* stylelint-enable */

.google-maps-container {
  width: 100%;
  height: 300px;

  @include breakpoint(sm) {
    height: 600px;
  }

  .map-canvas {
    width: 100%;
    height: 100%;
  }

  img {
    max-width: none;
  }

  .side-bar {
    display: none;
    background-color: $color-white;
    opacity: .85;
    height: 100%;
    max-width: 240px;
    min-width: 220px;
    overflow-y: auto;

    h3 {
      margin: 7px;
      padding: 0 0 0 10px;
      color: $color-blue-500;
    }

    a {
      @include font-size(14);
      color: $color-blue-500;
      display: block;
      cursor: pointer;
    }

    a:hover,
    a:focus {
      background-color: $color-white;
    }

    .travel-zoom-out {
      @include font-size(12);
      margin: 10px 0 0;
      padding-left: 17px;
      text-decoration: none;
    }

    ol {
      color: $color-blue-300;
      padding-left: 15px;
      padding-top: 5px;
    }

    li {
      padding: $margin-normal;
      line-height: 18px;
      border-bottom: 1px solid $color-tui-grey-25;
      max-width: 92%;
    }

    span {
      font-size: .8em;
      padding-left: 4px;
    }

    @include breakpoint(sm) {
      display: block;
    }
  }

  .label {
    @include font-size(12);
    white-space: nowrap;
    padding: 2px;
    font-weight: bold;
  }
}

.bubble-container {
  width: 300px;
  overflow: hidden;
}

.bubble-content {
  padding: 5px;

  .bubble-text-small {
    @include font-size(13);

    h4 {
      margin-top: 4px;
      text-decoration: none;
    }
  }
}

.bubble-text {
  padding: 10px;

  p {
    display: none;

    @include breakpoint(sm) {
      display: block;
    }
  }

  ul {
    margin: 0;
  }

  li {
    margin-top: 5px;

    a {
      @include font-size(14);
      text-decoration: underline;
      cursor: pointer;
    }
  }
}
