input[type="submit"] {
    height: 105%;
    border-radius: 0;
    border: 1px solid #616163;
    background-color: #616163;
    color: white;
    cursor: pointer;
}

select {
    border-radius: 0;
}

.search-input {
    height: 100%;
    width: 30px;
    padding: 1%;
    border: 1px solid #54B5BA;
    min-width: 150px;
    text-indent: 1.5rem;
}

.search-input:focus-visible {
    outline: unset;
}

.search-form {
    height: 70px;
    width: 60%;
    border-radius: 2px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #f4f4f4;
    background-color: #fff;
}

.search-icon {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    padding: 1%;
}

.background {
    border-radius: 3px;
    width: auto;
    background: #52ce95;
    height: 70px;
    padding: 1%;
}

.category-select{
    width: 300px;
    box-shadow: 0 3px 9px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px #f4f4f4;
    background-color: #fff;
    font: normal normal normal 16px Ubuntu;
    color: #484848;
}

.category-options-list {
    font: normal bold normal 14px Ubuntu;
    line-height: 26px;
    margin: 0;
}

.category-dropdown-item {
    padding: 0.15rem 0;
    background-color: #fafafa;
    color: #484848;
    line-height: 26px;
}

.category-dropdown-item:hover {
    background-color: #52ce95;
    color: #fafafa;
}

.category-dropdown-menu {
    background-color: #fafafa;
    width: 100%;
}
#search-category{
    height: 70px;
}

@media only screen and (max-width: 1000px) {
    .search-form {
        width: 80%;
    }

    #search-category {
        width: 100%;
    }

    .category-select {
        width: 80%;
    }

    .background {
        border-radius: 3px;
        width: 80%;
        background: #52ce95;
        height: 70px;
    }

    .category-dropdown-item {
        padding: 0.05rem 0;
    }

    .category-dropdown-menu{
        width: 80%;
    }

    .search-icon {
        width: 80%;
        height: 80%;
    }
}
