/****
LOOP
****/


.standish-loop-container {
    gap: 3rem;
    display: flex;
    flex-direction: column;
}

.standish-loop-listing {
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
    gap: 2rem; */
}

.standish-loop-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
    gap: 2rem;
}

.standish-loop-pagination {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.standish-loop-pagination a {
    padding: 0.5rem 1rem;
    background: var(--global-palette1);
    color: white;
    text-decoration: none;
}

.standish-loop-options {
    display: flex;
    gap: 1rem;
}

@media (max-width:768px) {
    .standish-loop-listing {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}





/****
FILTERS
****/

.standish-select-container {
    display: flex;
    width: 100%;
    height: 4.1rem;
    border: solid 1px var(--global-palette3);
    margin-bottom: 1.5rem;
}

.standish-search-posts .loop-entry .entry-content-wrap,
article.entry.loop-entry .entry-content-wrap {
    padding: 1.25rem;
}

.standish-select-container .standish-select.multiple:first-child {
    width: 33.6%;
}

.standish-select-container .standish-select.multiple {
    width: 34.8%;
}

.standish-select-container .standish-search-input {
    width: 34%;
    display: flex;
}

.standish-select-container .standish-search-input input {
    width: 100%;
    display: flex;
    border-radius: 0;
    border: 0;
    font-family: var(--global-heading-font-family);
    color: var(--global-palette3);
    font-size: 1.5rem;
    padding: 1rem;
}

.standish-select-container .standish-search-input input::placeholder {
    color: var(--global-palette6);
}

.standish-search-results {
    font-family: var(--global-heading-font-family);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: none;
}

.standish-select-container .standish-search-input>.search {
    width: 5rem;
    height: 4rem;
    background: var(--global-palette1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: solid 1px var(--global-palette3);
}

.standish-select-container .standish-search-input>.search:before {
    content: '\e927';
    font-family: "icomoon";
    font-size: 1.75rem;
    color: var(--global-palette9);
}

.standish-select-container .standish-search-input button {
    width: 2rem;
    height: 3rem;
}

@media (max-width:768px) {
    .standish-select-container {
        display: flex;
        flex-direction: column;
        height: fit-content;
        gap: 0.5rem !important;
    }

    .standish-select.multiple {
        width: 100% !important;
        border-bottom: solid 1px;
    }

    .standish-select-container .standish-search-input>.search {
        width: 5rem;
    }

    .standish-select-container .standish-search-input {
        width: 100%;
    }

    .standish-select .select-btn,
    .select-btn.more-filters {
        border-right: none !important;
    }
}

.standish-select {
    width: 100%;
    min-width: 150px;
    transition: all 0.3s;
    position: relative;
}

.standish-select .select-btn,
.select-btn.more-filters {
    color: var(--global-palette3);
    display: flex;
    height: 4rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0px;
    align-items: center;
    cursor: pointer;
    font-family: var(--global-heading-font-family);
    justify-content: space-between;
    border-right: solid 1px var(--global-palette3);
}

.standish-select .select-btn span.btn-text,
.standish-filters .select-btn span.btn-text {
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    width: fit-content;
    white-space: nowrap;
    font-size: 1.5rem;
}

.standish-select .select-btn .btn-icon {
    color: #000;
    transition: 0.3s;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
}

.standish-select .options {
    display: none;
    z-index: 100;
    position: absolute;
    width: 355px;
    overflow-y: auto;
    max-height: 295px;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: fit-content !important;
    min-width: 220px;
}

.standish-select.active .options {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.standish-select .options .option {
    display: flex;
    min-height: 55px;
    width: 100%;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
    line-height: 1.2em;
}

.standish-select .option .checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    min-width: 18px;
    border-radius: 4px;
    margin-right: 12px;
    border: 1.5px solid #c0c0c0;
    transition: all 0.3s ease-in-out;
}

.standish-select .option.checked .checkbox {
    background-color: var(--global-palette1);
    border-color: var(--global-palette1);
}

.standish-select .options .option .option-text {
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--global-heading-font-family);
    font-size: 1.25rem !important;
}


.standish-select .options .option:hover,
.standish-select .options .option.checked {
    background: var(--global-palette7);
}

.select-btn.more-filters .btn-text {
    display: flex;
    align-items: center;
}

.standish-select li.option.checked span.checkbox:before {
    content: "\e906";
    font-family: icomoon;
    width: 16px;
    font-size: 16px;
    color: var(--global-palette9);
}

.select-btn.more-filters .btn-text:before {
    content: '\ecb6';
    margin-right: 0.75rem;
}

.standish-select .select-btn .btn-icon:before {
    content: "\e916";
}

.standish-select.active .select-btn .btn-icon {
    transform: rotate(-180deg);
}

.standish-select .select-btn .btn-text:before,
.select-btn.more-filters .btn-text:before,
.standish-select .select-btn .btn-icon:before {
    font-family: icomoon;
    font-size: 1.5rem;
    color: var(--global-palette3);
}

@media (max-width:768px) {

    .standish-select .select-btn span.btn-text,
    .standish-filters .select-btn span.btn-text,
    .standish-select-container .standish-search-input input {
        font-size: 1rem;
    }

    .standish-select .select-btn,
    .select-btn.more-filters,
    .standish-select-container .standish-search-input>.search {
        height: 3rem;
    }
}


/* Standish Logo */

.standish-logo-with-text {
    display: flex;
    align-items: center;
    justify-content: end;
}

.standish-logo-with-text p.passion {
    margin: 0px 12px;
	color:var(--global-palette3);
}
.standish-logo-with-text p.passion.light {
    color:var(--global-palette9);
}

.standish-logo-with-text img.svg {
    display: none;
}

a.standish-logo{
    margin:0px;
}
a.standish-logo svg,
a.standish-logo img {
    max-width: 120px;
    cursor: pointer;
    max-height: 26px;
    fill: #fff;
    transition: all 300ms;
    min-height: 23px;
}

a.standish-logo.dark svg,
a.standish-logo.dark img {
    max-width: 120px;
    cursor: pointer;
    max-height: 26px;
    fill: #000; 
    transition: all 300ms;
    min-height: 23px;
}

a.standish-logo.light svg,
a.standish-logo.light img {
    max-width: 120px;
    cursor: pointer;
    max-height: 26px;
    fill: #ffffff;
    transition: all 300ms;
    min-height: 23px;
}

a.standish-logo g.round-logo-standish path {}