#mb-container {
    display: flex;
    height: 600px;
    background-color: #F9F4EE;
}

#mb-sidebar {
    width: 40%;
    background-color: #43332A;
    color: #F9F4EE;
    overflow-y: auto;
    padding: 24px;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
}

#mb-sidebar input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 8px;
    background-color: #fff !important;
    font-size: 16px;
    color: #43332A;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23555' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' class='feather feather-search' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 20px;
    padding-left: 40px;
}

#mb-sidebar .boutiques {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#mb-list {
    flex: 1;
}

.boutique {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid #F9F4EE;
}

.boutique:last-child {
    border-bottom: none;
}

.boutique .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #F9F4EE;
    margin: 0;
    margin-bottom: 8px !important;
}

.boutique b {
    font-weight: 600;
}


#mb-map {
    flex: 1;
    height: 100%;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
}

.leaflet-popup-content {
    font-size: 14px;
    line-height: 1.5;
    background-color: #F9F4EE;
    color: #43332A;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    box-shadow: none !important;
    background-color: #F9F4EE;
}

.icon-popup {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 12px;
    margin-bottom: 16px;

}

.leaflet-popup-content {
    width: 360px !important;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
}

.header-popup {
    display: block;
    padding: 16px 12px 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #43332A;
}

a.leaflet-popup-close-button {
    font-size: 20px !important;
    color: #43332A !important;
    top: 14px !important;
    right: 12px !important;
}

.leaflet-bottom.leaflet-right {
    display: none;
}

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

    #mb-container {
        flex-direction: column-reverse;
        height: 1200px;
    }

    #mb-sidebar {
        width: 100%;
        height: 600px;
        border-radius: 0 0 8px 8px !important;

    }

    #mb-map {
        border-radius: 8px 8px 0 0 !important;
    }
}