#search {
    margin-bottom: 10px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    max-width: 420px;
}

.search-simple {
    position: relative;
    display: flex;
    align-items: center;
    /* max-width: 210px; */
    margin-left: auto;
}

.search-simple .bi-search {
    font-size: 15px;
}

.search-input {
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
    padding: 5px 40px 5px 5px;
    width: 100%;
    font-size: 17px;
}

.search-input:focus {
    border-bottom-color: #333;
}

.search-btn {
    position: absolute;
    right: 0;
    border: none;
    background: transparent;
    /* padding: 10px; */
    cursor: pointer;
    color: #333;
}

.search-btn:hover {
    color: #333;
}

@media (max-width: 1024px) { 
    .search-simple {
        max-width: 100%;
        padding: 10px 0;
    }

    #header-search-element.col-sm-6 {
      width: 100% !important;
    }

    .search-simple .bi-search {
        font-size: 17px;
    }
}