﻿
body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f3f6;
    overflow-x: hidden;
}

.full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

/* Hero background specific to this page */
.petcare-hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(~/resourse/image/pages/petcare-hero-bg.jpeg);
    background-size: cover;
    background-position: center;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

#statesListContainer {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

    #statesListContainer.collapsed {
        max-height: 250px;
    }

@media (min-width: 768px) {
    #statesListContainer.collapsed {
        max-height: 180px;
    }
}


