.status-page .status {
    font-size: 13px;
}

.status-page .status span {
    left: 20px;
    position: relative;
    color: rgb(80, 87, 91);
    /*text-decoration: none;*/
}

.status-page .status span:hover {
    /*text-decoration: underline;*/
}

.status-page .status span:before {
    height: 13px;
    width: 13px;
    content: '';
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.status-page .state-none:before, .status-page .state-maintenance:before {
    background-color: rgb(112,191,115);
}

.status-page .state-minor:before, .status-page .state-major:before {
    background-color: rgb(250,185,81);
}

.status-page .state-critical:before {
    background-color: rgb(209,83,83);
}

.status-page .state-unknown:before {
    background-color: rgb(176,190,197);
}
