/*==============================================================
# Favorite Button - Header
==============================================================*/

.lca-header-favorite-button{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:none !important;

    border-radius:50%;

    background:#ffffff !important;

    color:#E74C6A !important;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,.10);

    transition:all .25s ease;

}

.lca-header-favorite-button:hover{

    background:#88B04B !important;

    color:#ffffff !important;

    transform:scale(1.08);

}

.lca-header-favorite-button.is-active{

    background:linear-gradient(
        135deg,
        #7AC943 0%,
        #5E9E36 100%
    ) !important;

    color:#ffffff !important;

    border:2px solid rgba(255,255,255,.25) !important;

    box-shadow:
        0 10px 25px rgba(106,168,79,.35),
        0 0 0 4px rgba(106,168,79,.15);

}

.lca-header-favorite-button.is-active:hover{

    transform:scale(1.12);

}

.lca-header-favorite-icon{

    width:24px;

    height:24px;

}

.lca-header-favorite-button.is-active .lca-header-favorite-icon path{

    stroke:#ffffff;

}
