﻿
div#jc-results {
    margin-top: 14px;
}
.journey-summary-container {
    display: block;
}
.journey-summary-component {
    margin: 0 !important;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
    border: 1px solid #061B2B;
}
.journey-summary-component li {
    margin: 0;
    display: flex;
    flex-direction: column;
    width: calc(100% / 6);
    border: 1px solid #061B2B;
    flex: 1 1 auto;
}
.journey-summary-component li h3 {
    margin: 0;
    padding: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #061B2B;
    font-family: "D-DIN-PRO", sans-serif;
    text-align: center;
    white-space: nowrap;
}
.journey-summary-component li p {
    margin: 0;
    padding: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    font-family: "D-DIN-PRO", sans-serif;
}

@media screen and (max-width:1024px) {
    .journey-summary-component li {
        width: calc(100% / 3);
    }
}
@media screen and (max-width:575px) {
    .journey-summary-component li {
        width: calc(100% / 2);
    }
}
@media screen and (max-width:350px) {
    .journey-summary-component li {
        width: 100%;
    }
}
