.sbr-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    box-sizing: border-box;
    background: #fff;
}

.sbr-title {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
}

.sbr-field {
    width: 100%;
    margin-bottom: 18px;
}

.sbr-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
}

.sbr-field select {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    background-color: #fff;
    color: #111;
    font-size: 15px;
    line-height: 50px;
    box-sizing: border-box;
    outline: none;
}

.sbr-field select:focus {
    border-color: #111;
}

.sbr-field select:disabled {
    background-color: #f5f5f5;
    color: #888;
    cursor: not-allowed;
}

.sbr-filter-button {
    display: block;
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    padding: 12px 20px;
    border: 0;
    border-radius: 3px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sbr-filter-button:hover {
    background: #333;
}

.sbr-filter-button:active {
    background: #000;
}
