/* ===========================================================
   GANDO Cinema Ticket
   =========================================================== */

.ctp-ticket{
    position:relative;
    min-width:520px;
    max-width:520px;
    margin:40px auto;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #242424 0%,
            #1b1b1b 100%
        );

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

    color:#fff;

    font-family:inherit;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

/* Glow */

.ctp-ticket::before{

    content:"";

    position:absolute;

    right:-120px;
    top:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(255,197,60,.18),
            transparent 70%
        );

    filter:blur(20px);

    pointer-events:none;
}

.ctp-ticket:hover{

    transform:translateY(-6px);

    border-color:rgba(255,208,80,.18);

    box-shadow:
        0 40px 90px rgba(0,0,0,.55);
}


/* ===========================================================
   Header
   =========================================================== */

.ctp-ticket-header{

    position:relative;

    padding:24px;

    text-align:center;

    background:
        linear-gradient(
            90deg,
            rgba(255,197,60,.10),
            transparent
        );

    border-bottom:
        1px solid rgba(255,255,255,.06);
}

.ctp-ticket-header::after{

    content:"";

    position:absolute;

    bottom:0;
    left:24px;
    right:24px;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.08),
            transparent
        );
}

.ctp-ticket-header h2{

    margin:0;

    color:#fff;

    font-size:22px;

    font-weight:800;

    letter-spacing:.5px;
}


/* ===========================================================
   Body
   =========================================================== */

.ctp-ticket-body{

    padding:26px;
}


/* ===========================================================
   Rows
   =========================================================== */

.ctp-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:16px;

    padding:14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    font-size:14px;
}

.ctp-row:last-child{

    border-bottom:none;
}

.ctp-row span:first-child{

    color:#9d9d9d;

    font-weight:500;
}

.ctp-row span:last-child{

    color:#fff;

    font-weight:700;
}


/* ===========================================================
   Divider
   =========================================================== */

.ctp-divider{

    position:relative;

    margin:26px 0;

    height:1px;

    border:none;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.10),
            transparent
        );
}


/* پانچ‌های بلیت */

.ctp-divider::before,
.ctp-divider::after{

    content:"";

    position:absolute;

    top:50%;

    width:22px;
    height:22px;

    background:#121212;

    border-radius:50%;

    transform:translateY(-50%);
}

.ctp-divider::before{

    left:-37px;
}

.ctp-divider::after{

    right:-37px;
}


/* ===========================================================
   Footer
   =========================================================== */

.ctp-ticket-footer{

    padding:24px;

    text-align:center;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.02),
            rgba(255,255,255,.01)
        );

    border-top:
        1px solid rgba(255,255,255,.05);

    color:#a9a9a9;

    font-size:13px;
}


/* ===========================================================
   Tracking
   =========================================================== */

.ctp-tracking{

    display:inline-block;

    margin-top:16px;

    padding:10px 22px;

    border-radius:999px;

    background:
        rgba(255,197,60,.08);

    border:
        1px solid rgba(255,197,60,.25);

    color:#FFD45A;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    font-family:
        SFMono-Regular,
        Consolas,
        monospace;
}


/* ===========================================================
   Button
   =========================================================== */

.ctp-download-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:22px;

    padding:14px 28px;

    border-radius:18px;

    background:
        linear-gradient(
            180deg,
            #FFD75A,
            #E2B52B
        );

    color:#111;

    font-size:15px;

    font-weight:800;

    text-decoration:none;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

    box-shadow:
        0 15px 40px rgba(255,197,60,.22);
}

.ctp-download-btn:hover,
.ctp-download-btn:focus{

    color:#111;

    transform:translateY(-2px);

    filter:brightness(1.05);

    box-shadow:
        0 20px 50px rgba(255,197,60,.35);
}


/* ===========================================================
   Responsive
   =========================================================== */

@media(max-width:768px){

    .ctp-ticket{

        min-width:100%;

        max-width:100%;

        border-radius:24px;
    }

    .ctp-ticket-body{

        padding:22px;
    }

}


/* ===========================================================
   Print
   =========================================================== */

@media print{

    body{

        background:#fff;
    }

    .ctp-download-btn,
    header.elementor-location-header,
    footer.elementor-location-footer{

        display:none!important;
    }

    .ctp-ticket{

        width:100%;

        color:#000;

        background:#fff;

        border:1px solid #000;

        box-shadow:none;
    }

    .ctp-ticket::before{

        display:none;
    }

    .ctp-ticket-header{

        background:#fff;

        color:#000;

        border-bottom:2px solid #000;
    }

    .ctp-ticket-header h2{

        color:#000;
    }

    .ctp-ticket-footer{

        background:#fff;

        color:#000;

        border-top:1px solid #000;
    }

    .ctp-row{

        border-bottom:1px solid #ddd;
    }

    .ctp-download-btn{

        display:none!important;
    }

}