#modalMap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(41, 47, 60, 0.6);
    z-index: 100;
    display: none;
}

.modalMapContent {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 70%;
    height: auto;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.modalHeader {
    color: white;
    background: #292f3c;
    line-height: 50px;
    text-align: center;
    position: relative;
    height: 50px;
    box-sizing: border-box;
    font-family: 'Source Sans 3';
    font-size: 18px;
    font-weight: bold;
}

.modalHeader .closeModal {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: block;
    padding: 0 20px;
    font-size: 16px;
    background: #e65014;
    height: 100%;
}

.modalHeader .closeModal:hover {
    background: #d73800;
}

.mapText {
    font-size: 16px;
    padding-bottom: 15px;
    font-family: 'Source Sans 3';
}

.map-preview {
    padding: 20px;
}

.zoomBtn {
    display: none;
}

@media screen and (max-width: 1200px) {
    .modalMapContent {
        width: 80%;
    }
}

@media screen and (max-width: 992px) {
    .modalMapContent {
        width: calc(100% - 20px);
    }

    .modalHeader {
        font-size: 16px;
    }

    svg#mapaKnihovna {
        width: 100%;
        height: 30vh;
        margin-bottom: 15px;
    }

    svg.zoomIcons {
        height: 15px;
        margin-bottom: 2px;
        margin-right: 5px;
    }

    .zoomBtn {
        display: block;
    }

    .zoomBtn button {
        font-weight: 700;
        font-family: 'Source Sans 3';
        font-size: 12px;
        text-transform: uppercase;
        height: auto !important;
    }

    .zoomBtn #zoom-in {
        width: calc(50% - 5px) !important;
        margin-right: 5px;
        float: left;
    }

    .zoomBtn #zoom-out {
        width: calc(50% - 5px) !important;
        margin-left: 5px;
        float: right;
    }

    .zoomBtn #reset {
        margin-top: 10px;
        width: 100% !important;
    }
}
