.content-table .btn-calc {
    margin: 40px 0;
}

.pure-table {
    empty-cells: show;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.content-table .table-imc {
    display: table;
}

.pure-table tr:nth-child(even) {
    background-color: #fff;
}

.pure-table td, .pure-table th {
    overflow: visible;
    padding: .7em;
}

input{
    width: 40%;
}

.classificacao label {
    background-color: #7777772e;
    color: #777;
    border-radius: 10px;
    padding: 0px 20px;
}

.pure-table thead {
    background: #0079c1;
    color: #fff;
    font-size: 20px;
    font-family: "oswald-light";
}

.pure-table tbody {
    font-family: "PT Serif", sans-serif;
    font-size: 20px;
    color: #858585;
    border: 1px solid #cbcbcb;
    border-top: 0;
}

.pure-table tbody tr {
    background-color: #EEEEEE;
}

.pure-table .active {
    color: #0079c1;
}

.pure-table .active .classificacao label {
    background-color: #0079c1;
    color: #fff;
}

.fa.icone {
    font-size: 46px;
    color: #0079c1;
    opacity: 1;
    animation: desliza 1500ms ease infinite;
    float: right;
    margin-right: 20px;
    display: none;
}

@keyframes desliza {
    to {
        opacity: 0.1;
        transform: scale(0.85) translateX(20px);
    }
}

@media only screen and (max-width: 467px) {
    .fa.icone {
        display: block;
    }
}