ul.form_data {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
}

ul.form_data>li {
    border-radius: 2px;
    background-color: rgba(200,200,200,0.5);
    margin-bottom: 4px;
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: stretch;
    flex-wrap: nowrap;
    align-items: center;
}

ul.form_data>li.error {
    background-color: rgba(255,60,60,0.5);
}

ul.form_data>li>div.value{
    flex: 1;
}
ul.form_data>li>.name{
    padding: 10px 5px 10px 10px;
}
ul.form_data>li>.name.two_lines{
    padding: 5px 0 5px 10px;
}
ul.form_data>li>.name.two_lines>div:last-child{
    font-size: 10px;
    cursor: pointer;
}
ul.form_data>li>.value{
    padding: 10px 10px 10px 0px;
    text-align: right;
}

ul.form_data>li>.value>.description{
    font-size: 14px;
    text-align: left;
    padding-bottom: 5px;
}

ul.form_data>li>.value .select::before {
    content: url("../../Bilder/select_arrow.png");
    font-size: 20px;
    position: absolute;
    right: 17px;
    bottom: 20px;
    color: #555;
    pointer-events: none;
}

ul.form_data>li>.value select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 50px;
    height: 40px;
    background-color: rgba(255,255,255,0.75);
    float: right;
    min-width: 150px;
}

ul.form_data>li:not(.edit)>.edit{
    display: none;
}

ul.form_data>li>.edit{
    padding: 10px 6px 10px 6px;
    background-color: #047c00;
    color: white;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
}

ul.form_data>li>div.value input:not([type="checkbox"]){
    text-align: right;
    border: none;
    background: none;
    -webkit-appearance: none;
    outline: none;
    color: inherit;
    padding: 0;
    width: 100%;
}

ul.form_data>li>div.value input[type="checkbox"]{
    float: right;
}

ul.form_data>li.locked
{
    pointer-events: none;
    opacity: .5;
}
