.data-list-attending-companies .data-list-head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Pagination */
.data-list-head .pagination{
    width:40%;
    text-align: right;
}
.data-list-head .pagination *::selection{
    background-color:rbga(0,0,0,0);
}
.data-list-head .pagination .pagination-item{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    padding:3px 7px;
    color:#000;
    cursor: pointer;
    text-transform: capitalize;
    border-radius: 4px;

}
.data-list-head .pagination .pagination-item:hover{
    color:var(--link-color);
}
.data-list-head .pagination .pagination-item.active{
    background-color:#000;
    color:var(--link-color);
    padding-left:1.2rem;
    padding-right:1.2rem;
}
.data-list-head .pagination .btn-prev.active,
.data-list-head .pagination .btn-next.active{
    background-color:#efefef;
    color:#c1c1c1;
}

/* Search */
.data-list-attending-companies[data-search-visible=""] .search form{
    display:none;
}
.data-list-head .search{
    width:40%;
    font-size:1.6rem;
    color:#666;
}
.data-list-head .search form{
    display: flex;
    gap:5px;
}
.data-list-head .search .field-wrapper{
    border:1px solid #666;
    background-color:#fff;
    width:100%;
    max-width:300px;
    display: flex;
    justify-content: space-between;
    border-radius:5px;
    padding:2px;
}
.data-list-head .search input{
    border:0;
    outline:0;
    padding:8px 10px;
}
.data-list-head .search button{
    background: unset;
    box-shadow: unset;
    border:unset;
    padding:7px 10px 5px 10px;
}
.data-list-head .search button:hover{
    color: var(--link-color);
}
.data-list-head .search .reset{
    display: none;
    border:1px solid var(--link-color);
    background-color:#fff;
    color:var(--link-color);
    padding:6px 10px 6px 10px;
    border-radius:5px;
    cursor: pointer;
}
.search-active .data-list-head .search .reset{
    display: block;
}
.data-list-head .search .reset:hover{
    background-color: rgba(0,221,255,0.2);
}

/* Data list */
.data-list-attending-companies .data-list-body{
    margin-top:50px;
}
.data-list-attending-companies .data-item-wrapper{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap:0 20px;
    align-items: center;
}
.data-list-attending-companies .data-item{
    color:#000;
    text-align: center;
    box-shadow:0 0 10px 0 rgba(168,168,168,.2);
    padding:15px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.data-list-attending-companies .data-list-body h3{
    text-align:center;
    font-size:22px;
}


@media only screen and (max-width: 1024px) {
    .data-list-attending-companies .data-item-wrapper{
        grid-template-columns: repeat(3, 1fr);;
    }
}

@media only screen and (max-width: 767px) {
    .data-list-attending-companies .data-list-head{
        gap:20px;
    }
    .data-list-head .search{
        width:100%;
    }
    .data-list-head .search form{
        justify-content:center;
    }
    .data-list-head .pagination{
        width: 100%;
        text-align:center;
    }
    .data-list-attending-companies .data-item-wrapper{
        gap:50px;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 430px) {
    .data-list-attending-companies .data-item-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
}