/*
Project: 16-17_3-12
Author: Richy Thomas
Date: 13/04/17
Color Palette: Navy: #002639, Lime: #9E9D24;
*/

/* Google Fonts */

@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

/* General */

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #FEFEFE;
  background: url(../images/bg/body-bg.jpg) no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #555;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 300;
  font-size: 1.3em;
  margin-bottom: 90px;
}

/* Typography */

h2, h3, h4, h5 {
  margin: 0 0 14px;
}

h2 {
  font-size: 2.6em;
}

h3 {
  font-size: 2.2em;
}

h4 {
  font-size: 1.8em;
}

h5 {
  font-size: 1.6em;
}

p, ul li, ol li {
  line-height: 1.5em;
  font-size: 1.4em;
}

p.lead {
  line-height: 1.5em;
  font-size: 1.6em;
}

a:link, a:visited {
  color: #002639;
  text-decoration: underline;
}

a:hover {
  color: #002639;
  text-decoration: none;
}

a:focus  {
  outline: none;
}


/* Header */

header {
  background-color: #000;
  background: url(../images/bg/header-bg.jpg) no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
  width: 100%;
  padding: 20px 0 10px;
}

/* Company Branding */

#company-branding {
  text-align: right;
}

#logo-eduqas {
  margin: 8px 0 0 15px;
}

/* Project/Unit Title & Icon */

.header-icon {
  float: left;
  font-size: 6em;
  margin-right: 20px;
  margin-top: 0;
  font-weight: 100;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.header-title {
  margin-bottom: 40px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.header-title h1 {
  font-size: 2.7em;
  font-weight: 500;
}

.header-title h2 {
  font-size: 2.2em;
  font-weight: 100;
  line-height: 0.6em;
  margin-top: 5px;
  opacity: 0.7;
}


/* Activity Tools */

.activity-tools {
  text-align: right;
}

/* Activity Instructions */

.activity-instructions {
  border-bottom: 1px solid #CCC;
  background: rgba(22,51,59,1);
  color: #FFF;
  padding: 20px 0;
  border-top: 1px solid #fff;
}

.activity-instructions p.lead:last-child, .activity-instructions p:last-child {
  margin-bottom: 0;
}

.activity-instructions li {
  padding-left: .5em;
}

/* Main Content */

section {
  display: none;
}

.activity-content {
  margin: 30px 0 50px;
}

.text-entry {
  background: #FFF;
  border-radius: 4px;
  border: 1px solid #9E9D24;
  font-size: 1.4em;
  height: auto;
  line-height: 28px;
  margin: 20px 0;
  min-height: 100px;
  padding: 10px;
}

[contenteditable=true]:empty:before {
	color:#cccccc;
  content: attr(placeholder);
  display: block; /* For Firefox */
}



/* Footer */

footer {
  background: rgba(22,51,59,.8);;
  border-top: 1px solid #CCC;
  bottom: 0;
  color: #FFF;
  height: 60px;
  margin-top: 30px;
  position: absolute;
  width: 100%;
}

footer p {
  font-size: 1em;
  letter-spacing: 1px;
  margin: 20px 0;
  text-align: right;
  text-transform: uppercase;

}

/* Buttons */

.btn-container {
  margin: 50px 0;
  clear: both;
}

.nextBtn {
  float: right
}

.btn-default {
  background-color: #9e9d24;
  border-color: #9e9d24;
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #fff;
}

a.btn-default{
  color: #fff;
  text-decoration: none
}

.btn-default:hover, .btn-default.focus, .btn-default:focus, .btn-default.active, .btn-default:active, .btn-default:active:hover {
  background-color: #FFF;
  background-image: none;
  border-color: #9e9d24;
  color: #9e9d24;
  outline: 0;
}

.btn-transparent {
  background-color: transparent;
  color: #FFF;
  margin-bottom: 10px;
  padding: 0 12px;
}

.btn-transparent:hover, .btn-transparent.focus, .btn-transparent:focus, .btn-transparent.active, .btn-transparent:active, btn-default:active:hover {
  color: #F5F5F5;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none;
}

:focus {
  outline: none;
}


/* Modal */

.modal-header .close {
  font-size: 30px;
  margin-top: 0;
  opacity: 1;
}

.modal-header .close:hover {
  opacity: .5;
}


/* Tables */

.table>thead>tr>th {
  background: #B64286;
  color: #FFF;
  font-size: 16px;
  line-height: 28px;
  padding: 20px;
  vertical-align: middle;
}

.table>tbody>tr>td {
  font-size: 16px;
  line-height: 28px;
  padding: 20px;
  vertical-align: top;
}


/* Bits & Bobs */

.well {
  background: #FFF;
  border-color: #9e9d24;
  margin-top: 20px;
}

.well p:last-child {
  margin-bottom: 0;
}

.hints {
  display: none;
}

.highlight {
  background: yellow!important;
  cursor: help;
}


/* Tablet */
@media(min-width: 768px){



}

/* Desktop */
@media(min-width:992px){

  .header-title h1 {
    font-size: 2.9em;
  }

  .header-title h2 {
    font-size: 2.6em;
  }

  .header-icon {
    margin-top: 17px;
    font-size: 7em;
    margin-right: 20px;
  }

  .btn-transparent {
    margin-bottom: 0;
  }

}

/* Large Desktop */
@media(min-width:1200px){

  .header-icon {
    font-size: 8em;
    margin-right: 30px;
  }

  .header-title h1 {
    font-size: 3.5em;
  }

  .header-title h2 {
    font-size: 3em;
  }

}

/* Print */
@media print {

  .btn-container {
    display: none;
  }

  .activity-tools{
	display: none;
  }

  .pen-control{
	display: none;
  }

  #company-branding {
    display: none;
  }
}

/* Animations */

.animate-1 {
  animation-duration: 1s;
  animation-delay: 0s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0s;
  -webkit-animation-duration: 1s;
  -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.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
}

.animate-4 {
  animation-duration: 1s;
  animation-delay: 0.3s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
}

.animate-5 {
  animation-duration: 1s;
  animation-delay: 0.4s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.4s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.4s;
}

.animate-6 {
  animation-duration: 1s;
  animation-delay: 0.5s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
}

.animate-7 {
  animation-duration: 1s;
  animation-delay: 0.6s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.6s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
}

.animate-8 {
  animation-duration: 1s;
  animation-delay: 0.7s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.7s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.7s;
}

.animate-9 {
  animation-duration: 1s;
  animation-delay: 0.8s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.8s;
}

.animate-10 {
  animation-duration: 1s;
  animation-delay: 0.9s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.9s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.9s;
}

.animate-11 {
  animation-duration: 1s;
  animation-delay: 1s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1s;
}

.animate-12 {
  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-13 {
  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-14 {
  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;
}