:root {
    --widget-bg: #fafafa;
    --progress-indicator-border: #39414d;
    --progress-indicator-height: 2rem;;
    --progress-indicator-color: #02c592;
    --label-color: #39414d;
    --invest-button-background-color: #39414d;
    --invest-button-link-color: #fafafa;
}

#fundingcore-api-plugin-widget {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--widget-bg);
}

#fundingcore-api-plugin-widget h3 {
    margin-top: 0px;
    padding-top: 0px;
}

#fundingcore-api-plugin-widget a:link {
    text-decoration: none;
}

#fundingcore-api-plugin-widget ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
#fundingcore-api-plugin-widget ul li {
    display: block;
    margin-bottom: 10px;
}

#fundingcore-api-plugin-widget .project-stats-funding {
    margin-bottom: 20px;
    font-size: var(--global--font-size-xs);
}

#fundingcore-api-plugin-widget .project-stats-funding .label {
    color: var(--label-color);
}

#fundingcore-api-plugin-widget .project-stats-percentage {
    display: flex;
    align-items: center;
}

#fundingcore-api-plugin-widget .progress_indicator_wrapper {
    border: 2px solid var(--progress-indicator-border);
    flex: 1;
    display: inline-block;
    height: var(--progress-indicator-height);
}

#fundingcore-api-plugin-widget .progress_indicator {
    background-color: var(--progress-indicator-color);
    height: 100%;
    display: block;
}

#fundingcore-api-plugin-widget .progress_text {
    font-size: var(--global--font-size-xs);
    padding-left: 8px;
}

#fundingcore-api-plugin-widget  .project-stats-funds em {
    padding-right: 4px;
    font-weight: bold;
}

#fundingcore-api-plugin-widget .project-invest {
    background-color: var(--invest-button-background-color);
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

#fundingcore-api-plugin-widget .project-invest a {
    color: var(--invest-button-link-color);
    text-decoration: none;
}

