.course {
    height: 415px;
    background: rgba(255, 255, 255, 1);
    width: 290px;
    border-radius: 18px;
}

.directions-block {
    display: flex;
    flex-wrap: wrap;
}

.direction {
    padding: 15px 25px;
    border: 1px solid rgba(217, 224, 233, 1);
    border-radius: 12px;
    margin: 5px;
}

.courses-block {
    display: flex;
    flex-wrap: wrap;
}

.course {
    margin: 15px;
}

.course>img {
    height: 97px;
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}

.course-text {
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 18px;
    color: #000;
    font-feature-settings: 'case' on;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 106px;
    overflow: hidden;
}

.course-buy-block {
    display: flex;
    justify-content: space-between;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 23px;
}


.course-header {
    margin-right: 30px;
    margin-left: 30px;
    height: 85px;
    color: #000;
    font-feature-settings: 'case' on;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.course-direction {
    margin-right: 30px;
    margin-left: 30px;
    color: #A3A3A3;
    font-feature-settings: 'case' on;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 24px;
    margin-bottom: 8px;
}

.content-block {
    display: flex;
}

.filter-header {
    margin-bottom: 17px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.filter-unit {
    display: flex;
    flex-direction: column;
    width: 300px;
    border-bottom: 1px solid rgba(217, 224, 233, 1);
    padding: 50px 0;
}

.course-time {
    color: #A3A3A3;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 216.667% */
}

.course-buy {
    color: #648CFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 0 13px;
    border: 1px solid #648CFF;
    border-radius: 16px;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    margin-bottom: 7px;
    margin-top: 7px;
}

.custom-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

@media (max-width: 928px) {
    .filter-block {
        display: none;
    }

    .courses-block {
        justify-content: center;
    }

}
