.environment-div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#ofmap_canvas {
    position: relative;
    width: 100%;
    height: 50vh;
    z-index: 0;
}

.search-div {
    border-bottom: 1px solid var(--e-global-color-c501ac7) !important;
}

.search-map {
    display: flex;
}

body .search-input {
    border-bottom: 0px !important;
    outline: 0px !important;
}

body .search-input:focus {
    border: 0px solid var(--e-global-color-c501ac7) !important;
    outline: 0px !important;
}

body .search-input:hover {
    border: 0px solid var(--e-global-color-c501ac7) !important;
    outline: 0px !important;
}

.address-list {
    padding: 0;
    margin: 0;
    gap: 8px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.address-list .flex-center {
    justify-content: flex-start;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(16% - 10px);
    margin-top: 5px;
}

#searchBtn {
    border: 0;
}

#searchBtn:focus {
    border: 0;
    background: unset;
    outline: 2px solid black !important;
}

.categories-container {
    display: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.custom-select.address-list.mobile {
    position: relative;
}

input:focus+label {
    outline: 1px solid currentColor;
}

#categoryContainer *,
#toggleCategories * {
    cursor: pointer !important;
}

#categoryContainer {
    display: none;
    position: absolute;
    top: 43px;
    right: 0;
    width: 100%;
    z-index: 999;
}

#toggleCategories {
    background: #fff;
    padding: 8px;
    border-radius: 0;
    display: inline-block;
    border-bottom: 1px solid var(--e-global-color-c501ac7);
    width: 100%;
}

#toggleCategories input {
    display: none;
}

#toggleCategories label {
    color: #000 !important;
}

#toggleCategories:hover {
    background: transparent !important;
}

#toggleCategories .flex-center {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

#toggleCategories .flex-center:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 768px) {

    .search-map {
        display: block;
    }

    .environment-div {
        gap: 24px;
    }

    .custom-select {
        position: relative;
    }

    .custom-select select {
        display: none;
    }

    .select-selected {
        border-bottom: 1px solid var(--e-global-color-c501ac7);
    }

    .select-selected:after {
        position: absolute;
        content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='13' viewBox='0 0 22 13' fill='none'><path d='M1.76953 1.875L10.7695 10.875L19.7695 1.875' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'></path></svg>");
        /* top: 38px; */
        left: 20px;
        width: 0;
        height: 0;
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #000 transparent;
        /* top: 10px; */
    }

    .select-items div,
    .select-selected {
        color: #000;
        cursor: pointer;
        user-select: none;
        padding: 8px;
    }

    .select-selected {
        padding: 8px 0;
    }

    .select-items {
        position: absolute;
        background-color: white;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;
        box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.20);
        border-radius: 0px 0 8px 8px;
    }

    .select-hide {
        display: none;
    }

    .select-items div:hover,
    .same-as-selected {
        /*background-color: rgba(0, 0, 0, 0.1);*/
        font-weight: 700;
    }

    .flip {
        transform: rotate(-180deg);
    }
}