.brt-fermopoint-panel,
.brt-fermopoint-selected {
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #e30613;
    border-radius: 8px;
    background: #fff;
}

.brt-fermopoint-heading,
.brt-fermopoint-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brt-fermopoint-heading strong,
.brt-fermopoint-heading small,
.brt-fermopoint-selected strong,
.brt-fermopoint-selected small {
    display: block;
}

.brt-fermopoint-heading strong {
    color: #e30613;
    font-size: 18px;
}

.brt-fermopoint-heading small,
.brt-fermopoint-selected small {
    margin-top: 4px;
    color: #6c757d;
}

.brt-fermopoint-list {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.brt-fermopoint-item {
    min-height: 105px;
    margin: 0;
    padding: 13px;
    display: flex;
    gap: 10px;
    border: 1px solid #dee2e6;
    border-radius: 7px;
    cursor: pointer;
}

.brt-fermopoint-item:has(input:checked) {
    border-color: #e30613;
    box-shadow: 0 0 0 2px rgba(227, 6, 19, .08);
}

.brt-fermopoint-item strong,
.brt-fermopoint-item small,
.brt-fermopoint-item em {
    display: block;
}

.brt-fermopoint-item small {
    margin-top: 4px;
    color: #62676e;
}

.brt-fermopoint-item em {
    margin-top: 8px;
    color: #16815d;
    font-size: 11px;
    font-style: normal;
}

.brt-fermopoint-select {
    margin-top: 14px;
    background: #e30613;
    border-color: #e30613;
}

.brt-fermopoint-error {
    display: block;
    margin-top: 12px;
    padding: 10px;
    color: #a1262e;
    background: #fff0f1;
    border-radius: 6px;
}

@media (max-width: 767px) {
    .brt-fermopoint-list {
        grid-template-columns: 1fr;
    }
}
