.el-tables tr td:first-child {
    padding-left: 1rem;
}
.el-tables tr td:last-child {
    padding-right: 1rem;
}
.el-tables td {
    padding: 0.5rem 0;
}
.el-tables tr {
    border-bottom: 1px solid #eaeaea;
}
.el-tables tr:last-child {
    border-bottom: none;
}

@media (max-width: 767px) {
    /* HORIZONTALER SCROLL */
    .el-tables.scroll .el-tables__wrapper {
        overflow-y: scroll;
    }

    .el-tables.scroll .el-tables__wrapper table {
        min-width: 600px;
    }

    .el-tables.scroll .el-tables__wrapper-outer {
        position: relative;
    }

    .el-tables.scroll .el-tables__wrapper-outer:before,
    .el-tables.firstRowFixed .el-tables__wrapper-outer:before {
        font-family: "bakehouse-iconset";
        line-height: 1;
        letter-spacing: 0;
        animation: table-overflow-outer 2s infinite;
        text-align: center;
        line-height: 40px;
        font-size: 22px;
        content: "\e9a2";
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 10;
        background-color: #6fa1a9;
        color: #fff;
        border-radius: 50%;
        transition: all 0.5s;
    }
    .el-tables.scroll .el-tables__wrapper-outer:after {
        content: "";
        display: block;
        width: 50px;
        height: 100%;
        position: absolute;
        right: 0px;
        margin-right: -1px;
        top: 0;
        z-index: 9;
        background: -moz-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%
        );
        background: -webkit-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%
        );
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%
        );
        transition: all 0.5s;
    }
    .el-tables.scroll
        .el-tables__wrapper-outer[data-scrollstate="onmyway"]:after,
    .el-tables.scroll
        .el-tables__wrapper-outer[data-scrollstate="onmyway"]:before {
        opacity: 0;
        animation: none;
    }
    @keyframes table-overflow-outer {
        0% {
            right: 0;
            opacity: 1;
        }
        100% {
            right: 20px;
            opacity: 0;
        }
    }

    /* REORDERED TABLE */
    .el-tables.reorder .el-tables__name {
        border-bottom: 1px solid #eaeaea;
        font-weight: bold;
        text-transform: uppercase;
    }

    .el-tables.reorder .el-tables__key,
    .el-tables.reorder .el-tables__value {
        float: left;
        width: 50%;
        box-sizing: border-box;
    }

    .el-tables.reorder .el-tables__row {
        margin-bottom: 20px;
    }

    .el-tables.reorder .el-tables__row:after {
        content: ".";
        clear: both;
        display: block;
        visibility: hidden;
        height: 0px;
    }

    /* FIXED FIRST ROW TABLE */
    .el-tables.firstRowFixed {
        position: relative;
    }

    .el-tables.firstRowFixed td:first-child {
        position: absolute;
        width: 130px;
        left: 0;
        padding-left: 0px;
        box-sizing: border-box;
    }
    .el-tables.firstRowFixed td:nth-child(2) {
        padding-left: 20px;
    }

    .el-tables.firstRowFixed td {
        white-space: nowrap;
    }

    .el-tables.firstRowFixed .el-tables__wrapper-outer {
        display: block;
        overflow-x: scroll;
    }
    .el-tables.firstRowFixed .el-tables__wrapper:after {
        content: "";
        display: block;
        width: 30px;
        height: 100%;
        position: absolute;
        left: 0px;
        margin-right: -1px;
        top: 0;
        z-index: 9;
        background: -moz-linear-gradient(
            left,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%
        );
        background: -webkit-linear-gradient(
            left,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%
        );
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%
        );
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
        transition: all 0.5s;
    }

    .el-tables.firstRowFixed
        .el-tables__wrapper-outer[data-scrollstate="onmyway"]:before {
        opacity: 0;
        animation: none;
        display: none;
    }

    .el-tables.firstRowFixed .el-tables__wrapper-outer,
    .el-tables.firstRowFixed .el-tables__wrapper:after {
        margin-left: 130px;
    }
}
