.archive-teams-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-basis: calc(100% - 250px);
    gap: 8px;
}

.archive-teams-wrapper .team-item {
    flex-basis: calc(100% / 3 - 8px);
    border: 1px solid #eee;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.archive-teams-wrapper .team-item .cover {
    height: 140px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
 
.archive-teams-wrapper .team-item .team-image {
    width: 64px;
    height: 64px;
    position: absolute;
    left: 24px;
    bottom: -24px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.archive-teams-wrapper .team-item .cover:after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    filter: brightness(0.5);
    background: #00000070;
}

.archive-teams-wrapper .team-title {
    margin: 24px 12px 0px;
}

.archive-teams-wrapper .team-slogan {
    margin: 0 12px;
    font-size: 12px;
    color: #aaa;
}

.archive-teams-wrapper .team-service-title {
    margin: 12px;
    font-size: 13px;
}

.archive-teams-wrapper .team-item .category {
    position: absolute;
    top: 8px;
    width: max-content;
    background: #083435;
    padding: 2px 12px;
    display: inline-flex;
    border-radius: 27px;
    font-size: 11px;
    color: #fff;
}

.archive-teams-wrapper .loading-teams {
    flex-basis: 100%;
}

div#wrapper_teams {
    display: flex;
    align-items: flex-start;
    padding: 24px 0;
}

div#wrapper_teams .wrapper-filter {
    width: 250px;
}

div#wrapper_teams .wrapper-filter .filter_box{
    background: #eee;
    border-radius: 8px;
}

div#wrapper_teams .wrapper-filter .filter_box .cat-list{
    overflow-y: auto;
    height: 250px;

}

div#wrapper_teams .wrapper-filter .filter_box .cat-list::-webkit-scrollbar {
    width: 3px;
    border-radius: 8px;
}
  
div#wrapper_teams .wrapper-filter .filter_box .cat-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
div#wrapper_teams .wrapper-filter .filter_box .cat-list::-webkit-scrollbar-thumb {
    background: #888;
}
  
div#wrapper_teams .wrapper-filter .filter_box .cat-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

div#wrapper_teams .wrapper-filter .body-filter {
    padding: 8px;
}

div#wrapper_teams .wrapper-filter .body-filter .cat-list {
    margin: 12px 0;
}

div#wrapper_teams .wrapper-filter .body-filter input {
    border-radius: 8px;
    box-shadow: none;
}

div#wrapper_teams .wrapper-filter .cat-list label{
    padding: 3px 0;
    color: #000;
}


div#wrapper_teams .wrapper-filter input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #083435;
    border-radius: 4px;
  }
  
  div#wrapper_teams .wrapper-filter input[type=checkbox]:checked {
    background-color: #083435; 
  }