#share-now-ctn {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  
  #share-now-ctn.show {
    display: flex;
  }
  
  #share-now-ctn .share-content {
    max-width: 700px;
    width: calc(100vw - 32px);
  }
  
  #share-now-ctn .share-close {
    margin-left: auto;
    width: 24px;
    cursor: pointer;
    height: 24px;
  }
  
  #share-now-ctn .share-icon {
    margin: 8px auto 0px;
    width: 43.636px;
    height: 48px;
  }
  
  #share-now-ctn h3 {
    color: #fff !important;
    width: fit-content;
    margin: 32px auto;
  }
  
  #share-now-ctn .share-social {
    display: flex;
    column-gap: 16px;
    width: 304px;
    height: 48px;
    margin: 8px auto 0;
  }
  
  #share-now-ctn svg {
    transition: all 0.3s ease-in-out;
  }
  
  #share-now-ctn svg:hover {
    transform: scale(1.2);
  }
  
  .sharecopy{
    margin: auto;
    justify-content: center;
    display: flex;
    text-align: center;
    gap: 16px;
    padding-top: 1rem;
  }
  
  a.shareemail {
    display: inline-flex;
    padding: 5px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius:  30px;
    border: var(--border-width-sm, 1px) solid var(--border-action-inverse, #F2F2F3);
    color: var(--text-inverse, #F2F2F3);
    font-family: var(--type-font-family-body, Inter);
    font-size: var(--fontsize-body-md, 16px);
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    cursor:pointer;
    text-decoration: none !important;
    transition: .3s ease-in-out;
  }
  
  .sharecopy #copy {
    display: inline-flex;
    padding: 5px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius:  30px;
    border: var(--border-width-sm, 1px) solid var(--border-action-inverse, #F2F2F3);
    color: var(--text-inverse, #F2F2F3);
    font-family: var(--type-font-family-body, Inter);
    font-size: var(--fontsize-body-md, 16px);
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    cursor:pointer;
    text-decoration: none !important;
    transition: .3s ease-in-out;
    background-color: transparent;
  }
  
  .content-slider{
    position: relative;
    margin: auto;
    padding: 0;
  }
  
  .content-slider-open{
    cursor: pointer;
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 15.531px;
    top: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    transition:.25s;
  }

  .content-slider-open:hover{
    background: rgba(255, 255, 255, 1);
  }
  
   .content-slider .prev{
    cursor: pointer;
    position: absolute;
    top: calc(50% + 25px);
    margin-top: -50px;
    width: auto;
    transition: 0.6s ease;
    -webkit-user-select: none;
    border-radius: 0 16px 16px 0;
    transition: .3s ease-in-out;
   }
  
   .content-slider .next{
    cursor: pointer;
    position: absolute;
    top: calc(50% + 25px);
    margin-top: -50px;
    width: auto;
    transition: 0.6s ease;
    -webkit-user-select: none;
    border-radius: 0 16px 16px 0;
    transition: .3s ease-in-out;
    transform: rotate(180deg);
    right: 0;
   }

   .content-slider .prev svg path:first-of-type,.content-slider .next svg path:first-of-type{
    transition: .25s;
   }

   .content-slider .prev:hover svg path:first-of-type,.content-slider .next:hover svg path:first-of-type{
    fill:#ffffff;
   }