.sctm_share_popup,
.sctm_share_popup__overlay,
.sctm_share_popup__box,
.sctm_share_popup__close,
.sctm_share_popup__title,
.sctm_share_popup__list,
.sctm_share_popup__item {
    display: none;
}

@media (max-width: 768px) {
    .sctm_share_popup {
        position: fixed;
        inset: 0;
        z-index: 10150;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease;
        display: block;
    }

    .sctm_share_popup.sctm_share_popup--open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .sctm_share_popup__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: block;
    }

    .sctm_share_popup__box {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 24px;
        border-radius: 24px;
        padding: 18px;
        box-sizing: border-box;
        background: #454545;
        box-shadow: 0 14px 40px rgba(0,0,0,.32);
        display: block;
    }

    .sctm_share_popup__close {
        position: absolute;
        top: 10px;
        right: 12px;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: rgba(255,255,255,.10);
        color: #fff;
        font-size: 28px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-appearance: none;
        appearance: none;
    }

    .sctm_share_popup__title {
        display: block;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 800;
        color: #fff;
        margin: 0 44px 16px 0;
    }

    .sctm_share_popup__list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sctm_share_popup__item {
        width: 100%;
        min-height: 48px;
        border: 0;
        border-radius: 14px;
        background: rgba(255,255,255,.08) !important;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        display: block;
        -webkit-appearance: none;
        appearance: none;
    }
}

@media (min-width: 769px) {
    .sctm_share_popup {
        display: none !important;
    }
}