

label.price-value {
    font-family: 'sans-serif';
    font-weight: 800;
    font-size: 1.375rem;
}

.hero-card {
    width: 100%;
    position: relative;
}

.hero-card .hero-card-header {
    width: 100%;
    position: absolute;
    top: 0.75rem;
    left: 0;
    background: rgba(67, 56, 46, 0.5);
}

.hero-card .hero-card-header .hero-name {
    font-family: 'IM Fell Double Pica', serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    padding-left: 0.25rem;
}

.hero-card .hero-card-header .hero-id {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    padding: 0.25rem 0.25rem 0 0;
    line-height: 1.5;
    background: #1D591F;
    display: inline-block;
    height: 24px;
    margin-left: 12px;
    position: relative;
    width: auto;
}

.hero-card .hero-card-header .hero-id:before {
    border-right: 12px solid #1D591F;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    content: "";
    height: 0;
    top: 0;
    position: absolute;
    left: -12px;
    width: 0;
}

.hero-card .hero-card-image,
.hero-card .hero-card-image img {
    width: 100%;
}
.hero-card .hero-card-footer {
    width: 100%;
    position: relative;
    background-color: #43382E;
    padding: 0.5rem;
    text-align: center;
}

.hero-card .hero-card-footer .icon {
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url('../images/icons/hero-green.png');
    background-size: 100%;
}

.hero-card .hero-card-footer .power {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    display: inline-block;
    background-image: url('../images/icons/hero-star.png');
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 12px;
    margin-left: 1rem;
}

.hero-card.red .hero-card-header .hero-id{
    background: #A90404;    
}
.hero-card.red .hero-card-header .hero-id:before {
    border-right: 12px solid #A90404;
}
.hero-card.red .hero-card-footer .icon {
    background-image: url('../images/icons/hero-red.png');
}

.hero-card.green .hero-card-header .hero-id{
    background: #1D591F;    
}
.hero-card.green .hero-card-header .hero-id:before {
    border-right: 12px solid #1D591F;    
}
.hero-card.green .hero-card-footer .icon {
    background-image: url('../images/icons/hero-green.png');    
}

.hero-card.purple .hero-card-header .hero-id{
    background: #5E2677;    
}
.hero-card.purple .hero-card-header .hero-id:before{
    border-right: 12px solid #5E2677;
}
.hero-card.purple .hero-card-footer .icon{
    background-image: url('../images/icons/hero-purple.png');
}

.hero-card.brown .hero-card-header .hero-id{
    background: #593F2E;
}
.hero-card.brown .hero-card-header .hero-id:before{
    border-right: 12px solid #593F2E;
}
.hero-card.brown .hero-card-footer .icon{
    background-image: url('../images/icons/hero-brown.png');
}

.hero-card.orange .hero-card-header .hero-id{
    background: #C77220;
}
.hero-card.orange .hero-card-header .hero-id:before{
    border-right: 12px solid #C77220;
}
.hero-card.orange .hero-card-footer .icon{
    background-image: url('../images/icons/hero-orange.png');
}

.hero-card.yellow .hero-card-header .hero-id{
    background: #C59F1B;
}
.hero-card.yellow .hero-card-header .hero-id:before{
    border-right: 12px solid #C59F1B;
}
.hero-card.yellow .hero-card-footer .icon{
    background-image: url('../images/icons/hero-yellow.png');
}

@media (min-width: 1400px) {
    label.price-value {
        font-size: 1.5rem;
    }
    .hero-card .hero-card-header .hero-name {
        padding-left: 0.5rem;
    }
    .hero-card .hero-card-footer {
        padding: 0.625rem;
    }
    .hero-card .hero-card-footer .icon {
        left: 1rem;
        width: 3rem;
        height: 3rem;
    }
    .hero-card .hero-card-footer .power {
        margin-left: 0;
        font-size: 1rem;
    }
}