#tour-route-shortcode {
    background: var(--light-grey);
    padding: 20px 40px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

#tour-route-shortcode .route {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    position: relative;
}

#tour-route-shortcode .route .duration {
    font-weight: bold;
    color: var(--green);
    position: absolute;
    background: var(--light-grey);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10px;
    z-index: 2;
}

#tour-route-shortcode .route .route-label {
    font-size: 0.8rem;
    color: var(--purple);
    font-weight: bold;
    margin-bottom: 10px;
}

#tour-route-shortcode .route .route-start .route-name,
#tour-route-shortcode .route .route-end .route-name {
    display: flex;
    flex-direction: row;
    font-weight: bold;
    font-size: .9rem;
}

#tour-route-shortcode .route .route-start,
#tour-route-shortcode .route .route-end,
#tour-route-shortcode .route .route-start .route-label,
#tour-route-shortcode .route .route-end .route-label,
#tour-route-shortcode .route .route-start .route-label span,
#tour-route-shortcode .route .route-end .route-label span {
    position: relative;
}

#tour-route-shortcode .route .route-start .route-label span,
#tour-route-shortcode .route .route-end .route-label span {
    background: var(--light-grey);
    display: inline-block;
    padding: 0 10px;
    margin: 0 0 0 -10px;
    z-index: 2;
}

#tour-route-shortcode .route .route-start .route-label span:before,
#tour-route-shortcode .route .route-end .route-label span:before {
    content: '';
    position: absolute;
    top: 50%;
    background: var(--green);
    border-radius: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
}
#tour-route-shortcode .route .route-start .route-label span:before { left: 100%; }
#tour-route-shortcode .route .route-end .route-label span:before { right: 100%; }

#tour-route-shortcode .route .route-start:after {
    content: '';
    position: absolute;
    top: 12px;
    width: 100%;
    height: 0;
    border-top: 2px dashed var(--green);
}
#tour-route-shortcode .route .route-start:after { left: 0; }

#tour-route-shortcode .route picture {
    margin-right: 5px;
    display: flex;
    align-self: center;
    max-height: 0.9rem;
}

@media screen and (max-width: 1200px) {
    #tour-route-shortcode .route {
        grid-template-columns: 1fr;
        padding-left: 20px;
    }

    #tour-route-shortcode .route .route-label {
        margin-bottom: 0;
    }

    #tour-route-shortcode .route .route-start {
        padding-bottom: 90px;
        order: 1;
    }

    #tour-route-shortcode .route .duration {
        order: 2;
        position: relative;
        margin-top: -90px;
        transform: translateX(-40px);
        top: auto;
        left: auto;
        align-self: center;
        padding: 5px 10px;
    }

    #tour-route-shortcode .route .route-end {
        order: 3;
    }

    #tour-route-shortcode .route .route-start .route-label span:before {
        left: auto;
        right: 100%;
    }

    #tour-route-shortcode .route .route-start:after {
        border-top: 0;
        border-left: 2px dashed var(--green);
        width: 2px;
        height: 100%;
        left: -15px;
    }
}
