/*============================================================================== EXAMEN */
.ex-abbr { display: none; }
@media (max-width: 640px) {
    .exCol-fecha, .exCol-expositor { display: none; }
    .ex-full { display: none; }
    .ex-abbr { display: inline; }
}
.examenMenu {
    width: 100%;
    height: 52px;
    background-color: #DEEEFF;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 12px;
}
.examenTitle {
    font-size: 26px;
    font-weight: 700;
    color: #1a3a5c;
    flex: 1;
}
.examenBtnCrear {
    padding: 7px 22px;
    background: #1a3a5c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .03em;
    flex-shrink: 0;
}
.examenBtnCrear:hover {
    background: #14304f;
}
/*------------------------------------------------------------------------------ PANELES */
.exPanelWrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 600px;
    margin-bottom: 24px;
}
.exPanel {
    flex: 1;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.exPanelHead {
    padding: 6px 10px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: #1a3a5c;
    flex-shrink: 0;
}
.exPanelHead.right {
    background: #4a5568;
}
.exPanelBody {
    min-height: 160px;
    max-height: 220px;
    overflow-y: auto;
    flex: 1;
}
.exUsr,
.exUsrEdit {
    padding: 6px 12px;
    font-size: calc(.84rem + 2px);
    cursor: pointer;
    color: #2d3748;
    transition: background .12s;
    user-select: none;
}
.exUsr:hover,
.exUsrEdit:hover {
    background: #e8f0fe;
    color: #1a3a5c;
    font-weight: 600;
}
.exPanelEmpty {
    padding: 10px 12px;
    font-size: .8rem;
    color: #bbb;
}
.exArrows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
    color: #a0aec0;
    font-size: 1rem;
    flex-shrink: 0;
}
