.navigator-search-wrapper {
    padding: 20px 0;
}
.search {
    position: relative;
    border-radius: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 30px;
    width: max-content;
    height: 60px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}
.search-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #373e57;
}

.search-icon {
    height: 100%;
    width: auto;
    border-radius: 30px 0 0 30px;
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}
.search-icon img {
    height: 40%;
    aspect-ratio: 1;
    filter: invert();
    background: none;
}

.search-input {
    font-size: 20px;
    width: 440px;
    height: 60px;
    background: none;
    border: none;
    color: rgb(254, 254, 254);
    z-index: 1;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .search-input {
        max-width: 40vw;
    }
}

.search-engine-status {
    height: 100%;
    width: auto;
    border-radius: 0 30px 30px 0;
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}
.search-engine-status img {
    height: 40%;
    aspect-ratio: 1;
    filter: invert();
    background: none;
}
.search-engines {
    z-index: 3;
    position: absolute;
    top: -80px;
    right: 75px;
    width: auto;
    height: 0;
    list-style: none;
    padding: 10px 15px;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    box-shadow: 0px 0px 15px #373e5744;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: all 250ms ease-in-out;
    opacity: 0;
    background: #151728;
    border-radius: 4px;
    backdrop-filter: blur(200px);
}
.search-engines.active {
    height: 200px;
    opacity: 1;
    transition: all 250ms ease-in-out;
}
.search-engines .search-engine-item {
    width: 100%;
    height: 30px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    gap: 6px;
    transition: transform 150ms ease-in-out;
}
.search-engines .search-engine-item:hover {
    transform: rotate(3deg);
}
.search-engines .search-engine-item .search-engine-icon {
    width: 24px;
    height: 24px;
    filter: invert();
    background: none;
}
.search-engines .search-engine-item .search-engine-text {
    color: #fefefe;
    font-size: 14px;
}

.search-engine-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.search-overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
    display: none;
    backdrop-filter: blur(0.5px);
}
.search-overlay.active {
    display: block;
}

.search-input::placeholder {
    color: #fefefe66;
}
