.afeb-search-form {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .059);
    padding: 10px 15px;
    position: relative
}

.afeb-search-form form {
    display: flex;
    gap: 10px
}

.afeb-search-form input[type=text] {
    border: none;
    box-shadow: none;
    background-color: transparent;
    flex: auto;
    font-size: 20px;
    outline: 0
}

.afeb-search-form input[type=text]::placeholder {
    color: #b2b4b5;
    font-size: 20px
}

.afeb-search-form-btn {
    background-color: #92003b;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 20px 40px
}

.afeb-search-form-btn:hover {
    background-color: #6b002b
}

.afeb-search-form-icon {
    display: inline-block;
    position: relative;
    top: 2px
}

.afeb-search-form-icon>svg {
    fill: #fff;
    width: 18px
}

.afeb-search-form-live-results {
    background-color: #fafafa;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .059);
    display: none;
    left: 0;
    margin-top: 10px;
    overflow-wrap: anywhere;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 9999
}

.afeb-search-form-live-results-flex {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.afeb-search-form-live-results-loader {
    display: none;
    height: 40px;
    width: 40px
}

.afeb-search-form-live-results-loader svg {
    fill: #ddd;
    height: 100%
}

.afeb-search-form-live-results-nothing-found-message {
    display: none;
    width: 100%
}

@media only screen and (max-width:480px) {
    .afeb-search-form-btn {
        padding: 15px 20px
    }

    .afeb-search-form input {
        height: 50px
    }

    .afeb-search-form input,
    .afeb-search-form-btn {
        width: 100%
    }

    .afeb-search-form form {
        flex-wrap: wrap
    }
}