body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.map-container {
    position: relative;
    flex: 3;
    overflow: hidden;
    cursor: grab;
}

.map {
    position: absolute;
    background: url('../logo/terkep.png') no-repeat center center;
    background-size:cover;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    left: 0;
    top: 0;
}

.marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

.info-container {
    flex: 1;
    border-top: 2px solid black;
    display: flex;

}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.hamburger {
    z-index: 10000;
    display: block !important;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.jumbotron {
    z-index: 2000;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 3%;
    top: 12%;
}

@media screen and (max-width: 1000px) {
    .hamburger {
        top: 17%;
    }
}

#cart-container {
    color: white;
    z-index: 4000 !important;
}