/*map view styling*/
.map-stockists-wrapper {
    position: relative;
}

.map-stockists-wrapper #MapResults {
    height: 375px;
    overflow: auto;
}

    .map-stockists-wrapper .map-search-wrapper {
        width: 25%;
        height: 700px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 9;
        background: white;
        height: 100%;
    }

@media screen and (max-width: 1000px) {
    .map-stockists-wrapper .map-search-wrapper {
        width: 35%;
    }
}

@media screen and (max-width: 750px) {
    .map-stockists-wrapper .map-search-wrapper {
        width: 45%;
    }
}

@media screen and (max-width: 600px) {
    .map-stockists-wrapper .map-search-wrapper {
        width: 55%;
    }
}

    .map-stockists-wrapper .map-search-wrapper .search-hide {
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: -50px;
        top: 16%;
        background: white;
        z-index: 999;
        width: 50px;
        height: 50px;
        cursor: pointer;
        transition: 5s;
    }

@media screen and (max-width: 1000px) {
    .map-stockists-wrapper .map-search-wrapper .search-hide {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 750px) {
    .map-stockists-wrapper .map-search-wrapper .search-hide {
        right: -39px;
        width: 40px;
        height: 40px;
    }
}

.map-stockists-wrapper .search-show {
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 12px;
    top: 15%;
    background: white;
    z-index: 999;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    transition: 5s;
}

@media screen and (max-width: 1000px) {
    .map-stockists-wrapper .search-show {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 750px) {
    .map-stockists-wrapper .search-show {
        width: 40px;
        height: 40px;
    }
}

.map-stockists-wrapper #MapResults .searchitem {
    cursor: pointer;
}