.lokala-map {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
    overflow: hidden;
}

.lokala-map img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-background {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 410px;
    border-radius: 15px;
    background: var(--lokala-white);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.map-text {
    padding: 50px;
    text-align: center;
    font-weight: bold;
    color: var(--lokala-text-color-dark);
}

.map-text a{ /*buttons*/
    margin-bottom: 10px !important;
}

.user-login-button {
    background-color: var(--lokala-dark-orange) !important;
    color: var(--lokala-text-color-light) !important;
}

@media only screen and (max-width: 550px) {
    .text-background {
        width: 85vw;
        height: 45vh;
    }
    .map-text {
        padding: 40px;
    }
}

@media only screen and (max-width: 400px) {
    .text-background {
        height: 55vh;
    }
    .map-text {
        padding: 30px;
    }
}
