* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

a {
    text-decoration: none;
    color: #039be5;
}

main {
    flex: 1;
    color: #666;
    background: #eee;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

h5 {
    margin: 2rem 0;
    font-size: 1.64rem;
    line-height: 110%;
    font-weight: 400;
}

.light-blue-text {
    color: #03a9f4 !important;
}

.table-wrapper {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    background-color: #fafafa;
    float: left;
    margin: 0 2px 5px 2px;
    border: 1px solid #dadada;
}

.table-wrapper table {

    width: 100%;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;

}

tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

td,
th {
    padding: 15px 5px;
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    border-radius: 2px;
}

.table-wrapper table tbody td {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

@media (max-width: 750px) {
    .container {
        width: 100%;
        overflow: hidden;
    }

    html {
        font-size: 12px;
    }

    h5 {
        font-size: 1.2rem;
        margin: 1rem;
    }

    .table-wrapper {
        border: 0;
        padding: 0;
    }

    main table tbody td {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
        display: block;
        padding-left: 5.5rem;
    }

    main table thead {
        display: none;
    }
}