body {
    background-color: #fff;
    font-family: "Roboto", sans-serif;
    line-height: normal;
	overflow: hidden;
}

.container-xxl {
    max-width: 1800px;
}

#header {
    padding-top: 30px;
    padding-bottom: 90px;
    background-color: #000049;
    min-height: 253px;
}

#header #station {
    color: #fff;
    font-size: 110px;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

#maincontent {
    margin-top: -56px;
}

#sbb_uhr_container {
    min-height: 50vh;
}

.abfahrt {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 16px rgba(0, 0, 0, .3);
    padding: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #181818;
    margin-bottom: 30px;
    font-weight: 700;
    grid-gap: 15px;
    gap: 15px;
}

.icon {
    flex-basis: 78px;
}

.icon img {
    height: 78px;
    width: auto;
    margin-bottom: -4px;
}

.product {
    flex-basis: 125px;
    font-size: 40px;
    text-align: center;
}

.line {
    border-radius: 4px;
    line-height: 78px;
}

.destination {
    flex: 1;
}

.abbreviate {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.destination {
    flex: 1;
}

.direction {
    font-size: 40px;
    display: block;
}

.sub {
    font-size: 24px;
    display: block;
    font-weight: 300;
}

.zeit {
    font-size: 50px;
    line-height: 78px;
    text-align: right;
}

.track-changed {
    color: #eb0000;
    font-weight: 500;
}

footer {
    color: #757575;
    font-size: 10px;
}

#loader {
    position: absolute;
    left: 50%;
    top: calc(50% - 60px);
    border: 16px solid #ffffff00;
    border-radius: 50%;
    border-top: 16px solid #e7e7e7;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    margin: auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1200px) {
    div#clock_container {
        display: none;
    }

    div#connection_container {
        width: 96vw;
    }
}