@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");


*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

.wrapper-sm {
    position: fixed;
    width: 100%;
    bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;

  z-index:100;
}

.wrapper-sm .icon-sm {
  position: relative;
  background: #252222;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-sm .tooltip-sm {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-sm .tooltip-sm::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper-sm .icon-sm:hover .tooltip-sm {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper-sm .icon-sm:hover span,
.wrapper-sm .icon-sm:hover .tooltip-sm {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.fb-icon {
  width: 70%;
  height: auto;
}

.wrapper-sm .facebook-sm:hover,
.wrapper-sm .facebook-sm:hover .tooltip-sm,
.wrapper-sm .facebook-sm:hover .tooltip-sm::before {
  background: #1877F2;
  color: #ffffff;
}

.wrapper-sm .instagram-sm:hover,
.wrapper-sm .instagram-sm:hover .tooltip-sm,
.wrapper-sm .instagram-sm:hover .tooltip-sm::before {
  background: #E4405F;
  color: #ffffff;
}

.wrapper-sm .youtube-sm:hover,
.wrapper-sm .youtube-sm:hover .tooltip-sm,
.wrapper-sm .youtube-sm:hover .tooltip-sm::before {
  background: #CD201F;
  color: #ffffff;
}



@media screen and (max-width: 700px){
  .wrapper-sm {
    position: relative;
  }
}

/*# sourceMappingURL=/social.7dc85da8.css.map */