/*
Project: 16-17_1-35
Author: Richy Thomas
*/


/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Quicksand');


/* Structure */

section {
  display: none;
}

#section-1 {
  display: block;
}

html {
  height: 100%;
}

body {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.2)), url('../images/theme/sitcom-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Open Sans', sans-serif;
}


/* Typography */

h1, h2, h3, h4, h5, h6 {
   font-family: 'Quicksand', sans-serif;
}

p, ul li, ol li {
  font-size: 16px;
  line-height: 28px;
}

a, a:active, a:focus, a:hover, a:visited {
  color: #c12217;
}

[contenteditable=true]:empty:before {
  color: #bbb;
  content: attr(placeholder);
  display: block;
}


/* Header */

.header {
  background: rgba(0,0,0,.85);
  color: rgba(255,255,255,1);
  padding: 40px 60px 0;
}

.header h1 {
  margin-bottom: 20px;
}

.header p.lead:last-child {
  margin-bottom: 0;
}

.header hr {
  margin: 40px 0 0 0;
}

.print-branding {
  display: none;
}

i.fa-file-pdf-o {
  color: #C12217;
}


/* Main Content Container */

section {
  min-height: 100vh;
}

.content-container {
  background: rgba(0,0,0,.85);
  color: rgba(255,255,255,1);
  height: 100%;
  min-height: 90vh;
  padding: 40px 60px;
}

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.sidebar {
  padding-left: 0;
  position: relative;
}

.angled-edge {
  background: none;
  border-color: rgba(0,0,0,0.85) transparent transparent transparent;
  border-style: solid;
  border-width: 100vh 90px 0px 0px;
  height: 100vh;
  margin-left: 0;
  position: fixed;
}

.straight-edge {
  padding-right: 0;
}


/* Footer */

.footer {
  background: rgba(0,0,0,.85);
  color: rgba(255,255,255,1);
  font-size: 12px;
  letter-spacing: 2px;
  padding: 40px 60px;
  text-transform: uppercase;
}


/* Tools */

.tools {
  border-radius: 4px 0 0 4px;
  position: fixed;
  right: 0;
  top: 20px;
  width: 62px;
  z-index: 9999;
}

.btn-tool {
  background: transparent;
  border-radius: 6px 0 0 6px;
  color: rgba(255,255,255,1);
  outline: none;
  padding: 12px;
}

.btn-tool:hover, .btn-tool.active, .btn-tool:active, .btn-tool.focus, .btn-tool:focus, .btn-tool.active.focus, .btn-tool.active:focus, .btn-tool.active:hover, .btn-tool:active.focus, .btn-tool:active:focus, .btn-tool:active:hover {
  background: rgba(255,255,255,.8)!important;
}

.btn-tool:focus, .btn-tool:active  {
  outline: none;
}

.pen-control {
  background: rgba(255,255,255,.8);
  border-radius: 6px 0 0 6px;
  border-right: none;
  border: 2px solid rgba(255,255,255,1);
  height: 385px;
  right: 0;
  top: 143px;
  width: 62px;
}

.pen-control.active {
  animation-name: slideInRight;
  animation-duration: 1s;
  animation-delay: 0.1s;
  animation-fill-mode: both;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.1s;
  -webkit-animation-fill-mode: both;
}

.pen-control button {
  height: 40px;
  margin: 10px 5px 0;
  width: 40px;
  background: rgba(0,0,0,1);
  color: rgba(255,255,255,1);
}

.btnMoreInfo {
  border-bottom: 1px solid rgba(224,224,224,1);
}


/* Activity Controls / Buttons */

.activity-controls {
  margin-top: 30px;
  text-align: right;
}

.btn-default {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,1);
  color: rgba(255,255,255,1);
  margin-top: 3px;
}

.btn-default:hover, .btn-default.active, .btn-default:active, .btn-default.focus, .btn-default:focus, .btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover {
  background-color: rgba(255,255,255,1);
  border: 2px solid rgba(255,255,255,1);
  color: rgba(0,0,0,1);
}


/* Modals */

.modal {
  z-index: 1070;
}

.modal-header {
  background: rgba(255,255,255,1);
  color: rgba(0,0,0,1);
  border-radius: 6px 6px 0 0;
}

.modal-header h4 {
  font-size: 20px;
  margin: 0;
}

.modal-header .close {
  color: rgba(0,0,0,1);
  font-size: 28px;
  margin-top: -2px;
  opacity: 1;
}

.modal-header .close:hover {
  opacity: .5;
}

.modal .modal-dialog .modal-content .modal-footer {
  text-align: center;
}


/* Common Re-usables */

.hidden-text {
  display: none;
}

.img-center {
  margin: 0 auto;
}

.img-thumbnail {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #FFF;
  padding: 2px;
}

.alert {
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
}

.alert-success {
  background-color: #3c763d;
  border-color: #3c763d;
  color: #fff;
}

.alert-danger {
  background-color: #a94442;
  border-color: #a94442;
  color: #fff;
}

.alert-info{
  background-color: #C12217;
  border-color: #C12217;
  color: #fff;
}


/* Hints */

.hint {
  display: none;
  margin-top: 20px;
}

.hint .well {
  background: transparent;
  border: 2px solid rgba(255,255,255,1);
  color: rgba(255,255,255,1);
}

.hints p:last-child {
  margin-bottom: 0;
}


/* Tables */

.table {
  font-size: 16px;
  line-height: 28px;
}

.table thead tr {
  background-color: #C12217;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 16px;
  }

/* Tablet */
@media(min-width: 768px){



}


/* Desktop */
@media(min-width:992px){



}


/* Large Desktop */
@media(min-width:1200px){



}


/* Print */
@media print {

  .btn {
    display: none!important;
  }

  .digital-branding {
    display: none;
  }

  .print-branding {
    display: inline-block;
  }

}


/* Animations */

.animate-1 {
  animation-duration: 2s;
  animation-delay: 0s;
  -moz-animation-duration: 2s;
  -moz-animation-delay: 0s;
  -webkit-animation-duration: 2s;
  -webkit-animation-delay: 0s;
}

.animate-2 {
  animation-duration: 1s;
  animation-delay: 0.1s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.1s;
}

.animate-3 {
  animation-duration: 1s;
  animation-delay: 0.5s;
  -moz-animation-duration: 1s;
  -moz-animation-delay:1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1s;
}

.animate-4 {
  animation-duration: 1s;
  animation-delay: 1.1s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.1s;
}

.animate-5 {
  animation-duration: 1s;
  animation-delay: 1.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.2s;
}

.animate-6 {
  animation-duration: 1s;
  animation-delay: 1.3s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.3s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.3s;
}

.animate-7 {
  animation-duration: 1s;
  animation-delay: 1.4s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.4s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.4s;
}

.animate-8 {
  animation-duration: 1s;
  animation-delay: 1.5s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.5s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.5s;
}

.animate-9 {
  animation-duration: 1s;
  animation-delay: 1.6s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.6s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.6s;
}

.animate-10 {
  animation-duration: 1s;
  animation-delay: 1.7s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.7s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.7s;
}