@media (min-width: 1200px) {
    .table-100vw {
        min-width: 96vw;
        transform: translateX(calc((1120px - 96vw)/2));
    }
}

.icon {
    display: inline-block;
    height: 21px;
    width:21px;
    border-radius: 50%;
    vertical-align: bottom;
    position: relative;
}

.icon--approve {
    background: green;
}

.icon--approve::after {
    width: 11px;
    height: 6px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(-45deg) translateX(-1px) translateY(-7px);
}

.icon--unapprove {
    background: red;
}

.icon--unapprove::before,
.icon--unapprove::after {
    width: 11px;
    border-bottom: 2px solid white;
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
}

.icon--unapprove::after {
    transform: rotate(-45deg) translateX(-3px) translateY(-5px);
}

.icon--unapprove::before {
    transform: rotate(45deg) translateX(-5px) translateY(3px);
}

.cursor-pointer {
    cursor: pointer;
}