.left_logo_header {
    height: 100px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/*Search Container*/
.search-container {
    position: relative;
}

#search_results {
    max-height: 400px;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 100;
    border: 1px solid gray;
    /*padding: 10px;*/
    border-radius: 0;
}

/* Add this block to create a triangle pointing to the search bar */
#search_results.triangle-visible::before {
    content: "";
    position: absolute;
    display: block;
    top: -11px;
    left: 50%;
    margin-left: -5px;
    width: 20px;
    height: 20px;
    border-right: 1px solid gray;
    border-bottom: 1px solid gray;
    z-index: 101;
    background: #ffffff;
    transform: translateX(-50%) rotate(225deg);
}

.suggested-search {
    height: 380px;
    overflow-y: auto;
    margin-top: 5px;
}

#search-results.show {
    display: block;
}

.search_bar_div {
    position: relative;
    display: flex;
    align-items: center;
}

.search-result-item {
    padding-left: 10px;
}

.search-result-item:hover {
    background-color: #444444;
    width: 100%;
}

.search-result-item a h2:hover {
    color: white;
}

.search_bar {
    border: 1px solid gray;
    border-radius: 0;
    height: 35px;
    width: 335px;
    padding-left: 5px;
}

.search_bar:focus {
    outline: none !important;
}

.search_bar_div .search_bar_icon {
    position: absolute;
    right: 0;
    margin-left: auto;
    margin-right: 8px;
    color: gray;
    font-size: 1.2em;
    margin-top: -8px;
}

.logo-searchbar-content {
    width: 1200px;
}

/*End of search container*/

@media (min-width: 1200px) {
    .header_container {
        width: 100%;
    }

    .header_content {
        padding-left: 0;
    }

    .left_logo_header {
        margin-right: 50px;
    }

    .right_logo_header {
        margin-left: 50px;
    }

    .search_bar {
        width: 335px;
    }
}