.header_search__bar {
    display: inline-flex;
    margin: 0 1em;
    position: absolute;
    right: 8%;
}

.header_search__bar_input {
    border: 1px solid #b9b9b9;
    border-radius: 0;
    box-sizing: border-box;
    vertical-align: top;
    padding: 3px;
}

.header_search__submit {
    background-color: #fff;
    border: none;
    box-sizing: border-box;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s;
    vertical-align: top;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header_search__submit_icon {
    height: 14px;
    margin: 0;
    padding: 0;
}

.auto_complete__anchor {
    color: #333;
    display: block;
    font-size: 0.6em;
    /* Nije moj css, kad sam ubacio link uzeo sam iz biblioteke da bi isto izgledao */
    line-height: 23px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media print {
    .header_search__bar {
        display: none;
    }
}

@media (max-width: 1280px) {
    .header_search__bar {
        right: 10%;
    }
}

@media (max-width: 1000px) {
    .header_search__submit_icon {
        height: 10px;
        width: 18px;
    }

    .header_search__bar_input {
        font-size: 10px;
        padding: 1px;
    }

    .header_search__bar {
        font-size: 13px;
    }
}
@media (max-width: 1000px) {
    /* bilo 1280px */
    .header_search__bar {
        position: static;
        margin: 0;
    }
}

@media (max-width: 320px) {
    .header_search__bar {
        display: block;
    }

    .header_search__bar_input {
        display: block;
        width: 100%;
    }

    .header_search__submit {
        display: block;
        width: 100%;
    }
}
