/* QSM Quiz Proctor 9.2.4 */

.qsmqp-start {
    display: block;
    margin: 12px 0;
    padding: 10px 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #222;
    cursor: pointer;
    font-size: 15px;
}

.qsmqp-panel {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 220px;
    box-sizing: border-box;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    z-index: 999999;
    font-family: inherit;
}

.qsmqp-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.qsmqp-status {
    margin-bottom: 6px;
    font-size: 13px;
}

.qsmqp-status.is-danger {
    font-weight: 700;
}

.qsmqp-warning {
    margin-bottom: 10px;
    font-size: 13px;
}

.qsmqp-fullscreen {
    width: 100%;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #222;
    cursor: pointer;
}

.qsmqp-note {
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.4;
    opacity: .75;
}

.qsmqp-flash {
    animation: qsmqpFlash .45s ease;
}

@keyframes qsmqpFlash {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    .qsmqp-panel {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
    }
}
