/* ==========================================================
   LolliArt Icon System v1.0
========================================================== */

.la-icon{
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.la-icon svg{
    width:100%;
    height:100%;
    display:block;
    stroke:currentColor;
    fill:none;
    stroke-width:2.4;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.la-icon-circle{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    background:var(--la-gradient-primary);
    box-shadow:var(--la-shadow-soft);
    flex-shrink:0;
}

.la-icon-gold{
    background:var(--la-gradient-gold);
    color:white;
    box-shadow:var(--la-shadow-gold);
}