html {
    position: relative;
    min-height: 100%;
    font-family: 'Source Code Pro', monospace;
}
body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #eee;
    color: #555;
    font-family: 'Source Code Pro', monospace;
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
}

pre.wrap-lines,
pre.wrap-lines code {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

pre code {
    white-space: pre;
    word-break: normal;
    word-wrap: normal;
}

pre {
    counter-reset: line;
    background: rgba(245, 245, 245, 0.5);
}

pre span.line {
    display: block;
}
pre span.line:before {
    border-right: 1px solid #ddd;
    color: #888;
    counter-increment: line;
    content: counter(line);
    display: inline-block;
    margin-right: .5em;
    min-width: 3em;
    padding: 0 .5em;
    text-align: right;
}

#overlay{
    background: rgba(0, 0, 0, 0.75);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

#loading {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#background {
    font-size: 8px;
    margin: 0 -15px;
    max-width: 100%;
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 0;"
}

#background pre {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 0.35vw;
    letter-spacing: 0.5em;
    line-height: 1em;
    max-width: 100%;
    overflow: hidden;
}

.logo-container {
    padding: 0;
    position: relative;
}

.logo {
    margin: 0 0 5px;
}

.logo a {
    color: #555;
    font-size: 55px;
    font-weight: 500;
    text-decoration: none;
}

.add-new {
    font-size: 16px;
    margin-top: 12px;
}

#create-snippet {
    position: relative;
}

.form-control,
select {
    background: rgba(255, 255, 255, 0.5);
}

.file-container {
    position: relative;
}

#preview,
.panel-default,
.info-parent {
    position: relative;
}

.panel {
    background: rgba(255, 255, 255, 0.5);
}

.panel-heading {
    background: rgba(245, 245, 245, 0.5);
}

.panel-body {
    background: rgba(255, 255, 255, 0.5);
}

img {
    max-width: 100%;
}

.form-flex {
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;             /* NEW, Spec - Opera 12.1, Firefox 20+ */
    margin-bottom: 10px;
}

.form-flex label {
    line-height: 100%;
    margin: auto;
    padding-right: 5px;
}

.form-flex .flex-input-wrapper
{
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;         /* OLD - Firefox 19- */
    width: 20%;               /* For old syntax, otherwise collapses. */
    -webkit-flex: 1;          /* Chrome */
    -ms-flex: 1;              /* IE 10 */
    flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.form-flex .flex-input-wrapper select,
.form-flex .flex-input-wrapper input {
    width: 100%;
}

#submit {
    margin-left: 10px;
}

#preview img{
    margin: auto;
}
