#interior {
    background: #ffffff;
}

.recorrido-panel {
    background: #ffffff;
    border: 1px solid rgba(235, 174, 90, 0.45);
    border-radius: 4px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.recorrido-menu {
    display: flex;
    flex-wrap: wrap;
    background: #f6f6f6;
    border-bottom: 1px solid rgba(235, 174, 90, 0.45);
}

.recorrido-tab {
    flex: 1 1 180px;
    border: 0;
    border-right: 1px solid rgba(235, 174, 90, 0.35);
    background: transparent;
    color: #000000;
    cursor: pointer;
    font-family: "Acumin Pro Condensed Semibold", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0;
    padding: 1rem 1.25rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.recorrido-tab:last-child {
    border-right: 0;
}

.recorrido-tab:hover,
.recorrido-tab:focus,
.recorrido-tab.active {
    background: #ebae5a;
    color: #ffffff;
    outline: 0;
}

.recorrido-map-wrap {
    position: relative;
}

#mapa-recorrido {
    min-height: 560px;
    width: 100%;
    z-index: 1;
}

.recorrido-info {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 500;
    max-width: 320px;
    background: #ffffff;
    border-left: 5px solid #ebae5a;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    padding: 1rem 1.15rem;
}

.recorrido-info p {
    margin: 0.3rem 0 0 0;
}

.recorrido-km {
    color: #ebae5a;
    display: block;
    font-family: "Acumin Pro Condensed Black", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.kilometer-marker {
    align-items: center;
    background: #ffffff;
    border: 2px solid #ebae5a;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: #000000;
    display: flex;
    font-family: "Acumin Pro Condensed Black", sans-serif;
    font-size: 0.95rem;
    height: 30px;
    justify-content: center;
    line-height: 1;
    width: 54px;
}

.start-finish-marker {
    align-items: center;
    background: #ebae5a;
    border: 2px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
    color: #ffffff;
    display: flex;
    font-family: "Acumin Pro Condensed Black", sans-serif;
    font-size: 0.95rem;
    height: 34px;
    justify-content: center;
    line-height: 1;
    min-width: 116px;
    padding: 0 10px;
    white-space: nowrap;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    border-radius: 4px;
}

.leaflet-popup-content {
    color: #000000;
    font-family: "Acumin Pro", sans-serif;
}

@media screen and (max-width: 767px) {
    .recorrido-tab {
        flex-basis: 100%;
        border-right: 0;
        border-bottom: 1px solid rgba(235, 174, 90, 0.35);
        font-size: 1rem;
        padding: 0.85rem 1rem;
        text-align: left;
    }

    .recorrido-tab:last-child {
        border-bottom: 0;
    }

    #mapa-recorrido {
        min-height: 460px;
    }

    .recorrido-info {
        bottom: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
        padding: 0.85rem 1rem;
    }

    .recorrido-km {
        font-size: 1.65rem;
    }
}
