
/* botones flotantes */
.flotating-social {
  position: fixed;
  width: 0;
  height: 0;
  bottom: 285px;
  right: 50px;
  margin: 10px 25px;
  z-index: 50;
  cursor: pointer;
}

.cardo {
  width: fit-content;
  height: fit-content;
  background-color: rgba(238, 238, 238, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  gap: 10px;
}

/* for all social containers*/
.socialContainer {
  width: 30px;
  height: 30px;
  background-color: #717d8c82;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  transition-duration: .3s;
  position: relative;
}
/* 
.containerFour {
  background-color: #206e31;
} */

/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: .3s;
}

/* facebook*/
.containerTwo:hover {
  background-color: #0866ff;
  transition-duration: .3s;
}

/* telefono*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}

.containerThree:hover::before {
  opacity: 1;
  /* Hace visible el tooltip */
  visibility: visible;
}

/* Whatsapp*/
.containerFour:hover {
  background-color: #000000;
  transition-duration: .3s;
}

.containerFour:hover::before {
  opacity: 1;
  visibility: visible;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

.flotating-osha {
  position: fixed;
  width: 0;
  height: 0;
  bottom: 80px;
  left: 0px;
  margin: 10px 25px;
  z-index: 50;
  cursor: pointer;
}

.osha {
  width: fit-content;
  height: fit-content;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  gap: 10px;
}

.oshaContainer {
  width: 120px;
  height: 40px;
  /* background-color: #ffffff; */
  /* padding: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  transition-duration: .3s;
  position: relative;
}

/* botones flotantes */