#LkSelect_fix * {
    user-select: none;
}
#LkSelect_fix {
    background-color: white;
	position: fixed;
	z-index: 9999999;
    overflow-y: scroll;
    max-height: 240px;
    display: none;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.54);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.54);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.54);
    user-select: none;
}
#LkSelect_fix .LkSelect_fix_element {
    padding: 8px;
    border-bottom: 1px rgb(215,215,215) solid;
    background-color: var(--barva_seda_input);
    transition: all 0.3s ease;
    font-size: 1rem;
}
#LkSelect_fix .LkSelect_fix_element:hover {
    background-color: var(--zluta);
    cursor: pointer;
}
#LkSelect_fix .LkSelect_fix_element:last-of-type {
    border-bottom: 0px;
}
.LkSelect_element_wrap::after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: black transparent transparent transparent;
}
.LkSelect_element_wrap {
    width: 100%;
    height: 34px;
    padding: 5px;
    background-color: white;;
    box-sizing: border-box;
    position: relative;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-left: 8px;
    padding-right: 28px;
    user-select: none;
    color: black;
}
.LkSelect_element_wrap * {
    user-select: none;
}
.LkSelect_element_wrap.maly {
    height: 24px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.LkSelect_element_wrap select {
    display: none;
}
.LkSelect_element_wrap.maly::after {
    top: 9px;
}
.LkSelect_element_wrap span {
    font-size: 1rem;
    text-align: left;
    width: 100%;
}
.LkSelect_element_wrap  span.LkSelect_maly_span {
    font-size: 0.9rem;
    line-height: 1rem;
}