.wanderwege-front {
    width: 100%;
    box-sizing: border-box;
}

/*Slider*/
/* ==========================================================
   Wanderwege Slider
   ========================================================== */

.wanderwege-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.wanderwege-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.wanderwege-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.wanderwege-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}


/* Links in einem Slide */
.wanderwege-slide a {
    display: block;
}


/* ==========================================================
   Pfeile
   ========================================================== */

.wanderwege-slider-prev,
.wanderwege-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-size: 30px;
    line-height: 36px;

    text-align: center;

    cursor: pointer;

    z-index: 10;

    transition:
        background 0.2s ease,
        opacity 0.2s ease;
}

.wanderwege-slider-prev:hover,
.wanderwege-slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.wanderwege-slider-prev {
    left: 10px;
}

.wanderwege-slider-next {
    right: 10px;
}


/* ==========================================================
   Punkte
   ========================================================== */

.wanderwege-slider-dots {
/*    position: absolute;

    left: 0;
    right: 0;
    bottom: 12px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;

    z-index: 10;*/
	display:none;
}

.wanderwege-slider-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.6);

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.wanderwege-slider-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.wanderwege-slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}


/* ==========================================================
   Mobil
   ========================================================== */

@media (max-width: 600px) {

    .wanderwege-slider-prev,
    .wanderwege-slider-next {
        width: 34px;
        height: 34px;

        font-size: 25px;
        line-height: 30px;
    }

    .wanderwege-slider-prev {
        left: 6px;
    }

    .wanderwege-slider-next {
        right: 6px;
    }

    .wanderwege-slider-dots {
        bottom: 8px;
    }

    .wanderwege-slider-dot {
        width: 8px;
        height: 8px;
    }
}
/* Slider ende*/






#wanderwege-karten-hinweis {
    min-height: 300px;
	width:100%;
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 30px;

    box-sizing: border-box;

    background: #f5f5f5;
	border:1px solid red;
}


#wanderwege-karten-hinweis p {
    margin: 0 0 20px 0;
	color:#000;
}


.osm-button {
    display: inline-block;

    padding: 10px 20px;

    border: 0;

    border-radius: 4px;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;
	border:1px solid #000;
}


/*
 * Regionsauswahl
 */

.wanderwege-karten-formular {
    width: 100%;
    margin-bottom: 15px;
}

.wanderwege-karten-formular label {
    color: #000;
    margin-right: 8px;
}

.wanderwege-karten-formular select {
    height: 30px;
}


/*
 * 60 / 40 Layout
 */

.wanderwege-layout {
    display: flex;
    width: 100%;
    gap: 20px;
    box-sizing: border-box;
}

.wanderwege-links {
    flex: 1 1 0;
    min-width: 0;
}

.wanderwege-rechts {
    flex: 1 1 0;
    min-width: 0;
}

.wanderwege-rechts p, .wanderwege-rechts h2{color:#000;}


/* INFO */

.info {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 5px;
    box-sizing: border-box;
}


/* linke innere Spalte – 60 % */

.info-links, .info-links h2 {
    flex: 3 1 0;
    min-width: 0;
    color: #000;
    box-sizing: border-box;
}


/* rechte innere Spalte – 40 % */

.info-rechts {
    flex: 2 1 0;
    min-width: 0;
    box-sizing: border-box;
	color:#000;
}

.info-links,
.info-rechts {
    box-sizing: border-box;
}
/* Info Text */
.info-p{line-height:1.2;margin-bottom:10px;color:#000 !important;}

/*Text neben Icons */
.info-icon {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
	margin-bottom:5px;
}

.info-icon img {
    width: 30px !important;
    height: auto;
    flex: 0 0 50px;
}

.info-icon span {
    flex: 1 1 auto;
    min-width: 0;
}

/*
 * ==========================================================
 * Wanderweg-Pin
 * ==========================================================
 */

.wanderwege-pin-container {
    background: transparent;
    border: 0;
}


.wanderwege-pin {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #1976d2;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 700;

    border: 2px solid #ffffff;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.35);

    box-sizing: border-box;
}


/*
 * ==========================================================
 * Popup
 * ==========================================================
 */

.wanderwege-popup {
    min-width: 200px;
}


.wanderwege-popup h3 {
    margin: 0 0 10px 0;

    font-size: 18px;

    line-height: 1.3;
	color:#000;
}


/*
 * ==========================================================
 * Icons
 * ==========================================================
 */

.wanderwege-popup-icons {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 10px 0;
}


.wanderwege-popup-icons .wanderwege-icon {
    width: 28px;
    height: 28px;

    object-fit: contain;

    display: block;
}


/*
 * ==========================================================
 * Button
 * ==========================================================
 */

.wanderwege-popup-button {
    margin-top: 12px;
}


.wanderwege-weg-button {
    display: inline-block;

    padding: 7px 12px;

    background: #1976d2;

    color: #ffffff !important;

    text-decoration: none;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;
}


.wanderwege-weg-button:hover {
    color: #ffffff;

    text-decoration: none;
}





/*
 * Kartenwrapper
 */

#wanderwege-wrapper {
    width: 100%;
}


/*
 * Karte
 */

#wanderwege {
    width: 100%;
    height: 600px;
}


/*
 * Mobil
 */

@media (max-width: 768px) {

    .wanderwege-layout {
        flex-direction: column;
    }

    .wanderwege-links,
    .wanderwege-rechts {
        width: 100%;
    }

    #wanderwege {
        height: 400px;
    }

}