#standard-life-stats {
    padding: 0px;
}

.character-state,
.character-skill {
    width: 115px;
    background: rgba(168, 163, 152, 0.49);
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 7px;
    margin-left: 7px;
    position: relative;

    .skill-bonus {
        font-size: 2.5em;
        font-weight: bold;
        border-bottom: 1px solid rgba(0, 0, 0, .2);

        .skill-number {
            display: inline-block;

            span {
                font-weight: normal;
                font-size: 0.5em;
            }
        }
    }

    .skill-description {
        label {
            font-weight: bold;
        }

        img {
            width: auto;
            height: 35px;
        }
    }

    .primary-skill {
        position: absolute;
        width: 20px;
        left: 10px;
    }


    .saving-skill {
        position: absolute;
        width: 20px;
        right: 10px;
    }
}

.character-state {

    width: 100%;
    margin: auto auto 15px;
    padding-right: 10px;

    .row {
        text-align: center;
        width: 100%;
        margin-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .2);
    }

    .skill-bonus {
        padding-right: 0;
        border-bottom: none;

        .temp-life {
            color: rgba(58, 208, 222, 1);
        }
    }

    .skill-description {

        text-align: center;

        img {
            position: relative;
            bottom: -0.8em;
        }

    }
}


@media screen and (max-width: 360px) {
    .character-skill {
        margin-right: 2px;
        margin-left: 2px;
    }
}

@media screen and (max-width: 992px) {
    .character-state {
        width: 200px;
        display: inline-grid;
        margin-bottom: 15px;
        margin-right: 7px;
    }

    .character-state:last-of-type {
        margin-right: 0;
    }
}