.root {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 24px 0;
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8px;
}

.root::before,
.root::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: var(--border-width-sm);
    background-color: var(--border-color-light);
    z-index: 10;
}

.root::before {
    top: 0;
}

.root::after {
    bottom: 0;
}

.borderLeft,
.borderRight {
    width: var(--border-width-sm);
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--border-color-light);
    z-index: 10;
}

.borderLeft {
    left: -24px;
}

.borderRight {
    right: -24px;
}

.label {
    position: absolute;
    top: 24px;
    left: 24px;
}

.row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0 12px;
}

@media (width <= 981px) {
    .borderLeft,
    .borderRight {
        display: none;
    }
}
