html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

.flex-dangerous-situations {
    display: flex;
    width: 260px;
    padding-right: 20px;
    padding-top: 10px;
    flex-direction: row;
    padding-bottom: 10px;
}

.grow-dangerous {
    flex-grow: 1;
}
/****************************RED*******************************/
.color-red {
    background-color: rgb(228, 73, 73);
    width: 9px;
    display: inline-block;
}

.height-red-one {
    height: 30px;
}

.height-red-two {
    height: 20px;
}

.height-red-three {
    height: 10px;
}

.text-red {
    padding-top: 10px;
    padding-right: 10px;
    font-weight: 700;
    font-size: large;
    color: rgb(228, 73, 73);
}

/***************************ORANGE********************************/
.color-orange {
    background-color: rgba(241, 131, 53, 0.247);
    width: 9px;
    display: inline-block;
}

.height-orange-one {
    height: 30px;
    border: 1px solid rgb(241, 131, 53);
}

.height-orange-two {
    height: 20px;
    background-color: rgb(241, 131, 53);
}

.height-orange-three {
    height: 10px;
    background-color: rgb(241, 131, 53);
}

.text-orange {
    padding-top: 10px;
    padding-right: 10px;
    font-weight: 700;
    font-size: large;
    color: rgb(241, 131, 53);
}

/********************************GREEN********************************/
.color-green {
    background-color: #31d20052;
    width: 9px;
    display: inline-block;
}

.height-green-one {
    height: 30px;
    border: 1px solid #30d200;
}

.height-green-two {
    height: 20px;
    border: 1px solid #30d200;
}

.height-green-three {
    height: 10px;
    background-color: #30d200;
}

.text-green {
    padding-top: 10px;
    padding-right: 10px;
    font-weight: 700;
    font-size: large;
    color: #30d200;
}