.teams__search {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.teams__search-left,
.teams__search-right {
    width: 100%;
}

.teams__search-right {
    margin-top: 16px;
}


@media (min-width: 768px) {

    .teams__search {
        margin-top: 32px;
    }

    .teams__search-left {
        width: calc(100% - 232px);
    }

    .teams__search-right {
        width: 200px;
        margin-top: 0;
    }

}

@media (min-width: 1200px) {
    .teams__search-left {
        width: calc(100% - 322px);
    }

    .teams__search-right {
        width: 290px;
    }

}

.team-flex {
    justify-content: center;
}

.team-item {
    margin-top: 23px;
} 

.team {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    height: 100%;
    min-height: 124px;
    border: none;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear;
    overflow: hidden;
    border-radius: 8px 8px 8px 50px;
    background: #FFF;
    box-shadow: 0px 0px 16px 0px rgba(12, 40, 55, 0.16);
}

.team__image {
    height: 100%;
    position: relative;
    width: 119px;
}

.team__image img {
    border-radius: 8px 8px 8px 50px;
    position: absolute;
    top: 0;
    left: 0;
}

.team__details {
    width: calc(100% - 119px);
    padding: 15px 23px;
}

.team__title {
    margin: 0;
    padding: 0;
    font-size: 22px;
    color: var(--dark);
}

.team-hide {
    display: none;
}

.load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.load-more .btn {
    margin-top: 15px;
}

.load-more__btn:disabled {
    display: none;
}

progress {
    -webkit-appearance: none;
    margin: 0 auto;
    max-width: 615px;
    background-color: #D9D9D9;
    border-radius: 8px;
    height: 8px;
    width: 100%;
}
  
::-webkit-progress-bar {
    background-color: #D9D9D9;
    border-radius: 8px;
    height: 8px;
}
  
::-webkit-progress-value {
    background-color: var(--blue);
    border-radius: 8px;
    -webkit-transition: width 0.4s ease;
    transition: width 0.4s ease;
}

/* Firefox */
progress::-moz-progress-bar {
    background-color: var(--blue);
    border-radius: 8px;
}

/* IE */
progress {
    color: var(--blue);
}

#viewCount {
    color: var(--blue);
    margin: 10px 0 24px 0;
}

.load-more .btn::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.load-more .btn.active::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}


@media (min-width: 768px) {
    .load-more .btn::after {
        -webkit-transform: translate(0, -50%) rotate(90deg);
                transform: translate(0, -50%) rotate(90deg);
    }

    .load-more .btn.active::after {
        -webkit-transform: translate(0, -50%) rotate(-90deg);
                transform: translate(0, -50%) rotate(-90deg);
    }
}

@media (min-width: 1200px) {
    .team:hover {
        border: none;
        -webkit-transform: translate3d(0,-10px,0);
                transform: translate3d(0,-10px,0);
        box-shadow: 0px 0px 16px 0px #91C0CC;
    }

    .team:hover .team__title {
        color: var(--blue);
    }

    .load-more {
        margin-top: 48px;
    }
    
    .team-item {
        margin-top: 48px;
    } 
    
    .team {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        height: 100%;
        border-radius: 8px;
    }
    
    .team__image {
        height: 303px;
        width: 100%;
    }
    
    .team__details {
        width: 100%;
        padding: 20px 30px 20px;
    }
}
