.msl-wrap * {
    box-sizing: border-box
}

.msl-wrap {
    position: relative;
    height: 80vh;
    min-height: 520px;
    width: 100%;
    overflow: hidden;
    font-family: "Helvetica",sans-serif
}

.msl-sidebar {
    position: absolute;
    width: 25%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    overflow-y: auto;
    background-color: #121212;
    z-index: 10;
    overscroll-behavior: contain;
    border-right: 1px solid #D7002E
}

.msl-map {
    position: absolute;
    left: 25%;
    width: 75%;
    top: 0;
    bottom: 0;
    height: 100%;
    background: #121212
}

.msl-controls {
    margin-bottom: 0;
    border-bottom: 1px solid #D7002E;
    padding: 0
}

.msl-row {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #D7002E;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

.msl-btn {
    background: transparent;
    color: #fff;
    font-weight: 400;
    flex: 1;
    font-size: 12px;
    line-height: 1.2;
    text-transform: capitalize;
    border: 0;
    border-radius: 0;
    white-space: nowrap;
    padding: 0 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50%;
    flex: 0 0 auto
}

.msl-btn:hover {
    opacity: .9
}

.msl-input,.msl-select {
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0 10px;
    height: 50px;
    font-size: 12px;
    width: 50%;
    flex: 0 0 auto
}

.msl-select {
    margin-bottom: 0;
    border-left: 1px solid #D7002E;
    appearance: none;
    text-align: left;
    background-image: url(down.svg);
    background-position: 95% center;
    background-size: 12px;
    background-repeat: no-repeat;
    padding: 0 15px;
}

.msl-sidebar-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin: 40px 0 30px;
    font-family: "Nexa",sans-serif
}

.msl-store-item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 5%);
    border-bottom: 1px solid #D7002E;
    border-radius: 0;
    transition: background-color 0.2s ease;
    cursor: pointer;
    padding: 1rem;
    scroll-margin: 1.25rem 0;
    background-color: transparent
}

.msl-store-item:hover,.msl-store-item.active {
    background-color: #D7002E
}

.msl-store-name {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 .5rem 0;
    font-family: "Nexa",sans-serif
}

.msl-store-details {
    color: #eee;
    line-height: 1.5;
    font-weight: 300;
    font-size: 13px
}

.msl-label {
    font-weight: 700;
    display: block
}

.msl-popup {
    color: #000;
    min-width: 220px
}

.msl-popup-title {
    font-weight: 400;
    margin-bottom: 6px;
    font-family: 'Nexa';
    font-size: 20px;
    letter-spacing: -.06em
}

.msl-popup-line {
    margin-bottom: 4px
}

.msl-popup-label {
    font-weight: 900
}

.msl-popup-actions {
    margin-top: 10px
}

.msl-popup-btn {
    display: inline-block;
    border: 1px solid #D7002E;
    background: #D7002E;
    color: #fff;
    padding: 2px 10px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-family: "Helvetica",sans-serif;
    transition: all ease .4s
}

.msl-popup-btn:hover {
    color: #fff;
    background: #000;
    border-color: #000
}

.msl-sidebar::-webkit-scrollbar {
    background: #101010
}

.msl-select option {
    background: #121212;
    color: #fff
}

.msl-searchbar input#msl-search {
    height: 50px;
    padding: 0 45px 0 20px;
    width: 100%;
    background: none;
    color: #fff;
    font-size: 12px;
    border: 0
}

.msl-searchbar button#msl-search-btn {
    background: none;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px
}

.msl-searchbar {
    position: relative;
    z-index: 0
}

.msl-suggest {
    border: 1px solid #f03;
    border-top: 0;
    background: #111;
    color: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    max-height: 260px;
    overflow-y: auto
}

.msl-suggest-item {
    padding: 10px 12px;
    cursor: pointer;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
    line-height: 1.35
}

.msl-suggest-item:hover,.msl-suggest-item.active {
    background: rgba(255,0,51,.2)
}

.msl-suggest-title {
    font-weight: 700;
    margin-bottom: 2px
}

.msl-suggest-sub {
    opacity: .85;
    font-size: 12px
}
.mapboxgl-ctrl-bottom-left {
    opacity: 0;
}

.mapboxgl-ctrl-bottom-right {
    opacity: 0;
}
@media (max-width: 900px) {
    .msl-sidebar {
        width:100%;
        height: 45%;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0
    }

    .msl-map {
        left: 0;
        width: 100%;
        height: 55%
    }
}
