.share-modal {
  background-color: rgba(0, 0, 0, 0.80);
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;

  align-items: center;
  justify-content: center;
}

.share-modal-content {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  width: 300px;
  height: 160px;
  border-radius: 10px;
  padding-top: 20px;
  row-gap: 16px;
}

.share-modal-title {
  color: #F49811;
  font-size: 24px;
}

.share-modal-close {
  position: absolute;
  top: -30px;
  right: 0;
}

.addtoany_list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 22px;
}

@media screen and (min-width: 768px) {
  .share-modal-content {
    width: 403px;
  }

  .share-modal-close {
    right: -30px;
  }

  .addtoany_list {
    column-gap: 32px;
  }
}