.zoom-btn-content {
    width: 132px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -66px;
}

.zoom-btn-content .btn-default {
    padding: 10px;
    font-size: 2.4rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.85);
    border: 0px;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    width: 44px;
    height: 44px;
}

.zoom-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0.85);
    border: 0px;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/img/icoSearch.svg");
}

#zoomin {
    background-image: url("/img/icoZoomIn.svg");
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

#zoomout {
    background-image: url("/img/icoZoomOut.svg");
    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}