/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
 COLOUR PALETTE
 The colour palette on this website consists of:
 $abn-dark-blue, $abn-yellow, $slate-black, $light-gray

 To keep the design clean & simple, avoid using more colours.
*********************/
/*********************
3ABN COLOURS
brandingguidelines.3abn.org
*********************/
/*********************
EXTRA COLOURS
*********************/
/*********************
GLOBAL MEASUREMENTS
*********************/
/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*********************
SIZE
*********************/
/*********************
FONTAWESOME CUSTOMIZATIONS
*********************/
.fa-default::before {
  color: #181818 !important;
}
.fa-default::before:hover, .fa-default::before:focus, .fa-default::before:active, .fa-default::before:active:hover {
  color: white !important;
}

.fa-primary::before {
  color: #008ecb !important;
}
.fa-primary::before:hover, .fa-primary::before:focus, .fa-primary::before:active, .fa-primary::before:active:hover {
  color: white !important;
}

.fa-success::before {
  color: #7ac046 !important;
}
.fa-success::before:hover, .fa-success::before:focus, .fa-success::before:active, .fa-success::before:active:hover {
  color: white !important;
}

.fa-info::before {
  color: #00b7f1 !important;
}
.fa-info::before:hover, .fa-info::before:focus, .fa-info::before:active, .fa-info::before:active:hover {
  color: white !important;
}

.fa-warning::before {
  color: #e97d2c !important;
}
.fa-warning::before:hover, .fa-warning::before:focus, .fa-warning::before:active, .fa-warning::before:active:hover {
  color: white !important;
}

.fa-danger::before {
  color: #ff0019 !important;
}
.fa-danger::before:hover, .fa-danger::before:focus, .fa-danger::before:active, .fa-danger::before:active:hover {
  color: white !important;
}

/*********************
WORDBREAKS (DISABLED)
*********************/
/*
no need for word breaks: http://blog.fontdeck.com/post/9037028497/hyphens
*/
p {
  -ms-word-wrap: initial;
  word-break: initial;
  word-wrap: initial;
  -webkit-hyphens: initial;
  -moz-hyphens: initial;
  hyphens: initial;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
input {
  max-width: 400px;
}

.padding-top {
  padding-top: 2.1428571429em;
}

.padding-bottom {
  padding-bottom: 2.1428571429em;
}

.large-padding-top {
  padding-top: 3.5em;
}

.large-padding-bottom {
  padding-bottom: 3.5em;
}

.home .content-wrapper {
  top: 0;
}

.offset-anchor {
  position: relative;
  top: -70px;
  display: block;
}

.form-control {
  font-size: 14px;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.content-wrapper {
  top: 70px;
  /* Push content & footer underneath the banner */
  position: absolute;
  width: 100%;
}

.home .content-wrapper {
  top: 0;
}

/*********************
FRONT PAGE STYLES
*********************/
#experience-bar {
  padding-left: 19%;
  padding-right: 19%;
  /*background-color: $abn-yellow;

  .experience-bar-icons {
  	padding-top: 14px;
  	height: $experience-bar-height;
  	img {
  		height: 2em;
  		width: auto;
  	}
  }

  .experience-bar-links {
  	font-size: 1.5em;
  	font-weight: 300;			// light
  	line-height: 1.2em;
  	margin-left: 0;
  }*/
}

h5.news-title {
  font-size: 1.1428571429em;
}

/*.hidden-mobile-text {
	//display: none;
}

#experience-bar-text a {
	color: $slate-black;

	&:hover, &:active {
		color: $black;
	}
}*/
/*********************
NEWS ARTICLE STYLES
*********************/
.footcrumbs {
  font-size: 10px;
  margin: 0;
}

.category-selector-box h6.footcrumbs {
  margin: 0;
}

/*********************
HEADER STYLES
*********************/
.header {
  position: fixed;
}

#super-nav-items, #search-mobile {
  font-size: 1.2857142857em;
}

#search-mobile {
  float: right;
  margin-right: 0;
}
#search-mobile #search-form-mobile {
  padding-right: 0;
}
#search-mobile #search-form-mobile #super-nav-search-mobile {
  font-size: 14px;
}

/*********************
NAVIGATION STYLES
*********************/
.column-1 {
  margin-left: 0em;
}

.column-2 {
  margin-left: 12em;
}

.column-3 {
  margin-left: 24em;
}

.column-4 {
  margin-left: 36em;
}

.column-5 {
  margin-left: 48em;
}

.column-6 {
  margin-left: 60em;
}

li {
  line-height: 1.2em;
}

.reset-1 {
  margin-top: -2em;
}

.reset-2 {
  margin-top: -4.5em;
}

.reset-3 {
  /* use to reset max columns within a group */
  margin-top: -6em;
}

.reset-4 {
  margin-top: -7.5em;
}

.reset-5 {
  margin-top: -9em;
}

.nav-section {
  height: 220px;
  font-size: 1em;
  line-height: 1.5em;
  padding-top: 20px;
}

.sub-nav {
  margin-top: 0;
}

.menu-item {
  font-size: 1em;
  line-height: 2.5em;
  font-weight: 400;
}

.menu-item-has-children {
  height: 12.5em;
}

.sub-nav-header {
  line-height: 2em;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
}
.sub-nav-header a {
  pointer-events: none;
}

#tv-nav .sub-nav, #radio-nav .sub-nav, #resources-nav .sub-nav {
  padding-left: 0;
  overflow-y: hidden;
}

#super-nav ul li {
  float: left;
}
#super-nav ul li a {
  padding: 13px 0.75em;
}
#super-nav ul li a:hover, #super-nav ul li a.open {
  color: #008ecb;
}

.reset-sm {
  margin-top: -10em;
}

.animated-xs {
  display: inline;
  display: initial;
}

.animated {
  display: none;
}

#search-icon {
  height: 24px;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: 3px;
}
#search-icon:hover {
  cursor: pointer;
  color: #008ecb;
}

#search-desktop {
  padding: 13px 0.75em;
}

#search-mobile {
  margin-right: 15px;
}
#search-mobile #search-form-mobile #super-nav-search-mobile {
  width: 300px;
}

.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
.nav ul {
  margin-top: 0;
}
.nav li {
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
.nav li a {
  border-bottom: 0;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
.nav li a:hover {
  color: #008ecb;
}
.nav li ul.sub-menu,
.nav li ul.children {
  padding-left: 0;
  margin: 0;
  /* highlight sub-menu current page */
}
.nav li ul.sub-menu li,
.nav li ul.children li {
  /*
  if you need to go deeper, go nuts
  just remember deeper menus suck
  for usability. k, bai.
  */
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding: 0;
  border-right: 0;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
.nav li ul.sub-menu li ul,
.nav li ul.children li ul {
  top: 0;
  left: 100%;
}
.nav li ul.sub-menu li.col-sm-offset-6 a,
.nav li ul.children li.col-sm-offset-6 a {
  margin-left: 15px;
}
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}
/* end .nav */
/******************************************************************
TEMPLATE BUILDER STYLES
******************************************************************/
#custom-content-wrapper section:first-of-type .section-content {
  margin-top: 70px;
}
#custom-content-wrapper section:first-of-type .section-content .hero {
  margin-top: -70px;
}
.section .reveal {
  position: absolute;
  display: block;
  height: 100%;
  z-index: -3;
}
.section .reveal.top-right {
  right: 0;
  width: 200px;
}
.section .reveal.top-left {
  left: 0;
}
.section .spill {
  position: absolute;
  display: block;
  z-index: -3;
}
.section .spill img {
  max-width: 20em;
}
.section .spill.left-middle {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.section .spill.left-top {
  top: 3%;
  left: 3%;
}
.section .spill.left-top.no-margin {
  top: 0;
}
.section .spill.left-bottom {
  bottom: 3%;
  left: 3%;
}
.section .spill.left-bottom.no-margin {
  bottom: 0;
}
.section .spill.right-middle {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.section .spill.right-top {
  top: 3%;
  right: 3%;
}
.section .spill.right-top.no-margin {
  top: 0;
}
.section .spill.right-bottom {
  bottom: 3%;
  right: 3%;
}
.section .spill.right-bottom.no-margin {
  bottom: 0;
}

/******************************
HERO BANNER TEXT STYLES
*******************************/
.herocaption {
  width: 30%;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.2em;
  text-align: right;
  position: absolute;
  top: 68%;
  right: 6%;
  padding: 0;
  background-color: transparent;
}
.herocaption small {
  font-size: 70%;
}

.herocaption-light {
  color: whitesmoke;
  text-shadow: 1px 1px 3px #181818;
}
.herocaption-light small {
  color: whitesmoke;
  text-shadow: 1px 1px 3px #181818;
}

.herocaption-dark {
  color: #181818;
  text-shadow: 1px 1px 3px whitesmoke;
}
.herocaption-dark small {
  color: #181818;
  text-shadow: 1px 1px 3px whitesmoke;
}

/***********************
METASLIDER PLUGIN STYLES
************************/
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  padding-top: 2em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 2.2em;
}

.res-sidebar {
  margin-top: 3em;
}

.widgettitle {
  margin-bottom: 0.75em;
}

.widget {
  margin: 1.5em 0;
  font-size: 0.9em;
}
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/*********************
NEWS STYLES
*********************/
#news {
  position: relative;
}

#news-extra {
  position: absolute;
  right: 0;
  bottom: 0;
}

#news-extra-heading {
  min-height: 46px;
}

#content-padding {
  min-height: 61px;
  /* Height of text (46px) + 15px margin */
}

.article-meta {
  margin: 0;
  text-align: right;
}

.share {
  text-align: right;
  margin: 0;
}
.share img {
  margin-top: 5px;
}

.article-rule {
  margin-bottom: 20px;
}

/*********************
PROGRAM PAGE STYLES
*********************/
.catchup-text h3 {
  margin-top: -0.25em;
  max-width: 80%;
}

.catchup-thumbnail {
  padding-right: 6px;
}

.catchup-text {
  padding-left: 6px;
}

#program-labels-container {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  text-align: center;
  right: 20%;
}

#program-set-height {
  position: relative;
  text-align: initial;
  top: 0;
}

#program-shopping-description {
  height: 100%;
  position: absolute;
  right: 0;
}

#program-shopping-icon {
  top: 30px;
}

/*********************
404 STYLES
*********************/
.error {
  padding-top: 5em;
  padding-bottom: 2em;
  font-size: 1.5em;
}

/*********************
SEARCH STYLES
*********************/
#searchform #searchsubmit {
  width: auto;
}
#searchform #s {
  box-sizing: border-box;
  width: 400px;
}

/*********************
WOOCOMMERCE STYLES
*********************/
.term-gifts .res-sidebar, .term-gifts .widget_product_search {
  margin-top: 0;
}

#gifts-button-group {
  position: absolute;
  top: 66%;
  right: 0%;
  width: 18em;
}

.btn-gifts {
  margin-left: 0.5em;
}

/*********************
FOOTER STYLES
*********************/
#copyright-statement {
  text-align: right;
}

.footer-group {
  margin-top: 0;
  float: right;
}

.footer a {
  border: none;
  padding: 0;
}

/******************************************************************
Site Name: 3ABN Australia
Author: Brad Aitken & James Hope

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*********************
HEADER STYLES
*********************/
#header-logo {
  height: 40px;
}

#header-branding {
  padding: 15px;
}

#header-row {
  height: 70px;
}

#super-nav-items, #search-mobile {
  font-size: 1.2857142857em;
}

/*********************
FRONT PAGE STYLES
*********************/
#experience-bar {
  height: 90px;
  padding-left: 19%;
  padding-right: 19%;
  background-color: #fbd41d;
}
#experience-bar .experience-bar-icons {
  padding-top: 14px;
  height: 90px;
}
#experience-bar .experience-bar-icons img {
  height: 2em;
  width: auto;
}
#experience-bar .experience-bar-links {
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.2em;
  margin-left: 0;
}

/*********************
NAVIGATION STYLES
*********************/
.nav-section {
  position: relative;
  overflow-y: hidden;
}

.nav-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-repeat: no-repeat;
}

#tv-nav:before {
  background-image: url("../images/nav-background/tv.png");
}

#radio-nav:before {
  background-image: url("../images/nav-background/radio.png");
}

#resources-nav:before {
  background-image: url("../images/nav-background/bag.png");
}

#more-nav:before {
  background-image: url("../images/nav-background/3abn-logo.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #tv-nav:before {
    background-image: url("../images/nav-background/tv@2x.png");
    background-size: 410px;
  }

  #radio-nav:before {
    background-image: url("../images/nav-background/radio@2x.png");
    background-size: 410px;
  }

  #resources-nav:before {
    background-image: url("../images/nav-background/bag@2x.png");
    background-size: 410px;
  }

  #more-nav:before {
    background-image: url("../images/nav-background/3abn-logo@2x.png");
    background-size: 410px;
  }
}
#search-form {
  display: none;
  float: left;
  cursor: text;
  padding-right: 10px;
}
#search-form #super-nav-search {
  width: 200px;
  font-size: 0.8em;
  padding-left: 8px;
  height: 14px;
  -webkit-appearance: none;
}

#search-mobile {
  display: none;
}

#super-nav ul li a {
  padding: 23px 1em;
}

#search-desktop {
  padding: 20px 1em;
}
#search-desktop #search-icon {
  margin-top: 6px;
}

/*********************
NEWS STYLES
*********************/
#content-padding {
  min-height: 0px;
  /* Height of text (46px) + 15px margin */
}

#feature-article {
  margin-bottom: 0;
}

/******************************
HERO BANNER TEXT STYLES
*******************************/
.herocaption {
  font-size: 1.6em;
}

/*********************
WOOCOMMERCE STYLES
*********************/
#gifts-button-group {
  top: 73%;
  right: 6%;
  width: 20em;
}

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/

/*# sourceMappingURL=ie.css.map */
