<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.share-post *,
.share-post *::before,
.share-post *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.share-post .share-heading {
    width: 100%;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

.share-post .share-btns {
  display: flex;
  flex-direction: column;
}

.share-post .share-btns .share-btn {
  background: transparent;
  border: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px 0;
  margin-top: 8px;
  cursor: pointer;
  transition: opacity .2s ease;
  position: relative;
}

.share-post .share-btns .share-btn:hover .icon-wrapper,
.share-post .share-btns .share-btn:hover .btn-label {
  opacity: 0.8;
}

.share-post .share-btns .share-btn .icon-wrapper {
  width: 20px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-post .share-btns .share-btn svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.share-post .share-btn .btn-tooltip {
  font-size: 14px;
  padding: 8px;
  border-radius: 8px;
  background: #ddd;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 40px;
  top: 0;
  opacity: 0;
  transition: 0.3s;
}

.share-post .share-btn .btn-tooltip::before {
  content: '';
  background: #ddd;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  opacity: 0;
  position: absolute;
  bottom: -2px;
  right: 10px;
  z-index: -1;
  transition: 0.3s;
}

.share-post .share-btn .btn-tooltip.active {
  opacity: 1;
  transform: translateY(-130%);
}

.share-post .share-btn .active.btn-tooltip::before {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .share-post {
    width: 100%;
  }
  
  .share-post .share-heading {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    border-bottom: 1px solid #c4c4c4;
  }
}

@media screen and (max-width: 860px) {
  .share-post .share-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .share-post .share-btns .share-btn {
    width: 50%;
    flex-shrink: 0;
  }
}

@media screen and (max-width: 460px) {  
  .share-post .share-btns .share-btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {  
  .share-post .share-btns .share-btn {
    width: 100%;
}</pre></body></html>