* {
    margin: 0;
    padding: 0;
}

.box {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: scroll;
}

.filter {
    position: fixed;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    top: 10px;
    left: 20px;
	z-index: 2;
}

img#imgLot {
    position: absolute;
    transform: scale(0.7);
    transform-origin: top left;
	z-index: 1;
}

.buttons {
    z-index: 2;
    bottom: 30px;
    left: 15px;
    position: fixed;
}

.buttons svg {
    height: 40px;
    fill: #3f51b5;
    background-color: #fff;
    padding: 6px;
    border-radius: 6px;
}

.buttons svg:hover {
    cursor: pointer;
}

.msg-filtro-inicial {
	height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
	font-size: 20px;
    font-weight: 500;
}

.msg-filtro-inicial img {
	max-width: 350px;
}

.hide {
	display: none;
}

.show {
	display: flex;
}

svg.div-svg-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: scale(0.7);
    transform-origin: top left;
    pointer-events: none;
}