
/* Google Maps Style Korrektur iPhone 2020-07-27 */
.gm-style .gm-style-iw {
    padding: 12px !important;
}

.gm-style .gm-style-iw-d  {
    overflow: hidden !important;
}

/* Inline Map Tooltip */

.stop-departure {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
.stop-departure-info-line, .stop-departure-info-destination, .stop-departure-info-minutes {
    display: inline-flex;
    padding-top: 5px;
}
.stop-departure-info-minutes {
    margin-left: 1em;
    float: right;


}
.stop-departure-info-minutes_now {
    display: flex;
    align-items: first baseline;
    padding-left: 20px;
    width: 45px;
    text-indent: 50px;
}
.stop-departure-info-hours-togo {
    padding-left: 20px;
}
.stop-departure-info-hours-togo:after {
    content: 'h';
    width: auto;
    height: auto;
    padding-left: 0.01em;
    padding-right: 0.15em;
}
.stop-departure-info-minutes_now:before {
    content:'';
    width: 20px;
    height:18px;
    background-image: url(images/bus.svg);
    background-repeat: no-repeat;
    text-indent: -100;
    animation: blink .9s linear infinite;
}

@keyframes blink{
    0%{opacity: 1;}
    20%{opacity: 0.75;}
    40%{opacity: 0.5;}
    60%{opacity: 0;}
    80%{opacity: 0.5;}
    100%{opacity: 0.75;}

}
.stop-departure-info-line {
    background-color: transparent;
    padding: 5px 0;
    text-align: center;
    width: 30px;
    margin-right: auto;
    font-weight: bold;
    float: left;
}

/* Pulse Animation Time */

.stop-departure-info-minutes-togo {
    animation: pulse 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 1;
}

@keyframes pulse {
    0% {opacity: 0.3;}
    20% {opacity: 0.7}
    50% {opacity: 1.0;}
    80% {opacity: 0.7}
    100% {opacity: 0.3;}
}