/* =========================================================
   LIFFY — WELCOME BANNER STYLES
   ========================================================= */

.liffy-welcome-banner {
    position: fixed;

    top: 16px;
    left: 16px;
    right: 16px;

    max-width: 480px;

    margin: 0 auto;

    z-index: 600;

    background:
        linear-gradient(
            135deg,
            #6d3cff,
            #ff2d75
        );

    border-radius: 20px;

    padding: 22px 20px 20px;

    color: #ffffff;

    box-shadow: 0 12px 34px rgba(0,0,0,.35);

    animation: liffyWelcomeBannerPop .3s ease;

    max-height: 80vh;

    overflow-y: auto;
}

@keyframes liffyWelcomeBannerPop {

    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.liffy-welcome-banner-close {
    position: absolute;

    top: 14px;
    right: 14px;

    border: none;

    background: rgba(255,255,255,.25);

    color: #ffffff;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    font-size: 14px;

    cursor: pointer;
}

.liffy-welcome-banner-title {
    margin: 0 30px 8px 0;

    font-size: 19px;

    font-weight: 800;
}

.liffy-welcome-banner-intro {
    margin: 0 0 12px;

    font-size: 13px;

    line-height: 1.5;

    color: rgba(255,255,255,.92);
}

.liffy-welcome-banner-list {
    margin: 0;

    padding-left: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.liffy-welcome-banner-list li {
    font-size: 13px;

    line-height: 1.6;

    color: rgba(255,255,255,.95);
}

.liffy-welcome-banner-list a {
    color: #ffffff;

    font-weight: 800;

    text-decoration: underline;
}

@media (max-width: 520px) {

    .liffy-welcome-banner {
        left: 12px;
        right: 12px;
        top: 12px;
    }

}