/* headers */
h3 {
    font-size: 22px;
    font-weight: bold;
}

/*overview */
dl {
    display:grid;
    grid-template-columns: auto 1fr;
    font-size: 20px;
}

dt,dd {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

dd {
    padding-left: 50px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
}

dl dd:first-of-type,
dl dt:first-of-type {
    border-top: 1px solid #ccc;
}

dd.deadline-time {
    font-weight: bold;
    color: #C00000;
}

/* notes */
h4 {
    font-size: 18px;
}

ul.notes{
    padding-left: 1.5em;
}
.notes li {
    list-style-type: disc;
    padding-top: 0.5em;
    font-size: 18px;
}

/* apply button */
.apply-button {
    background: linear-gradient(to right, #26a4a2, #79DFDD);
    width: 330px;
    height: 70px;
    font-size: 20px;
    border-radius: 35px;

    margin:40px auto 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.apply-button span {
    color: white;
    margin: 5px;
    font-weight: bold;
}

.apply-button a {
    text-decoration: none;
    display: flex;
    flex-wrap: nowrap;
}

.arrow {
    background-color: white;
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    justify-content: center;
}

.arrow span {
    color: #1f8b89;
    margin:0px 3px 0px 7px;
}

/* deadline */
p.deadline-label,
p.deadline-time {
    text-align: center;
}

p.deadline-label {
    color:#1f8b89;
    font-size: 21px;
    font-weight: bold;
    margin-top:1em;
}

p.deadline-time {
    font-size: 24px;
    font-weight: bold;
}
p.deadline-time .emphasis {
    font-size: 36px;
}

.attention-text {
    font-size: 18px;
}

/* event program */
.event-program {
    margin-top: 90px;
    margin-bottom: 60px;
}

.event-program > div {
    display: flex;
}
table {
    border-collapse: collapse;
    width: 100%;
}
tr {
    border-top: 1px solid rgb(210, 210, 210);
    border-bottom: 1px solid rgb(210, 210, 210);
}
td {
    padding: 8px 8px 12px;
    vertical-align: top;
}
.break {
    background-color:rgb(230, 230, 230);
}
.dashed {
    border-right: 1px dashed rgb(210, 210, 210);
}

.in-session td:first-of-type span {
    font-size: 14px;
    color:#1f8b89;
    font-weight: bold;
}

td:first-of-type,
.break td {
    text-align: center;
}

.break td {
    padding: 8px;
    vertical-align: middle;
}

.break td:first-of-type {
    font-size: 14px;
    font-weight: bold;
}

tr .emphasis {
    font-size: 20px;
    font-weight: bold;
}

.subtitle {
    font-weight: bold;
}