/*
 * BOXZOOM
 */
.leaflet-control-boxzoom {
    background-color:white;
    border-radius: 4px;
    border:1px solid #cccccc;

    width:25px;
    height:25px;
    line-height: 25px !important;

    background-image:url(leaflet-control-boxzoom.svg);
    background-repeat:no-repeat;
    background-size:21px 21px;      /* 25px image, 25px box: subtract 2px for padding on every side = 21px rendering height */
    background-position:2px 2px;

    box-shadow: 0 1px 2px rgba(0,0,0,0.65);

    cursor:pointer;
}

.leaflet-control-boxzoom.leaflet-control-boxzoom-active {
    background-color:#aaaaaa;
}
