.covid-title {
    color: #a3a3a3;
    font-size: 12px;
    text-transform: uppercase;
}

.covid-box {
    background: #e1e1e1;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    border-radius: 16px;
    transition: background 0.4s ease-in;
}

.covid-box:hover {
    background: #eeeeee;
}

.covid-box p {
    font-size: 14px;
    font-weight: bold;
    color: #a4a4a4;
}

.covid-box span {
    font-size: 22px;
    font-weight: bold;
}

span.infected-num {
    color: #D35B53;
}

span.recovered-num {
    color: #4FC980;
}

span.dead-num {
    color: #565555;
}

.covid-left-half {
    float: left;
    width: 50%;
    text-align: right;
    height: 50px;
    display: table;
}

.covid-left-half p {
    display: table-cell;
    vertical-align: middle;
    padding-right: 4px;
}

.covid-right-half span {
    display: table-cell;
    vertical-align: middle;
    padding-left: 4px;
}

.covid-right-half {
    float: right;
    width: 50%;
    text-align: left;
    height: 50px;
    display: table;
}

.covid-link {
    margin-top: 20px;
    text-align: center;
}

.covid-link a {
    color: #828282;
    transition: color 0.3s ease-in;
    font-size: 12px;
}

.covid-link a:hover {
    color: #606060;
}
