#kelas-container {
    grid-gap: 10px;
}

.kelas {
    padding: 10px;
    background: white;
    color: black;
}

.kelas-hover {
    background-color: #37AC9C;
}


.kelas h3 {
    margin: 10px 0px 0px 0px;
    display: block;
    padding: 10px;
    text-align: center;
    background-color: #f1f1f1;
    font-size: 10px;
}

.kelas h4 {
    margin: 10px 0px 10px 0px;
    display: block;
    font-size: 16px;
    font-weight: 400;
}


.kelas .chapter {
    font-size: 13px;
}

.kelas .harga {
    color: red;
    align-items: flex-end;
}

.kelas .harga li:nth-child(1) {
    margin-right: 10px;
}

.kelas .harga li:nth-child(2) {
    font-size: 12px;
    text-decoration: line-through;
}

.tombol-kelas {
    text-align: center;
    align-items: center;
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.tombol-lihat {
    background-color: #EE4A62;
}

.tombol-lihat:hover,
.tombol-lihat:focus {
    background-color: #d2223c;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.tombol-pesan {
    background-color: #007dfa;
}


.tombol-pesan:hover,
.tombol-pesan:focus {
    background-color: #10467c;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.tombol-lihat:hover,
.tombol-pesan:hover {
    transform: translateY(-1px);
}

.tombol-lihat:active,
.tombol-pesan:active {
    background-color: #c85000;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

.tombol-container {
    grid-template-columns: 1fr 1fr;
}


@media (max-width: 740px) {}

@media (min-width: 741px) {
    #kelas-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

}

@media (min-width: 992px) {}