.engine {
    /*height: 300px;
    background-color: gray;*/
    display: none;
}

.search-bar__container {
    display: flex;
    align-items: center;
    font-family: OpenSansHebrew;
    padding: 16px 0;
    font-size: 14px;
    color: #363B48;
}

.search-bar__empty-div {
}

.search-bar--fixed {
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
    background-color: #f3f3f3;
    position: fixed;
    top: 100px;*/
    left: 0;
    right: 0;
    z-index: 99;
}

.search-bar__title {
    white-space: nowrap;
}

.search-bar__search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.search-bar__search-text {
    color: #333333;
    font-size: 16px;
}

.search-bar__search-icon {
    width: 40px;
    height: 40px;
    background-color: #fe8b1f;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar--relative {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff;
}

    .search-bar--relative .search-bar__empty-div {
        opacity: 0;
    }

    .search-bar--relative .search-bar__search {
        opacity: 0;
        cursor: default;
    }

    .search-bar--relative .search-bar__search-icon {
        cursor: default;
        pointer-events: none;
    }