.TopCountryItem {
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    padding: .8rem;

    &:first-child {
        border-top: 1px solid var(--gray-200);
    }

    &-content {
        line-height: 1.6;
        max-width: 40%;
        padding-left: .5rem;
    }

    &-position {
        color: var(--gray-400);
        line-height: 2;
        width: 1.75rem;
    }

    &-title {
        font-size: 1.2rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    &-additional {
        color: var(--gray-400);
        font-size: 10px;
    }

    &-value {
        font-size: 1.2rem;
        margin-left: auto;
        margin-right: 3rem;
    }

    &-3col {
        padding: .8rem 0;

        .TopCountryItem-position {
            padding-left: .5rem;
            width: 2.25rem;
        }
        .TopCountryItem-progress-container {
            padding-right: 0;
        }
    }

    &-3col,
    &-4col {
        .TopCountryItem-value {
            margin-right: 1rem;
        }
    }

    &-4col {
        .TopCountryItem-progress-container {
            width: 40%;
        }
    }

    &-progress-container {
        line-height: 2;
        max-width: 15rem;
        padding-right: .5rem;
        text-align: right;
        width: 30%;
    }

    &-highlighted {
        font-weight: bold;
        border-bottom: 5px solid var(--gray-200);

        &:first-child {
            border-top: 5px solid var(--gray-200);
        }
    }

    @media print {
        abbr {
            text-decoration: none;

            &[title]::after {
                content: none;
            }
        }
    }
}
