/* ===================================
GOAL ICONS
=================================== */

.goal-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    background: #e8f6ff;

    color: #0dcaf0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    margin-right: 18px;

    transition: .3s ease;
}

.goal-item:hover .goal-icon {
    background: #0dcaf0;
    color: #ffffff;
    transform: scale(1.05);
}