:host {
  height: 100%;
  width: 100%;
}

.sc-maps {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;

  .sc-maps-map {
    height: 100%;
    width: 100%;
  }

  &-marker-label {
    position: relative;
    top: 34px;
    font-weight: '700' !important;
    background-color: white;
    padding: 2px 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  &-marker-label-center {
    position: relative;
    top: -5px;
    font-weight: '800' !important;
    background-color: transparent;
    padding: 0;
    border:none;
    border-radius: 0;
  }
}

.sc-marker-list {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #fff;
  height: fit-content;
  box-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
  max-height: 250px;
  overflow: auto;
  
  p {
    transition: color 0.2s ease-in;
    cursor: pointer;
    margin-bottom: 0;
    padding: 8px 24px;
    
    &:hover {
      color: #c23e2d;
      transition: color 0.2s ease-in;
    }
  }
}