.fg-figure-detail-share-options-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4000;

  background-color: rgba(0, 0, 0, .5);
  cursor: zoom-out;
}

.fg-figure-share-options-box {
  position: absolute;
  top: 25%;
  left: 50%;

  width: 400px;

  margin: auto;
  padding: 15px;

  border-radius: 15px;
  background-color: rgba(72, 77, 81, .8);
  cursor: auto;

  transform: translateX(-50%);
  transition: background-color .4s ease;
}

.fg-figure-share-options-box-success {
  background-color: rgba(255, 255, 255, .5);
}

.fg-figure-share-options-box-error {
  background-color: rgba(72, 77, 81, .5);
}

.fg-figure-share-options-content {
  padding: 15px 0;

  border-radius: 7.5px;

  background-color: #222426;
  color: #ffffff;

  transition: background-color .4s ease;
}

.fg-figure-share-options-content-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 145px;

  background-color: rgb(8, 181, 142);
  color: #ffffff;
}

.fg-figure-share-options-content-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 145px;

  background-color: #777777;
}

.fg-figure-share-options-button {
  display: block;

  width: calc(100% - 30px);
  height: 50px;

  margin: 0 auto 15px;

  background-color: #777777;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 5px;

  font-size: 15px;

  transition: background-color .4s ease;
}

.fg-figure-share-options-button:hover {
  background-color: #8c8c8c;
}

.fg-figure-share-options-report-button {
  margin-bottom: 0;
}

.fg-figure-share-options-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fg-figure-share-options-success-icon {
  margin-bottom: 20px;

  font-size: 35px;
}

.fg-figure-share-options-success-text {
  margin: 0;

  font-size: 15px;
}

.fg-figure-share-options-error-text {
  margin: 0;

  font-size: 15px;
}