@charset "utf-8";

* {
  box-sizing: border-box;
}

.num-table > .row > .col {
    margin: 5px;
    display: inline-block;
    width: 80px;
    height: 80px;

    background-color: #D5FFE9;
    border-radius: 5px;
    border: 4px solid white;
}

.num-table > .row > .col > span {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 80px;
    text-align: center;
    font-size: 2.0rem;
}

.num-table > .row > .col.-boderonly {
    background-color: white;
    color: white;
    border: 4px solid #D5FFE9;
}

.num-table > .row > .col.-failed {
    background-color: #FFE3F2;
}