
.leaflet-info-control {
    background: #fff none repeat scroll 0 0;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
.leaflet-info-control .button {
    background-image: url("../../Artwork/legend32.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
    height: 28px;
    width: 28px;
}
.leaflet-touch .leaflet-info-control .button {
    height: 44px;
    width: 44px;
}
.leaflet-info-pane {
    box-sizing: border-box;
    height: 80%;
    padding: 10px;
    position: absolute;
    width: 350px;
    z-index: 2000;
}
.leaflet-info-pane .content {
    background: white none repeat scroll 0 0;
    border-radius: 4px;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
    box-sizing: border-box;
    color: black;
    font-size: 1.0em;
    height: 100%;
    overflow: auto;
    padding: 8px 20px;
    width: 100%;
}
.leaflet-info-pane .close {
    background: white none repeat scroll 0 0;
    border-radius: 15px;
    color: #333;
    cursor: pointer;
    font-size: 25pt;
    height: 30px;
    line-height: 1em;
    position: absolute;
    right: 25px;
    text-align: center;
    top: 15px;
    width: 30px;
    z-index: 8;
}
.leaflet-info-pane.left {
    left: -500px;
    transition: left 0.5s ease 0s, width 0.5s ease 0s;
}
.leaflet-info-pane.right {
    right: -1000px;
    transition: right 0.5s ease 0s, width 0.5s ease 0s;
}
.leaflet-info-pane.left.visible {
    left: 0;
}
.leaflet-info-pane.right.visible {
    right: 0;
}
@media (max-width: 480px) {
.leaflet-info-pane {
    padding: 0;
    width: 100%;
}
.leaflet-info-pane.left {
    left: -100%;
}
.leaflet-info-pane.right {
    right: -100%;
}
.leaflet-info-pane.left.visible {
    left: 0;
}
.leaflet-info-pane.right.visible {
    right: 0;
}
.leaflet-info-pane .content {
    border-radius: 0;
    box-shadow: none;
}
}
@media (min-width: 481px) and (max-width: 768px) {
.leaflet-info-pane {
    width: 300px;
}
}
@media (min-width: 769px) {
.leaflet-info-pane {
    width: 350px;
}
}
