/*
Project: 16-17_1-15 Film
Author:  Richy Thomas
Date: 18/07/17
Colour Palletee: Dark Green: rgb(33,122,43) , Light Green: rgb(88,163,48) , Orange: rgb(255,86,32)
*/

@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700|Roboto:300,400,500');

/* Structure */

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: rgb(255,255,255);
  color: #333;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 97px;
}


/* Typography */

h1, h2, h3, h4, h5 ,h6 {
  font-family: 'Roboto Slab', serif;
  margin: 10px 0 20px;
}

h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 2em;
}

p {
  font-size: 1.2em;
  line-height: 1.5em;
}

a, a:visited {
  color: rgb(255,86,32);
  text-decoration: underline;
}

a:hover {
  color: rgb(255,86,32);
  text-decoration: none;
}

/* Re-Usable Stuff */

.img-center {
  margin-left: auto;
  margin-right: auto;
}

/* Header */

#header {
  padding: 40px 0;
  background-image: linear-gradient(to right, rgb(33,122,43), rgb(88,163,48));
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(255,255,255);
}

#activity-title {
  text-align: center;
  margin-bottom: 30px;
}

#activity-title i {
  color: rgb(255,86,32);
}

#company-branding {
  text-align: center;
}

#company-branding img {
  margin-right: 15px;
}

#company-branding img:last-child {
  margin-right: 0;
}

#print-branding {
  display: none;
}


/* Activity Instructions */

.activity-instructions {
  background-image: linear-gradient(to right, rgb(33,122,43), rgb(88,163,48));
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: solid 10px rgb(88,163,48);
  color: rgb(255,255,255);
  padding: 0 0 40px;
  text-align: center;
}

.activity-instructions p.lead:last-child, .activity-instructions p:last-child {
  margin-bottom: 0;
}


/* Activity  */

.activity {
  margin: 30px 0;
}


/* Activity Controls */

.activity-controls {
  margin-top: 30px;
}

.btn-default {
  background-color: rgb(33,122,43);
  border-color: rgb(33,122,43);
  box-shadow: none;
  -webkit-box-shadow: none;
  color: rgb(255,255,255);
}

.btn-default:hover, .btn-default.focus, .btn-default:focus, .btn-default.active, .btn-default:active, .btn-default:active:hover {
  background-color: rgb(255,255,255);
  background-image: none;
  border-color: rgb(33,122,43);
  color: rgb(33,122,43);
  outline: 0;
}

.btn-info {
  background-color: rgb(255,86,32);
  border-color: rgb(255,86,32);
  box-shadow: none;
  -webkit-box-shadow: none;
  color: rgb(255,255,255);
}

.btn-info:hover, .btn-info.focus, .btn-info:focus, .btn-info.active, .btn-info:active, .btn-info:active:hover {
  background-color: rgb(255,255,255);
  background-image: none;
  border-color: rgb(255,86,32);
  color: rgb(255,86,32);
  outline: 0;
}


/* Footer */

#footer {
  bottom: 0;
  margin-top: 30px;
  padding-bottom: 20px;
  position: absolute;
  text-align: center;
  width: 100%;
}

#footer p {
  margin: 0;
}

#footer hr {
  border-color: rgb(204,204,204);
  margin: 0 0 20px;
}


/* Modals */

.modal-header {
  background-image: linear-gradient(to right, rgb(33,122,43), rgb(88,163,48));
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px 6px 0 0;
}

.modal-title {
   color: rgb(255,255,255);
}

.close {
  color: rgb(255,255,255);
  font-size: 35px;
  margin: 0;
  opacity: .6;
  text-shadow: none;
}

.modal-content {
  border-radius: 8px;
}

/* Alerts */

.alert {
  font-weight: 500;
  font-size: 16px;
}

.alert-danger {
  border: 1px solid #a94442;
}

.alert-success {
  border: 1px solid #3c763d;
}

.alert-info {
  border: 1px solid #31708f;
}

.alert-warning {
  border: 1px solid #8a6d3b;
}

.alert-top {
  margin-top: 20px;
}

.alert-bottom {
  margin-bottom: 0;
}


/* Tablet */
@media(min-width: 768px){

  #activity-title {
    text-align: left;
    margin-bottom: 0;
  }

  #company-branding {
    text-align: right;
  }

  #footer {
    text-align: right;
  }

}


/* Desktop */
@media(min-width:992px){

}


/* Large Desktop */
@media(min-width:1200px){

}


/* Print */
@media print {

  .btn {
    display: none;
  }

  #digital-branding {
    display: none;
  }

  #print-branding {
    display: inline-block;
  }

  #activity-top {
    border-bottom: solid 1px rgb(204,204,204);
  }

}

/* Hide Pentool on iPad */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {

	.btn-pen {
		display: none;
	}

}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {

  .btn-pen{
		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.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
}

.animate-3 {
  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-4 {
  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-5 {
  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-6 {
  animation-duration: 1s;
  animation-delay: 1s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1s;
}

.animate-7 {
  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-8 {
  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-9 {
  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-10 {
  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-11 {
  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-12 {
  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-13 {
  animation-duration: 1s;
  animation-delay: 1.8s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 1.8s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.8s;
}

.animate-14 {
  animation-duration: 1s;
  animation-delay: 2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2s;
}

.animate-15 {
  animation-duration: 1s;
  animation-delay: 2.2s;
  -moz-animation-duration: 1s;
  -moz-animation-delay: 2.2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 2.2s;
}