.emergency {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 150px;
  height: 50px;
  padding-left: 10px;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  border: 1px solid green;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  z-index: 99998;
  gap: 10px;
}
.emergency .icon {
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding-left: 15px;
  border: 1px solid transparent;
}
.emergency:hover .icon {
  border: 1px solid green;
}
