html,
body {
    padding: 0px;
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

strong {
    font-weight: 700;
}


.cbox {
    width: 90%;
    margin: 0 auto;
}

@media (min-width: 1000px) {
    .cbox {
        width: 900px;
    }
}

h1,
h2 {
    text-align: center;
}

.subpage h1 {
    font-weight: normal;
}
.subpage h1 strong {
    font-weight: bold;
}
h1 a {
    color: black;
    font-weight: normal;
}
h1 a:visited {
    color: #333;
}

h2 {
    margin: 40px 0px 20px 0px;
}

.yearly-links {
    text-align: center;
}
.yearly-links a {
    border: solid 1px rgb(255,215,0);
    border-radius: 5px;
    background-color: rgba(255,215,0,0.3);
    padding: 2px 4px;
    color: black;
}
.yearly-links a.active {
    font-weight: bold;
}
.yearly-links a:visited {
    color: #333;
}

.current-list,
.timeline-list {
    list-style: none;
    padding: 0px;
}
.current-list {
    margin: 10px 0px;
}
.timeline-list {
    margin: 30px 0px;
}

.current-list li,
.timeline-list li {
    list-style: none;
    padding: 10px 0px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}
.current-list li {
    border-bottom: dotted 1px rgb(255,215,0);
}
.current-list li:last-child {
    border-bottom: none;
}

.current-list li.is-free {
    background-color: rgba(255,215,0,0.1);
}
.current-list span.is-free {
    border: solid 1px rgb(255,215,0);
    border-radius: 10px;
    background-color: rgba(255,215,0,0.3);
    font-size: 70%;
    padding: 2px 4px;
}

.current-list .date,
.timeline-list .date {
    position: relative;
    width: 70px;
    min-height: 45px;
}

.timeline-list .date.is-past {
    opacity: 0.6;
}
.timeline-list .date.is-next {
    font-weight: bold;
}

.current-list .date:before,
.timeline-list .date:before {
    content: "\e90a";
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;

    position: absolute;
    left: 50%;
    top: 15px;
    transform: translate(-50%, 0%);
    font-size: 28px;
}
.current-list .date .out,
.timeline-list .date .out {
    display: block;
}
.current-list .date .out > span,
.timeline-list .date .out > span {
    display: block;
    text-align: center;
}
.current-list .date .out > span.weekday,
.timeline-list .date .out > span.weekday {
    font-size: 10px;
}
.current-list .date .out > span.day,
.timeline-list .date .out > span.day {
    font-size: 14px;
    font-weight: bold;
    padding: 9px 0px 0px 0px;
}
.timeline-list .date .out > .month-year {
    display: block;
    margin-top: 4px;
    font-size: 80%;
    text-align: center;
    color: black;
}
.timeline-list .date .out > .month-year:visited {
    color: #333;
}

.current-list .in-days {
    font-size: 75%;
    display: block;
    text-align: center;
}
.current-list .title {
    font-weight: bold;
    color: black;
    display: block;
    text-align: center;
}
.current-list a:visited,
.timeline-list a:visited {
    color: #333;
}

@media (min-width: 500px) {
    .current-list li {
        gap: 20px;
        flex-direction: row;
    }
    .current-list .in-days,
    .current-list .title {
        text-align: left;
    }
}

@media (min-width: 700px) {
    .timeline-list {
        display: flex;
        gap: 10px;
        flex-direction: row;
        justify-content: space-evenly;
    }
}

.month-cont {
    margin: 30px 0px;
    border: solid 1px rgb(255,215,0);
    border-radius: 10px;
    overflow: hidden;
}
.month-cont h2 {
    padding: 10px 0px;
    margin: 0px;
    background: rgba(255,215,0,0.3);
}
.month-cont .current-list {
    margin: 0px;
}
