/* 
 * Filtr Rowerów - Stylizacja
 * Version: 2.0.0
 */

.filtr-rowerow-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#filtr-rowerow-form {
    width: 350px;
    margin-block-start: 3rem;
    padding: 2rem 1.5rem;
    background: #FFF;
    box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.16), 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
#filtr-rowerow-form::before {
    content: '';
    width: 109px;
    height: 67px;
    background-image: url('https://davibikes45571.e.wpstage.net/wp-content/uploads/2025/02/ROWER.webp') ;
    background-size: contain;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

#filtr-rowerow-form label {
    text-align: start;
}
#filtr-rowerow-form p {
    margin-block-end: 2rem;
}

#filtr-rowerow-form input, #filtr-rowerow-form select {
    width: 260px;
}

#filtr-rowerow-form button[type="submit"] {
    background-color: var(--fs-color-primary);
}