.tarifrechner {
    display: block;
    width: 100%;
}

.tarifrechner__field {
    position: relative;
}

.tarifrechner__field + .tarifrechner__field {
    margin-top: 30px;
}

.tarifrechner__label {
    display: block;
    margin-bottom: 10px;
}

.tarifrechner__control {
    position: relative;
}

.tarifrechner__options {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    width: 100%;
    max-height: 320px;
    margin: 0;
    padding: 8px 0;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    color: #333;
    list-style: none;
}

.tarifrechner__option {
    margin: 0;
    padding: 9px 15px;
    cursor: pointer;
}

.tarifrechner__option:hover,
.tarifrechner__option[aria-selected="true"] {
    background: rgba(0, 0, 0, 0.06);
}

.tarifrechner__option[aria-disabled="true"] {
    opacity: 0.4;
    cursor: not-allowed;
}

.tarifrechner__option--empty {
    color: #777;
    cursor: default;
}
