/* List View Styles */
.pet-filters {
    margin: 0 auto;
    max-width: 75%;
    clear: both;
}
.pet-filters form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.pet-filters .filter-group {
    width: 28.5%;
}
.pet-filters .filter-group:last-child {
    width: 10%;
}
.pet-filters .filter-group select {
    background-color: transparent !important;
    border: 4px rgb(104, 165, 27) solid !important;
    color: #68a51b !important;
}
/* Cat filters CSS */
.pet-filters.cat .filter-group {
    width: 21%;
}
.pet-filters.cat .filter-group:last-child {
    width: 10%;
}
.pet-filters .btn-pet-filter-submit {
    background-color: transparent !important;
    border: 4px rgb(104, 165, 27) solid !important;
    color: #68a51b !important;
    text-transform: uppercase;
    margin-top: 23px;
    max-width: 200px !important;
}
.pet-filters .btn-pet-filter-submit:hover {
    background-color: rgb(104, 165, 27) !important;
    color: #fff !important;
    transition: 700ms;
}
.pet-list-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 30px;
}
.pet-list-container .pet-list-item {
    display: flex;
    flex-direction: column;
    height: 400px;
    width: 23.5%;
    margin: 5px;
    border: 6px rgb(104, 165, 27) solid !important;
    text-decoration: none;
    color: black;
}
.pet-list-item .pet-image {
    height: 75%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.pet-image .pet-hold-text {
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #86b748;
    opacity: 0.9;
    padding: 3px 5px;
    text-align: center;
}
.pet-list-item:hover .pet-image-overlay {
    background-color: #68a51b;
    opacity: 0.75;
    height: 100%;
    width: 100%;
    transition: all 0.7s linear;
}
.pet-list-item .pet-info {
    text-align: center;
    padding: 15px;
    background-color: #68a51b;
    color: #fff !important;
    height: 25%;
    font-family: 'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
}
.pet-list-item .pet-info h3 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
    margin-bottom: 5px;
}
.no-pets-message {
    text-align: center;
    width: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 1098px) {
    .pet-filters form {
        flex-direction: column;
    }
    .pet-filters .filter-group {
        width: 100% !important;
    }
    .pet-filters .btn-pet-filter-submit {
        width: 200px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1288px) and (min-width: 768px) {
    .pet-list-container .pet-list-item {
        width: 48.5%;
        margin: 5px;
    }
}
@media screen and (max-width: 768px) {
    .pet-list-container .pet-list-item {
        width: 100%;
        margin: 5px;
    }
}