.percent-card {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 24px;
    height: 100%;
    background-color: #fff;
}

.percent-card-title {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #484d54;
}

.percent-result {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(95, 106, 245, 0.12);
    border-radius: 5px;
    background-color: rgba(95, 106, 245, 0.07);
    color: #5f6af5;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 575px) {
    .percent-card {
        padding: 16px;
    }

    .percent-card-title {
        font-size: 16px;
    }

    .percent-result {
        font-size: 14px;
    }
}