/* NORMALIZE */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;text-decoration:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}



/* HTML & BODY */
html {
	width:100%;
	min-height:100%;
	height: 100%;
	margin:0;
	padding:0;
	overflow-x: hidden;
}

body {
  margin:0;
	min-height:100%;
	padding:0;
	width:100%;
	height:100%;
	font-family: 'Raleway', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
	font-size:1em;
	line-height:1em;
	font-weight: 400;
	color: black;
	background-color: white;
}


/* FONTS */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-bold-webfont.woff2') format('woff2'),
       url('../fonts/raleway-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-bolditalic-webfont.woff2') format('woff2'),
       url('../fonts/raleway-bolditalic-webfont.woff') format('woff');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Raleway';
  src: url('raleway-light-webfont.woff2') format('woff2'),
       url('raleway-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-lightitalic-webfont.woff2') format('woff2'),
       url('../fonts/raleway-lightitalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-regular-webfont.woff2') format('woff2'),
       url('../fonts/raleway-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-regularitalic-webfont.woff2') format('woff2'),
       url('../fonts/raleway-regularitalic-webfont.woff') format('woff');
  font-weight: 400;
  font-style: italic;
}


/* COLOURS */
.navy {
  background-color: #426ab3;
  color: white;
}

.blue {
  background-color: #71cfeb;
  color: #426ab3;
}

.orange {
  background-color: #f3703a;
  color: white;
}

.yellow {
  background-color: #ffcc4e;
  color: #f3703a;
}

.lime {
  background-color: #e0e326;
  color: #426ab3;
}

.green {
  background-color: #91ca64;
  color: white;
}

.teal {
  background-color: #5bc4bf;
  color: #872b90;
}

.pink {
  background-color: #ef4d89;
  color: white;
}

.purple {
  background-color: #872b90;
  color: white;
}


/* LAYOUT */
#app, #timetable, #timetable-head, #timetable-body {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-align: stretch;
	align-items: stretch;
	
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	
	box-sizing: border-box;
  
  width: 100%;
}

#app {
  height: 100%;
  position: relative;
}

#header, #header-prompt {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-align: center;
	align-items: center;
	
	-ms-flex-line-pack: center;
	align-content: center;
  
  position: relative;
  box-sizing: border-box;
}

#header {
  -ms-flex-pack: start;
	justify-content: flex-start;
  
  -ms-flex-direction: row;
	flex-direction: row;
  
  height: 230px;
  width: 100%;
}

img#header-title {
  display: block;
  height: auto;
  margin: 0;
  width: 865px;
}

#header-prompt {
  -ms-flex-direction: column;
	flex-direction: column;
	
	-ms-flex-pack: center;
	justify-content: center;
  
  background-color: rgba(255,255,255,0.3);
  margin-right: 30px;
  height: 150px;
  text-align: center;
  width: 110px;
}

#header-prompt {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.25em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#prompt-icon {
  background-color: white;
  background-image: url(../svg/prompt-hand-2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60px 60px;
  border-radius: 100%;
  display: block;
  margin-bottom: 0.5em;
  height: 60px;
  width: 60px;
}

img#prompt-icon-click {
  display: block;
  height: 60px;
  width: 60px;
  animation-name: prompt;
  animation-duration: 1.75s;
  animation-iteration-count: infinite;
}

@keyframes prompt {
  0% {opacity: 0.25;}
  50% {opacity: 1;}
  100% {opacity: 0.25;}
}

#timetable {
  height: calc(100% - 380px);
  width: 100%;
}

.timetable-row {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-align: stretch;
	align-items: stretch;
	
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	
	box-sizing: border-box;
	
	flex-basis: 100%;
  flex-grow: 2;
  width: 100%;
}

.timetable-col {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-align: center;
	align-items: center;
	
	-ms-flex-line-pack: center;
	align-content: center;
	
	box-sizing: border-box;
	text-align: center;
	
	font-size: 0.6em;
	font-weight: 700;
	line-height: 1em;
	text-align: center;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.timetable-col.time {
  background-color: #e6e7e8;
  border-bottom: 1px solid #efeff0;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 5%;
}

.timetable-col.day {
  background-color: white;
  border-bottom: 1px solid #e6e7e8;
  border-right: 1px solid #e6e7e8;
  width: calc(90% / 7);
}

.timetable-col.timetable-header.day {
  background-color: #d1d3d4;
  border-right: 1px solid white;
  letter-spacing: 0.3em;
  
  font-size: 1em;
  text-transform: uppercase;
}

.timetable-col.day.last,
.timetable-col.timetable-header.day.last {
  border-right: 0 none;
}

.timetable-col > span {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	-ms-flex-pack: center;
	justify-content: center;
	
	-ms-flex-align: center;
	align-items: center;
	
	-ms-flex-line-pack: center;
	align-content: center;
	
	box-sizing: border-box;
	text-align: center;
	padding: 0 5px;
}

.timetable-col.total-1 > span,
.timetable-col.total-3 > span:nth-child(1) {
  width: 100%;
}

.timetable-col.total-2 > span,
.timetable-col.total-3 > span:nth-child(n+2),
.timetable-col.total-4 > span {
  width: 50%;
}

.timetable-col.total-1 > span,
.timetable-col.total-2 > span {
  height: 100%;
}

.timetable-col.total-3 > span,
.timetable-col.total-4 > span {
  height: 50%;
}

.timetable-col.total-3 > span:nth-child(1),
.timetable-col.total-4 > span:nth-child(1),
.timetable-col.total-4 > span:nth-child(2) {
  border-bottom: 1px solid #e6e7e8;
}

.timetable-col.total-2 > span:nth-child(1),
.timetable-col.total-3 > span:nth-child(2),
.timetable-col.total-4 > span:nth-child(2n-1) {
  border-right: 1px solid #e6e7e8;
}

#footer {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-align: center;
	align-items: center;
	
	-ms-flex-line-pack: center;
	align-content: center;
	
	box-sizing: border-box;

  padding: 0 40px;
  height: 150px;
  width: 100%;
}

.footer-block {
  display: inline-block;
  width: 50%;  
}

.footer-inline {
  display: inline-block;
  margin-right: 40px;
  vertical-align: middle;
  width: auto;
}

.footer-inline-last {
  margin-right: 0;
}

#updated {
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img#logo {
  display: block;
  margin: 0;
  height: 84px;
  width: 170px;
}

#footer-details {
  font-size: 1em;
  line-height: 1.25em;
  text-align: right;
}

#footer-key ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

#footer-key ul li {
  display: inline-block;
  padding: 0;
  position: relative;
  margin-right: 18px;
  vertical-align: middle;
}

#footer-key ul li.last {
  margin-right: 0;
}

#footer-key ul li div {
  border-radius: 100%;
  display: block;
  height: 14px;
  left: 0;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  width: 14px;
}

#footer-key ul li span {
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.25em;
  padding: 8px 0px 8px 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* POPUPS */
#popups .popup {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  z-index: 2000;
  transition: .5s;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0);
}

#popups .popup.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
}

#overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: rgba(0,0,0,0.75);
  z-index: 1000;
}

.close-button {
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 100%;
  background-color: #121212;
  background-image: url(../svg/close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 26px 26px;
  position: absolute;
  top: -35px;
  right: -35px;
  box-shadow: 0 0 8px rgba(0,0,0,0.45);
}

.popup-container {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-align: stretch;
	align-items: stretch;
	
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	
	box-sizing: border-box;
  
  min-height: 500px;
  width: 100%;
}

.popup-image, .popup-description {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 50%;
}

.popup-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.popup-image h2 {
  line-height: 0.9em;
  text-transform: uppercase;
  text-align: right;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 40px;
  right: -0.075em;
}

.popup-container.navy .popup-image h2 { color: #426ab3; }
.popup-container.blue .popup-image h2 { color: #71cfeb; }
.popup-container.orange .popup-image h2 { color: #f3703a; }
.popup-container.yellow .popup-image h2 { color: #ffcc4e; }
.popup-container.lime .popup-image h2 { color: #e0e326; }
.popup-container.green .popup-image h2 { color: #91ca64; }
.popup-container.teal .popup-image h2 { color: #5bc4bf; }
.popup-container.pink .popup-image h2 { color: #ef4d89; }
.popup-container.purple .popup-image h2 { color: #872b90; }

.popup-description {
  padding: 55px 75px 55px 55px;
  text-align: left;
  overflow: hidden;
}

.popup-description > * {
  position: relative;
  z-index: 2;
}

.popup-duration {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-pack: center;
	justify-content: center;
	
	-ms-flex-align: center;
	align-items: center;
	
	-ms-flex-line-pack: center;
	align-content: center;
	
	box-sizing: border-box;
	border-radius: 0 0 46px 0;
	padding: 15px 0 25px;
  width: 95px;
  text-align: center;
}

.duration-time {
  font-size: 2.7em;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.duration-increments {
  font-size: 0.7em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1em;
}

.popup-duration i {
  position: relative;
  font-size: 62px;
}

.popup-duration i > span {
  position: absolute;
  line-height: 1;
  font-family: 'Raleway', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 0.3em;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  bottom: 18px;
  left:0;
  display: block;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.popup-container.navy .popup-duration i > span { color: #426ab3; }
.popup-container.blue .popup-duration i > span { color: #71cfeb; }
.popup-container.orange .popup-duration i > span { color: #f3703a; }
.popup-container.yellow .popup-duration i > span { color: #ffcc4e; }
.popup-container.lime .popup-duration i > span { color: #e0e326; }
.popup-container.green .popup-duration i > span { color: #91ca64; }
.popup-container.teal .popup-duration i > span { color: #5bc4bf; }
.popup-container.pink .popup-duration i > span { color: #ef4d89; }
.popup-container.purple .popup-duration i > span { color: #872b90; }

.popup-description:after {
  content: '';
  background-image: url(../svg/benefits.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: overlay;
  width: 60px;
  height: 345px;
  position: absolute;
  bottom: 55px;
  right: -2px;
  z-index: 1;
}

.popup-description p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0 0 1em;
}

.popup-description ul {
  display: block;
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
}

.popup-description li {
  display: -ms-flexbox;
	display: flex;
	
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	
	-ms-flex-pack: justify;
	justify-content: space-between;
	
	-ms-flex-align: center;
	align-items: center;
	
	-ms-flex-line-pack: center;
	align-content: center;
	
	box-sizing: border-box;
  
  padding: 0;
  margin: 0 0 1em;
  width: 100%;
}

.popup-description li i {
  display: inline-block;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  font-size: 70px;
}

.popup-description li span {
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3em;
  width: calc(100% - 90px);
}

.popup-description p:last-child, .popup-description ul:last-child, .popup-description li:last-child {
  margin-bottom: 0;
}

.popup-subclasses {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 55px 55px 38px;
  background-color: white;
}

.popup-subclasses ul {
  display:block;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  
  -webkit-column-gap: 110px;
  -moz-column-gap: 110px;
  column-gap: 110px;
  
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.popup-subclasses li {
  display: inline-block;
  box-sizing: border-box;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3em;
  padding: 0;
  margin: 0 0 1em;
}

.popup-subclasses li:nth-last {