.modal-share {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-share .modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  width: 300px;
  color: #616161;
}

.modal-share h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #000;
}
.modal-share .close {
  float: right;
  cursor: pointer;
  font-size: 29px;
  line-height: 0.7;
}

.modal-share .share-options button {
  display: block;
  width: 100%;
  padding: 6px;
  margin: 5px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: 0.2s;
}

.modal-share .share-options button:hover {
  filter: brightness(0);
}

@media screen and (max-width: 767px) {
  .share-options .facebook {
    display: none !important;
  }
  .share-options .twitter {
    display: none !important;
  }
  .share-options .line {
    display: none !important;
  }
}
