﻿.find-image {
    width: 100%;
    max-width: 230px;
    height: 220px;
    object-fit: contain;
    transition: .3s;
}

    .find-image:hover {
        transform: scale(1.05);
    }

.card {
    transition: .25s;
}

    .card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
    }

@media (max-width:991px) {

    .border-start {
        border-left: none !important;
        border-top: 1px solid #eee !important;
    }

    .find-image {
        max-width: 260px;
        height: 200px;
    }
}

@media (max-width:767px) {

    .card-body {
        padding: 1.25rem !important;
    }

    .find-image {
        max-width: 100%;
        height: 220px;
    }
}

/* ===================================
   STICKY SEARCH
=================================== */

@media (min-width:992px) {

    .find-search-card {
        position: sticky;
        top: 90px;
        z-index: 100;
    }
}

/* ===================================
   SEARCH BUTTONS
=================================== */

.find-search-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

    .find-search-buttons .btn {
        min-width: 190px;
        height: 48px;
        border-radius: 10px;
        font-weight: 600;
    }

@media(max-width:768px) {

    .find-search-buttons {
        flex-direction: column;
        gap: 12px;
    }

        .find-search-buttons .btn {
            width: 100%;
            min-width: unset;
            height: 52px;
            font-size: 16px;
        }
}

.find-search-card {
    transition: .3s;
}

#mobileSearchFilters {
    transition: .3s;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    font-size: 18px;
    font-weight: 600;
}
