#channel-advisor-map {
    height: 250px;
}
@media (min-width: 1024px) {
    #channel-advisor-map {
        height: 400px;
    }
}

.channel-advisor-store-list-container.loaded #map,
.channel-advisor-store-list-container.loaded #channel-advisor-store-list,
.channel-advisor-store-list-container.loaded #channel-advisor-empty-store-list,
.channel-advisor-online-store-list-container.loaded #channel-advisor-online-store-list {
    opacity: 1;
}

.channel-advisor-store-list-container.loading #map,
.channel-advisor-store-list-container.loading #channel-advisor-store-list,
.channel-advisor-store-list-container.loading #channel-advisor-empty-store-list,
.channel-advisor-online-store-list-container.loading #channel-advisor-online-store-list {
    opacity: 0;
}


.channel-advisor-store-list-container.loading .overlay,
.channel-advisor-online-store-list-container.loading .overlay {
    opacity: 1;
    z-index: 100;
}
.channel-advisor-store-list-container.loaded .overlay,
.channel-advisor-online-store-list-container.loaded .overlay {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width:40px;
    height:40px;
    border:4px solid #FFFFFF;
    border-top:4px solid #1c3687;
    border-radius:50%;
    transition-property: transform;
    animation-name: rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

#channel-advisor-store-list {
    height: calc(100vh - 6rem - 3rem - 250px - 1rem - 2rem - 3rem);
    overflow-y: scroll;
}
@media (min-width: 1024px) {
    #channel-advisor-store-list {
        height: calc(100vh - 6rem - 3rem - 400px - 1rem);
        overflow-y: scroll;
    }
}

#channel-advisor-online-store-list {
    height: calc(100vh - 6rem - 1rem - 3rem);
    overflow-y: scroll;
}
@media (min-width: 1024px) {
    #channel-advisor-online-store-list {
        height: calc(100vh - 6rem - 3rem - 1rem);
        overflow-y: scroll;
    }
}

#channel-advisor-store-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

#channel-advisor-store-list ul li {
    position: relative;
}

.online-store-list-item, .store-list-item {
    border-color: #cccccc;
}

.store-details {
    flex-grow: 1;
}

.wd-40-channel-advisor-close-button {
    top: 0.5rem;
    right: 2rem;
}

/* Styling for Autocomplete search bar */
#pac-card {
    background-color: #fff;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    font-family: Roboto;
    margin: 10px 10px 0 0;
    -moz-box-sizing: border-box;
    outline: none;
}

#pac-container {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-right: 12px;
}

#pac-input {
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 400px;
}

#pac-input:focus {
    border-color: #4d90fe;
}

#title {
    color: #fff;
    background-color: #acbcc9;
    font-size: 18px;
    font-weight: 400;
    padding: 6px 12px;
}