.table {
    width: 75%;
    border-collapse: collapse;
    margin:auto;
    font-family: 'Prompt', sans-serif;
}

.table td,
.table th {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.table th {
    background-color: #92c9e6;
    color: #ffffff;
}
/*
.table tbody tr:nth-child(even) {
    background-color: #d1e8f5;
}  */

/*responsive*/

@media (max-width: 500px) {
    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
        border: none;
        text-align:center;
        font-size:95%;
    }
    .table tr {
        margin-bottom: 15px;
    }
    .table td {
        padding-left: 35%;
        text-align: left;
        position: relative;
    }
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 30%;
        padding-left: 15px;
         padding-bottom: 15px;
         line-height: normal; 
        font-size: 13px;
        font-weight: bold;
        text-align: left;
        color:  #f3525a;
    }
    .table tbody tr:nth-child(even) {
    background-color: #d1e8f5;
}
}








