
.list {
    width: 100%;
    border-radius: 5px;
    border: 1px solid gray;
}

.list-element {
    min-height: 70px;
    padding: 10px 20px;
    border-bottom: 1px solid gray;
}

.list-element:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.list-element:last-child {
    border-bottom: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.list-element.disabled {
    pointer-events: none;
    position: relative;
}
.list-element.disabled:after {
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    opacity: 0.8;
    border-radius: inherit;
}
