/**
 * PREVIEW PAGE CSS
 *
 * When changing this file remember to update
 * version number in CSP's 'video.py' (PREVIEW_CSS).
 */

 * {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    position: relative;
    padding: 0px;
    margin: 0px;
    min-height: 100%;
    background-color: #373C3E;
    color: #FFFFFF;
    font-size: 14px;
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
}
.video-container {
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 100px;
    width: 70%;
    max-width: 900px;
}
.powered-by {
    position: absolute;
    bottom: 0px;
    padding: 15px 20px;
    width: 100%;
    color: #a7b1c2;
    font-size: 12px;
    text-align: right;
}
.privacy-link {
    margin-right: 25px;
    color: inherit;
    text-decoration: none;
}
.chat-iframe {
    margin-top: 30px;
    width: 100%;
    height: 600px;
    border-width: 0;
}
.error {
    padding: 10px;
    font-size: 24px;
    font-weight: 100;
    color: white;
    text-align: center;
}
h2 {
    margin-bottom: 10px;
    color: white;
    font-size: 24px;
    font-weight: 100;
}
p {
    margin: 0 0 10px;
}
p.date {
    color: #a7b1c2;
    font-size: 12px;
}
@media (max-width: 700px) {
    .video-container {
        padding-top: 45px;
        padding-bottom: 80px;
        width: 80%;
    }
    .chat-iframe {
        height: 500px;
    }
}
@media (max-width: 500px) {
    .video-container {
        padding-top: 30px;
        width: 90%;
    }
}
