.content {
    margin-top: 0;
}

.linklinebar {
    font-size: 0.8em;
    border-bottom: 1px dotted silver;
    color: gray;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: normal;
    padding: 10px 0 10px 0;
}
.linklinebar span {
    padding: 0 4px;
}

.linklinebar a:hover {
    text-decoration: underline;
}

.controlbar {
    text-align: center;
    margin: 8px 0 16px 0;
}

.controlbar > * { /* h1-cím, span-rendezési mód */
    display: block;
}

.controlbar h1 {
    margin: 8px 0;
}

.controlbar select { /* rendezési mód */
    font-size: inherit;
    outline: none;
    padding: 8px;
}

.infobar { /* megjelenített termékek száma */
    background: #EEE;
    margin: 10px 0;
    padding: 0 0 0 10px;
    font-size: 0.8em;
}


.griditem_text_title span {
    display: block;
    float: right;
}


/* ár melletti készletinfó */
.griditem_text_foot .keszletinfo {
    float: left;
}

/* leírás alatti készletinfó */
.griditem_text_keszletinfo .keszletinfo {
    float: right;
}

.keszletinfo::before {
    font-weight: normal;
    font-size: 0.75em;
}
.keszletinfo.keszlet_nincs::before {
    content: "Rendelhető";
    color: #e97d13;
}
.keszletinfo.keszlet_van::before {
    content: "Raktáron";
    color: #51a351;
}

#nemteljesinfo {
    margin: 2em 0 0 0;
    font-style: italic;
    color: gray;
    line-height: normal;
    font-size: 0.8em;
    border: 1px dashed silver;
    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#nemteljesinfo>* {
    display: inline-block;
    margin: 0 5px;
}

/* --- MINDEN, AMI NEM MOBIL ------------------------------------------------ */

@media all and (min-width: 620px) {

    .linklinebar {
        padding: 0 0 10px 0; /* a headernek már van egy 10px-es alsó paddingja az árnyék miatt */
    }
    .linklinebar span {
        padding: 0 8px;
    }

    .controlbar {
        display: flex;
        justify-content: space-between;
        margin: 8px 0 0 0;
    }

    .controlbar > * {
        display: inline-block;
    }

    .controlbar h1 {
        margin: 0;
    }

    .controlbar select {
        padding: 4px 8px;
    }

}