/*
Theme Name: Qube
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: qube
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Qube is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
### MAIN STYLES
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Theme Base Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 17px;
	/*font-size: 1rem;*/
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}


.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}


.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.menu-toggle {
	display: none;
}


.main-navigation ul {
	display: block;
}

/* Small menu. */
/*
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
*/

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*============================================================================================================================
============================================================== MAIN STYLES
============================================================================================================================*/

/* FONTS */
/* Import Fonts */

@font-face {
  font-family: 'Helvetica-Light';
  src: 	url('/wp-includes/fonts/HelveticaNeue-Light.eot?#iefix') format('embedded-opentype'),
		url('/wp-includes/fonts/HelveticaNeueStd-Light.otf') format('opentype');
}

@font-face {
  font-family: 'Helvetica-Roman';
  src: 	url('/wp-includes/fonts/Helvetica-Neue-Roman.eot?#iefix') format('embedded-opentype'),
		url('/wp-includes/fonts/HelveticaNeue-Roman.otf') format('opentype');
}

@font-face {
  font-family: 'Sansa-Light';
  src:  url('/wp-includes/fonts/SansaSoft-Light.eot?#iefix') format('embedded-opentype'),
        url('/wp-includes/fonts/SansaSoft-Light.ttf') format('truetype'),
        url('/wp-includes/fonts/SansaSoft-Normal.woff') format('woff');
}

@font-face {
  font-family: 'Sansa-Normal';
  src:  url('/wp-includes/fonts/SansaSoft-Normal.eot?#iefix') format('embedded-opentype'),
        url('/wp-includes/fonts/SansaSoft-Normal.ttf') format('truetype'),
        url('/wp-includes/fonts/SansaSoft-Normal.woff') format('woff');
}

/* Set Fonts */
h1 {
	font-family: 'Sansa-Normal';
	text-transform: uppercase;
	color: black;
}

h2, h3 {
	font-family: 'Sansa-Normal';
	font-size: 20px;
	font-weight: 400;
	color: black;
}

p, a {
	font-family: 'Helvetica-Roman';
}

body p {
	color: black;
}

/* Core */
html {
	overflow-x: hidden;
}

/* Font fix */
h1, h2, h3, p, a {
    -webkit-font-smoothing: antialiased; /* This needs to be set or some font faced fonts look bold on Mac in Chrome/Webkit based browsers. */
    -moz-osx-font-smoothing: grayscale; /* Fixes font bold issue in Firefox version 25+ on Mac */    
}

/* HEADER */

.site-header {
	background: rgba(0, 0, 0, 0.65);
	height: 123px;
	position: fixed;
	z-index: 999;
	width: 100%;
}

.main-logo {
	position: absolute;
	left: 10%;
	max-width: 180px;
}

.main-navigation {
	clear: both;
	display: block;
	float: right;
	width: 910px;
	margin-right: 0px;
	height: 100%;
	position: relative;
}

.menu-main-menu-container {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.main-navigation a {
	color: white;
	display: inline-block;
	font-family: Sansa-Normal;
	line-height: 123px;
}

.main-navigation li {
	float: left;
	position: relative;
	margin-right: 40px;
	height: 123px;
}

.main-navigation li:last-child {
	margin-right: 0px;
}

.two-tone {
	border-top: solid 3px #F5E814;
	border-bottom: solid 3px grey;
	width: 100%;
	float: left;
	margin-top: 0px;
	margin-bottom: 10px;
}

.mobile-menu-container {
    display: none;
}

/* Topbar Search */

.topbar-search-container {
	display: none;
	padding-top: 10px;
	padding-bottom: 10px;
	background: #282828;
}

.topbar-search-container .search-container {
    display: inline-block;
    width: 100%;
	margin: auto;
	padding-right: 40px;
}

.topbar-search-container .icon img {
    max-width: 20px;
}

.topbar-search-container #search-input {
	color: white;
	background: none;
	border: none;
}

input:focus, textarea:focus {
	outline: none;
}

.topbar-search-container #search-submit {
    background: none;
    border: none;
}

.search-container #search-input, .search-container #search-submit {
    float: right;
}

.search-container #search-input {
    min-width: 250px;
}

.search-container .fa-search {
    font-size: 16px;
}

.search-icon {
    top: 54%;
    transform: translateY(-50%);
    position: absolute;
    right: 45px;
    max-width: 25px;
	cursor: pointer;
}

.search-icon.mobile-search-icon {
    display: none;
}


/* Login Button */

.login-button {
    padding: 5px 12px 5px 12px;
    margin: -5px -12px -5px -12px;
	background: linear-gradient(rgba(211, 211, 211, 0.4), rgba(0, 0, 0, 0.4));
	cursor: pointer;
	position: absolute;
	right:110px;
	top: 55%;
	transform: translateY(-50%) !important;
}

.login-button a {
    line-height: inherit;
}

/* Login Dropdown */

.login-dropdown {
	position: absolute;
	display: none;
    top: 100%;
	right: 100px;
    color: black;
    background: rgba(0, 0, 0, 0.65);
	width: 380px;
    height: auto;
}

.login-dropdown ul {
    padding: 0px 10px 10px 10px;
}

.login-dropdown li {
	width: 106%;
    margin-right: 0px;
    margin-left: -3%;
    padding-left: 3%;
    height: auto;
}

.login-dropdown li:before {
	content: "\2192";
	float: left;
	padding-right: 5px;
	color: white;
	padding-top: 8px;
}

.login-dropdown a {
	color: white;
	line-height: inherit;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 400;
}

.login-dropdown .two-tone {
	border-top: solid 3px #F5E814;
	border-bottom: none;
	width: 100%;
	float: left;
	margin-top: 8px;
	margin-bottom: 0px;
}

.login-dropdown .dropdown-close {
    position: absolute;
    right: 0;
    bottom: -28px;
    background: grey;
	cursor: pointer;
}

.login-dropdown .dropdown-close p {
	color: white;
	margin: 0px;
    padding: 2px 20px 2px 20px;
}

/* Fontawesome squares */
.fa::before {
	float: right;
	color: white;
	padding-left: 15px;
	transition-duration: 0.5s;
	display: block;
}

#primary-menu .fa::before {
    line-height: 123px;
}

.login-button.fa::before {
	color: #F5E814;
}

/* Could also do with JS */
.main-navigation li:hover.fa::before {
	color: #F5E814;
}

/* Login Dropdown Hover */

.login-dropdown li:hover {
	background: rgba(0, 0, 0, 0.9);
}

/* Submenu */

#primary-menu .sub-menu {
    background: rgba(0, 0, 0, 0.65);
	border-top: solid 3px #F5E814;
	margin-top: -1px;
}

#primary-menu .sub-menu li {
    margin: 0px;
    padding: 10px 0px 10px 5px;
    width: 100%;
    line-height: 16px;
    height: auto;
}

#primary-menu .sub-menu li a {
    line-height: 16px;
    font-weight: 400;
}

#primary-menu .sub-menu li:hover {
    background: black;
}

/* Home Icon */
.main-navigation .home-icon {
    width: 8%;
    margin-right: 20px;
}

.home-icon a {
    background-image: url(/wp-content/uploads/2018/02/home-icon.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 50% 48%;
    text-indent: 100%;
    overflow: hidden;
    width: 100%;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
}

.home-icon .sub-menu a {
    background-image: none;
    text-indent: 0%;
}

.home-icon a:hover {
    background-image: url(/wp-content/uploads/2018/02/home-icon-hover.png);
}

.home-icon .sub-menu a:hover {
    background-image: none;   
}

#primary-menu .home-icon .sub-menu li {
    padding-top: 9px;
    padding-bottom: 9px;
}

/* FOOTER */

.site-footer {
	background: #282828;
	line-height: 1em;
}

.footer-div {
	width: 32%;
	float: left;
	text-align: center;
}

.footer-div p {
	margin: 0px;
}

.site-info .footer-terms-conditions p, .site-info .footer-privacy-policy p, .site-info a {
	color: gray;
	border-right: solid 1px gray;
	text-transform: uppercase;
	font-size: 13px;
	font-family: Sansa-Normal;
}

.site-info a {
	text-decoration: none;
	border-right: none;
}

.site-info {
	width: 40%;
	margin-left: 7%;
	display: inline-block;
	padding: 17px 0px 15px 0px;
}

.site-info .footer-copyright p {
	color: gray;
	font-size: 13px;
	font-family: Sansa-Normal;
}

/*-- AAT Disclosure --*/

.aat-disclosure {
    padding: 17px 1% 15px 0px;
    float: right;
    text-transform: uppercase;
}

.aat-disclosure a {
    color: gray;
}

.aat-disclosure p {
    color: gray;
    font-size: 13px;
    font-family: Sansa-Normal;
    margin: 0px;
}

/* MAIN */

.site-content {
	min-height: 35vw;
}

.site-content .content-area {
	width: 80%;
	margin: auto;
}

.site-main {
	margin-bottom: 50px;
	margin-top: 50px;
}

.site-main a {
    color: black;
}

.page-title h1 {
	font-weight: 400;
}

#breadcrumbs{
    list-style:none;
    margin: 0px 0px 10px 0px;
	padding-left: 0px;
    overflow:hidden;
	width: 100%;
}
  
#breadcrumbs li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
	font-size: 14px;
	font-family: 'Helvetica-Roman';
}
  
#breadcrumbs .separator{
    font-size:18px;
    font-weight:100;
    color: grey;
}

.site-content {
	margin-top: 0px;
}

.mainpage-banner {
	height: 500px;
	overflow: hidden;
	position: relative;
}

.mainpage-banner img {
	width: 100%;
}

.mainpage-banner .page-title {
	position: absolute;
    bottom: 5%;
    left: 10%;
    min-width: 20%;
	max-width: 80%;
    text-align: center;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.7);
	padding-left: 15px;
	padding-right: 15px;
}

.underline-h1 {
    border-bottom: solid 5px #F5E814;
    display: inline-block;
    padding-bottom: 10px;
	margin-top: 0px;
}

.page-title h1 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 30px;
}

.site-main ul {
	list-style: none;
	margin: 0px;
	padding: 0 0 0 2.1em;
}

.site-main ul li {
	color: black;
	font-family: "Helvetica-Roman";
	text-indent: -1em;
}

.site-main ul li:before {
	content: "\25A0";
	color: #F5E814;
	padding-right: 1em;
	display: inline-block;
}

.site-main h2 {
	font-weight: 400;
	position: relative;
	padding-bottom: 15px;
	text-transform: uppercase;
}

.site-main h2:after {
	content: "";
    border-bottom: solid 4px #F5E814;
    width: 60px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.site-main p {
	margin-top: 10px;
	margin-bottom: 10px;
}

/* Outer div for sub-menu pages */
.outer-container {
    display: inline-block;
    max-width: 100%;
}

/* GENERAL */

.page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-working-at-qube .site-main, .page-template-divisional .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .single-employeecasestudy .site-main, .page-template-qube-care .site-main, .page-template-containers .site-main, .page-template-global .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main {
	width: 89%;
	margin-right: auto;
	margin-left: auto;
}

.single-employeecasestudy .site-main {
    width: 100%;
    padding-left: 95px;
}

.page-template-blank .page-content, .page-template-investor .page-content, .page-template-career .page-content {
	margin-bottom: 50px;
}

/* Main Section specific Responsive */
@media(max-width: 1800px) {
    .page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-working-at-qube .site-main, .page-template-divisional .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .page-template-qube-care .site-main, .page-template-containers .site-main, .page-template-global .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main  {
    	width: 88%;
    }
    
    .single-employeecasestudy .site-main {
        width: 100%;
    }
}

@media(max-width: 1700px) {
    .page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-working-at-qube .site-main, .page-template-divisional .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .page-template-qube-care .site-main, .page-template-global .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main  {
    	width: 87%;
    }
    
    .single-employeecasestudy .site-main {
        width: 100%;
    }
}

@media(max-width: 1600px) {
    .page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-working-at-qube .site-main, .page-template-divisional .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .page-template-qube-care .site-main, .page-template-containers .site-main, .page-template-global .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main   {
    	width: 86%;
    }
    
    .single-employeecasestudy .site-main {
        width: 100%;
    }
}

@media(max-width: 1450px) {
    .page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-working-at-qube .site-main, .page-template-divisional .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .page-template-qube-care .site-main, .page-template-containers .site-main, .page-template-global .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main   {
    	width: 85%;
    }
    
    .single-employeecasestudy .site-main {
        width: 100%;
    }
}

@media(max-width: 1350px) {
    .page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-working-at-qube .site-main, .page-template-divisional .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .page-template-qube-care .site-main, .page-template-containers .site-main, .page-template-global .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main  {
    	width: 84%;
    }
    
    .single-employeecasestudy .site-main {
        width: 100%;
    }
}

/* GENERAL SUBMENU STYLING */

.about-submenu .menu, .investor-submenu .menu, .media-submenu .menu {
	list-style: none;
	width: 30%;
	float: left;
	margin-left: 0px;
	padding-left: 85px;
	margin-top: 20px;
}

.about-submenu .menu li, .investor-submenu .menu li, .media-submenu .menu li {
	border-top: solid 2px gray;
	height: 80px;
}

.investor-submenu .menu li {
	height: 100px;
}

.about-submenu .menu li:last-child, .investor-submenu .menu li:last-child, .media-submenu .menu li:last-child {
	border-top: solid 2px gray;
	border-bottom: solid 2px gray;	
}

.about-submenu .menu a, .investor-submenu .menu a, .media-submenu .menu a {
	color: black;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Sansa-Normal';
	font-size: 20px;
	display: table-cell;
	vertical-align: middle;
	height: 80px;
}

.investor-submenu .menu a {
	height: 100px;
}

.about-submenu .menu .menu-item-has-children, .investor-submenu .menu .menu-item-has-children, .media-submenu .menu .menu-item.has-children {
	height: auto;
	padding-top: 20px;
}

.about-submenu .menu-item-has-children a, .investor-submenu .menu-item-has-children a, .media-submenu .menu-item-has-children a {
	height: auto;
}

.sidebar-toggle, .sidebar-close, .sidebar-menu ul {
    display: none;
}

/*-- Reactive Submenu Styling --*/

.about-submenu .current_page_item, .investor-submenu .current_page_item, .media-submenu .current_page_item {
	border-top: solid 2px #F5E814 !important;
}

.about-submenu .menu .current_page_item + li, .investor-submenu .menu .current_page_item + li, .media-submenu .menu .current_page_item + li {
	border-top: solid 2px #F5E814 !important;
}

.about-submenu .menu .current_page_item:last-child, .investor-submenu .menu .current_page_item:last-child, .media-submenu .menu .current_page_item:last-child {
	border-top: solid 2px #F5E814 !important;
	border-bottom: solid 2px #F5E814 !important;
}


/* HOMEPAGE */

.page-template-homepage .site-main {
	margin-bottom: 0px;
}

.page-template-homepage .content-area {
	width: 95%;
}

.page-template-homepage .site-content {
	margin-top: 0px;
}

.banner-container {
	margin-bottom: 40px;
}

.banner-container img {
	width: 100%;
	height: 581px;
	/* IE FIX - height: auto; */
	object-fit: cover;
	overflow: hidden;
}

/* IE compatibility fix */
.slick-slide {
    max-height: 581px;
}

.banner-overlay {
    position: absolute;
    left: 10%;
    bottom: 20%;
    width: 31%;
    height: 36%;
    background: rgba(0, 0, 0, 0.8);
	padding: 20px;
}

.banner-overlay p {
	color: white;
	text-transform: uppercase;
	font-family: Sansa-normal;
	line-height: 1.7em;
}

.banner-overlay .banner-q {
	width: auto;
	height: auto;
	float: left;
	margin-right: 5%;
	margin-left: 2%;
	margin-top: 3%;
	margin-bottom: 20px;
}

/* Slick Slider fix */
.banner-container {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.banner-container.slick-initialized {
    visibility: visible;
    opacity: 1    
}

/* AGM Notification */

.agm-announcement {
	background: yellow;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.agm-announcement p {
	text-transform: uppercase;
	font-family: Sansa-normal;
	font-size: 18px;
}

.banner-agm-overlay {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);    
}

.banner-agm-overlay p {
    color: white;
    font-family: "Sansa-Normal";
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;   
}

.banner-agm-overlay a {
    text-decoration: none;
}

/* ABOUT PAGE */

.page-template-about-sidebar .site-main, .page-template-about-board-sidebar .site-main, .page-template-asx-announcements .site-main, .page-template-reports-and-presentations .site-main, .page-template-about-sidebar-corporate-governance .site-main, .page-template-calendar .site-main, .page-template-combined .site-main {
	float: left;
	width: 65%;
	padding-left: 5%;
	margin-top: 10px;
}

/*-- Corporate Governance --*/

.accordion-row {
    display: inline-block;
    width: 100%;
}

.accordion-row p {
    float: left;
}

.accordion-row p a {
    text-decoration: none;
    color: black;
}

.accordion-row .download-img {
    float: right;
}

.accordion-controls {
    float: right;
    display: inline-block;
}

.accordion-controls p {
    color: gray;
}

.accordion-controls #expandAll {
    float: left;
    padding-right: 15px;
}

.accordion-controls #closeAll {
    float: left;
    padding-left: 15px;
    border-left: solid 1px gray;
}

/*-- HSE Page --*/

.hse-panels {
	margin-top: 30px;
}

.panel-text-container {
	display: inline-block;
	margin-bottom: 50px;
}

.panel-text-container img {
	width: 20%;
	float: left;
}

.panel-text-container .hse-textarea {
	float: left;
	width: 70%;
	margin-left: 3%;
}

.panel-text-container .hse-textarea h3 {
	margin-top: 0px;
}

.qube-zero-harm {
	position: absolute;
    top: 25%;
    right: 0px;
    min-width: 80px;
    max-width: 20%;
}

/*-- HSE Page New --*/
.page-template-hse-safety path {
    opacity: 0;
}

.page-template-hse-safety path:hover {
    cursor: pointer;
}

.wheel-outer-container {
	width: 100%;
	display: inline-block;
}

.wheel-container {
    width: 33%;
    position: relative;
	float: left;
}

.wheel-left, .wheel-right {
	width: 33%;
	float: left;
	min-height: 200px;
}

#qube-wheel {
    width: 100%;
}

.sector-text-container {
	width: 100%;
	float: left;
	position: relative;
}

.hse-text-block {
    display: none;
    position: absolute;
	margin-top: 50%;
    transform: translateY(-50%);
}

.hse-panel-outer-container {
	width: 31%;
	margin-right: 2%;
	float: left;
}

.hse-panel-text-container {
	width: 100%;
	position: relative;
    height: 15.9vw;
	overflow: hidden;
	cursor: pointer;
}

.hse-panel-text-container .hse-title-container {
	font-family: 'Sansa-Normal';
    position: absolute;
    bottom: 0px;
    color: white;
    text-transform: uppercase;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    margin: 0px;
    padding-left: 5%;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
	height: 50px;
}

.hse-panel-text-container .panel-title span {
	vertical-align: middle;
    display: table-cell;
    height: 50px;
}

.hse-panel-text-container img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.hse-panel-outer-container .grey-button {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}

.hse-quote {
	background: rgba(0, 0, 0, 0.4);
	height: 100%;
    position: absolute;
    width: 100%;
    top: 100%;
	padding-left: 5%;
}

.hse-quote p {
	color: white;
}

.panel-button {
	width: 100%;
    float: left;
    clear: both;
    background: #FFE512;
    margin-top: 20px;
    margin-bottom: 20px;
}

.panel-button a {
	text-decoration: none;
}

.panel-button p {
	text-decoration: none;
	font-family: 'Sansa-Normal';
	text-align: center;
}

@media (max-width: 1200px) {
   #qube-wheel {
        width: 100%;
    }
    #svg-box {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1000px) {
	.hse-panel-outer-container {
		width: 100%;
		margin-right: 0%;
		float: none;
		margin: auto;
		max-width: 400px;
	}
	
	.hse-panel-text-container {
		height: auto;
	}
	
	.wheel-container, .wheel-left, .wheel-right {
		width: 100%;
	}
	
	.wheel-outer-container {
		padding-bottom: 200px;
		position: relative;
	}
	
	.wheel-left, .wheel-right {
		position: absolute;
    	bottom: 0px;
	}
	
	.hse-text-block {
		margin-top: 20px;
		transform: none;
	}
}

/*-- Board Sub-Submenu --*/

.about-submenu .sub-menu {
	list-style: none;
}

.about-submenu .sub-menu li, .about-submenu .sub-menu li:last-child {
	border: none;
	height: auto;
}

.about-submenu .sub-menu a {
	text-transform: none;
	height: auto;
}

.about-submenu .sub-menu li:last-child {
	padding-bottom: 20px;
}

/*-- Board Page --*/

.board-row {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.board-member-container {
    width: 40%;
    float: left;
    margin-right: 5%;
    position: relative;
}

.board-titles-container {
    padding-left: 20px;
    padding-bottom: 10px;
}

.board-member-container .bw-photo {
    display: block;
}

/* Display none for colour photo and profile */

.board-member-container .colour-photo {
    display: none;
}

.board-member-profile-container {
    display: none;
}

.board-member-container .read-more {
    visibility: hidden;
    cursor: pointer;
}

/* Styling for title and name */

.board-member-container .name {
    font-size: 20px;
    font-family: "Sansa-Normal";
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 400;
}

.board-member-container .sub-title {
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Styling for profile */

.board-left {
    left: -5px;
}

.board-right {
    right: -5px;
}

.board-member-profile-container {
    width: 220%;
    position: absolute;
    top: 100%;
    border: solid 5px black;
}

.profile {
    padding: 10px;
    width: 90%;
}

.board-close {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    text-transform: uppercase;
    font-family: "Sansa-Normal";
}

/* Read More */
.board-member-container .read-more {
    width: 50%;
    border: solid 1px #C7C7C7;
    color: gray;
    text-align: center;
    font-family: "Sansa-Normal";
    padding-top: 3px;
    padding-bottom: 3px;
    margin-left: 20px;
    margin-bottom: 10px;
}

.board-member-container .read-more:hover {
    background: #BFBFBF;
    color: white;
}

/* End of Page Spacer */

.board-page-spacer {
    margin-top: 50px;
}

/* Anchoring */
#bl-title-board:before, #bl-title-leadership:before {
    content: "";
    display: block;
    height: 180px;
    margin: -180px 0 0;
}


/* MEDIA */

.page-template-media .site-main {
	width: 65%;
	padding-left: 5%;
	float: left;
	margin-top: 10px;
}

.media-year-select {
	display: inline-block;
}

.year-select {
	font-family: "Sansa-Normal";
	font-size: 18px;
	cursor: pointer;
	position: relative;
	border-right: solid 2px gray;
	padding-right: 20px;
	padding-left: 20px;
}

.year-select:first-child {
	border-right: solid 2px gray;
	border-left: solid 2px gray;
}

.year-select.selected:after {
	content: "";
	border-bottom: solid 4px #F5E814;
	width: 60%;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.media-year-select p {
	float: left;
}

.media-release {
	display: none;
	font-size: 18px;
	margin-bottom: 20px;
}

.media-release.selected {
	display: block;
}

.media-release-date, .media-release-title, .media-release-date a, .media-release-title a {
	font-family: "Sansa-Normal";
}

.media-release-title {
	text-transform: uppercase;
}

.media-release-title a {
	color: black;
}

.media-release-dl {
	text-indent: 0.6em;
	margin-top: 0px;
	font-size: 16px;
}

.media-release-dl a {
	text-decoration: none;
	color: black;
}

.media-release-dl a:before {
	content: ">";
	color: #F5E814;
}

/*-- Mobile Select Dropdown --*/
.mobile-year-select {
    display: none;
}


/* INVESTOR */

.page-template-investor .shareholder-information-row a {
    color: black;
    text-decoration: none;
}

.investor-panels {
	width: 100%;
	margin: auto;
}

.share-price-container {
	background: #999999;
	padding: 10px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	margin-top: 30px;
}

.share-price-row {
	display: inline-block;
	width: 100%;
	margin-top: 7px;
}

.asx-logo, .delay-notice {
	width: 20%;
}

.asx-feed {
	width: 60%;
}

.asx-feed, .asx-logo, .delay-notice {
	float: left;
}

.asx-logo img {
	max-width: 60px;
	float: left;
}

.asx-feed p {
	color: white;
	text-align: center;
}

.delay-notice p {
	color: white;
	line-height: 39px;
	text-align: right;
}

.asx-feed .feed-output {
	font-family: 'Sansa-Normal';
	color: #F5E814;
	font-size: 26px;
	margin-left: 10px;
}

.shareholder-information-container {
	background: #F2F2F2;
	padding: 30px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
}

.shareholder-container-row {
	display: inline-block;
	width: 100%;
}

.shareholder-container-row a {
    word-wrap: break-word;
}

.shareholder-left, .shareholder-right {
	width: 50%;
	float: left;
}

.shareholder-container-row h3 {
	margin-bottom: 0px;
}

.shareholder-container-row p {
	margin: 0px;
}

/*-- Calendar --*/

.calendar-container {
    display: block;
    margin-top: 40px;
}

.calendar-event {
    display: inline-block;
    width: 100%;
    border-bottom: solid 1px gray;
}

.calendar-event:first-child {
    border-top: solid 1px gray;
}

.calendar-event .event-left {
    width: 40%;
    float: left;
}

.calendar-event .event-right {
    width: 60%;
    float: left;
}

.event-left .event-date, .event-right .event-title {
    margin-bottom: 1px;
}

.event-left .event-time, .event-right .event-description, .event-right .event-description p {
    margin-top: 1px;
}

.event-right .event-title {
    text-transform: uppercase;
    font-family: "Sansa-Normal";
    text-decoration: underline;
}

/* CAREERS */

.career-panels {
	width: 80%;
	margin: auto;
}

/* CONTACT */

.contact-form-container input:not(#submit), .contact-form-container textarea {
	float: right;
	width: 88%;
	clear: both;
	margin-bottom: 20px;
	background: #F0F0F0;
    border: solid 1px #B3B3B3;
    border-radius: 0px;
    padding: 10px;
}

.contact-form-container #submit {
	width: 100px;
	clear: both;
	float: right;
}

.contact-details-container h2 {
	margin-bottom: 0px;
	padding-bottom: 10px;
}

.contact-details-container h2:after {
	border-bottom: none;
}

.contact-details-container p {
	margin-top: 2px;
	margin-bottom: 2px;
}

.contact-details-container h2:first-child {
	margin-top: 0px;
}

.message-number {
	display: none;
}

.enquiry-link, .enquiry-link:visited {
    color: black;
}

/* Media Contact Form */

.media-contact {
	display: none;
}

.media-contact.contact-form-container .media-enquiry-form {
    display: inline-block;
    padding: 20px 40px 20px 40px;
    min-width: 500px;
}

.media-contact.contact-form-container input:not(#submit), .media-contact.contact-form-container textarea {
	background: white;
	float: left;
	width: 100%;
}

.media-contact.contact-form-container #submit {
    float: left;
}

.page-template-contact .featherlight .featherlight-content {
	background: #F2F2F2;
}

.media-contact label {
    float: left;
    font-weight: 400;
    clear: both;
}

.media-contact .two-tone {
    margin-bottom: 0px;
}

.media-contact .dropdown-close {
    position: absolute;
    right: 0;
    bottom: -26px;
    background: grey;
    cursor: pointer;
}

.media-contact .dropdown-close p {
    color: white;
    margin: 0px;
    padding: 2px 20px 2px 20px;
}



/* WHO WE ARE */

.qube-video-container {
    margin-top: 50px;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 5px 10px 10px #888888;
}

.qube-video-container.vimeo-fullwidth {
	width: 100%;
}

.qube-video-container.vimeo-left {
	margin: 0px;
	width: 48%;
	margin-right: 2%;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;    
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;    
}

/* DIVISION PAGES */

.divisional-section {
    margin-bottom: 50px;
}

.divisional-container {
    display: inline-block;
    margin-bottom: 50px;
    width: 100%;
}

.divisional-container-img {
	float: left;
	display: inline-block;
}

.divisional-container img {
    float: left;
    min-width: 50px;
    object-fit: cover;
    height: 12vw;
	width: 12vw;
}

.divisional-container .divisional-content {
    float: left;
    width: 77%;
    margin-left: 2%;
}

.divisional-container .divisional-content h3 {
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
}

.divisional-section.division-contact p {
    margin-top: 1px;
    margin-bottom: 1px;
}

.divisional-section .grey-button {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
}

.divisional-section .grey-button:hover {
    color: white;
}

/* CONTAINERS */
.page-template-containers .grey-button {
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;
}

.page-template-containers .divisional-section {
	display: inline-block;
	width: 100%;
	margin-bottom: 0px;
}

.page-template-containers .divisional-container {
	width: 49%;
	float: left;
}

.page-template-containers .divisional-container .divisional-content {
	float: left;
	width: 60%;
	margin-left: 3%;
}

.containers-button-container {
	display: inline-block;
	width: 100%;
}

.containers-button-container .grey-button {
	float: left;
	margin-right: 1%;
}

.page-template-containers .divisional-content h2 {
	margin-top: 0px;
}

#containers-form {
	width: 80%;
	display: inline-block;
}

.contact-form-container.containers-contact input:not(#submit), .contact-form-container.containers-contact textarea {
	float: left;
	width: 100%;
}

.contact-form-container.containers-contact select {
	margin-bottom: 20px;
    background: #F0F0F0;
    border: solid 1px #B3B3B3;
    border-radius: 0px;
    padding: 10px;
}

.contact-form-container.containers-contact label {
	clear: both;
	float: left;
	line-height: 40px;
}

.contact-form-container.containers-contact #containers-form input[type='radio'] {
	width: 5%;
	clear: none;
	height: 15px;
	margin-top: 12px;
}

.containers-delivery-radio-label-last {
	clear: none !important;
}

.contact-form-container .container-form-container-name {
	display: none;
}

.white-button {
	border: solid 1px #99A3A4;
    background: white;
    display: inline-block;
    padding: 7px 0px 7px 0px;
    font-size: 1em;
    line-height: inherit;	
}

.white-button:hover {
	background: #99A3A4;
}

.white-button:hover a {
	color: white;
}

.white-button a {
	margin: 0px;
    color: grey;
    text-decoration: none;
    padding: 10px 12px 10px 12px;
}

.contact-form-container.containers-contact #containers-form input[name='containers_message_postcode'] {
	clear: none;
	width: 15%;
	margin-left: 1%;
}

.container-specials-grid {
	margin-bottom: 30px;
}

.container-specials-grid th {
	background: #69747a;
	color: white;
	font-family: 'Sansa-Normal';
	font-weight: 400;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
	border: solid 1px white;
	width: 33.3%;
}

.container-specials-grid td {
	background-color: #F0F0F0;
	border: solid 1px white;
}

.container-grid-text {
	padding: 2%;
}

.container-grid-price {
	text-align: center;
}

.containers-enquiry-origin-select {
	float: left;
	clear: both;
}

/* Container Dimensions */
.container-dimensions-grid {
    margin-bottom: 30px;	
}

.container-dimensions-grid th, .container-dimensions-grid .container-grid-name {
	background: #69747a;
    color: white;
    font-family: 'Sansa-Normal';
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid 1px white;
	font-size: 14px;
}

.container-dimensions-grid .container-grid-name {
	padding-left: 5px;
}

.container-dimensions-grid td {
	border: solid 1px grey;
	padding: 5px;
}

/* Containers Special Page - New */
.container-specials-header {
	margin-bottom: 50px;
}

.container-specials-header p, .container-specials-header h2 {
	text-align: center;
}

.container-specials-header h2:after {
	content: none;
}

.specials-left-options {
	width: 20%;
	float: left;
}

.specials-left-options p {
	cursor: pointer;
}

.specials-main-container {
	width: 80%;
	float: left;
}

.page-template-containers-location .specials-main-container {
	width: 100%;
}

.specials-main-container .container-container {
	width: 30%;
	float: left;
	cursor: pointer;
}

.specials-main-container .container-container a {
	text-decoration: none;
}

.specials-main-container .container-container img {
	transition: box-shadow 0.2s ease-in-out;
}

.specials-main-container .container-container:hover img {
	box-shadow: 4px 8px 8px #888888;
}

/* Single Container */
.single-container #primary {
	margin-top: 200px;
}

.single-container .site-main {
	display: inline-block;
	width: 100%;
}

.single-container-left, .single-container-right {
	width: 50%;
    float: left;
}

.single-container-right {
	padding-left: 2%;
}

/* Containers Responsive */
@media(max-width: 1200px) {
	.specials-main-container .container-container {
		width: 50%;
		float: left;
	}
}

@media(max-width: 1000px) {
	.page-template-containers .divisional-container {
		width: 100%;
	}
	.contact-form-container.containers-contact #containers-form input[name='containers_message_postcode'] {
		width: 30%;
	}
	
	/* Container Dimensions */
	.container-dimensions-grid th {
		display: none;
	}
	
	.container-dimensions-grid td {
		display: block;
		padding: 10px;
		text-align: center;
	}
	
	.container-dimensions-grid .container-grid-name {
		font-size: 16px;
	}
	
	.container-dimensions-grid td:before {
		content: attr(data-th);
		display: block;
		text-align: center;
		font-weight: bold;
		font-size: 1em;
	}
	
	/* Single Container */
	.single-container-left, .single-container-right {
		width: 100%;
	}
	
	.single-container-right {
		padding-top: 20px;
	}
}

@media(max-width: 800px) {
	.specials-left-options {
		width: 100%;
		float: none;
	}
	
	.specials-main-container .container-container {
		width: 100%;
		float: none;
	}
}

@media(max-width: 600px) {
	.page-template-containers .divisional-container {
		width: 100%;
	}
	
	.containers-contact #containers-form {
		width: 100%;
	}
	
	.contact-form-container.containers-contact #containers-form input[name='containers_message_postcode'] {
		width: 50%;
	}
	
	.contact-form-container.containers-contact #containers-form label[for='containers_message_delivery'] {
		width: 90%;
	}
	
	.contact-form-container.containers-contact #containers-form input[name='containers_message_delivery'] {
		margin-left: 5%;
	}
}

/* PROCUREMENT */
.procurement-steps {
	display: flex;
	flex-wrap: wrap;
}

.procurement-step-segment {
	float: left;
    width: 14.2%;
    border-left: solid 1px black;
	margin-top: 30px;
}

.procurement-step-number, .procurement-step-title {
	font-family: Sansa-Normal;
    padding-left: 10px;
    padding-right: 10px;
}

.procurement-step-segment .procurement-step-number {
	color: #FFCF00;
	font-size: 30px;
	margin-bottom: 0px;
}

.procurement-step-segment .procurement-step-title {
	font-size: 18px;
	color: #808285;
	margin-top: 0px;
	height: 60px;
}

.procurement-step-segment ol {
	list-style: lower-alpha;
    margin: 0px;
    padding-left: 20px;
}

.procurement-step-segment li {
	font-size: 13px;
	color: #808285;
}

.procurement-step-segment p {
	font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
	color: #808285;
}

.procurement-step-segment img {
	border-bottom: solid 1px #FFCF00;
	width: 100%;
}

.why-qube-procurement {
	display: inline-block;
	margin-top: 30px;
}

.why-qube-procurement .grey-button {
	margin-top: 25px;
}

.procurement-left {
	width: 60%;
	float: left;
}

.procurement-right {
	width: 40%;
	float: left;
	padding: 3%;
}

.procurement-banner {
	margin-left: -13%;
	margin-top: 30px;
	width: 126%;
	height: 500px;
	overflow: hidden;
	position: relative;
}

.procurement-banner .overlay {
	position: absolute;
    left: 5%;
    bottom: 20%;
    width: 31%;
    height: 36%;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
}

.procurement-banner .overlay p {
	color: white;
	font-family: Sansa-Normal;
	font-size: 20px;
}

.procurement-supply-chain-audit {
	margin-top: 30px;
}

.procurement-case-studies {
	padding: 15px;
    border: solid 2px #F5E814;
    border-radius: 10px;
}

.procurement-case-study-single.slick-slide {
	max-height: none;
}

.procurement-case-study-single {
	display: inline-block;
	width: 100%;
}

.procurement-case-study-outer {
	display: flex;
}

.procurement-case-study-left {
	width: 60%;
	float: left;
	padding-right: 10px;
}

.procurement-case-study-right {
	width: 40%;
	float: left;
	position: relative;
}

.procurement-case-study-right img {
	height: 100%;
    object-fit: cover;
    overflow: hidden;
    position: absolute;
}

.procurement-case-study-main-title, .procurement-case-study-title {
	font-family: Sansa-Normal;
    text-transform: uppercase;	
}

.procurement-case-study-main-title {
    border-bottom: solid 1px #F5E814;
    padding-bottom: 10px;
}

.procurement-contact {
	margin-top: 30px;
	margin-bottom: 30px;
}

.procurement-contact #procurement-form {
	width: 80%;
	display: inline-block;
}

.procurement-contact #procurement-form input:not(#submit), .procurement-contact #procurement-form textarea {
	float: left;
	width: 100%;
}

.procurement-contact #procurement-form select {
	margin-bottom: 20px;
    background: #F0F0F0;
    border: solid 1px #B3B3B3;
    border-radius: 0px;
    padding: 10px;
}

.procurement-case-studies .slick-arrow {
	background: none;
    border: none;
	height: 100px;
	width: 100px;
	background-size: contain;
    background-repeat: no-repeat;
	cursor: pointer;
	position: absolute;
}

.procurement-case-studies .prev-arrow {
	background-image: url('/wp-content/themes/qube/img/left-arrow.png');
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.procurement-case-studies .next-arrow {
	background-image: url('/wp-content/themes/qube/img/right-arrow.png');
    right: -110px;
    top: 50%;
    transform: translateY(-50%);
}

/* PROCUREMENT RESPONSIFICATION */

@media (max-width: 1200px) {
	.procurement-step-segment {
		width: 25%;
	}
}

@media (max-width: 1000px) {
	.procurement-right {
		display: none;
	}
	
	.procurement-left {
		width: 100%;
	}
	
	.procurement-case-study-right, .procurement-case-study-left {
		width: 100%;
	}
	
	.procurement-case-study-outer {
		flex-wrap: wrap;
	}
	
	.procurement-case-study-right img {
		position: relative;
		width: 100%;
		max-height: 300px;
	}
	
	.procurement-banner .overlay {
		bottom: 25%;
		width: 50%;
		height: 40%;
	}
}

@media (max-width: 800px) {
	.procurement-step-segment {
		width: 50%;
	}
}

@media (max-width: 600px) {
	.procurement-banner {
		height: 400px;
	}
	
	.procurement-banner .overlay {
		bottom: 40%;
		width: 60%;
		height: 45%;
	}
}

/* 404 PAGE */
.error404 .site-main {
    margin-top: 20%;
}


/* SEARCH */

.search-results-container {
    margin-bottom: 40px;
    margin-top: 60px;
}

.search-result {
    margin-bottom: 40px;
}

.search-result a {
    text-decoration: none;
}

/* EMPLOYEE CASE STUDIES */

.single-employeecasestudy .outer-container {
    margin-bottom: 20px;
}

.single-employeecasestudy .site-main {
	display: block;
	margin: auto;
}

.employee-case-study-left, .employee-case-study-right {
	float: left;
	width: 50%;
}

.employee-case-study-right img {
	width: 80%;
	margin: auto;
	display: block;
}

.employee-case-study-right .quote {
	text-align: center;
	width: 80%;
	margin: auto;
	display: block;
	font-family: "Sansa-Light";
	font-size: 20px;
	margin-top: 20px;
}

.site-main .no-underline:after {
	content: "";
    border-bottom: none;
}

.site-main .no-underline {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.site-main .division-title {
	margin-top: 0px;
}

.employee-case-study-content {
	margin-top: 40px;
}

.employee-prev-next-container hr {
    margin-top: 1.5em;
}

.employee-prev-next, .employee-prev-next:visited {
    color: black;
    text-decoration: none;
    padding-right: 20px;
    padding-left: 20px;
    font-family: "Sansa-Normal";
}

.employee-prev {
    border-right: solid 1px black;
    padding-left: 0px;
}

.employee-next {
    border-right: none;
}

.employee-case-study-mobile-block {
    display: none;
}


/* COLUMN SPACING */

.su-row .su-column.su-column-size-1-6 {
	margin: 0 0 0 2%;
	width: 15%;
}

.su-row .su-column.su-column-size-1-6:first-child {
	width: 15%;
}

/* BUTTONS */

.grey-button, #submit.grey-button, .apply .ja-button {
	border: solid 1px #99A3A4;
	background: linear-gradient(white, #E5E8E8);
	display: inline-block;
	padding: 7px 0px 7px 0px;
	font-size: 1em;
	line-height: inherit;
	cursor: pointer;
}

.apply .ja-button {
    padding-right: 10px;
    padding-left: 10px;
}

.grey-button a, #submit.grey-button a {
	margin: 0px;
	color: grey;
	text-decoration: none;
	padding: 10px 12px 10px 12px;
}

.grey-button:hover, .apply .ja-button:hover {
	background: linear-gradient(#AAB2BF, #586578);	
}

.grey-button:hover a {
	color: white;
}

#submit.grey-button:hover, .apply .ja-button:hover {
	background: linear-gradient(#AAB2BF, #586578);
	color: white;	
}

/* PANEL STYLING */

.case-studies-container {
	display: inline-block;
	margin-top: 50px;
}

.panel-container  {
	position: relative;
	height: 15.9vw;
}

.case-study-panel {
	position: relative;
	height: 12.5vw;
	width: 18%;
	float: left;
	margin-right: 2.5%;
}

.case-studies-container .case-study-panel:last-child {
	margin-right: 0%;
}

.panel-container img, .case-study-panel img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.panel-container .panel-title, .case-study-panel .case-study-title {
	font-family: 'Sansa-Normal';
    position: absolute;
    bottom: 0px;
    color: white;
    text-transform: uppercase;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    margin: 0px;
	padding-left: 5%;
	font-weight: 400;
	font-size: 18px;
	line-height: 18px;
}

.panel-title span, .case-study-panel span {
	vertical-align: middle;
	display: table-cell;
    height: 50px;
}


/* DOWNLOAD LINKS */

.downloads li {
	margin-bottom: 20px;
}

.downloads .download-title {
	display: inline-block;
	margin-bottom: 5px;
}

.downloads .download-title a {
	text-transform: uppercase;
	font-family: 'Sansa-Normal';
	color: black;
	text-decoration: underline;
	font-size: 18px;
}

.downloads .download-link {
	text-indent: 0.6em;
	margin-top: 0px;
}

.downloads .download-link a {
	text-decoration: none;
	color: black;
}

.downloads .download-link a:before {
	content: ">";
	color: #F5E814;
}

.downloads li:before {
    font-size: 25px;
}

/* BREADCRUMBS */

.breadcrumbs .bread-home, .breadcrumbs a:visited, .breadcrumbs a {
	color: gray;
	text-decoration: none;
}

.breadcrumbs .bread-current {
	text-decoration: underline;
}

.breadcrumbs .item-current {
	color: gray;
	text-decoration: underline;
}

/* ACCORDION */

.ui-accordion {
	margin-bottom: 30px;
}

.ui-accordion-content {
	border: none;
}

.ui-accordion .ui-accordion-header {
    height: auto;
    line-height: 32px;
    background: #F2F2F2;
	border-radius: 0px !important;
	color: black;
}

.ui-accordion-header.ui-state-active {
	background: #ABABAB;
}

.ui-accordion-header-icon.ui-icon {
	background-image:url('/wp-content/uploads/2017/12/accordion-plus.png') !important;
	height: 40px;
	width: 40px;
	background-position: 0px;
	float: right;
}

.ui-accordion-header-icon.ui-icon-triangle-1-s {
	background-image:url('/wp-content/uploads/2017/12/accordion-minus.png') !important;	
}

#expandAll, #closeAll {
	cursor: pointer;
}

/* SUBSCRIBE FORMS */

.campaignmonitor-form {
    display: none;
    min-width: 500px;
	background: #F2F2F2;
}

.campaignmonitor-form #subForm {
    padding: 20px 40px 20px 40px;
}

.campaignmonitor-form input:not(#submit), .campaignmonitor-form textarea {
	background: white;
	width: 100%;
}

.campaignmonitor-form #subForm input[type="checkbox"] {
    width: auto;
}

.campaignmonitor-form .two-tone {
    margin-bottom: 0px;
}

.campaignmonitor-form .dropdown-close {
    position: absolute;
    right: 0;
    bottom: -26px;
    background: grey;
    cursor: pointer;
}

.campaignmonitor-form .dropdown-close p {
    color: white;
    margin: 0px;
    padding: 2px 20px 2px 20px;
}

.campaignmonitor-form a {
    color: black;
}


/* TIMELINE */

/* Set box sizing default */
* {
  box-sizing: border-box;
}

.timeline-header, .timeline-footer {
	text-align: center;
}

.timeline-footer {
	margin-top: 30px;
}

.timeline-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.timeline-footer h2:after {
	display: none;
}

.timeline-footer h2:before {
    content: "";
    border-top: solid 4px #F5E814;
    width: 50px;
    position: absolute;
	top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: gray;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 30%;
}

/* The circles on the timeline */
.timeline .container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 30px;
  right: -59.5%;
  background-color: #F5E814;
  top: 19.2vw;
  border-radius: 50%;
	border-top: 4px solid white;
	border-bottom: 4px solid white;
  z-index: 1;
}

.timeline .right.container::after {
	top: 19.3vw;
}

/* Place the container to the left */
.left {
  left: 3%;
}

/* Place the container to the right */
.right {
  left: 67%;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -60%;
}

/* The actual content */
.timeline .content {
  	background-color: white;
  	position: relative;
	border-radius: 0px;
    box-shadow: 3px 3px 10px #888888;
}

.timeline .content h2 {
	padding-left: 20px;
}

.timeline .content h2:after {
	width: 181%;
	left: 20px;
}

.timeline .content p {
	padding-left: 20px;
}

.timeline .container.right h2:after {
	left: -90%;
}

.timeline .content img {
	height: 16vw;
	object-fit: cover;
	width: 100%;
}

.timeline-text {
	padding: 0px 10px 20px 10px;

}

/* Move all tiles closer together */

.timeline .right, .timeline .left:not(.timeline-first) {
	margin-top: -17%;
}

/* Responsification */
@media (max-width: 1850px) {
 	.timeline .container::after {
		top: 19.5vw;
	}
	
	.timeline .right.container::after {
	    top: 19.4vw;
    }   
}

@media (max-width: 1750px) {
	.timeline .container::after {
		top: 19.7vw;
	}
	
	.timeline .right.container::after {
	    top: 19.5vw;
    }
}

@media (max-width: 1650px) {
	.timeline .container::after {
		top: 19.8vw;
	}
    .timeline .right.container::after {
    	top: 19.8vw;
    }
}

@media (max-width: 1550px) {
	.timeline .container::after {
		top: 19.9vw;
	}
    .timeline .right.container::after {
    	top: 19.9vw;
    }
}

@media (max-width: 1500px) {
	.timeline .container::after {
		right: -60.5%;
		top: 20vw;
	}

	.timeline .content h2:after {
		width: 190%;
	}

	.timeline .container.right h2:after {
		left: -100%;
	}

	.timeline .right::after {
		left: -60.5%;
	}
    
}

@media (max-width: 1400px) {
       .timeline .container.right h2:after {
           left: -100%;
       }
       
       .timeline .content h2:after {
           width: 192%;
       }
       
       .timeline .right.container::after {
           top: 20vw;
       }
       
       .timeline .container::after {
           top: 20vw;
       }
       
       .timeline h2 {
           font-size: 16px;
       }
}

@media (max-width: 1300px) {
    .timeline .right.container::after {
        top: 20.3vw;
    }
       
    .timeline .container::after {
        top: 20.3vw;
    }    
}

@media (max-width: 1250px) {
    .timeline .right.contaer::after {
        top: 20.2vw;
    }
       
    .timeline .container::after {
        top: 20vw;
    }    
}

@media all and (max-width: 1200px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Container sizing */
  .timeline .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    max-width: 600px;
  }

/* Make sure all circles are at the same spot */
  .timeline .left::after, .timeline .right::after {
    left: 19px;
  }


/* Make all right containers behave like the left ones */
  .timeline .right {
    left: 0%;
  }
  
  .timeline .container.right h2:after {
      left: -50px;
  }

	.timeline .container h2:after {
		left: -50px;
		width: 100%;
	}
	
	/* Adjust margin top so they're not bunched up */
	.timeline .right, .timeline .left:not(.timeline-first) {
	    margin-top: 5%;
	}
	
	/* Shuffle left containers over */
	.timeline .left {
	    left: 0%;
	}
	
/* Make all timeline content fixed height */
    .timeline .content img {
        height: 300px;
    }
    
    .timeline .container::after, .timeline .right.container::after {
        top: 352px;
    }
}

@media all and (max-width: 600px) {
    .timeline .content img {
        height: 200px;
    }
    
    .timeline .container::after, .timeline .right.container::after {
        top: 251px;
    }    
}

/* JOBADDER */

/* Remove ad at bottom */
.powered-by-jobadder {
    display: none;
}

/* Jobs Summary Styling */
.ja-job-list {
    margin-top: 20px;
}

.ja-job-list .job {
    margin-bottom: 40px;
}

.ja-job-list .title {
    text-transform: none;
    padding-bottom: 0px;
}

.ja-job-list .title a {
    font-family: "Sansa-Normal";
    color: black;
    text-decoration: none;
}

.ja-job-list .title:after {
    content: none;   
}

.ja-job-list .view-details {
    color: black;
    text-decoration: none;
}

/* Job Search Styling */
#jobadder-search {
    width: 100%;
    float: left;
}

.jobadder-outer-container {
    width: 100%;
    margin: auto;
}

.jobadder-search-container {
    display: inline-block;
    border: solid 1px #D5D5D5;
    box-shadow: 0px 0px 20px #CCCCCC;
    padding: 10px;
    margin-bottom: 50px;
    width: 100%;
}

.jobadder-search-container .search-header {
    float: left;
    font-family: "Sansa-Normal";
    margin-left: 10px;
    margin-right: 25px;
    line-height: 2em;
}

#jobadder-search input {
    border-radius: 0px;
    line-height: 30px;
}

#jobadder-search select {
    padding: 5px;
    height: 38px;
}

#jobadder-search select, #jobadder-search input {
    width: 25%;
    margin-top: 5px;
    margin-right: 1%;
}

#jobadder-search .grey-button {
    padding: 5px 12px 5px 12px;
    margin-top: 5px;
    width: 10%;
    float: right;
}

#jobadder-search .grey-button:hover {
    color: white;
}

.jobadder-search-container ul li {
	text-indent: 0em;
}

#no-results {
    display: none;
}

/* Job Details Styling */
.ja-job-details {
    font-family: "Helvetica-Roman";
}

.ja-job-details .description {
    margin-bottom: 20px;
}

.ja-job-details ul {
    margin-bottom: 20px;
}

.ja-apply-iframe iframe {
    width: 37% !important;
}

.ja-job-details .classifications li:before {
    padding-right: 5px;
}

.ja-job-details .back-link {
    margin-right: 30px;
}

.ja-job-details .apply {
    margin-bottom: 30px;
}

/* JOBADDER RESPONSIFICATION */

@media(max-width: 1625px) {
    #jobadder-search select, #jobadder-search input {
        width: 24%;
    }
}

@media(max-width: 1205px) {
    #jobadder-search select, #jobadder-search input {
        width: 23%;
    }
    
    .ja-apply-iframe iframe {
        width: auto !important;
    }
}

@media(max-width: 1010px) {
    #jobadder-search select, #jobadder-search input {
        width: 22%;
    }
    
    #jobadder-search select {
        height: 30px;
    }
    
    #jobadder-search input {
        line-height: 22px;
    }
    
    #jobadder-search .grey-button {
        padding: 5px;
        font-size: 14px;
    }
}

@media(max-width: 800px) {
    .jobadder-search-container .search-header {
        float: none;
        text-align: center;
        margin-bottom: 20px;
    }
    
    #jobadder-search input, #jobadder-search select {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    
    #jobadder-search .grey-button {
        width: 50%;
        margin-right: auto;
        margin-left: auto;
        margin-top: 20px;
        float: none;
        display: block;
    }
}

/* LOCATIONS */

/* Page */
.page-template-map .site-content .content-area {
    width: 100%;
}

.page-template-map .site-main, .page-template-map .page-content {
    margin-top: 0px;
    margin-bottom: 0px;
}

.page-template-map #breadcrumbs {
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: 99;
    width: 90%;
}

.page-template-map #breadcrumbs a, .page-template-map #breadcrumbs span {
    color: black;
}

/* Map */
#map-canvas {
    height: 100vh;
    width: 100%;
}

.filters-mobile {
    display: none;
}

/* Hide PHP Outputs */
.location-container, .locations-output-hidden {
    display: none;
}

/* Filter box styling */
.map-filters {
    display: block;
    position: absolute;
    top: 30%;
    left: 10%;
    width: 20%;
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    min-width: 250px;
}

/* -- NOT USED
.map-filters label {
    width: 100%;
    display: block;
    color: white;
    font-family: "Sansa-Normal";
}
*/

.map-filters h2, .map-filters p {
    color: white;
}

.map-filters h2 {
    margin-bottom: 0px;
}

.map-filters h2:after {
    content: none;
}

.map-filters .filter-input, .filters-mobile .filter-input {
    float: left;
    clear: both;
}

.map-filters .checked, .filters-mobile .checked {
    display: none;
}

.map-filters .checked, .map-filters .unchecked, .filters-mobile .checked, .filters-mobile .unchecked {
    float: left;
    cursor: pointer;
}

.map-filters .filter-input p, .filters-mobile .filter-input p {
    float: left;
    margin-top: 0px;
    margin-left: 5px;
}

/* Info Box Styling */
.gm-style-iw h2:after {
    content : none;
}

/* Mobile Styling */

.locations-mobile-output {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    display: none;
}

.locations-mobile-output h2:after {
    content : none;
}

/* MAP RESPONSIFICATION */

@media(max-width: 800px) {
    .page-template-map #breadcrumbs {
        display: none;
    }
    
    .map-filters {
        top: 25%;
        width: 80%;
    }
    
    .locations-mobile-output {
        display: block;
    }
}

/* QUBE CARE */
.page-title.qube-care-title {
	background: rgba(0, 0, 0, 0.5);
}

.initiative-resources-container, .initiative-videos-container {
	margin-top: 50px;
}

.videos-row {
	width: 100%;
    display: inline-block;
}

.resources-row {
	display: inline-block;
	width: 100%;
}

.resource-container-image {
	width: 23%;
	margin-right: 2%;
	height: 400px;
	float: left
}

.resource-container-image img {
	width: 100%;
	height: 80%;
	object-fit: cover;
}

.qube-care-download {
    border: solid 1px #99A3A4;
    background: linear-gradient(white, #E5E8E8);
    display: inline-block;
    padding: 7px 5px 7px 5px;
    font-size: 1em;
    line-height: inherit;
	margin: auto;
    display: block;
    width: 100px;
    text-align: center;
}

.qube-care-download.qube-care-link {
	margin: 0px;
}

.qube-care-download a {
	text-decoration: none;
}

.qube-care-download:hover {
    background: linear-gradient(#AAB2BF, #586578);
}

.qube-care-download:hover a {
    color: white;
}

.video-row {
	clear: both;
}

.qube-video-container.qube-care-video-container {
	width: 23%;
	float: left;
	margin-bottom: 50px;
	margin-right: 2%;
	margin-top: 0px;
}

.resource-container-image.panel-container img {
    height: 100%;
}

.resource-container-image.panel-container {
    height: 17vw;
}

.initiatives-3-by-3 {
	text-align: center;
}

.initiatives-3-by-3 .case-studies-container {
	width: 75%;
}

.initiatives-3-by-3 .case-studies-container .case-study-panel {
	width: 30.8%;
	margin-bottom: 2.5%;
	height: 16vw;
}

.care-employee-resources .divisional-container {
	display: flex;
}

.care-employee-resources .divisional-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1400px) {
	.initiatives-3-by-3 .case-studies-container {
		width: 100%;
	}
	
	.initiatives-3-by-3 .case-studies-container .case-study-panel {
		height: 20vw;
	}
}

@media (max-width: 1000px) {
	.initiatives-3-by-3 .case-studies-container .case-study-panel {
		height: 50vw;
		width: 100%;
		margin-right: 0%;
		margin-bottom: 20px;
	}
	
	.care-employee-resources .divisional-container {
		display: inline-block;
	}
	
	.care-employee-resources .divisional-content {
		display: block;
	}
}

/* QUBE CARE SLEEPFIT */

.sleep-contact.contact-form-container .media-enquiry-form {
    display: inline-block;
    padding: 20px 40px 20px 0px;
    width: 100%;
    min-width: 400px;
}

.sleep-contact.contact-form-container input:not(#submit), .sleep-contact.contact-form-container textarea {
	background: white;
	float: left;
	width: 100%;
}

.sleep-contact.contact-form-container #submit {
    float: left;
}

.sleep-contact label {
    float: left;
    font-weight: 400;
    clear: both;
}

.sleep-contact .two-tone {
    margin-bottom: 0px;
}

.sleep-contact .dropdown-close {
    position: absolute;
    right: 0;
    bottom: -26px;
    background: grey;
    cursor: pointer;
}

.sleep-contact .dropdown-close p {
    color: white;
    margin: 0px;
    padding: 2px 20px 2px 20px;
}

.sleep-contact select {
    clear: both;
    margin-bottom: 20px;
    border: solid 1px #B3B3B3;
    border-radius: 0px;
    padding: 10px;
    background: white;
    float: left;
    width: 100%;    
}

.page-template-qube-care-initiative .featherlight .featherlight-content {
    background: #F2F2F2;
}

.qube-care-video-container.qube-video-container-2-across {
	width: 48%;
}

/* QUBE CARE RESPONSIVE */
@media (max-width: 1200px) {
	.qube-video-container.qube-care-video-container {
		width: 48%;
	}
	
	.resource-container-image {
		width: 48%;
	}

	.resource-container-image.panel-container {
		height: 300px;
	}
}

@media (max-width: 800px) {
	.qube-video-container.qube-care-video-container {
		width: 100%;
		margin-right: 0%;
	}
	
	.resource-container-image {
		width: 100%;
		margin-right: 0%;
	}
    
    .resource-container-image.panel-container {
        margin-bottom: 50px;
    }
    
    .resource-container-image.panel-container p {
        bottom: 0px;
    }
}

/* WHISTLEBLOWER */
.page-template-whistleblower .wrap {
	margin-top: 15%;
}

.page-template-whistleblower form input:not(#submit), .page-template-whistleblower form textarea {
	float: left;
	width: 100%;
}

.page-template-whistleblower form {
	display: inline-block;
	width: 80%;
	margin-bottom: 50px;
}

@media(max-width: 1000px) {
	.page-template-whistleblower form {
		width: 100%;
	}
}

/* QUBE GLOBAL */
.global-tiles {
	display: flex;
	margin-bottom: 80px;
	margin-top: 30px;
}

.global-tile-col {
	width: 23%;
	float: left;
	margin-right: 2%;
	display: flex;
	flex-direction: column;
    position: relative;
    padding-bottom: 70px;
	position: relative;
}

.global-tile-container img {
	height: 15.9vw;
}

.global-tiles .grey-button {
	position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
	padding-right: 10px;
	padding-left: 10px;
}

.global-tiles .grey-button:hover {
	background: linear-gradient(#AAB2BF, #586578);
    color: white;
}

.global-tile-content {
	padding-top: 20px;
}

.global-contact #global-form input:not(#submit), .global-contact #global-form textarea {
	width: 100%;
}

#global-form input[type="submit"] {
	margin-bottom: 50px;
}

.global-map {
	margin-bottom: 50px;
}

.global-contact select {
	float: right;
    width: 100%;
    clear: both;
    margin-bottom: 20px;
    background: #F0F0F0;
    border: solid 1px #B3B3B3;
    border-radius: 0px;
    padding: 10px;
}

.global-tiles .grey-button {
	min-width: 155px;
}


/* QUBE GLOBAL RESPONSIVE */
@media(max-width: 1000px) {
	.global-tiles {
		display: inline-block;
	}
	
	.global-tile-col {
		width: 100%;
		margin-right: 0px;
		margin-bottom: 30px;
	}
	
	.global-tile-container img {
		height: 100%;
	}
}

/*====================================================
===================================== RESPONSIFICATION
====================================================*/

/* @1500px */

@media(max-width: 1500px) {
	/* Width Responsive */
	.page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-divisional .site-main, .page-template-containers .site-main, .page-template-global .site-main {
		width: 84%;
		margin: auto;
	}

	.contact-form-container input:not(#submit), .contact-form-container textarea {
		width: 84%;
	}

	/* General */
	.page-title h1 {
		font-size: 28px;
	}

	.site-main p, .site-main li {
		font-size: 15px;
	}

	.site-header {
		height: 100px;
	}

	.main-logo a img {
		max-width: 130px;
	}

	.mainpage-banner {
		height: 450px;
	}

	h2, h3 {
		font-size: 18px;
	}
	
	/* NAVIGATION */
	.main-navigation a, #primary-menu .fa::before {
	    line-height: 100px;
	}
	
	.main-navigation li {
	    height: 100px;
	}
	
	.login-button a, .login-button .fa::before, .login-dropdown a {
	    line-height: inherit;
	}
	
	.login-dropdown li {
	    height: auto;
	}
	
	/* HOMEPAGE */
	.homepage-banner .banner-container img {
		height: 480px;
	}

	.homepage-banner .banner-overlay .banner-q {
		width: 120px;
		height: auto;
	}

	.banner-overlay {
		width: 36%;
		height: 38%;
	}

	.banner-overlay p {
		font-size: 14px;
	}

	/* About */
	.about-submenu .menu a {
		font-size: 18px;
	}

	/* Timeline */
	/*
	.timeline .container::after {
		top: 357px;
		right: -113px;
	}

	.timeline .container.right h2:after {
		left: -130px;
	}

	.timeline .right::after {
		left: -112px;
	}
	*/
	
	/* Investor */
	.investor-submenu .menu a, .investor-submenu .menu li {
    	height: 120px;
    }
	
	.year-select {
		padding-right: 10px;
		padding-left: 10px;
	}
}

/* @1200px */
@media(max-width: 1200px) {
	/* Width Responsive */
	.page-template-blank .site-main, .page-template-timeline .site-main, .page-template-investor .site-main, .page-template-career .site-main, .page-template-hse .site-main, .page-template-divisional .site-main, .page-template-working-at-qube .site-main, .page-template-sub-division .site-main, .page-template-jobadder .site-main, .single-employeecasestudy .site-main, .page-template-qube-care .site-main, .page-template-containers .site-main, .page-template-global .site-main {
		width: 100%;
		margin: auto;
		padding: 0px;
	}
	
	.page-template-about-sidebar .site-main, .page-template-about-board-sidebar .site-main, .page-template-asx-announcements .site-main, .page-template-reports-and-presentations .site-main, .page-template-about-sidebar-corporate-governance .site-main, .page-template-calendar .site-main, .page-template-media .site-main, .page-template-combined .site-main {
    	float: left;
    	width: 75%;
    	padding-left: 5%;
    	margin-top: 10px;
    }
    
    .about-submenu .menu, .media-submenu .menu, .investor-submenu .menu {
        padding-left: 0px;
        width: 25%;
    }
    
    .contact-form-container input:not(#submit), .contact-form-container textarea {
        width: 100%;
    }
	
	
	/* Top Menu */
	.menu-main-menu-container {
	    width: 82%;
	    right: 0%;
	}
	
	.main-navigation li {
	    margin-right: 25px;
	}
	
	.main-navigation a {
	    font-size: 14px;
	}
	
	.main-navigation .home-icon {
	    margin-right: 15px;
	}
	
	.login-button {
	    right: 90px;
	}
	
	.search-icon {
	    right: 30px;
	}
	
	/* Footer */
	.site-info {
	    width: 50%;
	}
	
	/* Banner */
    .mainpage-banner {
		height: 350px;
	}
	
	/* Homepage */
	.banner-overlay {
	    width: 48%;
	    height: 45%;
	    bottom: 20%;
	}
	
	.homepage-banner .banner-container img {
	    height: 400px;
	}
}

/* @1000px */
@media(max-width: 1000px) {
    /* Width Responsive */
    .page-template-about-sidebar .site-main, .page-template-about-board-sidebar .site-main, .page-template-asx-announcements .site-main, .page-template-reports-and-presentations .site-main, .page-template-about-sidebar-corporate-governance .site-main, .page-template-calendar .site-main, .page-template-media .site-main, .page-template-containers .site-main, .page-template-hse-new .site-main, .page-template-hse-sub .site-main  {
    	float: left;
    	width: 100%;
    	padding-left: 0%;
    	margin-top: 10px;
    }
    
    /* Hide Side Menus */
    .about-submenu .menu, .media-submenu .menu, .investor-submenu .menu {
        display: none;
    }
    
    /* Columns */
    .su-row .su-column.su-column-size-1-5 {
        width: 70%;
        display: block;
        margin-right: auto !important;
        margin-left: auto !important;
        margin-bottom: 20px;
        float: none !important;
    }
    
    .panel-container {
        height: auto;
    }
    
    .panel-container .panel-title {
        bottom: 7px;
    }
    
    /* Topbar */
    .site-header {
        height: 50px;
    }
    
    .main-navigation {
        width: 100%;
    }
    
    /* Menu */
    .menu-toggle {
        display: inline-block;
        width: auto;
        float: right;
        margin-right: 2%;
        margin-top: 1%;
        max-width: 30px;
        cursor: pointer;
	}
	
	.mobile-menu-container {
	    position: absolute;
        width: 100%;
        height: 90vh;
        background: white;
        top: 50px;
        z-index: -1;
        overflow-y: auto;
	}
	
	.mobile-menu-container .mobile-menu {
	   margin-top: 80px;
	}
	
	.mobile-menu-container .mobile-menu li {
        width: 80%;
        margin-left: 11%;
	    height: inherit;
        border-bottom: solid 1px #D1D1D1;
        padding-top: 10px;
        padding-bottom: 10px;
	}
	
	.mobile-menu-container .mobile-menu a {
	    color: black;
	    line-height: inherit;
	}
	
	/*-- Mobile Submenu --*/
	.mobile-menu-container .sub-menu li {
	    display: none;
	    margin-left: 5%;
	    border: none;
	    padding-top: 3px;
	    padding-bottom: 3px;
	}

    .mobile-menu-container .expand {
        float: right;
        height: 20px;
        width: 20px;
        cursor: pointer;
    }
    
    .mobile-menu-container ul .sub-menu {
    	box-shadow: none;
    	float: none;
    	position: static;
    	top: 0%;
    	left: 0em;
    	z-index: 9;
    }
        
    .search-icon.mobile-search-icon {
        display: block;
        right: 55px;
        top: 45%;
    }
	
	/*-- Display none on menu elements --*/
	.main-navigation .menu-main-menu-container, .main-navigation .login-button, .search-icon {
		display: none;
	}
	
	.main-navigation.toggled .mobile-menu {
	    display: block;
	}
	
	/*-- Display none on expand if no children --*/
	.mobile-menu-container .menu-item:not(.menu-item-has-children) .expand {
	    display: none;
	}
	
	/*-- Mobile Login --*/
	.login-mobile-button {
        width: 80%;
        margin-left: 11%;
        height: auto;
        border-bottom: solid 1px #D1D1D1;
        padding-top: 10px;
        padding-bottom: 10px;
        float: left;	    
	}
	
	.login-mobile-button p {
	    width: 80%;
        float: left;
        margin: 0px;
        font-family: "Sansa-Normal";
        font-size: 14px;
	}
	
	.login-mobile-button li {
	    display: none;
	    width: 80%;
	    height: inherit;
	    padding-top: 3px;
	    padding-bottom: 3px;
        margin-left: 5%;
	}
	
	.login-mobile-button .login-expand {
	    float: right;
        height: 20px;
        width: 20px;
        cursor: pointer;
	}
	
	.login-mobile-button a {
	    color: black;
	    line-height: inherit;
	}
    
    /* Side menus */
    .sidebar-toggle, .sidebar-close {
        cursor: pointer;
        z-index: 9999;
    }
    
    .sidebar-toggle {
        display: block;
        position: fixed;
        background: white;
        font-size: 20px;
        left: 0px;
        padding: 5px;
        top: 23%;
    }
    
    .sidebar-close {
        position: fixed;
        background: white;
        font-size: 20px;
        left: 225px;
        padding: 5px;
        top: 23%;        
    }
    
    .sidebar-menu .menu, .filters-mobile {
        position: fixed;
        background: white;
        top: 0px;
        left: 0px;
        margin-top: 0px;
        margin-left: 0px;
        height: 100vh;
        z-index: 9999;
        padding-top: 50px;
        width: 225px;
        padding-left: 0px;
    }
    
    .sidebar-menu .menu a {
        font-family: "Sansa-Normal";
        font-size: 14px;
        color: black;
        text-decoration: none;
    }
    
    .sidebar-menu .menu li {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 10px;
        border-bottom: solid 1px #D1D1D1;
    }
    
    /* Footer */
	.site-info {
	    width: 60%;
	}
    
    /* Banners */
    .mainpage-banner {
        height: 350px;
    }
    
    .mainpage-banner img {
        height: 100%;
        object-fit: cover;
    }
    
    /* Homepage */
    .banner-overlay {
        width: 67.5%;
        height: 45%;
		left: 16%;
		bottom: 20%;
    }
    
    .page-template-homepage .panel-container{
        height: 65vw;
    }
    
    .page-template-homepage .panel-container .panel-title {
        bottom: 0px;        
    }
    
    /* Corporate Governance */
    .page-template-about-sidebar-corporate-governance .ui-accordion .ui-accordion-content {
        padding-left: 0px;
        padding-right: 0px;
    }
    
    .page-template-about-sidebar-corporate-governance .ui-accordion .ui-accordion-header {
        font-size: 16px;
    }
    
    /* Investor */
    .investor-panels, .share-price-container, .shareholder-information-container {
        width: 100%;
    }
    
    /* Media, Announcements, Reports */
    .media-year-select {
        display: none;
    }
    
    /* Board and Leadership */
    .page-template-about-board-sidebar .mainpage-banner img {
        height: 155%;
    }
    
    .mobile-year-select {
        display: block;
    }
    
    /* Careeers */
    .case-study-panel {
        height: 50vw;
        width: 100%;
        margin-right: 0%;
        margin-bottom: 20px;
    }
    
    /* Employee Case Studies */
    .employee-case-study-left {
        width: 100%;
        float: none;
    }
    
    .employee-case-study-mobile-block {
        display: block;
        margin-top: 20px;
    }
    
    .employee-case-study-mobile-block .quote {
        text-align: center;
        width: 80%;
        margin: auto;
        display: block;
        font-family: "Sansa-Light";
        font-size: 20px;
        margin-top: 20px;
    }
    
    .employee-case-study-mobile-block img {
        width: 80%;
        margin: auto;
        display: block;
    }
    
    .employee-case-study-right {
        display: none;
    }
    
    /* Divisional Pages */
    .divisional-container img {
        width: 17vw;
        height: 17vw;
    }
    
    .divisional-container .divisional-content {
        width: 73%;
    }
    
    /* Maps */
    .map-filters {
        display: none;
    }
    
    .filters-mobile label {
        float: left;
        clear: both;
    }
}

/* @800px */
@media(max-width: 800px) {
    /* Columns */
    .su-row .su-column.su-column-size-1-5 {
        width: 90% !important;
    }
    
    .panel-container {
        height: auto;
    }
    
    /* Topbar */
    .main-logo a img {
        max-width: 90px;
    }
    
    /* Footer */
	.site-info {
	    width: 100%;
	    margin-left: 0px;
	}
	
	.footer-div {
	    width: 100%;
	    float: none;
	}
	
	.footer-div p {
	    border: none !important;
        margin-top: 10px;
	}
	
	.aat-disclosure {
	    float: none;
        width: 100%;
        text-align: center;
	}
    
    /* Banners */
    .mainpage-banner {
        height: 300px;
    }
    
    /* Homepage */
    .banner-overlay {
        width: 86%;
        height: 47%;
		left: 7%;
		bottom: 20%;
    }

    .page-template-homepage .panel-container {
        height: 80vw;
    }
    
    /* Corporate Governance */
    .page-template-about-sidebar-corporate-governance .ui-accordion .ui-accordion-header {
        font-size: 14px;
    }
    
    .page-template-about-sidebar-corporate-governance .accordion-row p {
        max-width: 80%;
    }
    
    /* Safety, Health, Environment */
    .hse-panels .panel-text-container img {
        width: 100%;
    }
    
    .hse-panels .panel-text-container .hse-textarea {
        margin-left: 0%;
        margin-top: 20px;
        width: 100%;
    }
	
	.qube-zero-harm {
		top: 20%;
	}
    
    /* Board and Leadership */
    .board-member-container {
        width: 100%;
		margin-bottom: 20px;
    }

	.board-container .board-row {
		margin-bottom: -7px;
	}
    
    .board-member-container .bw-photo {
        display: none !important;
    }
    
    .board-member-container .colour-photo {
        display: block !important;
    }
    
	.board-member-container .board-titles-container {
		padding-left: 0px;
	}

    .board-member-container .read-more {
        visibility: visible !important;
		margin-left: 0px;
    }
    
    .board-member-profile-container {
        width: 100%;
        border: none;
        background: #F9F9F9;
    }
    
    .board-member-profile-container .board-close {
        width: 50%;
        border: solid 1px #C7C7C7;
        color: gray;
        text-align: center;
        font-family: "Sansa-Normal";
        padding-top: 3px;
        padding-bottom: 3px;
        margin-left: 0px;
        margin-bottom: 10px;
        position: static;
    }
    
    /* Investor */
    .asx-logo, .asx-feed, .delay-notice {
        width: 100%;
    }
    
    .asx-logo {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .asx-logo img {
        float: none;
        margin: auto;
        display: block;
    }
    
    .delay-notice p {
        text-align: center;
    }
    
    /* Divisional Pages */
    .divisional-container img {
        width: 25vw;
        height: 25vw;
    }
    
    .divisional-container .divisional-content {
        width: 65%;
    }
    
    /* Breadcrumbs */
    .breadcrumbs a, .breadcrumbs .item-current span {
        font-size: 12px;
    }
}

/* @600px */
@media(max-width: 600px) {
    /* Banners */
    .mainpage-banner .page-title {
        min-width: 80%;
    }
    
    .mainpage-banner .page-title h1 {
        font-size: 24px;
    }
    
    /* Homepage */
    .homepage-banner .banner-overlay {
        padding: 15px;
    }
    
    .homepage-banner .banner-overlay .banner-q {
        width: 80px;
        margin-bottom: 100px;
        margin-left: 0px;
        margin-top: 0px;
    }
    
    .homepage-banner .banner-overlay p {
        margin-top: 0px;
    }
    
    /* Careers - Case Studies */
    .case-study-panel {
        height: 75vw;
        width: 100%;
        margin-right: 0%;
        margin-bottom: 20px;
    }
    
    /* Employee Case Studies */
    .employee-case-study-mobile-block .quote {
        width: 100%;
    }
    
    .employee-case-study-mobile-block img {
        width: 100%;
    }
    
    /* Investor */
    .shareholder-left, .shareholder-right {
        width: 100%;
        float: none;
    }
    
    /* Divisional Pages */
    .divisional-container img {
        width: 100vw;
        height: 50vw;
    }
    
    .divisional-container .divisional-content {
        width: 100%;
        margin-left: 0px;
        margin-top: 20px;
    }
    
    /* Contact Forms / Sub Forms */
    .media-contact.contact-form-container .media-enquiry-form, .campaignmonitor-form {
        min-width: 300px;
    }

	/* Qube Care */
	.page-title.qube-care-title {
		left: 1%;
		width: 98%;
	}
}


/* @400px */
@media(max-width: 400px) {
    /* Homepage */
    .homepage-banner .banner-overlay .banner-q {
        float: none;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 10px;
    }
    
    .homepage-banner .banner-overlay {
        height: auto;
        top: 115px;
    }
    
    /* Board and Leadership */
    .page-template-about-board-sidebar .mainpage-banner img {
        height: 145%;
    }
}

/*====================================================
===================================== CARE TESTS
====================================================*/

/*
* DEPRESSION TEST
*/

/* PROGRESS BAR */
#progressbar .ui-progressbar-value {
    background: #F5E814;
    border: none;
    margin: 0px;
}

.ui-progressbar-value {
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
}

/* QUESTIONS */
.questions-set, .test-header, .test-questions-container {
    display: none;
}

#question-set-1 {
    display: block;
}

.question {
	font-size: 20px;
}

#start-quiz {
	margin-top: 20px;
}

/* RESPONSES */
#depression-test-container {
    margin-top: 50px;
}

.test-header p {
    font-size: 20px;
    margin-bottom: 20px;
}

.despression-test-container .question {
    margin-top: 20px;
    margin-bottom: 20px;
}

.test-questions-container .responses, .test-questions-container .apnea-responses {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 0px;
}

.responses li, .apnea-responses li {
    cursor: pointer;
    float: left;
    margin-right: 3%;
    padding: 10px;
    background: #ddd;
    border-radius: 5px;
    list-style: none !important;
}

.responses li::before, .apnea-responses li::before {
    display: none !important;
}

.responses li:hover, .apnea-responses li:hover {
    background: #F5E814;
}

/* RESULTS */
.test-result{
    display: none;
    margin-top: 50px;
    background: #eee;
    padding: 20px;
}

#start-again {
    display: none;
    width: 110px;
    text-align: center;
    margin-top: 20px;
}

/* RESULTS BAR */
#results-bar-container {
    width: 80%;
    margin: auto;
    height: 100px;
    display: none;
    padding-top: 58px;
    position: relative;
}

#depression-results-container #results-bar {
    background-image: linear-gradient(to right, #FFFF66 0%, #FFA200 33%, #FF6600 65%, #C30D0D 100%);
}

#results-indicator {
    width: 50px;
    position: absolute;
    top: 20px;
    padding: 5px;
    border-radius: 4px;
    color: white;
    margin-top: -6px;
    text-align: center;
    transform: translateX(-50%);
}

#results-indicator::after {
    height: 0;
    width: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    position: absolute;
    bottom: -8px;
    border-radius: 4px;
    left: 50%;
    margin-left: -10px;
}

#depression-results-container {
    margin-top: 50px;
}

.normal-pseudo::after {
   border-top: 10px solid black;  
}

.mild-pseudo::after {
   border-top: 10px solid black;  
}

.moderate-pseudo::after {
   border-top: 10px solid black;  
}

.severe-pseudo::after {
   border-top: 10px solid black;  
}

.results-segment {
    width: 25%;
    float: left;
    text-align: center;
    padding-top: 8px;
}

.results-segment span::after {
    content: " ";
    width: 1px;
    height: 30px;
    background: black;
    position: absolute;
    top: 58px;
}

#normal-segment span::after {
    left: 25%;
}

#mild-segment span::after {
    left: 50%;
}

#moderate-segment span::after {
    left: 75%;
}

#severe-segment span::after {
    display: none;
}


/*
* BMI CALCULATOR
*/

/* MAIN */
#results-container, #bmi-calculator-page-container {
    width: 100%;
    margin: auto;
}

#bmi-calculator-page-container {
    padding: 20px;
    border: solid 1px gray;
    display: inline-block;
}

#gender-selection-container {
    width: 50%;
    margin: auto;
    text-align: center;
}

.bmi-selection-radio-container {
    display: inline-block;
    width: 100%;
}

.bmi-radio-container-option {
    width: 50%;
    float: left;
}

.bmi-radio-container-option input[type="radio"] {
    margin-left: 10px;
}

.bmi-selection-single-image {
    float: left;
    width: 50%;
}

.bmi-selection-single-image img{
    max-width: 80px;
}

#results-container {
    clear: both;
}

#bmi-calculator-results-container {
    margin-top: 50px;
}

.results-block {
    display: none;
    background: #eee;
    padding: 20px;
}

.results-block li {
    color: black;
}

.calculate-button {
    cursor: pointer;
    float: left;
    width: auto;
    margin-top: 20px;
}

.calculate-button p {
    text-align: center;
}

#height-and-weight-container {
    padding: 20px;
    background: rgba(0, 0, 0, 0.65);
}

.slider-container {
    clear: both;
    display: inline-block;
    width: 100%;
}

.slider-container .slider {
    float: left;
    width: 80%;
    margin-top: 20px;
}

.slider-container .slider-value-container {
    float: right;
    background: white;
    width: 100px;
}

.slider-value-container input[type="number"] {
    border: none;
    width: 50px;
    margin-left: 10px;
    color: black;
}

/* RANGE SLIDERS */
.ui-slider-range, .ui-slider-handle {
    background: #F5E814 !important;
}

.slider .ui-slider-handle {
    cursor: pointer;
}

/* RESULTS BAR */
#results-bar-container {
    width: 80%;
    margin: auto;
    height: 100px;
    display: none;
    padding-top: 30px;
    position: relative;
}

#results-bar {
    width: 100%;
    background-image: linear-gradient(to right, #3399ff 0%, #009933 33%, #ffd633 65%, #d81e05 100%);
    height: 15px;
    border-radius: 10px;
}

#results-indicator {
    width: 50px;
    position: absolute;
    top: -6px;
    padding: 5px;
    border-radius: 4px;
    color: white;
    margin-top: -6px;
    text-align: center;
    transform: translateX(-50%);
}

#results-indicator::after {
    height: 0;
    width: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    position: absolute;
    bottom: -8px;
    border-radius: 4px;
    left: 50%;
    margin-left: -10px;
}

.underweight-pseudo::after {
   border-top: 10px solid #3399ff;  
}

.healthy-pseudo::after {
   border-top: 10px solid #009933;  
}

.overweight-pseudo::after {
   border-top: 10px solid #f4c242;  
}

.obese-pseudo::after {
   border-top: 10px solid #d81e05;  
}

.results-segment {
    width: 25%;
    float: left;
    text-align: center;
    padding-top: 8px;
}

.results-segment span::after {
    content: " ";
    width: 1px;
    height: 30px;
    background: black;
    position: absolute;
    top: 30px;
}

#underweight-segment span::after {
    left: 25%;
}

#healthy-segment span::after {
    left: 50%;
}

#overweight-segment span::after {
    left: 75%;
}

#obese-segment span::after {
    display: none;
}

/* RESPONSIFICATION */
@media (max-width: 767px) {
    .test-questions-container .question {
        text-align: center;
    }
    
    .responses li {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    #results-bar-container {
        width: 100%;
    }
    
    .slider-container .slider-value-container {
        float: left;
        margin-top: 10px;
    }
    
    .slider-container .slider {
        width: 100%;
    }

}

@media (max-width: 600px) {
    #bmi-calculator-results-container .results-segment span {
        font-size: 10px;
    }
    
    #gender-selection-container {
        width: 90%;
    }
}

/*=====
= RESPONSIFICATION OF JQUERY CHANGED ELEMENTS
=====*/

@media(min-width: 1001px) {
    /* Sidebars */
    .sidebar-toggle, .sidebar-close, .sidebar-menu .menu {
        display: none !important;
    }
    
    .mobile-menu-container {
        display: none !important;
    }
}

/*====================================================
===================================== PAGEUP STYLING
====================================================*/

/* Search Container */
.careers-browse .jobadder-search-container {
    float: right;
    width: 30%;
}

.careers-browse .filter li:before{
    content: none;
}

.careers-browse .filter input {
    margin-top: 4px;
}

.careers-browse input {
    font-family: 'Helvetica-Roman';
}

.careers-browse #search-filters h3:after {
    content: "";
    border-bottom: solid 4px #F5E814;
    width: 60px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.careers-browse #search-keyword {
    max-width: 100%;
    width: 80%;
    min-width: 150px;
}

.careers-browse #search-filters h3 {
    position: relative;
    padding-bottom: 15px;
}

#PageUpPeopleLink {
    display: none;
}

/* Jobs listing */
.careers-browse #recent-jobs, .careers-browse #search-results {
    float: left;
    width: 65%;
}

#PageUpPeopleLink {
    clear: both;
}

.careers-browse p {
    font-family: 'Helvetica-Roman';
}

.careers-browse .job-listing-wrapper {
    font-family: 'Helvetica-Roman';
}

#jobs-form th {
    font-family: 'Sansa-Normal';
    text-align: left;
}

#campaignsDiv {
	display: none;
}

/* Job page */
.careers-browse #job {
    width: 65%;
    float: left;
}

#job-content #social-media {
    display: none;
}

body #job-content div {
    font-family: 'Helvetica-Roman';
    color: black;
}

#jobs-form #job-content .button {
    border: solid 1px #99A3A4;
    background: linear-gradient(white, #E5E8E8);
    display: inline-block;
    padding: 7px 0px 7px 0px;
    font-size: 1em;
    line-height: inherit;
    box-shadow: none;
    font-weight: 400;
    padding: 10px 15px;
}

#jobs-form #job-content .button:hover {
    background: linear-gradient(#AAB2BF, #586578);
    color: white;
}

#jobs-form #job-content li {
    list-style-type: none !important;
}

/* Responsification for PageUp Template */
@media (max-width: 767px) {
    .careers-browse .jobadder-search-container, .careers-browse #recent-jobs, .careers-browse #search-results {
        float: none;
        width: 100%;
    }
}

/*====================================================
===================================== IE COMPATIBILITY
====================================================*/

@media all and (-ms-high-contrast: none), (-ms-high-contrast:active) {
    .banner-container img {
        height: 100%;
        max-height: 800px;
        overflow: hidden;
    }
    
    .slick-slide {
        overflow: hidden;
    }
}



/*====================================================
===================================== SEARCH EXCERPT
====================================================*/

.search-results-container .search-result i:first-child {
	display: none;
}

