/* style.css */

.kooperatif-archive-container {
    padding: 20px;
}

.kooperatif-archive-container h1{
    line-height: 42px;
    font-size: 32px;
    margin-bottom:0;
}

.kooperatif-archive-container > p{
    font-size: 16px;
}

.kooperatif-search {
    margin-bottom: 20px;
    position: relative;
}

.kooperatif-search .kooperatif-search-input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    box-sizing: border-box;
    height: 45px;
    border-radius: 5px;
}

.kooperatif-search .autocomplete-results {
    display:none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0px 10px 10px 4px #00000017;
    border-radius: 0 0px 10px 10px;
}

.kooperatif-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.kooperatif-item {
    width: calc(50% - 10px);
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 5px;
}

.kooperatif-item a {
    text-decoration: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    font-size: 15px;
    color: #494949;
    gap:10px;
    height:100%;
}

.kooperatif-item a:hover {
    background: #f4f4f4;
}

.kooperatif-item a img{
    width:130px;
    height:auto;
}
.single-kooperatifler .kooperatif-item a img{
    width:auto;
}
.kooperatif-item a div {
    height: 75px;
    font-weight: 600;
    line-height: 20px;
}

.autocomplete-results .kooperatif-item {
    width: 100%;
    text-align: left;
    border-width: 0 0 1px 0;
    border-radius: 0;
}

.autocomplete-results .kooperatif-item a {
    flex-direction: row;
    justify-content: space-between;
    position:relative;
}
.autocomplete-results .kooperatif-item a:hover {
    background: #f4f4f4;
}

.autocomplete-results .kooperatif-item a img {
    width: 55px;
}

.autocomplete-results .kooperatif-item a span.kooperatif-title {
    line-height: 16px;
    width: 100%;
}

.autocomplete-results .kooperatif-item a span.kooperatif-il {
    width: 75px;
    display: flex;
    justify-content: end;
}

.no-results,
.loading-results{
    padding: 10px;
    color: #666;
}

.pagination {
    margin: 20px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background: #f1f1f1;
}

.pagination .current {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* style.css */

.kooperatif-info {
    margin-top: 10px;
}

.kooperatif-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.kooperatif-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kooperatif-info li {
    border-bottom: 1px solid #ddd;
    padding: 0 0 5px 0;
    display: flex;
    align-items: center;
}

.kooperatif-info .kooperatif-thumbnail {
    margin-right: 10px;
}

.kooperatif-info .kooperatif-thumbnail img {
    max-width: 25px;
    height: auto;
}

.kooperatif-info a {
    text-decoration: none;
    color: #333;
}

.kooperatif-info a:hover {
    text-decoration: underline;
}

.whb-main-header .kooperatif-search,
.mobile-nav .kooperatif-search{
    margin: 0;
    min-width: 50%;
}
.whb-main-header .kooperatif-search .kooperatif-search-input {
    border-radius: 50px;
    font-size: 14px;
}
.mobile-nav .kooperatif-search .kooperatif-search-input {
    height: 50px;
    border-width: 1px 0px;
    border-radius: 0;
}
.whb-main-header .kooperatif-search .autocomplete-results {
    margin: 0 20px;
    border-top: 0;
}
.whb-main-header .kooperatif-search span.kooperatif-il,
.mobile-nav .kooperatif-search span.kooperatif-il{
    font-size: 12px;
}

@media(min-width:1024px){
    .kooperatif-item {
        width: calc(25% - 15px);
    }
    .kooperatif-item a div {
        height: 50px;
    }
}