.search-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 70px;
    background-color: navy;
    width: 75%;
    margin: 0 auto;
}

    .search-container .icon {
        display: none;
    }

.search-item {
    align-self: center;
    border: 1px solid #EFA151;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    height: 50px;
    max-height: 50px;
    cursor: pointer;
}

.ddl {
    max-width: 180px;
    min-width: 160px;
    overflow: hidden;
    position: relative;
    border: 1px solid navy;
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: white;
    margin-right: 20px;
    -webkit-appearance: none;
    height: 49px;
    flex-basis: 250px;
}

.btn {
    width: 80px;
    flex-basis: 70px;
    background-color: #EFA151;
}

.ddlSearch {
    position: relative;
    font-size: 16px;
    top: 10px;
    z-index: 2;
    padding: 4px;
    color: navy;
    outline: medium none;
    border-style: none;
    line-height: 1.3em;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none repeat scroll 0% 0% transparent;
    width: 100%;
    text-indent: 0.01px;
    text-overflow: clip;
    cursor: pointer;
}

.ddl::before {
    position: absolute;
    width: 20px;
    background-size: 400% auto;
    background-position: -60px 0px;
    right: 10px;
    top: 8px;
    z-index: 1;
    font-size: 20px;
    color: navy;
    content: '\2026';
}

.btnZoek {
    position: relative;
    font-size: 16px;
    top: 10px;
    z-index: 2;
    padding: 4px;
    color: white;
    outline: medium none;
    border-style: none;
    line-height: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none repeat scroll 0% 0% transparent;
    width: 100%;
    text-indent: 0.01px;
    text-overflow: clip;
    cursor: pointer;
}

@media all and (max-width: 900px) {
    .search-container {
        flex-direction: column;
        justify-content: center;
    }

    .btn {
        width: 90%;
        background-color: #EFA151;
        overflow: hidden;
        position: relative;
        float: left;
        border: 1px solid #EFA151;
        margin-bottom: 10px;
        margin-top: 5px;
        width: 80px;
        margin-right: 20px;
        -webkit-appearance: none;
        height: 49px;
        flex-basis: 250px;
    }

    .ddl {
        width: 90%;
        max-width: 90%;
    }

    .btnZoek {
        color: navy;
    }
}

@media all and (max-width: 750px) {
    .search-container {
    }

    .ddl {
        width: 60%;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 60%;
        max-width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .btnZoek {
        color: white;
    }

    .search-container div {
        display: none;
    }

    .search-container a.icon {
        float: right;
        display: block;
    }

    .search-container a {
        float: left;
        display: block;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

    i {
        color: white;
        font-size: 1.8em;
    }

    .search-container.responsive {
        position: relative;
    }

        .search-container.responsive a.icon {
            position: absolute;
            right: 0;
            top: 0;
        }

        .search-container.responsive div.search-item {
            float: none;
            display: block;
            text-align: left;
        }
}
