.loader {
    animation: l1 1s linear infinite alternate;
    font-family: sans-serif;
    font-size: 30px;
    font-weight: 700
}

.loader:before {
    content: "Loading..."
}

.json-table {
    display: none;
  width:100;
}

.table {
    width: 100%
}

.custom_header {
    margin-top: 20px;
    align-items: center;
    display: flex;
    font-size: 20px;
    justify-content: space-between
}

.custom_header span.opt1 {
    width: 65%;
}

.custom_header span.opt2 {
    width: 35%;
}

table {
    border-collapse: collapse;
    margin-bottom: 20px;
    width: 100%
}

td,th {
    border-bottom: 1px solid #ddd;
    padding: 12px;
    text-align: left
}

th {
    background-color: #f2f2f2
}

tr:hover {
    background-color: #f5f5f5
}

tr:nth-child(2n) {
    background-color: #f9f9f9
}

tr:nth-child(odd) {
    background-color: #fff
}

table thead th {
    background: #e1b823;
    color: #fff
}

caption.caption {
    margin-top: 10px
}

.json_data_table h3,caption.caption {
    margin-bottom: 10px;
}

@keyframes l1 {
    to {
        opacity: 0
    }
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
  }

  }