/* Strawman app css - some styling elements for app components outside of mega css files */
.wreath-background {
    background-image: url("/member/images/wreath.svg");
    background-repeat: no-repeat;
    /*background-size: 250px;*/
    /*height: 300px;*/
    background-size: 100% 100%;
    background-position: center;
}

.blue-background {
    background-color: #EEF0FF;
}

.blurred {
    filter: blur(6px);
}

.dot-separator {
    font-size: 0.3em;
}

.positive-return-color {
    background-color: #E7FFCE;
    color: #4BB313;
    border-radius: 10px;
}
.nagetive-return-color {
    background-color: #FFEBDF;
    color: #FF5D5D;
    border-radius: 10px;
}

.bg-gold {
    background-color: #ffcb36;
}

.bg-silver {
    background-color: #99acb8;
    color: #ffffff;
}

.bg-bronze {
    background-color: #bc752e;
    color: #ffffff;
}

.rounded-left-only {
    border-top-left-radius: 0.3em;
    border-bottom-left-radius: 0.3em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
