﻿
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0px;
    line-height: 1.6;
}

p {
    display: block;
}

.monad-modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.2);
}

.monad-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    -moz-box-shadow: 0 3px 7px #ccc;
    -webkit-box-shadow: 0 3px 7px #ccc;
    box-shadow: 0 3px 7px #ccc;
    padding: 2em;
    width: 40em;
    max-width: 100%;
    border-radius:1em;
    text-align:center;
}

.monad-hidden {
    display: none;
}

.monad-queue-welcome {
    font-size: 2em;
}

.monad-queue-text {
    vertical-align: text-bottom;
}
.monad-queue-refresh {
    font-size: 0.8em;
}

.monad-queue-logo {
    max-width: 100%;
    padding: 1em;
}

.monad-queue-error {
    background: #fef1ec;
    border: 1px solid #fef1ec;
    color: #cd0a0a;
    padding:1em;
    margin:1em;
}

#aheadInQueue {
    display: inline-block;
    font-size: 3em;
}

