.digiMapPosition {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.digiMap {
  position: fixed;
  bottom: 15px;
  right: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 120px;
  width: 120px;
  color: #ffffff;
  background-color: #c83e37;
  border-radius: 50%;
  z-index: 600;
  transition: all .3s ;
  text-transform: capitalize;
}

.digiMap:hover {
  background-color: #b3231b;
  color: #ffffff;
}

@media (max-width: 767px) {
  .digiMap {
    height: 85px;
    width: 85px;
    font-size: 12px;
    line-height: 1.5
  }
}