.pwa-taxonomy-filter-widget {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    height: 40px;
}

.pwa-taxonomy-filter-widget select{
    width: 100%;
}

.pwa-taxonomy-filter-widget .form-group-search {
    display: flex;
    width: 100%;
    margin-right: 10px;
}

.pwa-taxonomy-filter-widget .reset-button {
    width: 50%;
}

.pwa-taxonomy-filter-dropdown {
    margin-right: 10px;
    padding: 5px;
    font-size: 14px;
}

.pwa-taxonomy-show-all {
    padding: 5px 10px;
    font-size: 14px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.pwa-taxonomy-show-all:hover {
    background-color: #005177;
}

.pwa-taxonomy-post-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.pwa-taxonomy-post-grid p {
    text-align: center;
    font-size: 16px;
}


.pwa-taxonomy-post-grid .post-thumbnail {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #e6e9e8;
    transition: all 0.2s ease-in-out;
    display: inline-block !important;
    height: 250px;
}

.pwa-taxonomy-post-grid .post-thumbnail .white-box {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pwa-taxonomy-post-grid .post-thumbnail:hover .white-box {
    opacity: 1;
    visibility: visible;
}

.pwa-taxonomy-post-grid .entry-content{
    padding: 1.35em 1.2em 1.5em;
}

.pwa-taxonomy-post-grid .post-item {
    background: #8080800d;
    border: solid 1px #8080801f;
}

.pwa-taxonomy-post-grid .entry-content h5 a {
    color: black;
    font-weight: 500;
    font-size: 20px;
}

.pwa-taxonomy-post-grid .entry-content .post-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.pwa-taxonomy-post-grid .entry-content .post-categories li a{
    color: #00000082;
    font-weight: 500;
    margin-right: 5px;
}

.pwa-taxonomy-post-grid .entry-content .custom-fields {
    margin: 15px 0 0 0;
}

.pwa-taxonomy-post-grid .entry-content .custom-fields .field-row{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: solid 1px #8080805e;
}

.pwa-taxonomy-post-grid .entry-content .custom-fields .field-row:first-child {
    border-top: none;
}

@media only screen and (max-width: 600px) {
    .pwa-taxonomy-filter-widget {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        height: auto;
    }

    .pwa-taxonomy-filter-widget .reset-button {
        width: 100%;
    }

    .pwa-taxonomy-filter-widget select {
        width: 100%;
        margin-bottom: 5px;
        height: 46px;
    }

    .pwa-taxonomy-filter-widget .form-group-search {
        display: flex;
        width: 100%;
        margin-right: 10px;
        margin-bottom: 5px;
    }

    .pwa-taxonomy-filter-widget {
        flex-direction: column;
    }

    .pwa-taxonomy-post-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}