/* Eye-C-You Reels Share Fix */

.ecy-reel-share-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
}

.ecy-reel-share-modal.is-open{
    display:flex;
}

.ecy-reel-share-box{
    width:min(430px,96vw);
    border-radius:24px;
    padding:20px;
    color:#fff;
    background:
        radial-gradient(circle at top left, rgba(255,56,47,.25), transparent 28%),
        linear-gradient(145deg,#080808,#111827 60%,#050505);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 26px 90px rgba(0,0,0,.62);
    position:relative;
}

.ecy-reel-share-close{
    position:absolute;
    top:10px;
    right:10px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#e11d2e;
    color:#fff;
    font-size:26px;
    line-height:1;
    cursor:pointer;
}

.ecy-reel-share-box h3{
    margin:0 46px 6px 0;
    color:#fff;
    font-size:22px;
    font-weight:900;
}

.ecy-reel-share-note{
    margin:0 0 16px;
    color:rgba(255,255,255,.72);
    font-size:14px;
}

.ecy-reel-share-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.ecy-reel-share-actions button{
    border:0;
    border-radius:18px;
    min-height:54px;
    padding:10px;
    color:#fff;
    cursor:pointer;
    font-weight:900;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.12);
}

.ecy-reel-share-actions button:hover{
    background:linear-gradient(135deg,#ff382f,#c90d20);
}

.ecy-share-whatsapp{
    background:linear-gradient(135deg,#25D366,#128C7E)!important;
}

.ecy-share-facebook{
    background:linear-gradient(135deg,#1877F2,#0b4fb3)!important;
}

.ecy-share-copy{
    grid-column:span 2;
}

.ecy-reel-share-status{
    min-height:20px;
    margin-top:12px;
    color:rgba(255,255,255,.78);
    font-size:13px;
    text-align:center;
}

@media(max-width:520px){
    .ecy-reel-share-actions{
        grid-template-columns:1fr;
    }

    .ecy-share-copy{
        grid-column:auto;
    }
}
