.result_container {
    position: absolute;
    background-color: #ffcb7b;
    width: 85%;
    height: 86%;
    top: 7%;
    bottom: 7%;
    right: 7.5%;
    outline: 6px ridge darkgoldenrod;
}

.result_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 87.5px;
    font-size: 27.5px;
}

.calculation_container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 87.5px);
} 

.stat_div_first {
    position: relative;
    display: inline-block;
    width: 90%;
    min-height: 62.5px;
    height: 15%;
}

.stat_div {
    position: relative;
    display: inline-block;
    width: 90%;
    min-height: 62.5px;
    height: 15%;
}

.stat_div_last {
    position: relative;
    display: inline-block;
    width: 90%;
    min-height: 62.5px;
    height: 15%;
    margin-top: 20%;
}

.stat_pic {
    display: inline-block;
    position: absolute;
    width: 62.5px;
    height: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
}

.stat_pic_dps {
    display: inline-block;
    position: absolute;
    width: 62.5px;
    height: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 150%;
}

.stat_text {
    display: inline-flex;
    align-items: center;
    position: absolute;
    width: calc(100% - 62.5px);
    left: 62.5px;
    height: 50%;
    font-size: 17.5px;
}

.stat_bar_container {
    position: absolute;
    top: 55%;
    width: 100%;
    height: 30%;
    background-color: bisque;
    border-radius: 25px;
    border: 1px solid black;
}

.stat_bar {
    width: 5%;
    height: 100%;
    border-radius: 25px;
    border-right: 2px solid darkgray;
}

.stat_bar_speed {
    width: 60%;
    height: 100%;
    border-radius: 25px;
    border-right: 2px solid darkgray;
}


@media (max-width: 1012.5px) {
    .result_container {
        outline: 4px ridge darkgoldenrod;
        width: 90%;
        right: 5%;
    } .result_title {
        display: none;
    } .calculation_container {
        height: 100%;
        width: 97%;
        flex-wrap: wrap;
        flex-direction: row;
    } .stat_div_first, .stat_div {
        flex: 48%;
        min-height: 40px;
        height: 40px;
        margin-left: 2%;
    } .stat_pic {
        width: 40px;
    } .stat_text {
        left: 40px;
        width: calc(100% - 40px);
        font-size: 16px;
    } .stat_div_last {
        min-height: 40px;
        height: 40px;
        margin: 0;
    } .stat_pic_dps {
        width: 40px;
    }
}

