/**
 * Fichier  : /ott/item/assets/css/live/alert.css
 * Fonction : style des alertes
 */


/* ==================================================
   ALERT
================================================== */

#item .alert {
    position: relative;
    overflow: hidden;
}

#item .alert {
    margin: 5px;
    padding: 14px;
}

#item .alert {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 1.8em;
}

#item .alert {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.03)
        );

    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05);
}


/* ==================================================
   ICON
================================================== */

#item .alert svg {
    width: 34px;
    height: 34px;
}

#item .alert svg {
    padding: 9px;
}

#item .alert svg {
    background:
        linear-gradient(
            135deg,
            #8e0e00,
            #e9401b 60%,
            #ff7b00
        );
    box-shadow:
        0 8px 20px rgba(233,64,27,0.25),
        inset 0 1px 0 rgba(255,255,255,0.18);
    border-radius: 999px;
}

#item .alert svg {
    color: #fff;
}


/* ==================================================
   TEXT
================================================== */

#item .alert p {
    font-family: 'content-font';
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
    color: rgba(255,255,255,0.78);
}


/* ==================================================
   LEFT BORDER
================================================== */

#item .alert::before {
    content: "";
}

#item .alert::before {
    position: absolute;
    inset: 0 auto 0 0;
}

#item .alert::before {
    width: 3px;
}

#item .alert::before {
    background:
        linear-gradient(
            180deg,
            #8e0e00,
            #e9401b 60%,
            #ff7b00
        );
}