#tariffs-wrap {
    margin-top: 20px;
    margin-bottom: 50px;
    .item-container {
        display: flex;
        list-style: none;
        padding: 0 100px 20px 50px;
    }

    .export-files-container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .header {
        font-weight: bold;
    }
    .item-left {
        flex: 1 1 100%;
    }
    .item-right {
        flex: 1 1 100%;
        text-align: right;
    }

    .label-for-mobile {
        font-weight: bold;
        display: none;
    }

    @media(max-width: 767px) {
        .header {
            display: none;
        }

        .direction {
            font-weight: bold;
        }

        .item-container {
            flex-direction: column;
            padding: 0 0 20px 0;
        }

        .item-center {
            text-align: left;
        }

        .item-right {
            text-align: left;
        }

        .label-for-mobile {
            display: unset;
        }
    }
}