@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #701014 !important;
}

.filters {
    padding: 30px;
    margin: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    background: #701014;
    box-shadow: rgba(0, 0, 0, 0.54) 0px 3px 8px;
    border-radius: 10px;
}

.filters li {
    list-style-type: none;
    align-items: center;
    border-radius: 5px;
    display: flex;
    overflow: hidden;
    border: 2px solid white;
    cursor: pointer;
    color: white;
}

.filters li label {
    cursor: pointer;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
}

.filters li input {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.item-wrapper {
    padding: 20px 0;
}

.item-wrapper .item {
    padding: 0 0 10px;
}

.item,
.child-item {
    width: 100%;
    border-radius: 10px;
}
.title-search-kelas {
    color: white;
    font-size: 30px;
    text-align: center;
}

/* RESPONSIVE */
/* PHONE */
@media only screen and (max-width: 767.98px) {
    .container {
        padding-bottom: 15% !important;
    }
    .filters li input {
        outline: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .filters li label {
        font-size: 15px;
    }
}
