@media (max-width: 1279px) {
  .social_buttons {
    padding: 0 20px;
  }
}
.social_buttons .social-container {
  padding: 0;
}
.social_buttons .flexDiv {
  display: flex;
  flex-direction: row;
  max-width: 700px;
  margin: auto;
}
@media (max-width: 1279px) {
  .social_buttons .flexDiv {
    max-width: 700px;
    width: 100%;
    margin: auto;
  }
}
.social_buttons .flexDiv .social_buttonsEl {
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-right: 10px;
}
.social_buttons .flexDiv .social_buttonsEl img {
  width: 100%;
  height: 100%;
}
.social_buttons .flexDiv .heart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px rgba(162, 162, 162, 0.2) solid;
  box-sizing: border-box;
}
.social_buttons .flexDiv .heart-icon .heart-blue {
  color: #009fff;
}
.social_buttons .flexDiv .copyUrlBtn {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease-in-out;
}
.social_buttons .flexDiv .copyUrlBtn .copy-url-btn-icon {
  pointer-events: none;
}
.social_buttons .flexDiv .copyUrlBtn:hover, .social_buttons .flexDiv .copyUrlBtn.active {
  background-color: black;
}
.social_buttons .flexDiv .copyUrlBtn:hover .copy-url-btn-icon, .social_buttons .flexDiv .copyUrlBtn.active .copy-url-btn-icon {
  color: #ffffff;
}
.social_buttons .flexDiv .social_buttonsEl:active,
.social_buttons .flexDiv .copyUrlBtn:active {
  transform: scale(0.95);
}

.copy-url-msg-container {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 12px;
  background-color: white;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.15));
  z-index: 1;
  width: -moz-max-content;
  width: max-content;
}
.copy-url-msg-container p {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.copy-url-msg-container::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent white transparent;
}/*# sourceMappingURL=social_buttons.css.map */