#drive-map {
    width: 100%;
    height: 550px;
    border: 1px solid #ccc;
    margin: 20px 0;
    border-radius: 10px;
}

.drive-map-search-container {

    background: white;
    padding: 10px 10px 10px 20px;
    border-radius: 40px;
    margin-bottom: 40px;

    .search_header_title {
        color: var(--dark-green);
        font-weight: bold;
        font-size: 0.9rem;
    }

    form div.row-search {

        display: flex;
		flex-wrap:wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;

        .form-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 0;

            label {
                margin-bottom: 0;
            }

            .form-control {
                border: none;
                background: none;
                border-bottom: 1px solid #ccc;
                border-radius: 0 !important;
                padding: 0 0 5px 5px !important;
                font-size: 0.9rem;
            }
        }

        .sep {
            border-right: 1px solid #aeaeae;
            height: 30px;
        }

    }

    #drive-search-form select.form-control:not([size]):not([multiple]) {
        height: auto;
    }

    .custom-select-wrapper::after {
        display: none;
    }
}