<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.komponentaVyhledavac *{
    box-sizing: border-box;
    max-width: 100%;
}

.komponentaVyhledavac .container{
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0,0,0,0.85);
    z-index: 2147483648;
}

.komponentaVyhledavac .checkdisplay:checked ~ .container{
    display: block;
}

.komponentaVyhledavac .checkdisplay{
    display: none;
}

.komponentaVyhledavac .toclose{
    position: absolute;
    top: 0px;
    width: 100%;
    left: 0px;
    height: 100%;
    cursor: cell;
}

.komponentaVyhledavac .tosearch{
    position: relative;
    width: 640px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 0 10px;
}

.komponentaVyhledavac a[onclick*=openclose]{
    position: absolute;
    background: transparent url(icon-cross-white.svg) scroll no-repeat center center/contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 0px;
    cursor: pointer;
    right: 0px;
    top: 26px;
}

.komponentaVyhledavac .container form{
    height: 120px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.komponentaVyhledavac input[type="text"]{
    width: 100%;
    padding: 10px;
    border: 0px none;
    line-height: 60px;
    border-radius: 6px;
    padding: 0 30px;
    margin: 0;
}

.komponentaVyhledavac input[type="submit"] {
    position: absolute;
    right: 0px;
    bottom: 0px;
    font-size: 0px;
    min-width: 0px;
    background: transparent url(icon-zoom.svg) scroll no-repeat center center/20px auto;
    width: 60px;
    height: 60px;
    padding: 0;
    min-width: 0px;
    margin: 0;
}

.komponentaVyhledavac .vysledky.hloubka1{
    overflow: hidden;
    margin: 20px 0;
    background: white;
    border-radius: 6px;
    max-height: calc(100vh - 180px);
}

.komponentaVyhledavac .vysledky.hloubka2{
    padding: 20px;
}

.komponentaVyhledavac .vysledky.hloubka3 {
    overflow: auto;
    padding: 0 10px 0 0;
    width: 100%;
    max-height: calc(100vh - 220px);
}

.komponentaVyhledavac .vysledky:empty{
    display: none;
}

.komponentaVyhledavac .item{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    padding: 20px 10px;
    gap: 20px;
}

.komponentaVyhledavac .item:hover{
    background-color: rgba(0,0,0,0.025);
    text-decoration: underline;
}

.komponentaVyhledavac .nahled{
    width: 50px;
    height: 50px;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
}

.komponentaVyhledavac .nazev{
    margin: 0;
}

.komponentaVyhledavac .kod{
    margin: 0 0 0 auto;
}

.komponentaVyhledavac .cena{
    white-space: nowrap;
    margin: 0 0 0 auto;
}



@media only screen and (max-width:660px) {

    .komponentaVyhledavac .container{
        position: absolute;
        background: black;
    }
    .komponentaVyhledavac .tosearch{
        left: 0px;
        width: 100%;
        background: black;
    }
    .komponentaVyhledavac .vysledky.hloubka1 {
        overflow: visible;
        max-height: unset;
    }
    .komponentaVyhledavac .vysledky.hloubka2 {
        padding: 0px;
    }
    .komponentaVyhledavac .vysledky.hloubka3 {
        overflow: visible;
        padding: 0;
        max-height: unset;
    }
}






</pre></body></html>