/*to use global variables, import them into your component stylesheet*/
@import '../../../styles/global.scss';

.graph-card__container {
    display: flex;
    flex-direction: column;
    background: $white;
    border: 1px solid $grey-light;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 10px 12px;
}

.graph-title {
    font-size: 15px;
    font-weight: 600;
    color: $black;
    margin: 0;
    display: flex;
    align-items: center;
    font-family: $body-font, -apple-system, "Helvetica Neue", "Arial", sans-serif;
    letter-spacing: 0.05rem;

}

.graph-info-subtitle__icon {
    opacity: 0.5;
    transition: opacity 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38);
    cursor: pointer;
    line-height: 1;
    margin: 0.5rem;
    color: $grey-dark;
}

.graph-info-subtitle__icon .material-icons {
    font-size: 14px;
}

.graph-info-subtitle__icon:hover {
    opacity: 1;
}
