.kite-search-wrapper{
    display:flex;
    gap:15px;
    align-items:end;
    padding: 3rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 12px;
}


.kite-search-input{
    flex: 50%
}
.kite-search-selects{
    flex: 30%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
}
.kite-search-actions{
    flex: 20%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.kite-search-wrapper input,
.kite-search-wrapper select,
.kite-search-wrapper button{
    width:100% !important;
    height:40px;
    padding:0 15px;
    border:1px solid #ddd !important;
    border-radius:6px !important;
    font-size:15px;
    background:#fff !important;
    color: #6a7282;
}
.kite-search-wrapper button:hover{
    color: black;
    transition: all 0.3s ease-in-out;
    border: 1px solid black !important;
}

.kite-input-wrapper{
    position:relative;
}

.kite-input-wrapper svg{
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
}

#kite-search-input{
    padding-left:38px;
}
.kite-search-label{
    font-family: "Lato", sans-serif;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #6a7282; 
    letter-spacing: 0.5px;
}
.kite-search-input, .kite-search-selects-wrapper{
    display:flex;
    gap:5px;
    flex-direction:column;
}

.kite-search-selects select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 45px;   /* Space for the arrow */
}
.kite-search-selects-wrapper{
    position: relative;
}

.kite-search-selects-wrapper::after{
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-10%);

    width: 20px;
    height: 26px;

    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236a7282'%3E%3Cpath d='M5 7l5 5 5-5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;

    pointer-events: none;
}

@media (max-width: 768px){

    .kite-search-wrapper{
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .kite-search-input,
    .kite-search-selects,
    .kite-search-actions{
        flex: 1 1 100%;
        width: 100%;
    }

    .kite-search-selects{
        flex-direction: column;
        gap: 15px;
    }

    .kite-search-selects-wrapper{
        width: 100%;
    }

    .kite-search-actions{
        flex-direction: row;
        width: 100%;
    }

    .kite-search-actions button{
        flex: 1;
    }

}