.svv-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;

  .svv-modal-content {
    background: $svv_white;
    border-radius: 12px;
    width: 700px;
    max-width: 90%;
    display: flex;
    overflow: hidden;
    position: relative;
    height: 500px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-family: "Heebo", sans-serif;

    .svv-modal-image-section {
      //   flex: 1;
      flex-basis: 50%;
    }

    .svv-modal-image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .svv-modal-details-section {
      flex: 1.2;
      padding: 14px;
      padding-top: 28px;
      color: $svv_text_secondary;
      gap: 20px;
      display: flex;
      flex-direction: column;
      .svv-modal-icon {
        width: 11px;
        height: 11px;
        margin-right: 0.5em;
        align-self: center;
      }
      .svv-modal-date {
        font-size: 12px;
        margin: 0;
      }
      .svv-modal-details {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
        p {
          margin: 0;
          padding: 0;
        }
      }
      .svv-modal-subsection {
        padding-bottom: 15px;
        border-bottom: 1px solid #eaeaea;
        display: flex;
        flex-direction: column;
        gap: 10px;
        .svv-modal-subtitle {
          font-size: 14px;
          line-height: 17.5px;
          font-weight: 600;
          font-family: "Heebo", sans-serif;
          color: $svv_text_black;
          margin: 0;
        }
        .svv-modal-description {
          font-size: 12px;
          line-height: 17.5px;
          font-weight: 400;
          color: $svv_text_secondary;
          margin: 0;
        }
      }
      .svv-modal-share {
        display: flex;
        flex-direction: column;
        gap: 20px;
        .svv-modal-share-header {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          .svv-share-header-title {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            line-height: 17.5px;
            font-family: "Heebo", sans-serif;
            margin: 0;
            color: $svv_text_black;
          }
          .svv-share-header-action {
            display: flex;
            flex-direction: row;
            color: $svv-brand-primary;
            font-size: 14px;
            padding: 8.5px;
            svg {
              width: 15px;
              height: 15px;
              stroke: $svv-brand-primary;
            }
            &:hover {
              background-color: $svv-brand-secondary;
              color: $svv_white;
              border-radius: 8.5px;
              a {
                color: $svv_white;
              }
            }
          }
        }
        .svv-social-buttons {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 10px;
          .svv-share-button {
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            gap: 0.25em;
            justify-content: center;
            align-items: center;
            padding: 10px 10px;
            background-color: $svv_white;
            border: 1px solid $svv-elements-border;
            border-radius: 8px;
            .svv-modal-icon {
              width: 16px;
              height: 16px;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              flex-shrink: 0;
              fill: $svv-brand-primary;
              svg {
                fill: $svv-brand-primary;
                width: 100%;
                height: 100%;
              }
            }
            span {
              display: inline-block;
              padding-top: 5px;
              color: $svv_text_black;
            }
            &:hover {
              background-color: $svv-brand-secondary;
              color: $svv-brand-secondary;
              border-radius: 8.5px;
              svg {
                fill: $svv-text-hover-color;
              }
            }
          }
        }
      }
    }

    .svv-modal-title {
      font-size: 18px;
      line-height: 17.5px;
      font-weight: 600;
      //   letter-spacing: -2%;
      margin: 0;
      color: $svv_text_black;
      font-family: "Heebo", sans-serif;
    }

    .svv-modal-details-section h3 {
      margin-top: 15px;
      font-size: 18px;
    }

    .description {
      font-size: 14px;
      color: $svv_text_black;
    }

    .price {
      font-weight: bold;
      margin-top: 15px;
    }

    .free {
      color: $svv-brand-primary;
    }

    .share {
      margin-top: 20px;
    }

    .social-buttons button {
      margin: 5px;
      padding: 8px 12px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      &:hover {
        background-color: $svv-brand-secondary;
      }
    }
  }

  .svv-modal-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    // font-size: 24px;
    cursor: pointer;
    color: $svv_text_black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .svv-close-modal-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1px 0;
    }
    &:hover {
      cursor: pointer;
      background-color: $svv-brand-secondary;
      color: $svv_white;
      border-radius: 8.5px;
      svg {
        stroke: $svv-brand-primary;
      }
    }
  }
}
