.list-items li {

    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    list-style-type: none;
}

.list-items li::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #e32845;
    border-radius: 50%;
    top: 7px;
    left: 15px;
}

/*  Responsive Table */
.responsive-table {
    li {
        border-radius: 3px;
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .table-header {
        background-color: #E8E8E8;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .table-row {
        background-color: #ffffff;
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    }

    .col-1 {
        flex-basis: 25%;
    }

    .col-2 {
        flex-basis: 20%;
    }

    .col-3 {
        flex-basis: 30%;
    }

    .col-4 {
        flex-basis: 25%;
    }

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

        .table-row {
            padding: 15px;
        }

        li {
            display: block;
        }

        .col {

            flex-basis: 100%;

        }

        .col {
            display: flex;
            padding: 10px 0;
            width: 100%;

            &:before {
                color: #6C7A89;
                padding-right: 10px;
                content: attr(data-label);
                flex-basis: 50%;
                text-align: right;
            }
        }
    }
}