.block-course-search {
    margin-bottom: 70px;
}

.block-course-search .section-title {
    margin-bottom: 50px;
    text-align: center;
}

@media (max-width:767.98px) {
    .block-course-search .section-title {
        margin-bottom: 24px;
    }
}

.block-course-search .section-title>* {
    margin-bottom: 0;
}

.block-course-search form {
    margin-bottom: 35px;
    justify-content: center;
}

@media (max-width:767.98px) {
    .block-course-search form {
        margin-bottom: 50px;
    }
}

.block-course-search form select {
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
    padding: 12px 40px 12px 16px;
    cursor: pointer;
    border: 1px solid #7b7b7b;
    border-radius: 5px;
    background-color: #fff;
    background-image: url(../src/images/expand.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) 50%;
    background-size: 12px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.block-course-search form a.btn,
.block-course-search form button.btn {
    width: auto;
    margin: 0.3rem;
    margin-bottom: 0.5rem;
    padding: 1rem 1.2rem;
    font-size: 14px;
}

.block-course-search .btn-container {
    text-align: center;
}

.block-course-search .btn-container a.btn {
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width:575.98px) {
    .block-course-search .btn-container a.btn {
        width: 100%;
        margin-top: 20px;
    }
}

.btn--selected {
    background-color: #5500fc;
    color: #fff;
}

.btn--selected:before {
    background-color: #fff;
}

.btn--selected:focus {
    background-color: #5500fc;
    color: #fff;
}



[tips] .tooltip {
    position: fixed;
    max-width: 600px;
    z-index: 999999;
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
    background: white;
    border: 1px solid #ccc;
    visibility: hidden;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition:
        opacity 0.3s,
        visiblity 0s;
    font-weight: 400;
    color: #333;
}

[tips]:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.block-chips-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}