.cp-preloader{
    display: none;
}

.cp-top-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;  
    justify-content: space-between;
    align-items: center;
}

.notFound{
    text-align: center;
}

.cpmapViewContainer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sidebar-item{
    cursor: pointer;
}

.cp-sidebar-container{
    overflow-y: auto;  
}
  
/* location Modal Content/Box */
#cp-location-popup {
    background-color: #fefefe;
    margin: 25% auto;
    padding: 2em;
    border-radius: 10px;
    width:600px;
}

.cp-location-popup-submit{
    width:100%;
    margin-top:10px;
}

/* width */
.cp-sidebar-container::-webkit-scrollbar {
    width: 12px;
    padding: 2px;
    }
    
/* Track */
.cp-sidebar-container::-webkit-scrollbar-track {
    background: #EDF6FF;
    border-radius:0;
}
    
/* Handle */
.cp-sidebar-container::-webkit-scrollbar-thumb {
    background: #DAEDFF;
    border-radius:100px;
}
    
/* Handle on hover */
.cp-sidebar-container::-webkit-scrollbar-thumb:hover {
    background: #C2E1FF;
}

#cp-location-popup-container {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1015; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

@media only screen and (max-width: 767px) {

    .cp-sidebar-container{
        display: none;
    }

    .userGeoIcon{
        width: 50%;
    }
    .openSetLocationBtn{
        text-wrap: wrap;
    }

    #cp-location-popup-container{
        padding:1em;
    }

    #cp-location-popup{
        margin: 50% auto;
        width: 100%;
        padding: 1em;
    }

}