* {
    font-family: "Josefin Sans",sans-serif;
}

.container,.container-fluid {
    font-size: 16px;
}

/* Nav-bar */

.navbar .glyphicon{
    color: #85c3ff;
}

@media (min-width: 768px) {
    .navbar-brand > img {
        height: 30px;
        margin-top: -5px;
        display: inline-block;
    }
}

@media (max-width: 500px) {
    .navbar-brand > img {
        height: 30px;
        display: inline-block;
    }
}

/* Timeline related styles */

.timeline-container {
    overflow-x: auto;
}
.timeline-container .timeline {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.timeline-container .timeline li {
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 200ms ease-in;
}

.timeline-container .timeline .timestamp {
    height: 50px;
    margin-bottom: 20px;
    padding: 0 40px 15px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    border-bottom: 2px solid black;
    position: relative;
    min-width: 40px;
    white-space: nowrap;
    text-align: center;
}

.timeline-container .timeline .timestamp:after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #85c3ff;
    border-radius: 20px;
    border: 1px solid #000;
    position: absolute;
    bottom: -11px;
    left: 42%;
    transition: all 200ms ease-in;
}

.timeline-container .timeline .status {
    height: 4em;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms ease-in;
    text-align: center;
}

/* Oldschool timeline */

.oldschool-timeline .timeline {
    list-style-type: none;
}

.oldschool-timeline .timeline .timestamp {
    display: inline-block;
    font-weight: bold;
}

.oldschool-timeline .timeline .timestamp:after {
    content: ":";
    font-weight: normal;
}

.oldschool-timeline .timeline .status {
    display: inline-block;
}

header .promo {
    padding: 6px;
}

header h1 {
    color: #000000;
    font-weight: bold;
    text-align: center;
}

header h1 a {
    font-size: 80%;
}

header h1 img.logo {
    max-width: 40vh;
    margin-bottom: 18px;
}

header .switcher .choice {
    font-size: 18px;
    color: #777;
    display: none;
    font-weight: normal;
}

header .switcher .choice strong {
    font-size: 18px;
}

header a {
    color: #3c7ae9;
    font-weight: bold;
}

.table-hover > tbody > tr.selected:hover {
    background-color: #aaa;
}

tr.selected {
    background-color: #bbb;
}

.nav-padding {
    height: 72px;
}

.about-image {
    border: 1px solid black;
    margin: -35px 30px 10px -20px;
    padding: 5px;
    background-color: white;
    width: 330px;
    height: 330px;
    float: left;
}

.card-container {
    padding: 5px;
}

.card {
    height: 350px;
    border: 1px solid black;
    padding: 0;
    background-color: #e2f8fd;
}

@media (max-width: 500px) {
    .card {
        height: 400px;
    }
}

.card h3 {
    margin: 0;
    padding: 5px;
    border-bottom: 1px solid black;
    height: 60px;
    font-weight: bold;
    background: #baedfc; /* Old browsers */
    background: -moz-linear-gradient(top, #baedfc 0%, #7cd4ef 40%, #7cc7dd 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #baedfc 0%,#7cd4ef 40%,#7cc7dd 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #baedfc 0%,#7cd4ef 40%,#7cc7dd 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#baedfc', endColorstr='#7cc7dd',GradientType=0 ); /* IE6-9 */
}

.card .content {
    padding: 5px;
    overflow-y: auto;
}

.card .content ul {
    padding-left: 20px;
}

footer.well {
    background-color: #e2f8fd;
    background-image: none;
}

footer.well ul {
    list-style-type: none;
}

footer.well a {
    color: black;
}

.current-price {
    color: red;
}

.original-price {
    text-decoration: line-through;
}