/* Hier wird CSS für das Front-End geschrieben. */
.dtm-map-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display:flex;
    align-items: center;
}

.dtm-overlay-content {
    margin: 0 auto;
    padding-left:10px;
    padding-left:10px;
}

.dtm-map-blur-image {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    filter: blur(3px);
    background-size: auto;
    background-repeat: no-repeat;
}

.dtm-title {
    text-align: center;
    padding-top:10px;
    font-weight:bold;
    color: #555555;
    margin-bottom:0px;
    font-size:24px;
}

.dtm-text {
    text-align: center;
    font-weight: 500;
    color: #555555;
    font-size:18px;
}

.dock-map-activate {
    background-color: #555555; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    font-weight:bold;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    width: auto;
    cursor: pointer;
}

.dtm-map {
    overflow: hidden;
    position:relative;
    height:100%;
    min-height:600px;
}

.dtm-map iframe {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position: absolute;
}

.dtm-wrapper {
    height: 100%;
    width: 100%;
}

@media all and (min-width:0px) and (max-width: 1024px) {
    .dtm-text {
        font-size:14px;
    }

    .dtm-map {
        height:100%;
        min-height:300px;
    }

    .dtm-title {
        font-size:18px;
    }

  }