.filter-list {
    display: flex;
    justify-content: center;

    li {
        width: 100%;

        .accordion-button {
            width: 100%;
            display: block;
            text-align: center;
            justify-content: center;
            border: 1px solid #ccc;
            padding: 1em;
            color: var(--secondry-color);
            font-weight: 700;

            svg {
                color: var(--primary-color);
                margin-right: 5px;
            }
        }

        .accordion-button[aria-expanded="true"] {
            background-image: linear-gradient(180deg, #078243D6 0%, #002B68B3 100%);
            color: #fff;

            svg {
                color: #fff;
            }
        }
    }
}

.fillters-wrapper .accordion-body {
    background-color: #f6f6f6;
    padding: 15px;







    ul {
        height: 150px;
        overflow-y: scroll;
        padding-left: 5px;
    }




    h4 {
        font-size: 1rem;
        margin-bottom: 1em;
        padding-bottom: 0.5em;
        font-weight: 700;
        border-bottom: 1px solid rgb(177, 177, 177);
    }

    .form-check {
        margin-bottom: .5em;
    }

    .form-check-label {
        margin: 0;
    }

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--secondary-color);
    }
}

.alfabet-fillter-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-block: 20px;

    li {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 34px;
        height: 34px;
        background: #ffffff;
        color: var(--secondry-color);
        border: 1px solid #000;
    }

    li.active {
        background: var(--secondry-color);
        color: #fff;
    }
}

.filter-selected-list {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    &::before {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
        content: "You're Currently Filtering By:";
        font-style: italic;
        margin-right: 1em;
        float: left;
        font-size: 1rem;
        line-height: 22px;
    }

    li {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        gap: 10px;
        background-color: #078243;
        color: #fff;



        button {
            background: none;
            border: none;
            outline: none;
        }
    }
}

.exhibitor-table {
    border: 1px solid #000;
    margin-top: 50px;

    tr {
        &:nth-child(odd) {
            background-color: #0782431a;
        }

        &:hover {
            background-color: #0782431a;
        }

        td,
        th {
            padding: 10px;
            border: 1px solid #000;
            color: var(--secondry-color);
        }

    }
}

.exhibitor-profile-card {
    margin-bottom: 20px;
    width: 90%;
    margin-inline: auto;
}

.exhibitor-profile-card-header {
    background-image: linear-gradient(360deg, #078243D6 0%, #002B68B3 100%);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: #fff;
    padding: 15px;
    flex-wrap: wrap;

    h2 {
        font-family: "Barlow", Sans-serif;
        font-size: clamp(1.125rem, 1.0114rem + 0.5682vw, 1.4375rem);
        font-weight: 600;
        text-transform: uppercase;
        color: #FFFFFF;
    }

    span {
        border-radius: 3px;
        border: 1px solid #fff;
        color: #fff;
        display: inline-block;
        font-size: 15px;
        line-height: 1;
        padding: 12px 24px;
        text-align: center;
        background-color: #078243;
        white-space: nowrap;
    }
}

.exhibitor-profile-card-body {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    background-image: linear-gradient(180deg, #078243D6 0%, #002B68B3 100%);

    p {
        color: #fff;
    }


    .img-box {
        width: 180px;
        height: 180px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
        border-radius: 50px;
        flex-shrink: 0;
        transform: translateX(-35%);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        p {
            flex-shrink: 1;
            color: #fff;
        }
    }

    .swiper {
        width: 350px;
        flex-shrink: 0;
        height: fit-content;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #444;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.exhibitor-profile-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    flex-wrap: wrap;
    gap: 20px;

    h2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 22px;





        img {
            width: 42px;
        }
    }

    a {
        border-radius: 3px;
        border: 1px solid #fff;
        color: #fff;
        display: inline-block;
        font-size: 15px;
        line-height: 1;
        padding: 12px 24px;
        text-align: center;
        background-color: #078243;
        white-space: nowrap;



        &:hover {
            background: var(--secondry-color);
        }
    }
}

@media (max-width: 990px) {
    .exhibitor-profile-card {
        width: 100%;
    }

    .exhibitor-profile-card-body {
        flex-direction: column;

        .img-box {
            transform: translateX(0);
        }
    }
}

@media (max-width: 768px) {
    .exhibitor-profile-card-header {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .exhibitor-profile-card-body {


        .swiper {
            width: 266px;

        }


    }

}