html,
body {
    background-color: #222222;
    color: #96e1c5;
    min-height: 100%;
    height: 100%
}

.skm-timetable {
    border: 10px solid black;
    background-color: #3F51B5;
    color: white;
    max-width: 420px;
    width: 100%;
    margin: 10px auto;
    padding-bottom: 1em;
    position: relative;
}

.skm-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #8f8f8ad6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skm-timetable p {
    padding: 5px 10px;
}

.skm-timetable .infoLabels {
    overflow: hidden;
    width: 100%;
    padding: 3px 10px 0;
    margin: 0;
}

.skm-timetable .hr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.486);
}

.skm-toolbar {
    padding: 5px 0 5px 10px;
    /* display: flex;
    font-size: 12px; */
}

.skm-toolbar .deparature-station-wrapper {
    font-size: 1.4rem;
}

.skm-toolbar .mdl-chip__contact {
    line-height: 42px;
}

.skm-toolbar .mdl-chip {
    background-color: #2238b6;
    color: white;
    /* line-height: 35px; */
}

.skm-toolbar .chip {
    padding-left: 6px;
    min-width: 96px;
    background-color: #2238b6;
    color: white;
    /* line-height: 35px; */
}

.skm-toolbar .chip i {
    line-height: 32px;
    float: left;
    font-size: 24px;
    margin-right: 8px;
    /* padding-left: 0px; */
}

.skm-toolbar .mdl-chip__text {
    font-size: 1.2rem;
}

#currentTime {}

p {}

.dropdown-trigger {
    margin-left: -10px;
}

.dropdown-content {
    width: 140px;
}

.dropdown-content li {
    padding: 6px 10px;
}

.nextdep {
    /* padding: 5px;
		font-size: 32px;
		max-width: 100px;
		height: 100px;
		text-align: right; */
    float: right;
    max-width: 72px;
    width: 100%;
    text-align: center;
}

.deparature {
    font-size: 1.6rem;
    padding: 5px 10px;
    margin: 0 0 16px;
}

.deparature_info {
    font-size: .9rem;
    line-height: 2.4;
    float: right;
    padding-left: 1em;
}

#currentTime {
    /* float: right; */
}

.tt_dir {
    background-color: #3F51B5;
    color: white;
}

.tt_dir>div {
    /* display: flex;
		flex-flow: row;
		background-color: #3F51B5; */
}

.tt_dir p {
    /* padding: 5px;
		font-size: 1.4em; */
}

.looping-rhombuses-spinner,
.looping-rhombuses-spinner * {
    box-sizing: border-box;
}

.looping-rhombuses-spinner {
    width: calc(15px * 4);
    height: 15px;
    position: relative;
}

.looping-rhombuses-spinner .rhombus {
    height: 15px;
    width: 15px;
    background-color: #3F51B5;
    left: calc(15px * 4);
    position: absolute;
    margin: 0 auto;
    border-radius: 2px;
    transform: translateY(0) rotate(45deg) scale(0);
    animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}

.looping-rhombuses-spinner .rhombus:nth-child(1) {
    animation-delay: calc(2500ms * 1 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(2) {
    animation-delay: calc(2500ms * 2 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(3) {
    animation-delay: calc(2500ms * 3 / -1.5);
}

@keyframes looping-rhombuses-spinner-animation {
    0% {
        transform: translateX(0) rotate(45deg) scale(0);
    }
    50% {
        transform: translateX(-233%) rotate(45deg) scale(1);
    }
    100% {
        transform: translateX(-466%) rotate(45deg) scale(0);
    }
}