body {
    .filter-divider {
        font-size: 0.8rem;
        font-weight: bold;
        width: 40px;
        height: 40px;
        background-color: var(--bs-primary);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50rem;
    }

    .businessSearch {
        a.searchLink {
            color: var(--bs-text-color) !important;
            text-decoration: underline !important;
            opacity: 0.75;

            &:hover {
                color: var(--bs-tertiary-darken) !important;
            }
        }
    }

    .swiper {
        padding: 15px;
        margin: -15px;
        @media (min-width: 768px) {
            padding: 30px;
            margin: -30px;
        }

        .swiper-pagination {
            position: relative;
            bottom: 0;
            text-align: center;

            .swiper-pagination-bullet {
                background: var(--bs-text-color);
            }

            .swiper-pagination-bullet-active {
                background: var(--bs-tertiary);
            }
        }
    }


    .topNews-slider-item {
        border-radius: 40px;
        text-align: center;
        outline: none;
        transition: 0.3s;
        position: relative;
        z-index: -2;

        &:hover {
            box-shadow: 0 20px 45px 0 rgba(var(--bs-text-color-rgb), 0.1);
            transform: translateY(-10px);
        }
    }

    .topNews-slider-item-body {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .topNews-slider-item-overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 39px;
        z-index: -1;
        background: linear-gradient(to bottom, rgba(var(--bs-secondary-rgb), 0), rgba(var(--bs-secondary-rgb), 0.9));
    }

    .topNews-slider-item-title {
        font-weight: 800;
        margin-bottom: 0.5rem;
        z-index: 1;
        position: relative;
    }

    .topNews-slider-item-text {
        position: relative;
        font-size: 0.9rem;
        line-height: 1.2;
        height: calc(1.2 * 0.9rem * 2);
        -webkit-line-clamp: 2;
        overflow: hidden;
        -webkit-box-orient: vertical;
        display: block;
        display: -webkit-box;
        text-overflow: ellipsis;
        word-break: break-word;
    }

    .practicalInfos-btn {
        background-color: rgba(var(--bs-text-color-rgb), 0.1);
        border-radius: 50rem;
        padding: 10px 20px;
        outline: none;
        transition: 0.3s;
        position: relative;

        &:hover {
            /*box-shadow: 0 20px 45px 0 rgba(255, 255, 255, 0.1);*/
            background-color: rgba(var(--bs-text-color-rgb), 0.15);
            transform: translateX(10px);
        }
    }

    .practicalInfos-btn-title {
        font-weight: 800;
    }

    .practicalInfos-btn-text {
        font-size: 0.9rem;
        opacity: 0.8;
    }
}

