.discovery-search {

    & #location-search-form {

        position: relative;

        & .search-input {
            position: relative;
            width: 100%;

            & .search-reset {
                border: none;
                background-color: #fff0;
                display: inline-block;
                outline: 0;
                cursor: pointer;
                position: absolute;
                background-image: url('../icons/icon-cross.svg');
                background-position: center;
                background-repeat: no-repeat;
                top: 50%;
                width: 30px;
                height: 30px;
                margin-top: -14px;
                right: 7px;
            }

        }

    }

    & #location-search-results {
        position: absolute;
        top: 75px;
        width: 100%;
        width: -webkit-fill-available;
        background: #ffffff;
        z-index: 20;
        border: 2px solid #d2dc6a;
        max-height: 244px;
        padding: 1%;
        overflow-y: auto;

        & a {
            margin-bottom: 5px;
            padding: 5px;
            border-bottom: 1px solid #cbcbcb;
            display: block;
        }

        & a:last-of-type {
            margin-bottom: 0px;
            border-bottom: 0;
        }

    }

    & select {
        appearance: listbox;
        -webkit-appearance: listbox;
    }

    & select, 
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    input[type="date"],
    input[type="phone"] {
        width: 100%;
        width: -webkit-fill-available;
        padding: 12px 6px;
        margin: 10px auto 0;
        border-radius: 5px;
        border: 2px solid #83266c;
        background: #FFFFFF;
        font-size: 1.5rem;
        display: block;
    }

    & button {
        padding: 12px 6px;
        text-transform: uppercase;
        border: 0;
        background: #4f4f4b;
        color: white;
        font-size: 1.3rem;
        margin: 10px 0;
    }

    & .input-error {
        border-color: #d9534f !important;
    }

}

@media only screen and (max-width: 690px) {

    .discovery-search #location-search-results {
        left: 50%;
        width: 95%;
        transform: translate(-50%, 0%);
        padding: 3%;
    }

}