.bbr-resova-selected {
    color: white;
    border-bottom: 2px solid #ffa100;
}

.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.bbr-form {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 20px;
}
.bbr-form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 20px;
}
.bbr-form input, .bbr-form textarea {
    flex: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 15px;
    font-size: 16px;
    line-height: 27px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #3F3634;
    background-color: #0d0402;
    color: #C5B9B6;
    vertical-align: middle;
    height: auto;
    border-radius: 2px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-appearance: none;
    outline: none;
    resize: none;
}