.gp-map-sc-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gp-map-sc-block .bg {
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s;
  padding-top: 20px;
  cursor: pointer;
}

.gp-map-sc-block .bg div {
  width: 80%;
  padding: 5px;
  border: 1px solid rgb(10,10,10);
  border-radius: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  margin: auto;
  text-align: center;

  font-family: OpenSans;
  font-weight: 400;
}

.gp-map-sc-block:hover .bg {
  opacity: 1;
}

@media (max-width: 768px) {
  .gp-map-sc-block .bg {
    opacity: 1;
    background: transparent;
  }
}

