.bop-filter-container {
    display: flex;
    justify-content: center;
    color: #273B76;
    font: 700 14px / 18px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
    text-transform: none;
    white-space: nowrap;
    flex-wrap: wrap;
    gap: 10px;
}

.bop-filter-item.bop-filter-item-act {
    color: #BE003C;
}

.bop-filter-container > div {
    margin-right: 25px;
    cursor: pointer;
}

.data-result {
    display: flex;
    padding: 20px;
    width: 100%;
    min-height: 525px;
}

.practice-container {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
    background: #F6F6F6;
    display: flex;
    flex-direction: column;
}

.practice-thumbnail-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.practice-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: all .3s;
    height: 100%;
}

.practice-thumbnail-container:hover .practice-thumbnail {
    transform: scale(1.2);
    z-index: 1;
}

.practice-thumbnail-hover {
    position: absolute;
    background: #0569B100;
    width: 100%;
    height: 100%;
    transition: all .3s;
    z-index: 2;
}

.practice-thumbnail-container:hover .practice-thumbnail-hover {
    background: #0569B180;
}

.practice-thumbnail-plus-container {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s;
    z-index: 2;
}

.practice-thumbnail-container:hover .practice-thumbnail-plus-container {
    opacity: 1;
}


.practice-thumbnail-plus {
    border-color: #0468b1;
    background-color: #0468b1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.practice-content {
    padding: 30px;
}

.practice-content h3 {
    color: #20356E !important;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
    font: normal 700 24px "Poppins", "Helvetica", "sans-serif";

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

    height: 55px;
    line-height: 1.2;


    @supports (-webkit-line-clamp: 2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.practice-content h3 a {
    text-decoration: none;
    color: #20356E !important;
    text-transform: uppercase;
}


.practice-sector {
    font: normal 400 13px "Montserrat", "Helvetica", "sans-serif";
    color: #BE003C;
    margin-bottom: 10px;
    height: 15px;
}

.practice-description {
    color: #34383B;
    font: normal 400 16px "Montserrat", "Helvetica", "sans-serif";
    margin-bottom: 20px;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 40px;


    @supports (-webkit-line-clamp: 2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.practice-button {
    border-color: #20356E;
    background: #20356E;
    color: #FFFFFF;
    text-decoration: none;
    font: normal bolder 13px "Poppins", "Helvetica", "sans-serif";
    padding: 10px 20px;
}


/* Slider */

.switch {
    position: relative;
    display: inline-block;
    width: 19px;
    height: 7px;
    flex-basis: 19px;
    min-width: 19px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .8) 100%);
    background-color: #0468b1;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 9px;
    width: 9px;
    left: 0;
    bottom: -1px;
    background-color: #0468b1;
    -webkit-transition: .4s;
    transition: .4s;
}


input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(11px);
    -ms-transform: translateX(11px);
    transform: translateX(11px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* end of slider */


.sort-by-date {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sort-by-date svg {
    width: 16px;
    color: #0468b1;
    fill: #0468b1;
}

.sort-by-direction {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sort-by-direction svg {
    width: 16px;
    color: #0468b1;
    fill: #0468b1;
}

.data-result > div {
    margin-bottom: 30px;
}
