@charset "UTF-8";

@media (max-width: 767px) {
    .lg-tags {
        display: none;
    }
}

@media (min-width: 768px) {
    .lg-tags {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 60px 0 0 -16px;
    }
}

.lg-tag {
    font-size: 1.125rem;
    line-height: 2.375rem;
    height: 40px;
    background: #FFFFFF;
    font-weight: 600;
    color: #E1312F;
    border: solid 1px #D8D8D8;
    margin: 0 0 24px 20px;
    padding: 0 24px;
}

.lg-tag__hash {
    font-weight: 700;
    color: #333333;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.lg-tag:hover {
    background: #E1312F;
    color: #FFFFFF;
    border: solid 1px #E1312F;
}

.lg-tag:hover .lg-tag__hash {
    color: #FFFFFF;
}