form.company-search{
    margin: 20px auto 0 auto;
    max-width: fit-content;
    align-items: center;
}

    form.company-search .top{
        margin: 0 0 10px 0;
        display: flex;
    }

    form.company-search input.style-text{
        border: 1px solid rgb(176, 176, 176);
        background-color: rgb(255, 255, 255);
        outline: none;
        margin: 0px 0px 0px 0px;
        color: rgb(34, 34, 34);
        position: relative;
        padding: 8px 16px;
        font-size: 18px;
        font-weight: 500;
        max-width: 500px;
        width: 100%;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
    }

        form.company-search input.style-text::placeholder{
            font-weight: 400;
            opacity: 1;
        }

    form.company-search button[type=submit]{
        width: fit-content;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        font-size: 18px;
        padding: 8px 16px;
        cursor: pointer;
        background: #498392;
        color: white;
    }

    form.company-search select.style-select{
        cursor: pointer;
        text-align: center;
        border: 1px solid rgb(176, 176, 176);
        background-color: rgb(255, 255, 255);
        outline: none;
        margin: 0px 10px 0px 0px;
        border-radius: 30px;
        color: rgb(34, 34, 34);
        position: relative;
        padding: 8px 16px;
        font-size: 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        font-weight: 300;
        text-align: center;
        text-align-last:center;
    }

        form.company-search select.style-select::-webkit-scrollbar{
            height:10px;
            width:10px;
            border-radius: 4px;
            background: transparent;
            transition: all 0.3s ease;
            background: #f7f7f7;
        }

        form.company-search select.style-select::-webkit-scrollbar-track{
        }

        form.company-search select.style-select::-webkit-scrollbar-thumb{
            background:#498392;
            border-radius: 4px;
        }

        form.company-search select.style-select:hover,
        form.company-search select.style-select:focus{
            box-shadow: 0 0 0 2px #498392;
        }

    form.company-search .filters-added{
        margin: 30px 0 0 0;
    }

        form.company-search .filters-added .list{
            display: flex;
            flex-flow: wrap;
        }

            form.company-search .filters-added .list .filter{
                display: none;
                align-items: center;
                margin: 0 20px 10px 0;
            }

                form.company-search .filters-added .list .filter .filter-title{
                    font-weight: 500;
                    margin: 0 10px 5px 0;
                    font-size: 18px;
                }

                form.company-search .filters-added .list .filter .options{
                    display: flex;
                    flex-flow: wrap;
                }

                    form.company-search .filters-added .list .filter .options .option{
                        color: white;
                        background: #498392;
                        padding: 5px 12px;
                        border-radius: 30px;
                        cursor: pointer;
                        margin: 0 10px 5px 0;
                        display: flex;
                        font-size: 15px;
                        user-select: none;
                    }

                        form.company-search .filters-added .list .filter .options .option .remove{
                            margin: 0 0 0 10px;
                        }
