.no-scroll {
  overflow: hidden;
}
.share-modal-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 1000;
}

.share-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.global-share-popup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1em;
  background-color: #fff;
  width: 550px;
  max-width: 90%;
  padding: 20px;
  border-radius: 12px;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
  user-select: none;
}
.share-header{
  display: flex;
  align-items: center;
  margin-bottom: 2.5em;
margin-top: 1em;
}
.global-share-popup h2{
  font-family: lexend;
font-weight: 800;
}
.global-share-popup span{
  color: #505163;
 font-family: young;
 font-weight: 500;
}
.global-share-popup.visible {
  transform: scale(1);
  opacity: 1;
}

.close-share-modal{
 position: absolute;
 right: 1em;
 height: 40px;
width: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
border: none;
transition: .15s;
background: transparent;
flex-shrink: 0;
margin-bottom: .6rem;
background: transparent;
}
.close-share-modal:hover{
  background: #9597AD24;
}
.close-share-modal svg{
fill: #3E3F4D;
 height: 28px;
 width: 28px;
}

.share-to-social-icon-url{
  display: flex;
  align-items: center;
justify-content: center;
gap: .9em;
margin-top: .5em;
}
.share-to-social-icon-url a{
  cursor: help;
  display: flex;
align-items: center;
justify-content: center;
background: #464BFF;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
border-radius: 15px;
height: 2.8em;
width: 2.8em;
transition: .3s;
}
.share-to-social-icon-url a:active{
  transform: translateY(-.2em);
}
.share-to-social-icon-url svg{
  height: 1.4em;
  width: 1.4em;
  fill: #fff;
}
.global-share-copy-link-wrapper{
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  gap: .5em;
 padding: .2em;
  border-radius: .4em;
}
.copy-share-url{
  background: #464BFF;
  color: #fff;
  border: none;
  padding: .7em;
  border-radius: .4em;
  transition: .2s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 500;
  font-size: 1em;
  font-family: young;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  width: 100%;
}
.copy-share-url svg{
  fill: #fff;
  height: 1.5em;
  width: 1.5em;
}
.copy-share-url:active{
  transform: scale(.98);
}
