﻿/* Find a Park Style */

.parks-listing a {
    color: #333b48;
}

html .parks-listing .bg-color-primary,
html .parks-listing .bg-primary {
    background-color: #333b48 !important;
}

.parks-listing {
    overflow: visible;
    position: relative;
    z-index: 1;
}

    .parks-listing li {
        list-style: none;
    }

    .parks-listing .listing-item {
        transition: all 0.3s ease;
    }

        .parks-listing .listing-item:hover {
            box-shadow: 10px 8px 44px -15px rgba(0, 0, 0, 0.33);
        }

            .parks-listing .listing-item:hover .thumb-info .thumb-info-name i:after {
                width: 60px;
            }

        .parks-listing .listing-item .thumb-info .thumb-info-listing-type {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
        }

        .parks-listing .listing-item .thumb-info .thumb-info-name {
            display: block;
            width: 100%;
            line-height: 1;
        }

            .parks-listing .listing-item .thumb-info .thumb-info-name i {
            }

                .parks-listing .listing-item .thumb-info .thumb-info-name i:after {
                    content: '';
                    display: block;
                    position: absolute;
                    top: 50%;
                    right: 0;
                    width: 40px;
                    border-bottom: 1px solid #219cd2;
                    transform: translateY(-50%);
                    transition: all 0.3s ease;
                }

        .parks-listing .listing-item .thumb-info .custom-thumb-info-title {
        }

            .parks-listing .listing-item .thumb-info .custom-thumb-info-title ul li {
                display: inline-block;
                line-height: 1;
                padding: 1px 5px;
            }

                .parks-listing .listing-item .thumb-info .custom-thumb-info-title ul li:nth-child(1) {
                    padding-left: 0;
                }

                .parks-listing .listing-item .thumb-info .custom-thumb-info-title ul li:nth-child(2) {
                    border-left: 1px solid #b8b8b8;
                    border-right: 1px solid #b8b8b8;
                }


/* Image Thumb Size Fix*/
.thumb-info.thumb-info-no-borders, .thumb-info.thumb-info-no-borders img {
    flex-shrink: 0;
    min-height: 210px;
}

    .thumb-info.thumb-info-no-borders .thumb-info-wrapper {
        width: 100%;
        height: 210px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        object-fit: cover;
    }

.listing-item .thumb-info-wrapper img {
    flex-shrink: 0;
    min-height: 210px;
}

.listing-item .thumb-info-wrapper {
    width: 100%;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    object-fit: cover;
}

/*size fix for find a park dropdowns*/
@media (min-width: 768px) {
    .col-md-20percent {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}