/* ********************
* Page styles
******************** */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }


html, body {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
	font-size: 16px;
	font-smooth: always;
	font-family: 'LatoWeb', sans-serif;
	color: #666;
}

div.page-header {
  font-family: 'LatoWebLight', sans-serif;
  font-size: 1.4em;
  margin-top: 20px;
}

div.page-header, h1 {
  font-family: 'LatoWebLight', sans-serif;
}

p {
    padding: 10px 0 0 0;
}

a, button, h1, h2, ul {
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-ms-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

a, button {
	outline: none !important;
	text-decoration: none;
}


/* ******************
// Content
******************* */
#open-project-tags .label {
	margin-right: 5px;
}


/* ******************
// Viddle + code
******************* */
@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

div.viddle-code-editor {
}

div.viddle-preloader {
    height: 128px;
    text-align: center;
}

div.viddle-preloader>i {
    color: #777;
    padding: 0;
    margin: 0;
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    font-size: 64px;
    margin: 32px auto 0 auto;
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

.close-tab {
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
    margin-left: 10px;
}

.close-tab:hover {
    color: #AAA;
}

.CodeMirror {
	height: auto;
	font-family: monospace;
	font-size: 16px;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-ms-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.CodeMirror-scroll {
	overflow-y: hidden;
	overflow-x: auto;
	height: auto;
}
.cm-mustache {color: #0ca;}







div.main {
  min-height: 100vh;
}

section.login {
  background: url(../img/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

div.page-top {
  padding: 20px 0;
  background: rgba(0,0,0,.8);
}

div.page-preloader>i {
  color: #777;
  padding: 0;
  margin: 0;
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 64px;
  margin: 64px auto 0 auto;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.viddle-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.85);
  z-index: 1000;
}

.tab-pane {
  min-height: 500px;
  margin-bottom: 40px;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .form-signin-heading {
  margin-bottom: 10px;
}

.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}