#block-do16ti-clinickaddressesandmap {
}

#map-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  padding: 0;
  display: none;
}

#map-block .map {
  width: 100%;
  height: 100%;
}

#map-block .close-map {
  position: absolute;
  right: 15px;
  top: 15px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #009846;
  border-radius: 100%;
  transition: 0.3s;
  cursor: pointer;

  &:hover {
    background-color: rgba(#009846, 0.8);
  }

  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    transform-origin: center;
    transition: 0.3s;
  }

  &::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  &::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
