
.safety_container {
	width: 200px;
	position: fixed;
	bottom: -20px;
	right: -50px;
	display: none;
}

.safety_image {
  display: block;
  width: 100%;
  height: auto;
}

.safety_image_hover {
  display: block;
  width: 100%;
  height: auto;
}

.safety_overlay {
  position: fixed;
  bottom: -20px;
  right: -50px;
  width: 200px;
  opacity: 0;
  transition: .1s ease;
}

.safety_container:hover .safety_overlay {
  opacity: 1;
}

