.popup-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 0% / 40%);
    left: 0;
    top: 0;
    z-index: 999999999;
    overflow: hidden;
    overflow-y: auto;
    display: none;
}
.popup-wrapper.active {
    display: block;
}
.popup-content {
    width: 750px;
    max-width: 90%;
    top: 0;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
}
.popup-wrapper.active .popup-content {
    top: 60px;
    visibility: visible;
}
.popup-close {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    line-height: 23px;
    display: inline-block;
    width: 23px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
}
.popup-wrapper-content{
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
}
body.noScroll {
    overflow: hidden;
    height: 100vh;
}
.popup-wrapper .popup-content {
    position: fixed;
    background-color: hsl(var(--secondary) / .5);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    margin-top: 0;
    margin-bottom: 0;
    color: #000;
    width: 500px;
}
.block-share {
    display: flex;
    gap: 15px;
    padding: 30px 0;
    justify-content: center;
}
.block-share a{
    --iron-icon-height: 60px;
    --iron-icon-width: 60px;
    flex: 1;
}
.block-share a svg{
    max-width: 60px;
    max-height: 60px;
    margin: auto;
}
.block-share a div{
    text-align: center;
    font-size: 10px;
    margin-top: 10px;
}
a{
    cursor: pointer;
}