body {
    color: #2d3748;
    font-family: "Open Sans", sans-serif;
}

/* Header */
.header {
    background-color: #f7fafc;
    min-height: 116px;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    padding-top: 32px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    max-height: 40px;
    margin-right: 8px;
}

.logo-wordmark {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
}

.flag {
    max-height: 32px;
}

.flag:first-child {
    margin-right: 8px;
}

/* Main */
.card-container {
    background-image: linear-gradient(#f7fafc 50%, #fff 50%);
}

.card {
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    max-width: 824px;
    margin: 0 auto 64px;
    padding: 16px;
}

.card--success {
    background-color: #dff4e8;
    border-color: #6fcf97;
    color: #219653;
}

.card__heading {
    font-size: 24px;
    margin-bottom: 8px;
}

.card__heading:before {
    content: url("/images/svgs/shield.svg");
    margin-right: 8px;
    vertical-align: middle;
    color:red;
}

.card__text {
    font-size: 14px;
}

.audit-trail {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.audit-trail__details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.audit-trail__terms {
    color: #718096;
    font-size: 13px;
}

.training__title {
    color: #718096;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.training__name {
    font-size: 24px;
    font-weight: 600;
}

.training__date-range {
    color: #718096;
}

.training__date {
    color: #4a5568;
    font-weight: 600;
}

.organistation-logo {
    max-height: 72px;
}

.attendance-sheet {
    margin-top: 24px;
    margin-bottom: 64px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.attendance-sheet__toggle {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.attendance-sheet__toggle .icon-toggle {
    transition: transform 0.4s ease-in-out;
}

.attendance-sheet__toggle.active .icon-toggle {
    transform: rotate(180deg);
}

.attendance-sheet__panel {
    height: 0;
    overflow: hidden;
    border-bottom: 0;
}

.attendance-sheet__panel.active {
    height: auto;
    border-bottom: 1px solid #e2e8f0;
}

.slot-time {
    font-size: 14px;
    line-height: 1.1;
}

.slot-time:before {
    margin-right: 8px;
    vertical-align: middle;
}

.slot-time--date {
    margin-right: 24px;
}

.slot-time--date:before {
    content: url("/images/svgs/calendar.svg");
}

.slot-time--hours:before {
    content: url("/images/svgs/clock.svg");
}

.event {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 24px 72px 24px 120px;
}

.event:first-child {
    padding-top: 40px;
}

.event:first-child:before,
.event:first-child:after {
    top: 40px;
}

.event:last-child:before {
    height: 0;
}

.event:before {
    content: "";
    position: absolute;
    top: 24px;
    left: 75px;
    width: 2px;
    height: 100%;
    background-color: #cbd5e0;
    z-index: 1;
}

.event:after {
    content: "";
    position: absolute;
    top: 24px;
    left: 56px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.event--signed:after {
    background-image: url("/images/svgs/sign.svg");
    background-color: #4299e1;
}

.event--extended:after {
    background-image: url("/images/svgs/clock_white.svg");
    background-color: #f2994a;
}

.event--validated {
    background-color: #dff4e8;
}

.event--validated:after {
    background-image: url("/images/svgs/check.svg");
    background-color: #219653;
}

.event__details {
    display: flex;
    flex-direction: column;
}

.signee {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4px;
}

.signee-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    margin-top: 2px;
}

.signee-date {
    color: #4a5568;
    font-size: 14px;
}

.signee-date__timestamp {
    color: #2d3748;
    font-weight: 600;
}

.signee-source {
    color: #718096;
    font-size: 14px;
}

.signature-box {
    background-color: #fff;
    border: 1px solid #4299e1;
    height: 88px;
    min-width: 320px;
    position: relative;
    text-align: center;
}

.signature-box img {
    height: 100%;
    margin: 0 auto;
}

.signature-box.signature-checksum-valid:after {
    content: url("/images/svgs/lock.svg");
    position: absolute;
    bottom: 0;
    right: 8px;
}

/*@media print {*/
/*    .attendance-sheet__panel {*/
/*        height: auto;*/
/*        border-bottom: 1px solid #e2e8f0;*/
/*        page-break-after: always;*/
/*    }*/

/*    .attendance-sheet__toggle {*/
/*        page-break-before: always;*/
/*    }*/
/*}*/
