body {
    height: 100%;
    margin: 0;
    background-color: #080A0D;
    display: flex;
    flex-direction: column;
}

.box {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.header {
    display: flex;
    flex: 0 1 auto;
    background-color: white;
    height: 64px;
    min-height: 64px;
    align-content: center;
}

.header .logo {
    margin: 0 20px 0 20px;
    align-content: center;
}

.header .logo img {
    vertical-align: sub;
}

.header .title {
    /* title */
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: inline-flex;
    align-items: center;

    color: #666666;
    flex-grow: 1;
}

.header .actions {
    align-content: center;
    margin: 0 20px 0 20px;
}

.actions button {
    border: 2px solid #007891;
    color: #007891;
    border-radius: 5px;
    padding: 5px;
}

.actions button:hover {
    cursor: pointer;
}

.content {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.content-box {
    flex-flow: column;
    height: 100%;
    display: none;
    background: #000000;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 10%;
    max-height: 80%;
}

.content .waiting {
    color: #666666;
    background-color: #1E1E1E;
    font-size: xx-large;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}

#player {
    display: none;
    height: 100%;
    width: 100%;
    background: #000000;
}
