#pictureframe {
    max-width: 100%;
    height:auto;
}

#blocker {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.map-image-container {
    display: flex;
    position: relative;
    background-color: var(--bs-secondary);
}

.map-image-container .map-image {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bs-secondary);
}

.shrinked {
    width: 10vw;
    opacity: 0.8;
    transition: all 2s;
}

.enlarged {
    transition: all 2s;
    opacity: 1;
    width: 100%;
}

.map-image-container area {
    cursor: pointer;
}

@media (max-width: 991px) {
    .shrinked {
        width: 20vw;
    }
}