* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Helvetica, Arial, sans-serif;
}

.hint {
    margin-top: 50px;
    text-align: center;
    font-style: italic;
}

.table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.table-cell {
    display: table-cell;
}

.va-top {
    vertical-align: top;
}

.va-middle {
    vertical-align: middle;
}

.one-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alphabet-index {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    margin: 32px 8px 8px 8px;
}

.participant-container {
    width: 100%;
    max-width: 574px;
    margin: 0 auto;
}

.participant {
    margin: 8px;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow:
        0 1px 3px 0 rgba(0, 0, 0, 0.2),
        0 2px 1px -1px rgba(0, 0, 0, 0.12),
        0 1px 1px 0 rgba(0, 0, 0, 0.14);

}

.participant .avatar-container {
    width: 80px;
}

.participant .avatar {
    width: 64px;
    height: 64px;
}

.participant .participant-name {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    max-height: 44px;
    overflow: hidden;
    margin-bottom: 4px;
}

.participant .participant-company,
.participant .participant-position,
.participant .participant-ticket-category {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #747476;
}

.participant .participant-ticket-category {
    margin-top: 4px;
}

.participant .participant-email {
    margin-top: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
}

.participant .participant-email .mail-icon {
    width: 16px;
    height: 16px;
}

.participant .participant-email a {
    color: #1B2945;
    text-decoration: none;
}