/* line 1, app/assets/stylesheets/share_button.scss */
::-moz-selection {
  color: #fff;
  background: #3c8ebdff;
}
::selection {
  color: #fff;
  background: #3c8ebdff;
}

/* line 6, app/assets/stylesheets/share_button.scss */
.superposition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 999;
}

/* line 19, app/assets/stylesheets/share_button.scss */
.superposition.show {
  opacity: 1;
  pointer-events: auto;
}

/* line 25, app/assets/stylesheets/share_button.scss */
.popup-share {
  position: absolute;
  left: 50%;
}

/* line 30, app/assets/stylesheets/share_button.scss */
button-share {
  outline: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
}

/* line 39, app/assets/stylesheets/share_button.scss */
.view-modal-share {
  color: #fff;
  font-size: 15px;
  padding: 0px 8px;
  background: #3c8ebdff;
  transform: translate(-50%, -50%);
}

/* line 48, app/assets/stylesheets/share_button.scss */
.view-modal-share i {
  margin-left: 5px;
}

/* line 52, app/assets/stylesheets/share_button.scss */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  background: #3c8ebdff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* line 67, app/assets/stylesheets/share_button.scss */
.floating-button span {
  display: none;
}

/* line 71, app/assets/stylesheets/share_button.scss */
.floating-button i {
  margin: 0;
}

/* line 75, app/assets/stylesheets/share_button.scss */
.floating-button:before, .floating-button:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #3c8ebdff;
  left: -20px;
  right: -20px;
  bottom: -20px;
  top: -20px;
  -webkit-animation: animate 1.5s linear infinite;
          animation: animate 1.5s linear infinite;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* line 89, app/assets/stylesheets/share_button.scss */
.pulsaDelay:after {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* line 99, app/assets/stylesheets/share_button.scss */
.popup-share {
  background: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 25px;
  border-radius: 6px;
  max-width: 380px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) scale(1.2);
  transition: top 0s 0.2s ease-in-out, opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
}

/* line 118, app/assets/stylesheets/share_button.scss */
.popup-share.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: top 0s 0s ease-in-out, opacity 0.2s 0s ease-in-out, transform 0.2s 0s ease-in-out;
}

/* line 128, app/assets/stylesheets/share_button.scss */
.popup-share :is(header-share, .icons-share, .field-share) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 134, app/assets/stylesheets/share_button.scss */
.popup-share header-share {
  padding-bottom: 10px;
  border-bottom: 1px solid #ebedf9;
}

/* line 139, app/assets/stylesheets/share_button.scss */
header-share .title {
  font-size: 18px;
  font-weight: 600;
}

/* line 144, app/assets/stylesheets/share_button.scss */
header-share .close-share,
.icons-share a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* line 153, app/assets/stylesheets/share_button.scss */
header-share .close-share {
  color: #000000;
  font-size: 17px;
  background: #f2f3fb;
  height: 33px;
  width: 33px;
  cursor: pointer;
}

/* line 162, app/assets/stylesheets/share_button.scss */
header-share .close-share:hover {
  background: #ebedf9;
}

/* line 166, app/assets/stylesheets/share_button.scss */
.popup-share .content-share {
  margin: 15px 0;
}

/* line 170, app/assets/stylesheets/share_button.scss */
.popup-share .icons-share {
  margin: 15px 0 20px 0;
}

/* line 174, app/assets/stylesheets/share_button.scss */
.content-share p {
  font-size: 16px;
}

/* line 178, app/assets/stylesheets/share_button.scss */
.content-share .icons-share a {
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}

/* line 186, app/assets/stylesheets/share_button.scss */
.icons-share a i {
  transition: transform 0.3s ease-in-out;
}

/* line 190, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(1) {
  color: #1877F2;
  border-color: #b7d4fb;
}

/* line 195, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(1):hover {
  background: #1877F2;
}

/* line 199, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(2) {
  color: #0a66c2ff;
  border-color: #b6e7fc;
}

/* line 204, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(2):hover {
  background: #0a66c2ff;
}

/* line 208, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(3) {
  color: #25D366;
  border-color: #bef4d2;
}

/* line 213, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(3):hover {
  background: #25D366;
}

/* line 217, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(4) {
  color: #0088cc;
  border-color: #b3e6ff;
}

/* line 222, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(4):hover {
  background: #0088cc;
}

/* line 226, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(5) {
  color: #000000;
  border-color: #00000057;
}

/* line 231, app/assets/stylesheets/share_button.scss */
.icons-share a:nth-child(5):hover {
  background: #000000;
}

/* line 235, app/assets/stylesheets/share_button.scss */
.icons-share a:hover {
  color: #fff;
  border-color: transparent;
}

/* line 240, app/assets/stylesheets/share_button.scss */
.icons-share a:hover i {
  transform: scale(1.2);
}

/* line 244, app/assets/stylesheets/share_button.scss */
.content-share .field-share {
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #e1e1e1;
}

/* line 253, app/assets/stylesheets/share_button.scss */
.qr-code-content svg {
  max-width: 200px;
}

/* line 257, app/assets/stylesheets/share_button.scss */
.qr-code-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 20px 5px 20px;
}

/* line 264, app/assets/stylesheets/share_button.scss */
.print-link-container {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* line 273, app/assets/stylesheets/share_button.scss */
.print-link, .download-link {
  color: #0c5e87ff;
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 0 8px;
  text-decoration: none;
}

/* line 283, app/assets/stylesheets/share_button.scss */
.field-share.active {
  border-color: #3c8ebdff;
}

/* line 287, app/assets/stylesheets/share_button.scss */
.field-share i {
  width: 50px;
  font-size: 18px;
  text-align: center;
}

/* line 293, app/assets/stylesheets/share_button.scss */
.field-share.active i {
  color: #3c8ebdff;
}

/* line 297, app/assets/stylesheets/share_button.scss */
.field-share input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}

/* line 305, app/assets/stylesheets/share_button.scss */
.field-share button-share {
  color: #fff;
  padding: 5px 18px;
  background: #0c5e87ff;
}

/* line 311, app/assets/stylesheets/share_button.scss */
.field-share button-share:hover {
  background: #3c8ebdff;
}

@media (max-width: 650px) {
  /* line 318, app/assets/stylesheets/share_button.scss */
  .view-modal-share {
    color: #fff;
    font-size: 12px;
    padding: 0px 7px;
    background: #3c8ebdff;
    transform: translate(-50%, -50%);
  }
}
