/**
 * @author: Yoann Le Crom <yoann.lecrom@abstractive.fr>
 */

.BulletTag {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    width: 2rem;
    height: 2rem;
    margin: 0 .1rem;
    font-family: 'Monserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(142, 142, 142, .4);
}

.BulletTag img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.BulletTag--important {
    background: var(--important-color);
}

.BulletTag--smallText {
    font-size: .9rem;
    padding-top: .175rem;
}
