.container {
    width: 50%;
    background: #fff;
    margin: 50px auto;
    padding-bottom: 1px;
}

.ac-obsah {
    position: absolute;
    left: 0px;
    display: none;
    border: 1px solid #d0d0d0;
    width: 150px;
    background: #fff;
    z-index: 1;
}

.ac-line {
    cursor: pointer;
}

.ac-line-active {
    background: #eee;
    font-weight: 500;
}

.ac-result {
    display: inline-block;
    background: #fff;
    border: 1px solid #d0d0d0;
    padding: 3px 8px;
    margin: 0px 5px 5px 0px;
    cursor: pointer;
    font-weight: 600;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;

    -khtml-border-radius-topleft: 5px;
    -khtml-border-radius-topright: 5px;
    -khtml-border-radius-bottomleft: 5px;
    -khtml-border-radius-bottomright: 5px;

    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.ac-result-hover {
    background: #f00;
    color: #fff;
}

.ac-result:hover {
    background: #f00;
    color: #fff;
}

.input-container {
    position: relative;
    border: 1px solid #e0e0e0;
    margin: 5px 15px;
    padding: 5px;
}

.input-container input {
    display: inline-block;
    border: 0px;
    outline: none;
    padding: 5px 5px;
    border: 1px solid #f00;
}