html {
  scroll-padding-top: var(--catalog-sticky-offset);
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    .catalogTopContainer {
        position: sticky;
        top: 0;
        z-index: 900;
        box-shadow: 0px 1px 1px 0px rgba(0,0,0, 0.4);
    }

    .anchorContainer {
        justify-content: space-around;
        align-items: center;
        background-color: #2e3f55;
        display: grid;
        padding: 0.5rem;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        justify-items: center;
        
        @media (min-width: 768px) {
            padding: 1rem 0;
            grid-template-columns: 1fr 1fr 1fr 1fr;
        }

        @media (min-width: 1024px) {
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        }

        @media (min-width: 1600px) {
            display: flex;
        }

        li {
            list-style: none;
            display: flex;
            align-items: center;
            
            a {
                text-decoration: none;
                color: white;
                font-size: 0.5rem;
                padding: 0.25rem;
                
                @media (min-width: 1024px) {
                    font-size: 0.7rem;
                    padding: 0.45rem;
                    border-radius: 0.25rem;
                    transition: 0.3s;

                    &:hover {
                        color: #004eb4;
                        transition: 0.3s;
                        background-color: white;
                    }
                }
            }
        }
    }

    .searchResultMain {
        h1 {
            padding: 2rem;
            color: #232F3E;
            text-transform: uppercase;
        }

        .searchResults {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
            gap: 2rem;
            margin: 0 auto;
            max-width: 1400px;
            justify-content: center;
            margin-bottom: 2rem;
        }
    }

    /* MDP RESET MODAL */

    .resetPasswordModalContent {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        align-items: center;

        .resetPasswordContent {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
            padding: 0.5rem;

            code {
                color: #204b68;
            }
        }
    }
}

.hidden-honeypot-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}