/*!
 * fullPage 2.7.9
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 * Contribution by Jhony0311
 */
/* line 9, ../../bower_components/fullpage.js/jquery.fullPage.scss */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: transparent;
}

/* line 18, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}

/* line 28, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box;
}

/* line 34, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slide {
  float: left;
}

/* line 37, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block;
}

/* line 41, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}

/* line 49, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

/* line 54, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

/* line 60, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slidesContainer {
  float: left;
  position: relative;
}

/* line 64, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* line 81, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}
/* line 88, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}

/* line 94, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-scrollable {
  overflow: scroll;
}

/* line 97, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}

/* line 101, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
}
/* line 107, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slidesNav.bottom {
  bottom: 17px;
}
/* line 111, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slidesNav.top {
  top: 17px;
}

/* line 116, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
/* line 121, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}
/* line 128, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
/* line 137, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
/* line 143, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li:hover #fp-nav ul li a.active span, #fp-slidesNav ul li:hover #fp-nav ul li a.active span, #fp-nav ul li:hover
.fp-slidesNav ul li a.active span, #fp-slidesNav ul li:hover
.fp-slidesNav ul li a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
/* line 152, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
/* line 173, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}

/* line 183, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}
/* line 190, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav.right {
  right: 17px;
}
/* line 193, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav.left {
  left: 17px;
}
/* line 198, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}
/* line 212, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}
/* line 221, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav ul li:hover .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}
/* line 230, ../../bower_components/fullpage.js/jquery.fullPage.scss */
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}

/* line 237, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-slidesNav ul li {
  display: inline-block;
}

/* line 240, ../../bower_components/fullpage.js/jquery.fullPage.scss */
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}

/* line 7, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
html {
  font-family: "Roboto-Web", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 16, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
body {
  margin: 0;
}

/* line 24, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* line 43, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 55, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 63, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 72, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
a {
  background: transparent;
}

/* line 78, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 87, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 93, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 100, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 107, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
h1 {
  font-size: 2rem;
  margin: 0.67rem 0;
}

/* line 114, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 121, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
small {
  font-size: 80%;
}

/* line 127, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 135, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
sup {
  top: -0.5rem;
}

/* line 139, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
sub {
  bottom: -0.25rem;
}

/* line 147, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
img {
  border: 0;
}

/* line 153, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 161, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 167, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
hr {
  height: 0;
}

/* line 175, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
pre {
  overflow: auto;
}

/* line 181, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}

/* line 199, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 211, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
button {
  overflow: visible;
}

/* line 220, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 231, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 241, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 248, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 257, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
input {
  line-height: normal;
}

/* line 267, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 278, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 287, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
}

/* line 298, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 305, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35rem 0.625rem 0.75rem;
}

/* line 314, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 321, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 328, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 336, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 341, ../../bower_components/qfx-style-base/sass/var/_normalize.scss */
td,
th {
  padding: 0;
}

@font-face {
  font-family: "Roboto-Web";
  src: url('/fe/bluesky/fonts/roboto/roboto-light-webfont.eot');
  src: url('/fe/bluesky/fonts/roboto/roboto-light-webfont.eot?#iefix') format('embedded-opentype'), url('/fe/bluesky/fonts/roboto/roboto-light-webfont.woff') format('woff'), url('/fe/bluesky/fonts/roboto/roboto-light-webfont.ttf') format('truetype'), url('/fe/bluesky/fonts/roboto/roboto-light-webfont.svg#robotolight') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Web";
  src: url('/fe/bluesky/fonts/roboto/roboto-bold-webfont.eot');
  src: url('/fe/bluesky/fonts/roboto/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'), url('/fe/bluesky/fonts/roboto/roboto-bold-webfont.woff') format('woff'), url('/fe/bluesky/fonts/roboto/roboto-bold-webfont.ttf') format('truetype'), url('/fe/bluesky/fonts/roboto/roboto-bold-webfont.svg#robotolight') format('svg');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "qfx";
  src: url('/fe/bluesky/fonts/qfxico/fonts/qfx.eot');
  src: url('/fe/bluesky/fonts/qfxico/fonts/qfx.eot?#iefix') format('embedded-opentype'), url('/fe/bluesky/fonts/qfxico/fonts/qfx.woff') format('woff'), url('/fe/bluesky/fonts/qfxico/fonts/qfx.ttf') format('truetype'), url('/fe/bluesky/fonts/qfxico/fonts/qfx.svg#qfx') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Qfx-Obfuscated";
  src: url('/fe/bluesky/fonts/normal');
  src: url('/fe/bluesky/fonts/normal?#iefix') format('embedded-opentype'), url('/fe/bluesky/fonts/Qfx-Obfuscated/Qfx-Obfuscated.woff') format('woff'), url('/fe/bluesky/fonts/Qfx-Obfuscated/Qfx-Obfuscated.ttf') format('truetype'), url('/fe/bluesky/fonts/Qfx-Obfuscated/Qfx-Obfuscated.svg#Qfx-Obfuscated') format('svg');
  font-weight: normal;
}
/* line 16, ../../bower_components/qfx-style-base/sass/var/_fonts.scss */
[class^="icon-"]:before,
[class*=" icon-"]:before,
[class^="icon-"]:after,
[class*=" icon-"]:after {
  font-family: 'qfx';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  text-indent: 0;
  text-align: center;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 4, ../../bower_components/qfx-style-base/sass/components/_grid.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 10, ../../bower_components/qfx-style-base/sass/components/_grid.scss */
html {
  overflow-y: scroll;
}

/* line 14, ../../bower_components/qfx-style-base/sass/components/_grid.scss */
body {
  background-color: #f7f7f7;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

/* line 20, ../../bower_components/qfx-style-base/sass/components/_grid.scss */
html, body {
  height: 100%;
}

/********************************************/
/* line 108, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
.container {
  *zoom: 1;
  position: relative;
  margin: 0 auto;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.container:after {
  clear: both;
}

/* line 114, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
.page {
  position: relative;
  margin-bottom: 1rem;
  margin: 0 auto;
}

/* line 120, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body {
  padding-top: 3rem;
}
/* line 7, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .page,
body .container,
body .constraint {
  width: 92%;
  max-width: 73rem;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .page .page,
body .page .container,
body .page .constraint,
body .container .page,
body .container .container,
body .container .constraint,
body .constraint .page,
body .constraint .container,
body .constraint .constraint {
  width: 100%;
}
/* line 21, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .lead-section.slider .container {
  width: 100%;
  max-width: none;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .lead-section.slider .container .image-container {
  width: 92%;
  max-width: 73rem;
  margin-left: auto;
  margin-right: auto;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.collection .page {
  max-width: 129rem;
  /*
  .collection-container {
  	.container {
  		max-width: $page-width;
  	}
  }
  */
}
/* line 46, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.collection #filters-wrapper .filters {
  max-width: 73rem;
  width: 92%;
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.curation .page {
  width: 100%;
  max-width: none;
}
/* line 58, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.curation .page .sub-section {
  width: 92%;
  max-width: 129rem;
  margin-left: auto;
  margin-right: auto;
}
/* line 68, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.public-home .carousel {
  max-width: 73rem;
}
/* line 76, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .pad {
  padding-left: 2rem;
  padding-right: 2rem;
}
/* line 81, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .pad-all {
  padding: 1rem 2rem;
}
/* line 85, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .carousel {
  padding: 0 2rem;
}
/* line 87, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .carousel .control {
  width: 2rem;
}
/* line 95, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .feature-container .carousel .control.left {
  left: -2rem;
}
/* line 98, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body .feature-container .carousel .control.right {
  right: -2rem;
}
/* line 7, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960 .page,
body.force-960 .container,
body.force-960 .constraint {
  width: 92%;
  max-width: 960px;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960 .page .page,
body.force-960 .page .container,
body.force-960 .page .constraint,
body.force-960 .container .page,
body.force-960 .container .container,
body.force-960 .container .constraint,
body.force-960 .constraint .page,
body.force-960 .constraint .container,
body.force-960 .constraint .constraint {
  width: 100%;
}
/* line 21, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960 .lead-section.slider .container {
  width: 100%;
  max-width: none;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960 .lead-section.slider .container .image-container {
  width: 92%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960.collection .page {
  max-width: 960px;
  /*
  .collection-container {
  	.container {
  		max-width: $page-width;
  	}
  }
  */
}
/* line 46, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960.collection #filters-wrapper .filters {
  max-width: 960px;
  width: 92%;
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960.curation .page {
  width: 100%;
  max-width: none;
}
/* line 58, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960.curation .page .sub-section {
  width: 92%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
/* line 68, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-960.public-home .carousel {
  max-width: 960px;
}
/* line 7, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768 .page,
body.force-768 .container,
body.force-768 .constraint {
  width: 100%;
  max-width: 768px;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768 .page .page,
body.force-768 .page .container,
body.force-768 .page .constraint,
body.force-768 .container .page,
body.force-768 .container .container,
body.force-768 .container .constraint,
body.force-768 .constraint .page,
body.force-768 .constraint .container,
body.force-768 .constraint .constraint {
  width: 100%;
}
/* line 21, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768 .lead-section.slider .container {
  width: 100%;
  max-width: none;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768 .lead-section.slider .container .image-container {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768.collection .page {
  max-width: 768px;
  /*
  .collection-container {
  	.container {
  		max-width: $page-width;
  	}
  }
  */
}
/* line 46, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768.collection #filters-wrapper .filters {
  max-width: 768px;
  width: 100%;
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768.curation .page {
  width: 100%;
  max-width: none;
}
/* line 58, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768.curation .page .sub-section {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
/* line 68, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-768.public-home .carousel {
  max-width: 768px;
}
/* line 7, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640 .page,
body.force-640 .container,
body.force-640 .constraint {
  width: 100%;
  max-width: 640px;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640 .page .page,
body.force-640 .page .container,
body.force-640 .page .constraint,
body.force-640 .container .page,
body.force-640 .container .container,
body.force-640 .container .constraint,
body.force-640 .constraint .page,
body.force-640 .constraint .container,
body.force-640 .constraint .constraint {
  width: 100%;
}
/* line 21, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640 .lead-section.slider .container {
  width: 100%;
  max-width: none;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640 .lead-section.slider .container .image-container {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640.collection .page {
  max-width: 640px;
  /*
  .collection-container {
  	.container {
  		max-width: $page-width;
  	}
  }
  */
}
/* line 46, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640.collection #filters-wrapper .filters {
  max-width: 640px;
  width: 100%;
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640.curation .page {
  width: 100%;
  max-width: none;
}
/* line 58, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640.curation .page .sub-section {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* line 68, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-640.public-home .carousel {
  max-width: 640px;
}
/* line 7, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320 .page,
body.force-320 .container,
body.force-320 .constraint {
  width: 100%;
  max-width: 320px;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320 .page .page,
body.force-320 .page .container,
body.force-320 .page .constraint,
body.force-320 .container .page,
body.force-320 .container .container,
body.force-320 .container .constraint,
body.force-320 .constraint .page,
body.force-320 .constraint .container,
body.force-320 .constraint .constraint {
  width: 100%;
}
/* line 21, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320 .lead-section.slider .container {
  width: 100%;
  max-width: none;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320 .lead-section.slider .container .image-container {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320.collection .page {
  max-width: 320px;
  /*
  .collection-container {
  	.container {
  		max-width: $page-width;
  	}
  }
  */
}
/* line 46, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320.collection #filters-wrapper .filters {
  max-width: 320px;
  width: 100%;
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320.curation .page {
  width: 100%;
  max-width: none;
}
/* line 58, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320.curation .page .sub-section {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
/* line 68, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
body.force-320.public-home .carousel {
  max-width: 320px;
}

@media only screen and (max-width: 768px) {
  /* line 7, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .page,
  body .container,
  body .constraint {
    width: 100%;
    max-width: 73rem;
  }
  /* line 12, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .page .page,
  body .page .container,
  body .page .constraint,
  body .container .page,
  body .container .container,
  body .container .constraint,
  body .constraint .page,
  body .constraint .container,
  body .constraint .constraint {
    width: 100%;
  }
  /* line 21, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .lead-section.slider .container {
    width: 100%;
    max-width: none;
  }
  /* line 24, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .lead-section.slider .container .image-container {
    width: 100%;
    max-width: 73rem;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 34, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body.collection .page {
    max-width: 129rem;
    /*
    .collection-container {
    	.container {
    		max-width: $page-width;
    	}
    }
    */
  }
  /* line 46, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body.collection #filters-wrapper .filters {
    max-width: 73rem;
    width: 100%;
  }
  /* line 55, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body.curation .page {
    width: 100%;
    max-width: none;
  }
  /* line 58, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body.curation .page .sub-section {
    width: 100%;
    max-width: 129rem;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 68, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body.public-home .carousel {
    max-width: 73rem;
  }
}
@media only screen and (max-width: 540px) {
  /* line 76, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .pad {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* line 81, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .pad-all {
    padding: 0.5rem 1rem;
  }
  /* line 85, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .carousel {
    padding: 0 1rem;
  }
  /* line 87, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .carousel .control {
    width: 1rem;
  }
  /* line 95, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .feature-container .carousel .control.left {
    left: -1rem;
  }
  /* line 98, ../../bower_components/qfx-style-base/sass/components/_layouts.scss */
  body .feature-container .carousel .control.right {
    right: -1rem;
  }
}
/* line 17, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3rem;
  line-height: 3rem;
  background-color: #222326;
  border-bottom: solid 1px rgba(10, 10, 11, 0.8);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
}
/* line 40, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar a {
  text-decoration: none;
}
/* line 43, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar a:link, header qfx-menu-bar a:active, header qfx-menu-bar a:visited {
  color: #fff;
}
/* line 49, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar a:hover {
  color: #0275d0;
}
/* line 52, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar a.search-button {
  color: #222326;
}
/* line 54, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar a.search-button:hover {
  color: #4daffd;
}
/* line 60, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar [data-menu] {
  cursor: pointer;
}
/* line 65, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .container > a {
  float: left;
}
/* line 70, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .label {
  font-size: 100%;
  font-family: "Roboto-Web", sans-serif;
  font-weight: bold;
  padding-left: 0.5rem;
}
/* line 78, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .logo {
  display: inline-block;
  width: 6.5rem;
  height: 3rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
}
/* line 88, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav,
header qfx-menu-bar .tools {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 95, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li,
header qfx-menu-bar .tools li {
  position: relative;
  float: left;
  margin: 0 0.5rem;
  padding: 0;
  height: 3rem;
  border-bottom: solid 0px #2b7de1;
}
/* line 103, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li:first-of-type,
header qfx-menu-bar .tools li:first-of-type {
  margin-left: 0;
}
/* line 107, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li[data-selected], header qfx-menu-bar .main-nav li.active, header qfx-menu-bar .main-nav li:hover,
header qfx-menu-bar .tools li[data-selected],
header qfx-menu-bar .tools li.active,
header qfx-menu-bar .tools li:hover {
  border-bottom-width: 0.25rem;
}
/* line 113, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.no-indicator:hover,
header qfx-menu-bar .tools li.no-indicator:hover {
  border: none;
}
/* line 117, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li[data-selected],
header qfx-menu-bar .tools li[data-selected] {
  border-color: #41424d;
}
/* line 121, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.active,
header qfx-menu-bar .tools li.active {
  border-color: #2b7de1;
}
/* line 128, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li .icon:before,
header qfx-menu-bar .tools li .icon:before {
  text-align: center;
}
/* line 133, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.search,
header qfx-menu-bar .tools li.search {
  position: static;
}
/* line 138, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings,
header qfx-menu-bar .tools li.settings {
  margin: 0;
}
/* line 5, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings .icon,
header qfx-menu-bar .tools li.settings .icon {
  width: 2.5rem;
  display: block;
}
/* line 8, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings .icon:before,
header qfx-menu-bar .tools li.settings .icon:before {
  width: 100%;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings .label,
header qfx-menu-bar .tools li.settings .label {
  display: none;
}
/* line 140, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings.disabled,
header qfx-menu-bar .tools li.settings.disabled {
  pointer-events: none;
  opacity: 0.4;
}
/* line 146, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings a:hover .notification-icon,
header qfx-menu-bar .tools li.settings a:hover .notification-icon {
  color: #fff;
}
/* line 152, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings span.notification-icon,
header qfx-menu-bar .tools li.settings span.notification-icon {
  font-size: 70%;
  position: absolute;
  top: -0.8rem;
  right: -0.2rem;
  height: 1.1rem;
  width: 1.1rem;
  margin-top: 1rem;
  line-height: 1.1rem;
}
/* line 163, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.settings .icon:before,
header qfx-menu-bar .tools li.settings .icon:before {
  font-size: 2rem;
}
/* line 168, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .main-nav li.home,
header qfx-menu-bar .tools li.home {
  margin-left: 0;
}
/* line 174, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .tools {
  float: right;
}
/* line 177, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .tools .get-subscription {
  margin-left: 0.5rem;
}
/* line 181, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .tools .get-subscription,
header qfx-menu-bar .tools .signin {
  font-weight: bold;
}
/* line 184, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .tools .get-subscription a,
header qfx-menu-bar .tools .signin a {
  display: block;
}
/* line 189, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .tools .settings {
  float: left;
  text-align: center;
}
/* line 192, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar .tools .settings.signin {
  margin: 0 0.5rem;
}
/* line 200, ../../bower_components/qfx-style-base/sass/components/_header.scss */
header qfx-menu-bar qfx-wait-indicator {
  float: left;
  font-size: 50%;
  padding: 0.5rem 0.5rem 0;
  line-height: 0;
}

@media (min-width: 766px) {
  /* line 213, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search ul.tools li.other-site,
  header.showing-search ul.tools li.get-subscription {
    display: none;
  }
  /* line 217, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search ul.tools li.search {
    border-bottom-width: 0px;
  }
}
@media (min-width: 766px) and (max-width: 980px) {
  /* line 224, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search qfx-menu-bar .get-subscription {
    display: none;
  }
  /* line 227, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search qfx-menu-bar .main-nav li {
    padding-right: 0;
    margin: 0;
  }
  /* line 5, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search qfx-menu-bar .main-nav li .icon {
    width: 2.5rem;
    display: block;
  }
  /* line 8, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search qfx-menu-bar .main-nav li .icon:before {
    width: 100%;
  }
  /* line 12, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search qfx-menu-bar .main-nav li .label {
    display: none;
  }
}
@media (max-width: 765px) {
  /* line 234, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header.showing-search qfx-menu-bar {
    border-bottom: none;
  }
}

@media only screen and (max-width: 1110px) {
  /* line 244, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .tools .get-subscription.restart {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  /* line 256, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header .mega-menu .featured-item {
    display: none;
  }
  /* line 263, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header .mega-menu .featured-item {
    display: none;
  }

  /* line 274, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  body:not(.public) header qfx-menu-bar .tools .get-subscription {
    display: none;
  }
}
@media only screen and (max-width: 835px) {
  /* line 288, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  body:not(.public) header qfx-menu-bar li.other-site {
    margin: 0;
  }
  /* line 5, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  body:not(.public) header qfx-menu-bar li.other-site .icon {
    width: 2.5rem;
    display: block;
  }
  /* line 8, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  body:not(.public) header qfx-menu-bar li.other-site .icon:before {
    width: 100%;
  }
  /* line 12, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  body:not(.public) header qfx-menu-bar li.other-site .label {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  /* line 300, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .get-subscription {
    display: none;
  }
}
@media only screen and (max-width: 625px) {
  /* line 312, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .main-nav li {
    margin: 0;
  }
  /* line 5, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .main-nav li .icon {
    width: 2.5rem;
    display: block;
  }
  /* line 8, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .main-nav li .icon:before {
    width: 100%;
  }
  /* line 12, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .main-nav li .label {
    display: none;
  }
  /* line 316, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .main-nav li {
    padding-right: 0;
  }
}
@media only screen and (max-width: 540px) {
  /* line 326, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar {
    			/*
     			.get-subscription {
    				display: none;
    			}
    			*/
  }
  /* line 333, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar .logo {
    background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/header/logo-small-2x.png');
    width: 3rem;
  }
}
@media only screen and (max-width: 375px) {
  /* line 345, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar div.container, header .mega-menu.account div.container {
    padding: 0;
  }
  /* line 348, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar div.container .partner-logo, header .mega-menu.account div.container .partner-logo {
    margin-right: 0.5rem;
  }
  /* line 354, ../../bower_components/qfx-style-base/sass/components/_header.scss */
  header qfx-menu-bar div.container li.settings span.notification-icon, header .mega-menu.account div.container li.settings span.notification-icon {
    right: 0;
  }
}
/* line 3, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer {
  *zoom: 1;
  margin: 4rem auto 3rem;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
section.footer:before, section.footer:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
section.footer:after {
  clear: both;
}
/* line 7, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .highlight-text {
  background-color: #d0020e;
  font-size: 90%;
  padding: 0 0.25rem;
  color: #fff;
}
/* line 14, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .divider {
  *zoom: 1;
  position: relative;
  height: 1.5rem;
  margin-bottom: 1rem;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
section.footer .divider:before, section.footer .divider:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
section.footer .divider:after {
  clear: both;
}
/* line 20, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .divider:before {
  content: " ";
  display: block;
  position: absolute;
  overflow: hidden;
  top: calc(50% - 1px);
  left: 0;
  right: 0;
  background-color: #c8c8c8;
  height: 1px;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .divider.flourish:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/footer/footer-flourish.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
/* line 48, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .divider.flourish:hover:after {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/footer/footer-flourish-hover.png');
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .social-button {
  display: inline-block;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}
/* line 67, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .social-button.twitter {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/footer/twitter-icon.png');
}
/* line 69, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .social-button.twitter:hover {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/footer/twitter-icon-hover.png');
}
/* line 74, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .social-button.facebook {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/footer/facebook-icon.png');
}
/* line 76, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .social-button.facebook:hover {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/footer/facebook-icon-hover.png');
}
/* line 82, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .footer-section {
  max-width: 14rem;
  margin: 0 2rem 1rem 0;
  padding: 0;
  display: block;
  float: left;
  list-style: none;
}
/* line 90, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .footer-section:last-of-type {
  margin-right: 0;
}
/* line 94, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .footer-section.right {
  text-align: right;
  float: right;
  margin-left: 1rem;
  margin-right: 0;
}
/* line 101, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .footer-section li {
  display: block;
  font-size: 90%;
  padding-bottom: 0.5rem;
}
/* line 107, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .footer-section .section-header {
  font-weight: bold;
  font-size: 100%;
}
/* line 111, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .footer-section .section-sub-header {
  font-size: 65%;
}
/* line 116, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .debug-info {
  *zoom: 1;
  clear: both;
  margin-top: 3rem;
  opacity: 0;
  font-size: 90%;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
section.footer .debug-info:before, section.footer .debug-info:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
section.footer .debug-info:after {
  clear: both;
}
/* line 123, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer .debug-info:hover {
  opacity: 1;
}
/* line 128, ../../bower_components/qfx-style-base/sass/components/_footer.scss */
section.footer #loadingImage {
  display: none;
}

/* line 3, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
body {
  font-family: "Roboto-Web", sans-serif;
  color: #6d6d6d;
  font-size: 16px;
}

/* line 9, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto-Web", sans-serif;
  margin: 0 0 0.5rem 0;
}

/* line 14, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
h1 {
  font-size: 200%;
}

/* line 18, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
h2 {
  font-size: 150%;
  line-height: 110%;
}

/* line 23, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
h3 {
  font-size: 120%;
}

/* line 27, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
h4 {
  font-size: 110%;
}

/* line 31, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
h5 {
  font-size: 100%;
}

/* line 35, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
p {
  margin: 0 0 0.5rem 0;
}

/* line 39, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.fine-print {
  font-size: 90%;
  color: #868686;
  margin-top: 1rem;
}
/* line 44, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.fine-print h2 {
  font-size: 90%;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
/* line 50, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.fine-print p {
  text-align: justify;
}
/* line 54, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.fine-print a {
  color: #868686;
  text-decoration: underline;
  font-weight: bold;
}
/* line 58, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.fine-print a:hover, .fine-print a:active {
  color: #b9b9b9;
}

/* line 65, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.loud-text {
  font-size: 105%;
  color: #363636;
  margin: 1rem 0;
}
/* line 69, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.loud-text a {
  font-weight: bold;
}

/* line 75, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.money {
  text-align: right !important;
}

/* line 81, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.content main p {
  line-height: 165%;
}
/* line 85, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.content main li {
  line-height: 165%;
}

/* line 91, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
a {
  text-decoration: none;
  color: #0275d0;
}
/* line 94, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
a:link, a:visited {
  color: #0275d0;
}
/* line 99, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
a:hover, a:active {
  color: #4daffd;
  cursor: pointer;
  cursor: hand;
}
/* line 107, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
a.alt:link, a.alt:visited {
  color: #f49001;
}
/* line 112, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
a.alt:hover, a.alt:active {
  color: #febd61;
  cursor: pointer;
  cursor: hand;
}

/* line 123, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines {
  margin: 1.5rem 0;
  overflow: hidden;
  text-align: center;
}
/* line 127, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines.medium {
  font-size: 95%;
}
/* line 130, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines.small {
  font-size: 90%;
}
/* line 134, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines span {
  position: relative;
  display: inline-block;
  line-height: normal;
  font-weight: bold;
}
/* line 140, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines span:before, .side-lines span:after {
  top: 50%;
  width: 600px;
  content: "";
  position: absolute;
  border-bottom: 1px solid #C7C7C7;
}
/* line 148, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines span:before {
  right: 100%;
  margin-right: 15px;
}
/* line 153, ../../bower_components/qfx-style-base/sass/components/_typography.scss */
.side-lines span:after {
  left: 100%;
  margin-left: 15px;
}

/* line 3, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.logo {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/header/logo.png');
}

/* line 9, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon:before {
  float: left;
  font-family: "qfx";
  display: inline-block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
/* line 18, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.icon-right:before {
  float: right;
  margin-right: 0;
  margin-left: 0.5rem;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.tv:before {
  content: "\e603";
  font-size: 1.4rem;
}
/* line 29, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.movies:before {
  content: "\e627";
  font-size: 1.7rem;
}
/* line 34, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.mylibrary:before {
  content: "\e62a";
  font-size: 2.4rem;
  width: 2.1rem;
}
/* line 40, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.myqueue:before {
  content: "\e61d";
  font-size: 2rem;
}
/* line 44, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.dvd:before {
  content: "\e61e";
  font-size: 1.4rem;
}
/* line 48, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.streaming:before {
  content: "\e609";
  font-size: 1.4rem;
}
/* line 52, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.premium:before {
  content: "\e610";
  font-size: 1.4rem;
}
/* line 56, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.search:before {
  content: "\e604";
  font-size: 1.4rem;
}
/* line 61, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.more-options:before {
  content: "\e628";
  font-size: 1.5rem;
}
/* line 66, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.remove:before {
  content: "\f05c";
  font-size: 1.4rem;
}
/* line 70, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.delete:before {
  content: "\e62b";
  font-size: 1.4rem;
}
/* line 74, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.up:before {
  content: "\e621";
  font-size: 1.4rem;
}
/* line 78, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.down:before {
  content: "\e620";
  font-size: 1.4rem;
}
/* line 82, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.down-alt:before {
  content: "\e612";
  font-size: 1.4rem;
}
/* line 86, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.manage:before {
  content: "\e61f";
  font-size: 1.4rem;
}
/* line 90, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.cross:before {
  content: '\e60c';
}
/* line 93, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.swap:before {
  content: '\e626';
}
/* line 96, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.refresh:before {
  content: '\f087';
}
/* line 99, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.warning:before {
  content: '\e906';
}
/* line 115, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.cast {
  background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/header/icon-cast.png');
}
/* line 118, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.account:before {
  content: "\e60a";
  font-size: 1.5rem;
}
/* line 122, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.login:before {
  content: "\e614";
  font-size: 1.5rem;
}
/* line 126, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.loading:before {
  content: "\e97c";
  /*@include animation(spin, 1s, infinite, linear)*/
}
/* line 132, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.menu:before {
  content: "\e623";
  font-size: 2rem;
}
/* line 137, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.close:before {
  content: "\e60c";
  font-size: 2rem;
}
/* line 142, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.asterisk:before {
  content: "\e633";
  font-size: 0.8rem;
}
/* line 146, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.link:before {
  content: "\e800";
  font-size: 1.25rem;
}
/* line 150, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.email:before {
  content: "\e801";
  font-size: 1rem;
}
/* line 154, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.triangle-up:before {
  content: "\e900";
  font-size: 1rem;
}
/* line 158, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.triangle-down:before {
  content: "\e901";
  font-size: 1rem;
}
/* line 163, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon.quickpick:before {
  content: "\e904";
  font-size: 1.3rem;
}

@media (-webkit-min-device-pixel-ratio: 1.25) {
  /* line 170, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
  .logo {
    background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/header/logo-2x.png');
  }

  /* line 176, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
  .icon.cast {
    background-image: url('//images.quickflix.com.au/site/bluesky/img/streaming/header/icon-cast-2x.png');
  }
}
/* line 183, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-dvd:after {
  content: "\e61e";
}

/* line 189, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-play:after {
  content: "\e609";
}

/*
a.icon-play,
a.icon-dvd {
	&:after {
		padding-top:0.75*$base-unit;
	}
}
*/
/* line 205, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-playlist:after,
.icon-queue:after {
  content: "\e60e";
}

/* line 212, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-playlist.in-playlist:after,
.icon-queue.in-queue:after {
  content: "\e60d";
}

/* line 218, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-down-arrow:after {
  content: "\e612";
}

/* line 223, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-up-arrow:after {
  content: "\e613";
}

/* line 229, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-tick:after {
  content: "\e615";
}

/* line 235, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-edit:after {
  content: "\e616";
}

/* line 241, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-print:after {
  content: "\e617";
}

/* line 247, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.icon-cog:after {
  content: "\e605";
}

/* line 252, ../../bower_components/qfx-style-base/sass/components/_iconography.scss */
.hide-text {
  min-width: 0;
  min-width: 0;
  width: 2.75rem;
  text-indent: -13000px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

/* line 4, ../../bower_components/qfx-style-base/sass/components/_input.scss */
form {
  margin: 0;
  padding: 0;
}
/* line 8, ../../bower_components/qfx-style-base/sass/components/_input.scss */
form .help-text {
  font-size: 80%;
  color: #a0a0a0;
  margin: 0;
  clear: both;
}

/* line 19, ../../bower_components/qfx-style-base/sass/components/_input.scss */
fieldset {
  *zoom: 1;
  margin: 0 0 0.5rem 0;
  padding: 0;
  border: none;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
fieldset:before, fieldset:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
fieldset:after {
  clear: both;
}

/* line 26, ../../bower_components/qfx-style-base/sass/components/_input.scss */
fieldset + fieldset {
  margin-top: 0.5rem;
}

/* line 30, ../../bower_components/qfx-style-base/sass/components/_input.scss */
label {
  display: block;
  font-size: 85%;
  line-height: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
/* line 38, ../../bower_components/qfx-style-base/sass/components/_input.scss */
label.required:after {
  content: '*';
  color: #d0020e;
  margin-left: 0.25rem;
}

/* line 45, ../../bower_components/qfx-style-base/sass/components/_input.scss */
textarea {
  border: solid 1px #d7d7d7;
  font-family: sans-serif;
  background-color: #fff;
  color: #868686;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 53, ../../bower_components/qfx-style-base/sass/components/_input.scss */
textarea:focus {
  outline: none;
}

/* line 58, ../../bower_components/qfx-style-base/sass/components/_input.scss */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
select {
  border: solid 1px #dedede;
  margin: 0.25rem 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
}

/* line 71, ../../bower_components/qfx-style-base/sass/components/_input.scss */
select:disabled,
input:disabled {
  background-color: #ebebe4;
  cursor: default;
}

/* line 77, ../../bower_components/qfx-style-base/sass/components/_input.scss */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
}

/* line 83, ../../bower_components/qfx-style-base/sass/components/_input.scss */
input,
select {
  max-width: 22rem;
  width: 100%;
  padding: 0.5rem 0.5rem;
  color: #868686;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 97, ../../bower_components/qfx-style-base/sass/components/_input.scss */
input:focus,
select:focus {
  outline: none;
}
/* line 101, ../../bower_components/qfx-style-base/sass/components/_input.scss */
input.small,
select.small {
  font-size: 100%;
  width: 7rem;
}

/* line 111, ../../bower_components/qfx-style-base/sass/components/_input.scss */
select {
  padding-right: 0;
  border: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}
/* line 121, ../../bower_components/qfx-style-base/sass/components/_input.scss */
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #868686;
}
/* line 126, ../../bower_components/qfx-style-base/sass/components/_input.scss */
select::-ms-expand {
  display: none;
}
/* line 130, ../../bower_components/qfx-style-base/sass/components/_input.scss */
select option {
  padding: 0 0.5rem;
}

/* line 137, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.select-wrapper {
  *zoom: 1;
  display: block;
  overflow: hidden;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.select-wrapper:before, .select-wrapper:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.select-wrapper:after {
  clear: both;
}
/* line 145, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.select-wrapper select {
  -webkit-appearance: none;
  cursor: pointer;
  background: #fff url('//images.quickflix.com.au/site/bluesky/img/streaming/dropdown-1x.png') no-repeat right;
  border: solid 1px #dedede;
}
/* line 152, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.select-wrapper select:disabled {
  background-color: #ebebe4;
  cursor: default;
}
/* line 158, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.select-wrapper.small {
  width: 7rem;
}
/* line 162, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.select-wrapper.normal {
  width: 15rem;
}

/* line 170, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.field-validation-error,
.validation-summary-errors {
  color: #ED1D24;
}

/* line 184, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.invalid input[type=text].field-validation-error, .invalid input[type=text].input-validation-error, .invalid input[type=email].field-validation-error, .invalid input[type=email].input-validation-error, .invalid input[type=tel].field-validation-error, .invalid input[type=tel].input-validation-error, .invalid input[type=password].field-validation-error, .invalid input[type=password].input-validation-error {
  border: 1px solid #ED1D24;
}

/* line 192, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.validation-summary-errors {
  height: auto;
}

/* line 198, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-autocomplete,
.address-dropdown {
  margin: -0.25rem 0 0 0;
  padding: 0;
  z-index: 50;
  max-width: 26rem;
  background-color: #fff;
}
/* line 206, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-autocomplete:before,
.address-dropdown:before {
  display: block;
  content: "Suggestions...";
  font-size: 80%;
  color: #a0a0a0;
  padding: 0.25rem 0.5rem;
}
/* line 214, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-autocomplete li,
.address-dropdown li {
  list-style-type: none;
  cursor: pointer;
  min-height: 2.5rem;
  padding: 0.5rem 0.5rem;
  border-bottom: dotted 1px #c6c6c6;
}
/* line 221, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-autocomplete li:hover, .ui-autocomplete li:active, .ui-autocomplete li:focus,
.address-dropdown li:hover,
.address-dropdown li:active,
.address-dropdown li:focus {
  text-decoration: underline;
  background-color: #c6c6c6;
}
/* line 228, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-autocomplete li.manualSelectLink,
.address-dropdown li.manualSelectLink {
  font-weight: bold;
  background-color: #ffe4b4;
}
/* line 235, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-autocomplete li.selected,
.address-dropdown li.selected {
  background-color: #c6c6c6;
}

/* line 241, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.ui-helper-hidden-accessible {
  display: none;
}

/* line 247, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.login input[type='checkbox'] {
  float: left;
  margin-right: 0.5rem;
}
/* line 252, ../../bower_components/qfx-style-base/sass/components/_input.scss */
.login input[type='submit'] {
  margin-top: 1rem;
}

/* line 263, ../../bower_components/qfx-style-base/sass/components/_input.scss */
form.show-validation.ng-dirty input.ng-dirty.ng-invalid, form.show-validation.ng-dirty select.ng-dirty.ng-invalid {
  border-color: #ED1D24;
}
/* line 266, ../../bower_components/qfx-style-base/sass/components/_input.scss */
form.show-validation.ng-dirty input.ng-dirty.ng-valid, form.show-validation.ng-dirty select.ng-dirty.ng-valid {
  border-color: #00BA00;
}

@media only screen and (max-width: 540px) {
  /* line 275, ../../bower_components/qfx-style-base/sass/components/_input.scss */
  input {
    width: 100%;
  }
}
/* line 3, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'],
button,
.button {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  height: 3rem;
  line-height: 100%;
  -webkit-appearance: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: box-shadow 100ms ease-in-out, opacity 150ms ease-in-out;
  -o-transition: box-shadow 100ms ease-in-out, opacity 150ms ease-in-out;
  -webkit-transition: box-shadow 100ms ease-in-out, opacity 150ms ease-in-out;
  transition: box-shadow 100ms ease-in-out, opacity 150ms ease-in-out;
  -moz-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.35);
  -webkit-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.35);
  box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.35);
  border: 1px solid rgba(50, 50, 50, 0.2);
  font-weight: bold;
  text-align: left;
  color: #6d6d6d;
  background-color: transparent;
  cursor: pointer;
}
/* line 18, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].disable-animation, input[type='submit'].ng-animate,
button.disable-animation,
button.ng-animate,
.button.disable-animation,
.button.ng-animate {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}
/* line 31, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].pill,
button.pill,
.button.pill {
  background: #2b7de1;
  color: white;
  font-size: 80%;
  border-radius: 2rem;
  /* line-height: 10%; */
  height: 1.8rem;
}
/* line 39, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].pill:after,
button.pill:after,
.button.pill:after {
  font-family: "qfx";
  font-size: 80%;
  margin-left: 0.5rem;
}
/* line 46, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].hidden,
button.hidden,
.button.hidden {
  display: none;
}
/* line 50, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'] + button, input[type='submit'] + .button,
button + button,
button + .button,
.button + button,
.button + .button {
  margin-left: 0.5rem;
}
/* line 55, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].icon-play, input[type='submit'].icon-playlist, input[type='submit'].icon-queue, input[type='submit'].icon-dvd,
button.icon-play,
button.icon-playlist,
button.icon-queue,
button.icon-dvd,
.button.icon-play,
.button.icon-playlist,
.button.icon-queue,
.button.icon-dvd {
  padding-right: 3.25rem;
}
/* line 61, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].icon-play.hide-text, input[type='submit'].icon-playlist.hide-text, input[type='submit'].icon-queue.hide-text, input[type='submit'].icon-dvd.hide-text,
button.icon-play.hide-text,
button.icon-playlist.hide-text,
button.icon-queue.hide-text,
button.icon-dvd.hide-text,
.button.icon-play.hide-text,
.button.icon-playlist.hide-text,
.button.icon-queue.hide-text,
.button.icon-dvd.hide-text {
  padding: 0;
}
/* line 65, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].icon-play:after, input[type='submit'].icon-playlist:after, input[type='submit'].icon-queue:after, input[type='submit'].icon-dvd:after,
button.icon-play:after,
button.icon-playlist:after,
button.icon-queue:after,
button.icon-dvd:after,
.button.icon-play:after,
.button.icon-playlist:after,
.button.icon-queue:after,
.button.icon-dvd:after {
  width: 2.75rem;
  position: absolute;
  font-size: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
}
/* line 75, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit']:focus,
button:focus,
.button:focus {
  outline: 0 !important;
}
/* line 80, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit']:not(.disabled):not([disabled]):hover, input[type='submit']:not(.disabled):not([disabled]):active,
button:not(.disabled):not([disabled]):hover,
button:not(.disabled):not([disabled]):active,
.button:not(.disabled):not([disabled]):hover,
.button:not(.disabled):not([disabled]):active {
  -moz-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.65);
  -webkit-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.65);
  box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.65);
  background-color: rgba(0, 0, 0, 0.035);
}
/* line 86, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit']:not(.disabled):not([disabled]):focus,
button:not(.disabled):not([disabled]):focus,
.button:not(.disabled):not([disabled]):focus {
  border-color: rgba(0, 0, 0, 0.8);
}
/* line 90, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].disabled, input[type='submit'][disabled],
button.disabled,
button[disabled],
.button.disabled,
.button[disabled] {
  cursor: default;
  opacity: 0.4;
}
/* line 96, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].short,
button.short,
.button.short {
  height: 2.5rem;
  min-width: 0;
}
/* line 100, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].featured,
button.featured,
.button.featured {
  background-color: #ff9d28;
}
/* line 103, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].featured:not(.disabled):not([disabled]):hover, input[type='submit'].featured:not(.disabled):not([disabled]):active,
button.featured:not(.disabled):not([disabled]):hover,
button.featured:not(.disabled):not([disabled]):active,
.button.featured:not(.disabled):not([disabled]):hover,
.button.featured:not(.disabled):not([disabled]):active {
  background-color: #ffa73e;
}
/* line 108, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].featured:not(.disabled):not([disabled]):focus,
button.featured:not(.disabled):not([disabled]):focus,
.button.featured:not(.disabled):not([disabled]):focus {
  background-color: #ffb153;
}
/* line 113, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].stream,
button.stream,
.button.stream {
  background-color: #2B7DE1;
  color: #fff;
  text-shadow: rgba(8, 30, 56, 0.9) 0 1px 0;
}
/* line 119, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].stream:not(.disabled):not([disabled]):hover, input[type='submit'].stream:not(.disabled):not([disabled]):active,
button.stream:not(.disabled):not([disabled]):hover,
button.stream:not(.disabled):not([disabled]):active,
.button.stream:not(.disabled):not([disabled]):hover,
.button.stream:not(.disabled):not([disabled]):active {
  background-color: #408ae4;
}
/* line 124, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].stream:not(.disabled):not([disabled]):focus,
button.stream:not(.disabled):not([disabled]):focus,
.button.stream:not(.disabled):not([disabled]):focus {
  background-color: #5597e7;
}
/* line 130, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].dvd,
button.dvd,
.button.dvd {
  background-color: #BA1414;
  color: #fff;
  text-shadow: rgba(2, 0, 0, 0.9) 0 1px 0;
}
/* line 136, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].dvd:not(.disabled):not([disabled]):hover, input[type='submit'].dvd:not(.disabled):not([disabled]):active,
button.dvd:not(.disabled):not([disabled]):hover,
button.dvd:not(.disabled):not([disabled]):active,
.button.dvd:not(.disabled):not([disabled]):hover,
.button.dvd:not(.disabled):not([disabled]):active {
  background-color: #d51717;
}
/* line 141, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].dvd:not(.disabled):not([disabled]):focus,
button.dvd:not(.disabled):not([disabled]):focus,
.button.dvd:not(.disabled):not([disabled]):focus {
  background-color: #e72323;
}
/* line 146, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].dvd .icon.dvd,
button.dvd .icon.dvd,
.button.dvd .icon.dvd {
  float: right;
}
/* line 151, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].alt,
button.alt,
.button.alt {
  background-color: #F0F0F0;
  text-shadow: rgba(255, 255, 255, 0.9) 0 1px 0;
}
/* line 157, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].alt:not(.disabled):not([disabled]):hover, input[type='submit'].alt:not(.disabled):not([disabled]):active,
button.alt:not(.disabled):not([disabled]):hover,
button.alt:not(.disabled):not([disabled]):active,
.button.alt:not(.disabled):not([disabled]):hover,
.button.alt:not(.disabled):not([disabled]):active {
  background-color: #d7d7d7;
}
/* line 162, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].alt:not(.disabled):not([disabled]):focus,
button.alt:not(.disabled):not([disabled]):focus,
.button.alt:not(.disabled):not([disabled]):focus {
  background-color: #f3f3f3;
}
/* line 167, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].light,
button.light,
.button.light {
  background-color: rgba(166, 166, 166, 0.3);
  text-shadow: rgba(89, 89, 89, 0.9) 0 1px 0;
  -moz-box-shadow: 0px 2px 3px 0px rgba(128, 128, 128, 0.35);
  -webkit-box-shadow: 0px 2px 3px 0px rgba(128, 128, 128, 0.35);
  box-shadow: 0px 2px 3px 0px rgba(128, 128, 128, 0.35);
  border-color: rgba(140, 140, 140, 0.1);
}
/* line 173, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].light:link, input[type='submit'].light:active, input[type='submit'].light:visited, input[type='submit'].light:hover,
button.light:link,
button.light:active,
button.light:visited,
button.light:hover,
.button.light:link,
.button.light:active,
.button.light:visited,
.button.light:hover {
  color: #fff;
}
/* line 181, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].light:not(.disabled):not([disabled]):hover, input[type='submit'].light:not(.disabled):not([disabled]):active,
button.light:not(.disabled):not([disabled]):hover,
button.light:not(.disabled):not([disabled]):active,
.button.light:not(.disabled):not([disabled]):hover,
.button.light:not(.disabled):not([disabled]):active {
  background-color: rgba(166, 166, 166, 0.3);
  -moz-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.65);
  -webkit-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.65);
  box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.65);
}
/* line 187, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'].light:not(.disabled):not([disabled]):focus,
button.light:not(.disabled):not([disabled]):focus,
.button.light:not(.disabled):not([disabled]):focus {
  background-color: rgba(166, 166, 166, 0.35);
  border-color: rgba(140, 140, 140, 0.1);
}
/* line 194, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'] .subtext,
button .subtext,
.button .subtext {
  font-size: 65%;
  text-transform: uppercase;
  line-height: 100%;
  display: block;
}

/* line 202, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit'],
.cta {
  background-color: #2b7de1;
  color: #fff;
  border-color: rgba(50, 50, 50, 0.3);
  font-weight: bold;
  text-shadow: rgba(8, 30, 56, 0.9) 0 1px 0;
}
/* line 210, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit']:link,
.cta:link {
  color: #fff;
  text-decoration: none;
}
/* line 216, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit']:not(.disabled):not([disabled]):hover, input[type='submit']:not(.disabled):not([disabled]):active,
.cta:not(.disabled):not([disabled]):hover,
.cta:not(.disabled):not([disabled]):active {
  background-color: #408ae4;
}
/* line 221, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
input[type='submit']:not(.disabled):not([disabled]):focus,
.cta:not(.disabled):not([disabled]):focus {
  background-color: #5597e7;
}

/* line 227, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
a.button {
  display: inline-block;
  line-height: 3rem;
}
/* line 231, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
a.button:link, a.button:active, a.button:visited, a.button:hover {
  color: #6d6d6d;
  text-decoration: none;
}

/* line 241, ../../bower_components/qfx-style-base/sass/components/_buttons.scss */
a.button.cta:link, a.button.cta:active, a.button.cta:visited, a.button.cta:hover {
  color: #fff;
}

/*
	<div class="price-wrapper">
		<div class="from">From</div>
		<div class="currency">$</div>
		<div class="dollar">12</div>
		<div class="wrap">
			<div class="cents">.99</div>
			<div class="unit">/month</div>
		</div>
	</div>
*/
/* line 14, ../../bower_components/qfx-style-base/sass/components/_prices.scss */
.price-wrapper {
  *zoom: 1;
  display: inline-block;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.price-wrapper:before, .price-wrapper:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.price-wrapper:after {
  clear: both;
}
/* line 20, ../../bower_components/qfx-style-base/sass/components/_prices.scss */
.price-wrapper .currency, .price-wrapper .dollar, .price-wrapper .cents, .price-wrapper .wrap {
  float: left;
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/_prices.scss */
.price-wrapper .currency, .price-wrapper .cents {
  font-size: 55%;
  line-height: 1em;
}
/* line 28, ../../bower_components/qfx-style-base/sass/components/_prices.scss */
.price-wrapper .from {
  font-size: 25%;
  line-height: 1em;
  text-align: left;
}
/* line 33, ../../bower_components/qfx-style-base/sass/components/_prices.scss */
.price-wrapper .dollar {
  font-size: 100%;
  line-height: 0.75em;
}
/* line 37, ../../bower_components/qfx-style-base/sass/components/_prices.scss */
.price-wrapper .unit {
  clear: both;
  font-size: 24%;
}

/* line 3, ../../bower_components/qfx-style-base/sass/components/_validation.scss */
.error-message {
  color: #d0020e;
  display: hidden;
  font-size: 0.8rem;
}

/* line 10, ../../bower_components/qfx-style-base/sass/components/_validation.scss */
.feedback {
  color: #0275d0;
  font-size: 0.8rem;
}

/* line 19, ../../bower_components/qfx-style-base/sass/components/_validation.scss */
.validation-summary-errors ul {
  list-style: none;
  padding: 0;
}

/* line 25, ../../bower_components/qfx-style-base/sass/components/_validation.scss */
.validation-errors {
  padding: 0.5rem 1rem;
}
/* line 27, ../../bower_components/qfx-style-base/sass/components/_validation.scss */
.validation-errors li {
  list-style-type: none;
  color: #d0020e;
}

/* line 3, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator {
  display: block;
  opacity: 0;
  text-align: center;
  -webkit-animation: spFadeIn 1000ms 1 cubic-bezier(0.93, 0.02, 0.52, 0.99);
  -moz-animation: spFadeIn 1000ms 1 cubic-bezier(0.93, 0.02, 0.52, 0.99);
  -o-animation: spFadeIn 1000ms 1 cubic-bezier(0.93, 0.02, 0.52, 0.99);
  animation: spFadeIn 1000ms 1 cubic-bezier(0.93, 0.02, 0.52, 0.99);
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  animation-delay: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /* Spinner Circle Rotation */
  /* Spinner 3Balls Scale */
  /* Animation for 3Balls */
  /*OLD, REPLACE WITH NEW SPINNER AND REMOVE THESE STYLES*/
}
/* line 13, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator > div {
  display: inline-block;
}
@-webkit-keyframes spFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes spFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes spFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 28, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-circle {
  border: 0.25em rgba(109, 109, 109, 0.25) solid;
  border-top: 0.25em #6d6d6d solid;
  border-radius: 50%;
  width: 4em;
  height: 4em;
  -webkit-animation: spCircRot 800ms infinite linear;
  -moz-animation: spCircRot 800ms infinite linear;
  -o-animation: spCircRot 800ms infinite linear;
  animation: spCircRot 800ms infinite linear;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  animation-delay: .5s;
}
/* line 36, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-circle.ng-leave {
  display: none;
}
@-webkit-keyframes spCircRot {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spCircRot {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spCircRot {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spCircRot {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* line 51, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-3balls, qfx-wait-indicator .sp-3balls:before, qfx-wait-indicator .sp-3balls:after {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  transform-origin: center center;
  display: inline-block;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: spLinear 1.5s infinite ease-in-out;
  -moz-animation: spLinear 1.5s infinite ease-in-out;
  -o-animation: spLinear 1.5s infinite ease-in-out;
  animation: spLinear 1.5s infinite ease-in-out;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
/* line 60, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-3balls {
  position: relative;
  font-size: 150%;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* line 65, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-3balls.ng-leave {
  display: none;
}
/* line 68, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-3balls:before, qfx-wait-indicator .sp-3balls:after {
  content: '';
  position: absolute;
  font-size: 100%;
}
/* line 74, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-3balls:before {
  -moz-animation-delay: -0.25s;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
  left: -1.25em;
  top: 0;
}
/* line 79, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .sp-3balls:after {
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
  left: 1.25em;
  top: 0;
}
@-webkit-keyframes spLinear {
  0%,
        80%,
        100% {
    background-color: rgba(0, 0, 0, 0.25);
  }
  40% {
    background-color: black;
  }
}
@-moz-keyframes spLinear {
  0%,
        80%,
        100% {
    background-color: rgba(0, 0, 0, 0.25);
  }
  40% {
    background-color: black;
  }
}
@-o-keyframes spLinear {
  0%,
        80%,
        100% {
    background-color: rgba(0, 0, 0, 0.25);
  }
  40% {
    background-color: black;
  }
}
@keyframes spLinear {
  0%,
        80%,
        100% {
    background-color: rgba(0, 0, 0, 0.25);
  }
  40% {
    background-color: black;
  }
}
/* line 99, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .pulsing-balls:before,
qfx-wait-indicator .pulsing-balls:after,
qfx-wait-indicator .pulsing-balls {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -moz-animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: pulse-ball 1.5s infinite ease-in-out;
  -moz-animation: pulse-ball 1.5s infinite ease-in-out;
  -o-animation: pulse-ball 1.5s infinite ease-in-out;
  animation: pulse-ball 1.5s infinite ease-in-out;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
/* line 108, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .pulsing-balls {
  font-size: 12px;
  position: relative;
  -moz-transform: translateY(-2.5em) translateZ(0);
  -ms-transform: translateY(-2.5em) translateZ(0);
  -webkit-transform: translateY(-2.5em) translateZ(0);
  transform: translateY(-2.5em) translateZ(0);
  -moz-animation-delay: -0.25s;
  -webkit-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
/* line 113, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .pulsing-balls:before, qfx-wait-indicator .pulsing-balls:after {
  content: '';
  position: absolute;
  top: 0;
}
/* line 118, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .pulsing-balls:before {
  left: -3.5em;
  -moz-animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
/* line 122, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .pulsing-balls:after {
  left: 3.5em;
}
@-webkit-keyframes pulse-ball {
  0%,
        80%,
        100% {
    box-shadow: 0 2.5em 0 -0.5em;
  }
  40% {
    box-shadow: 0 2.5em 0 0em;
  }
}
@-moz-keyframes pulse-ball {
  0%,
        80%,
        100% {
    box-shadow: 0 2.5em 0 -0.5em;
  }
  40% {
    box-shadow: 0 2.5em 0 0em;
  }
}
@-o-keyframes pulse-ball {
  0%,
        80%,
        100% {
    box-shadow: 0 2.5em 0 -0.5em;
  }
  40% {
    box-shadow: 0 2.5em 0 0em;
  }
}
@keyframes pulse-ball {
  0%,
        80%,
        100% {
    box-shadow: 0 2.5em 0 -0.5em;
  }
  40% {
    box-shadow: 0 2.5em 0 0em;
  }
}
/* line 140, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator jqfx-spinner {
  display: block;
}
/* line 141, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator jqfx-spinner.contained {
  position: relative;
  min-height: 100px;
  z-index: 97;
}
/* line 153, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .contact-preferences jqfx-spinner#loading {
  height: 250px;
}
/* line 156, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .contact-preferences jqfx-spinner#saving.contained {
  height: 51px;
  min-height: 51px;
  position: absolute;
  top: 8rem;
  left: 50%;
}
/* line 167, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .parental-control jqfx-spinner {
  height: 250px;
}
/* line 173, ../../bower_components/qfx-style-base/sass/components/directives/_spinner.scss */
qfx-wait-indicator .search-page jqfx-spinner {
  height: 500px;
}

/* line 2, ../../bower_components/qfx-style-base/sass/components/directives/_ng-messages.scss */
ng-messages {
  display: block;
  color: red;
  font-size: 0.85rem;
  line-height: 1rem;
  position: relative;
  overflow: hidden;
  clear: both;
}
/* line 12, ../../bower_components/qfx-style-base/sass/components/directives/_ng-messages.scss */
ng-messages.message-animate ng-message {
  display: block;
  opacity: 1;
  margin-top: 0px;
}
/* line 17, ../../bower_components/qfx-style-base/sass/components/directives/_ng-messages.scss */
ng-messages.message-animate ng-message:not(.ng-animate) {
  -moz-transition: all 0.2s cubic-bezier(0.1, 0.87, 0.23, 0.96);
  -o-transition: all 0.2s cubic-bezier(0.1, 0.87, 0.23, 0.96);
  -webkit-transition: all 0.2s cubic-bezier(0.1, 0.87, 0.23, 0.96);
  transition: all 0.2s cubic-bezier(0.1, 0.87, 0.23, 0.96);
}
/* line 24, ../../bower_components/qfx-style-base/sass/components/directives/_ng-messages.scss */
ng-messages.message-animate.ng-hide ng-message, ng-messages.message-animate.ng-inactive ng-message {
  -moz-transition: all 0.2s cubic-bezier(0.76, 0.06, 0.89, 0.18);
  -o-transition: all 0.2s cubic-bezier(0.76, 0.06, 0.89, 0.18);
  -webkit-transition: all 0.2s cubic-bezier(0.76, 0.06, 0.89, 0.18);
  transition: all 0.2s cubic-bezier(0.76, 0.06, 0.89, 0.18);
  opacity: 0;
  margin-top: -100px;
}

/* line 5, ../../app/styles/_home.scss */
body {
  background-color: #000;
  /************ TRANSITIONS / FADING ************/
  /************************/
  /*********** WIDESCREEN ***********/
  /**********************/
  /*********** NORMAL SCROLL MODE ***********/
  /**********************/
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 25, ../../app/styles/_home.scss */
body:not(.ready) qfx-header header qfx-menu-bar {
  opacity: 0;
}
/* line 29, ../../app/styles/_home.scss */
body:not(.ready) #pageMenu {
  opacity: 0;
}
/* line 34, ../../app/styles/_home.scss */
body:not(.ready) #pages .section .page-wrapper {
  opacity: 0;
}
/* line 37, ../../app/styles/_home.scss */
body:not(.ready) #pages .section .next-indicator {
  opacity: 0;
}
/* line 48, ../../app/styles/_home.scss */
body.ready qfx-header header qfx-menu-bar {
  animation: fadeIn 500ms;
  transition: background-color 500ms linear, border-color 500ms linear;
}
/* line 51, ../../app/styles/_home.scss */
body.ready qfx-header header qfx-menu-bar .main-nav, body.ready qfx-header header qfx-menu-bar .search {
  transition: opacity 500ms linear;
}
/* line 57, ../../app/styles/_home.scss */
body.ready #pageMenu {
  animation: fadeIn 500ms;
}
/* line 63, ../../app/styles/_home.scss */
body.ready #pages .section .page-wrapper {
  animation: fadeIn 500ms;
}
/* line 66, ../../app/styles/_home.scss */
body.ready #pages .section .next-indicator {
  animation: fadeIn 500ms;
}
/* line 78, ../../app/styles/_home.scss */
body.ready qfx-header header .home {
  display: block;
  transition: all 400ms ease-in-out, transform 200ms ease-out;
  max-width: 150px;
}
/* line 92, ../../app/styles/_home.scss */
body.ready.fp-viewing-welcome header .home {
  max-width: 0px;
  margin: 0;
  opacity: 0;
}
/* line 102, ../../app/styles/_home.scss */
body #pageMenu {
  display: none;
  position: fixed;
  top: 3rem;
  right: 3.5em;
  margin: 5em 0 0;
  z-index: 98;
  list-style-type: none;
  padding: 0;
  color: #FFFFFF;
  font-weight: bold;
  text-align: right;
  text-shadow: 0px 0px 10px #000;
}
/* line 119, ../../app/styles/_home.scss */
body #pages {
  color: #FFFFFF;
  /******Welcome page******/
  /*********************/
  /***Streaming/Premium/DVD pages***/
  /*********************/
  /****** Premium page ******/
  /*********************/
  /****** About page ******/
  /*********************/
}
/* line 122, ../../app/styles/_home.scss */
body #pages .section {
  display: table;
  width: 100%;
  position: relative;
}
/* line 127, ../../app/styles/_home.scss */
body #pages .section .page-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 0.5em 2em;
}
/* line 134, ../../app/styles/_home.scss */
body #pages .section .content {
  display: block;
  width: 100%;
  margin-top: 0em;
}
/* line 140, ../../app/styles/_home.scss */
body #pages .section .next-indicator {
  display: none;
  cursor: pointer;
  height: 3em;
  width: 8em;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* line 151, ../../app/styles/_home.scss */
body #pages .section .next-indicator:after {
  font-family: qfx;
  content: '\e612';
  font-size: 300%;
  display: block;
  width: 100%;
  text-align: center;
}
/* line 163, ../../app/styles/_home.scss */
body #pages .welcome-logo-h1 {
  display: block;
  margin: 0 auto 1.6em;
  max-width: 40em;
  width: 100%;
  font-size: 100%;
}
/* line 170, ../../app/styles/_home.scss */
body #pages .welcome-logo-link {
  display: block;
  max-width: 100%;
  height: auto;
}
/* line 175, ../../app/styles/_home.scss */
body #pages .welcome-logo {
  display: block;
  max-width: 100%;
  height: auto;
}
/* line 182, ../../app/styles/_home.scss */
body #pages .redeem {
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  margin: 2rem 0;
}
/* line 190, ../../app/styles/_home.scss */
body #pages .plans-summary-table {
  display: table;
  text-align: center;
  border-spacing: 2em 0.5em;
  table-layout: fixed;
  width: 100%;
}
/* line 196, ../../app/styles/_home.scss */
body #pages .plans-summary-table .headings, body #pages .plans-summary-table .sub-headings, body #pages .plans-summary-table .icons, body #pages .plans-summary-table .description, body #pages .plans-summary-table .links {
  display: table-row;
}
/* line 199, ../../app/styles/_home.scss */
body #pages .plans-summary-table .headings > *, body #pages .plans-summary-table .sub-headings > *, body #pages .plans-summary-table .icons > *, body #pages .plans-summary-table .description > *, body #pages .plans-summary-table .links > * {
  display: table-cell;
}
/* line 204, ../../app/styles/_home.scss */
body #pages .plans-summary-table .headings > * {
  vertical-align: bottom;
}
/* line 209, ../../app/styles/_home.scss */
body #pages .plans-summary-table .description > * {
  padding: 1em 0;
}
/* line 216, ../../app/styles/_home.scss */
body #pages .plans-overview {
  display: none;
}
/* line 218, ../../app/styles/_home.scss */
body #pages .plans-overview .plan-summary {
  cursor: pointer;
  text-align: center;
  font-size: 125%;
  max-width: 24em;
  padding: 0;
  margin-bottom: 1.75em;
  padding: 1em;
  margin: 0 auto 1.75em;
}
/* line 233, ../../app/styles/_home.scss */
body #pages .headings {
  font-size: 210%;
  font-weight: bold;
  line-height: 100%;
}
/* line 238, ../../app/styles/_home.scss */
body #pages .sub-headings {
  font-size: 130%;
  line-height: 100%;
}
/* line 241, ../../app/styles/_home.scss */
body #pages .sub-headings > * {
  padding: 1em 0;
}
/* line 246, ../../app/styles/_home.scss */
body #pages .plan-icon {
  cursor: pointer;
  width: 9.25em;
  height: 9.25em;
}
/* line 252, ../../app/styles/_home.scss */
body #pages .description {
  font-size: 120%;
  color: #cccccc;
}
/* line 256, ../../app/styles/_home.scss */
body #pages .page-link {
  font-size: 130%;
  border: 1px solid #fff;
  border-radius: 0.75em;
  padding: 0.5em;
  cursor: pointer;
  margin: 0 auto;
  max-width: 10em;
}
/* line 268, ../../app/styles/_home.scss */
body #pages .title {
  font-size: 630%;
  line-height: 100%;
  font-weight: bold;
  margin: 0 0 0.25em 0;
}
/* line 274, ../../app/styles/_home.scss */
body #pages .lead-text {
  font-size: 200%;
  margin: 0 0 0.5em 0;
}
/* line 279, ../../app/styles/_home.scss */
body #pages .details {
  display: inline-block;
}
/* line 284, ../../app/styles/_home.scss */
body #pages .plan {
  display: flex;
  align-items: center;
}
/* line 287, ../../app/styles/_home.scss */
body #pages .plan .price-wrapper {
  flex: 0 0 auto;
}
/* line 292, ../../app/styles/_home.scss */
body #pages .price-wrapper {
  font-size: 1200%;
  margin: 0.1em 0.2em 0.1em 0;
  font-weight: bold;
}
/* line 296, ../../app/styles/_home.scss */
body #pages .price-wrapper .unit {
  font-weight: normal;
}
/* line 302, ../../app/styles/_home.scss */
body #pages .details .description {
  font-size: 175%;
  margin-top: 0;
  margin-bottom: 0.50em;
  line-height: 115%;
}
/* line 308, ../../app/styles/_home.scss */
body #pages .details .bonus {
  margin: 0;
  font-size: 140%;
}
/* line 311, ../../app/styles/_home.scss */
body #pages .details .bonus:before {
  content: 'BONUS ';
  font-weight: bold;
}
/* line 319, ../../app/styles/_home.scss */
body #pages .sign-up {
  background-color: #E48600;
  text-decoration: none;
  color: #ffffff;
  padding: 0.4em;
  width: 100%;
  max-width: 15em;
  font-size: 225%;
  font-weight: bold;
  display: block;
  text-align: center;
  border-radius: 10px;
  margin-top: 0.5em;
}
/* line 338, ../../app/styles/_home.scss */
body #pages #premium-page .title {
  margin-bottom: 0.1em;
}
/* line 343, ../../app/styles/_home.scss */
body #pages .side-lines {
  font-size: 200%;
  margin: 0.5em 0;
}
/* line 348, ../../app/styles/_home.scss */
body #pages .icon-tick {
  display: inline-block;
  margin-right: 0.25em;
  font-size: 75%;
}
/* line 354, ../../app/styles/_home.scss */
body #pages #premium-types {
  display: flex;
  flex-direction: row;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
/* line 359, ../../app/styles/_home.scss */
body #pages #premium-types .type {
  display: flex;
  flex-direction: row;
  flex: 1 1 50%;
}
/* line 363, ../../app/styles/_home.scss */
body #pages #premium-types .type:first-of-type {
  padding-right: 1em;
  border-right: 1px solid #FFFFFF;
}
/* line 367, ../../app/styles/_home.scss */
body #pages #premium-types .type:last-of-type {
  padding-left: 1em;
}
/* line 371, ../../app/styles/_home.scss */
body #pages #premium-types .type .details {
  flex: 1 1 auto;
  margin: 0;
  padding-right: 0.5em;
}
/* line 375, ../../app/styles/_home.scss */
body #pages #premium-types .type .details h2 {
  font-size: 200%;
}
/* line 378, ../../app/styles/_home.scss */
body #pages #premium-types .type .details p {
  font-size: 145%;
}
/* line 382, ../../app/styles/_home.scss */
body #pages #premium-types .type .price-wrapper {
  font-size: 500%;
  flex: 0 0 auto;
  margin: 0;
}
/* line 390, ../../app/styles/_home.scss */
body #pages #set-up-purchase {
  display: inline-block;
}
/* line 396, ../../app/styles/_home.scss */
body #about-page {
  background-color: #F7F7F7;
  color: #535353;
}
/* line 400, ../../app/styles/_home.scss */
body #about-page .title {
  font-size: 450%;
  margin-bottom: 0.75em;
  float: left;
}
/* line 406, ../../app/styles/_home.scss */
body #about-page .supporting-image {
  display: block;
  float: right;
  max-width: 48em;
  width: 50%;
  margin: 1em auto;
}
/* line 414, ../../app/styles/_home.scss */
body #about-page p {
  font-size: 160%;
  clear: left;
}
/* line 420, ../../app/styles/_home.scss */
body #about-page section.footer {
  clear: both;
  padding: 0 1em;
  margin: 4em auto 3em;
}
/* line 424, ../../app/styles/_home.scss */
body #about-page section.footer .footer-section {
  max-width: 30em;
  margin: 0 2em 1em 0;
}
/* line 427, ../../app/styles/_home.scss */
body #about-page section.footer .footer-section.right {
  margin-left: 1em;
  margin-right: 0;
}
/* line 431, ../../app/styles/_home.scss */
body #about-page section.footer .footer-section li {
  font-size: 160%;
  padding-bottom: 0.3em;
}
/* line 438, ../../app/styles/_home.scss */
body #about-page section.footer .divider.flourish:before {
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 0.2em !important;
}
/* line 443, ../../app/styles/_home.scss */
body #about-page section.footer .divider.flourish:after {
  top: 50% !important;
  left: 50% !important;
  width: 2em;
  height: 2em;
  transform: translate(-50%, -50%) !important;
}
/* line 463, ../../app/styles/_home.scss */
body.widescreen .section .page-wrapper {
  padding: 5em 1em 0.5em 8em;
  vertical-align: top;
}
/* line 466, ../../app/styles/_home.scss */
body.widescreen .section .page-wrapper .content {
  max-width: 60em;
}
/* line 473, ../../app/styles/_home.scss */
body.widescreen #welcome-page .page-wrapper {
  padding-top: 2.5em;
  padding-left: 5.5em;
}
/* line 477, ../../app/styles/_home.scss */
body.widescreen #welcome-page .content {
  max-width: 49em;
  margin-top: -2em;
}
/* line 484, ../../app/styles/_home.scss */
body.widescreen #about-page .page-wrapper {
  padding: 3.5em 1em 0.5em 4em;
}
/* line 495, ../../app/styles/_home.scss */
body.fp-responsive #pages .section {
  height: auto !important;
  padding-top: 3em !important;
  padding-bottom: 3em !important;
}
/* line 500, ../../app/styles/_home.scss */
body.fp-responsive #pages .section:first-of-type {
  padding-top: 3rem !important;
}
/* line 504, ../../app/styles/_home.scss */
body.fp-responsive #pages .page-wrapper {
  padding: 0 2em;
}
/* line 507, ../../app/styles/_home.scss */
body.fp-responsive #pages .content {
  max-width: none !important;
}
/* line 510, ../../app/styles/_home.scss */
body.fp-responsive #pages .plans-summary-table {
  display: none;
}
/* line 513, ../../app/styles/_home.scss */
body.fp-responsive #pages .plans-overview {
  display: block;
}
/* line 517, ../../app/styles/_home.scss */
body.fp-responsive #pages .title {
  margin: 0 0 0.5em 0;
}
/* line 525, ../../app/styles/_home.scss */
body.fp-responsive #pages .plan {
  display: block;
}
/* line 527, ../../app/styles/_home.scss */
body.fp-responsive #pages .plan .price-wrapper {
  margin-right: 0;
  display: block;
}
/* line 531, ../../app/styles/_home.scss */
body.fp-responsive #pages .plan .details {
  margin-bottom: 1em;
}
/* line 535, ../../app/styles/_home.scss */
body.fp-responsive #pages .sign-up {
  margin-bottom: 0.5em;
}
/* line 539, ../../app/styles/_home.scss */
body.fp-responsive #pages #premium-types {
  display: block;
  margin-bottom: 1em;
}
/* line 542, ../../app/styles/_home.scss */
body.fp-responsive #pages #premium-types .type {
  margin-bottom: 1em;
}
/* line 544, ../../app/styles/_home.scss */
body.fp-responsive #pages #premium-types .type:first-of-type {
  padding-right: 0;
  border-right: none;
}
/* line 548, ../../app/styles/_home.scss */
body.fp-responsive #pages #premium-types .type:last-of-type {
  padding-left: 0;
}
/* line 554, ../../app/styles/_home.scss */
body.fp-responsive #pages #set-up-purchase {
  margin-bottom: 1em;
}
/* line 558, ../../app/styles/_home.scss */
body.fp-responsive #pages .supporting-image {
  float: none;
  max-width: 20em;
}
/* line 562, ../../app/styles/_home.scss */
body.fp-responsive #pages .next-indicator {
  display: none;
}
@media (min-width: 1001px) {
  /* line 571, ../../app/styles/_home.scss */
  body .font-wrapper {
    font-size: 0.725rem;
  }
}
@media (min-width: 901px) and (max-width: 1000px) {
  /* line 571, ../../app/styles/_home.scss */
  body .font-wrapper {
    font-size: 0.7rem;
  }
}
@media (min-width: 801px) and (max-width: 900px) {
  /* line 571, ../../app/styles/_home.scss */
  body .font-wrapper {
    font-size: 0.625rem;
  }
}
@media (min-width: 701px) and (max-width: 800px) {
  /* line 571, ../../app/styles/_home.scss */
  body .font-wrapper {
    font-size: 0.575rem;
  }
}
@media (min-width: 601px) and (max-width: 700px) {
  /* line 571, ../../app/styles/_home.scss */
  body .font-wrapper {
    font-size: 0.525rem;
  }
}
@media (max-width: 600px) {
  /* line 571, ../../app/styles/_home.scss */
  body .font-wrapper {
    font-size: 0.5rem;
  }
}

/* line 594, ../../app/styles/_home.scss */
qfx-header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
/* line 603, ../../app/styles/_home.scss */
qfx-header header {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  right: 0;
}
/* line 611, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar {
  display: block;
  position: relative;
  font-size: 120%;
}
/* line 616, ../../app/styles/_home.scss */
.fp-viewing-welcome qfx-header header qfx-menu-bar, .fp-notinuse qfx-header header qfx-menu-bar {
  background-color: transparent;
  border-bottom-color: transparent;
}
/* line 621, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .main-nav {
  display: block;
  float: left;
  *zoom: 1;
  margin-top: -0.10rem;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
qfx-header header qfx-menu-bar .main-nav:before, qfx-header header qfx-menu-bar .main-nav:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
qfx-header header qfx-menu-bar .main-nav:after {
  clear: both;
}
@media (min-width: 580px) {
  /* line 621, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .main-nav {
    margin-top: 0.60rem;
  }
}
@media (min-width: 768px) {
  /* line 621, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .main-nav {
    margin-top: 0.8rem;
  }
}
/* line 635, ../../app/styles/_home.scss */
.fp-inuse:not(.fp-viewing-welcome) qfx-header header qfx-menu-bar .main-nav {
  margin-top: 0;
}
/* line 639, ../../app/styles/_home.scss */
.fp-inuse qfx-header header qfx-menu-bar .main-nav {
  margin-top: 0;
}
/* line 643, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .main-nav li {
  border-bottom: none;
}
/* line 645, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .main-nav li:not(.home) {
  display: none !important;
}
/* line 651, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .tools {
  margin-top: 0.40rem;
}
@media (min-width: 580px) {
  /* line 651, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools {
    margin-top: 0.60rem;
  }
}
@media (min-width: 768px) {
  /* line 651, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools {
    margin-top: 0.8rem;
  }
}
/* line 661, ../../app/styles/_home.scss */
.fp-inuse:not(.fp-viewing-welcome) qfx-header header qfx-menu-bar .tools {
  margin-top: 0;
}
/* line 663, ../../app/styles/_home.scss */
.fp-inuse:not(.fp-viewing-welcome) qfx-header header qfx-menu-bar .tools li a.button {
  border-radius: 0;
}
/* line 670, ../../app/styles/_home.scss */
.fp-inuse qfx-header header qfx-menu-bar .tools li {
  height: 3rem;
  line-height: 3rem;
  font-size: 100%;
}
/* line 674, ../../app/styles/_home.scss */
.fp-inuse qfx-header header qfx-menu-bar .tools li a {
  height: 3rem;
  line-height: 3rem;
  font-size: 100%;
}
/* line 683, ../../app/styles/_home.scss */
.fp-viewing-welcome qfx-header header qfx-menu-bar .tools li {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 75%;
}
@media (min-width: 580px) {
  /* line 683, ../../app/styles/_home.scss */
  .fp-viewing-welcome qfx-header header qfx-menu-bar .tools li {
    height: 2rem;
    line-height: 2rem;
    font-size: 85%;
  }
}
@media (min-width: 768px) {
  /* line 683, ../../app/styles/_home.scss */
  .fp-viewing-welcome qfx-header header qfx-menu-bar .tools li {
    height: 3rem;
    line-height: 3rem;
    font-size: 100%;
  }
}
/* line 697, ../../app/styles/_home.scss */
.fp-viewing-welcome qfx-header header qfx-menu-bar .tools li.settings, .fp-viewing-welcome qfx-header header qfx-menu-bar .tools li.browse {
  text-shadow: 0px 0px 4px black;
}
/* line 700, ../../app/styles/_home.scss */
.fp-viewing-welcome qfx-header header qfx-menu-bar .tools li a {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 75%;
}
@media (min-width: 580px) {
  /* line 700, ../../app/styles/_home.scss */
  .fp-viewing-welcome qfx-header header qfx-menu-bar .tools li a {
    height: 2rem;
    line-height: 2rem;
    font-size: 85%;
  }
}
@media (min-width: 768px) {
  /* line 700, ../../app/styles/_home.scss */
  .fp-viewing-welcome qfx-header header qfx-menu-bar .tools li a {
    height: 3rem;
    line-height: 3rem;
    font-size: 100%;
  }
}
/* line 718, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .tools li {
  border-bottom: none;
  height: 3rem;
  line-height: 3rem;
  font-size: 100%;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 75%;
  font-weight: 700;
}
@media (min-width: 580px) {
  /* line 718, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools li {
    height: 2rem;
    line-height: 2rem;
    font-size: 85%;
  }
}
@media (min-width: 768px) {
  /* line 718, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools li {
    height: 3rem;
    line-height: 3rem;
    font-size: 100%;
  }
}
/* line 738, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .tools li a {
  display: block;
  margin: 0;
  padding: 0rem 0.2rem;
  vertical-align: middle;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 75%;
  color: white;
  border: none;
}
/* line 748, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .tools li a:hover {
  color: white;
  text-decoration: none;
}
@media (min-width: 580px) {
  /* line 738, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools li a {
    height: 2rem;
    line-height: 2rem;
    font-size: 85%;
  }
}
@media (min-width: 768px) {
  /* line 738, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools li a {
    height: 3rem;
    line-height: 3rem;
    font-size: 100%;
  }
}
/* line 764, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .tools li a.button {
  padding: 0rem 0.75rem;
  border-radius: 3px;
}
@media (min-width: 375px) {
  /* line 771, ../../app/styles/_home.scss */
  qfx-header header qfx-menu-bar .tools li:last-child {
    margin-right: 0;
  }
}
/* line 779, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .search {
  display: none !important;
}
/* line 782, ../../app/styles/_home.scss */
qfx-header header qfx-menu-bar .search .search-link .icon.search:before {
  font-size: 100%;
}
/* line 789, ../../app/styles/_home.scss */
qfx-header header .container {
  width: 100%;
  max-width: none;
}
/* line 792, ../../app/styles/_home.scss */
qfx-header header .container > nav {
  margin: 0;
  *zoom: 1;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
qfx-header header .container > nav:before, qfx-header header .container > nav:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
qfx-header header .container > nav:after {
  clear: both;
}

/* line 800, ../../app/styles/_home.scss */
.icon-checkmark:before {
  content: "\e62c";
}

/******** HEADER ********/
@media only screen and (min-width: 609px) and (max-width: 825px) {
  /* line 815, ../../app/styles/_home.scss */
  header qfx-menu-bar .main-nav li {
    margin: 0 0.5rem 0 0;
  }
  /* line 817, ../../app/styles/_home.scss */
  header qfx-menu-bar .main-nav li .icon {
    width: auto;
  }
  /* line 819, ../../app/styles/_home.scss */
  header qfx-menu-bar .main-nav li .icon:before {
    width: auto;
  }
  /* line 823, ../../app/styles/_home.scss */
  header qfx-menu-bar .main-nav li .label {
    display: inline;
  }
}
/* line 831, ../../app/styles/_home.scss */
header .home {
  display: none;
}

/* LD SASS ADDITIONS */
/* need to determine where each of these goes, whether they stay
 	in this repo or get moved to the qfx-style-base repo */
/* line 840, ../../app/styles/_home.scss */
.fp-notinuse .page-wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
}

/* line 847, ../../app/styles/_home.scss */
.container.container--white {
  background-color: white;
}

/* line 852, ../../app/styles/_home.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* line 863, ../../app/styles/_home.scss */
a.button.qfxred, .button.qfxred {
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-weight: 700;
  color: white;
  background: #ea1c2d;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: #d81424;
}
/* line 873, ../../app/styles/_home.scss */
a.button.qfxred:hover, a.button.qfxred:not(.disabled):not([disabled]):hover, .button.qfxred:hover, .button.qfxred:not(.disabled):not([disabled]):hover {
  background-color: #d81424;
}
/* line 877, ../../app/styles/_home.scss */
a.button.qfxred[disabled], .button.qfxred[disabled] {
  opacity: 0.5;
}
/* line 879, ../../app/styles/_home.scss */
a.button.qfxred[disabled]:hover, .button.qfxred[disabled]:hover {
  background-color: #d81424;
}

/* line 885, ../../app/styles/_home.scss */
.qfxaph--tagline-main {
  display: block;
  margin: 0 auto 1.6em;
  padding: 0;
  max-width: 40em;
}

/* line 892, ../../app/styles/_home.scss */
.qfxaph--tagline-main-hr {
  display: block;
  margin: 12px auto;
  padding: 0;
  border: none;
  background-color: rgba(255, 255, 255, 0.25);
  height: 1px;
  max-width: 86%;
}

/* line 902, ../../app/styles/_home.scss */
.qfxaph--tagline-main-text {
  display: block;
  text-align: center;
  font-size: 350%;
  line-height: 102%;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
}

/* line 913, ../../app/styles/_home.scss */
.qfxaph--hjcta {
  display: block;
  margin: 0 auto 1em;
  padding: 0;
  text-align: center;
  max-width: 40em;
}

/* line 921, ../../app/styles/_home.scss */
.qfxaph--hjcta--content {
  display: block;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  max-width: 32em;
}

/* line 929, ../../app/styles/_home.scss */
.qfxaph--hjcta--headline {
  display: block;
  margin: 0 0 .5rem 0;
  text-align: center;
  font-size: 275%;
  line-height: 100%;
  color: white;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
}

/* line 939, ../../app/styles/_home.scss */
.qfxaph--hjcta--subline {
  display: block;
  margin: 0 0 1.5rem 0;
  text-align: center;
  font-size: 126%;
  line-height: 120%;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
}

/* line 948, ../../app/styles/_home.scss */
.qfxaph--hjcta--join-now {
  padding: 1em;
}
/* line 950, ../../app/styles/_home.scss */
.qfxaph--hjcta--join-now .button.qfxred {
  line-height: inherit;
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: auto;
  text-transform: uppercase;
}

/* line 960, ../../app/styles/_home.scss */
.qfxaph--jwef {
  display: block;
  margin: 0 auto;
  max-width: 31em;
  *zoom: 1;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.qfxaph--jwef:before, .qfxaph--jwef:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.qfxaph--jwef:after {
  clear: both;
}
/* line 966, ../../app/styles/_home.scss */
.qfxaph--jwef ng-messages ng-message {
  font-weight: 700;
}

/* line 972, ../../app/styles/_home.scss */
.qfxaph--jwef--fieldset {
  display: block;
  position: relative;
  float: left;
  width: 75%;
  margin: 0 0 1rem 0;
  padding: 0;
}
/* line 979, ../../app/styles/_home.scss */
.qfxaph--jwef--fieldset input[name="email"] {
  display: block;
  margin: 0;
  padding: 0.5rem;
  height: 3rem;
  width: 100%;
  text-align: left;
  border-radius: 3px 0 0 3px;
  max-width: 100%;
  font-size: 130%;
}
@media (min-width: 580px) {
  /* line 979, ../../app/styles/_home.scss */
  .qfxaph--jwef--fieldset input[name="email"] {
    padding: 0.5rem 1rem;
  }
}

/* line 995, ../../app/styles/_home.scss */
.qfxaph--jwef--submitwrap {
  display: block;
  position: relative;
  float: right;
  width: 25%;
  margin: 0;
  padding: 0;
  text-align: center;
}
/* line 1003, ../../app/styles/_home.scss */
.qfxaph--jwef--submitwrap button {
  display: block;
  width: 100%;
  padding: 0.5rem;
  height: 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  background: #ea1c2d;
  border-radius: 0 3px 3px 0;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #d81424;
}
/* line 1017, ../../app/styles/_home.scss */
.qfxaph--jwef--submitwrap button:hover {
  background-color: #d81424;
}
/* line 1020, ../../app/styles/_home.scss */
.qfxaph--jwef--submitwrap button[disabled], .qfxaph--jwef--submitwrap button:not(.disabled):not([disabled]) {
  opacity: 1;
}
/* line 1023, ../../app/styles/_home.scss */
.qfxaph--jwef--submitwrap button[disabled]:hover, .qfxaph--jwef--submitwrap button:not(.disabled):not([disabled]):hover {
  background-color: #d81424;
}

/* line 1030, ../../app/styles/_home.scss */
.qfxaph--knowmore {
  display: block;
  margin: 0 auto 1.5em;
  padding: 0;
  text-align: center;
  max-width: 40em;
}
/* line 1036, ../../app/styles/_home.scss */
.qfxaph--knowmore p {
  display: block;
  margin: 0 auto 0.5rem;
  max-width: 20em;
  text-align: center;
  font-size: 126%;
  line-height: 120%;
  color: white;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
}
/* line 1047, ../../app/styles/_home.scss */
.qfxaph--knowmore .qfxaph--membership-benefits-btn {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.3rem 0.6rem;
  color: white;
  background: #ea1c2d;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  border-radius: 3px;
  font-size: 67%;
  line-height: 100%;
  vertical-align: middle;
}
/* line 1060, ../../app/styles/_home.scss */
.qfxaph--knowmore .qfxaph--membership-benefits-btn:hover {
  background-color: #d81424;
}
/* line 1064, ../../app/styles/_home.scss */
.qfxaph--knowmore .qfxaph--membership-benefits-btn .icon:before {
  font-size: 80%;
  line-height: 100%;
  float: none;
}

/* line 1073, ../../app/styles/_home.scss */
.qfxaph--redeem {
  display: block;
  margin: 0 auto 1em;
  padding: 0;
  text-align: center;
  max-width: 40em;
  font-weight: 700;
  font-size: 120%;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
}

/* line 12, ../../app/styles/_join.scss */
.content-wrapper {
  font-size: 75%;
}
@media (min-width: 460px) {
  /* line 12, ../../app/styles/_join.scss */
  .content-wrapper {
    font-size: 80%;
  }
}
@media (min-width: 580px) {
  /* line 12, ../../app/styles/_join.scss */
  .content-wrapper {
    font-size: 85%;
  }
}
@media (min-width: 768px) {
  /* line 12, ../../app/styles/_join.scss */
  .content-wrapper {
    font-size: 90%;
  }
}
@media (min-width: 840px) {
  /* line 12, ../../app/styles/_join.scss */
  .content-wrapper {
    font-size: 95%;
  }
}
@media (min-width: 960px) {
  /* line 12, ../../app/styles/_join.scss */
  .content-wrapper {
    font-size: 100%;
  }
}

/* line 21, ../../app/styles/_join.scss */
body.join {
  margin: 0;
  padding: 0;
  background-color: black;
  background-image: none;
  background-attachment: scroll;
}
/* line 27, ../../app/styles/_join.scss */
body.join qfx-wait-indicator {
  font-size: 2rem;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 202;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* line 41, ../../app/styles/_join.scss */
body.join qfx-wait-indicator.ng-leave {
  display: none !important;
}
/* line 44, ../../app/styles/_join.scss */
body.join qfx-wait-indicator .sp-circle {
  border-top-color: #FFF;
}

/* line 50, ../../app/styles/_join.scss */
body .container {
  margin: 0 auto;
  width: 100%;
  max-width: 73rem;
}
@media (min-width: 768px) {
  /* line 50, ../../app/styles/_join.scss */
  body .container {
    width: 100%;
    max-width: 73rem;
  }
}

/* line 60, ../../app/styles/_join.scss */
.container-wrap {
  position: relative;
  padding: 3rem 0;
}
@media (min-width: 360px) {
  /* line 60, ../../app/styles/_join.scss */
  .container-wrap {
    padding: 4rem 0;
  }
}
@media (min-width: 580px) {
  /* line 60, ../../app/styles/_join.scss */
  .container-wrap {
    padding: 5rem 0;
  }
}
/* line 70, ../../app/styles/_join.scss */
.container-wrap[data-name="qfx-join-select-plan"] {
  color: #FFF;
}
/* line 74, ../../app/styles/_join.scss */
.container-wrap[data-name="qfx-about"] {
  background-color: #F7F7F7;
  color: #535353;
}
/* line 77, ../../app/styles/_join.scss */
body .container-wrap[data-name="qfx-about"] #about-page .title {
  font-size: 350%;
}

/* line 83, ../../app/styles/_join.scss */
.qfxjsp {
  display: block;
  margin: 0 auto;
  padding: 0;
}

/* line 89, ../../app/styles/_join.scss */
.qfxjsp--wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
  min-height: 18rem;
}

/* line 96, ../../app/styles/_join.scss */
.qfxjsp--headline {
  display: block;
  margin: 0 auto 0.5rem;
  padding: 0 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-weight: 700;
  font-size: 300%;
  line-height: 100%;
  color: white;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  max-width: 46rem;
}
@media (min-width: 360px) {
  /* line 96, ../../app/styles/_join.scss */
  .qfxjsp--headline {
    font-size: 400%;
  }
}

/* line 113, ../../app/styles/_join.scss */
.qfxjsp--description {
  display: block;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 48rem;
}
/* line 118, ../../app/styles/_join.scss */
.qfxjsp--description p {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
  text-align: center;
  font-weight: 300;
  font-size: 125%;
  line-height: 110%;
  color: white;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 132, ../../app/styles/_join.scss */
.qfxjsp--loading-error {
  display: block;
  margin: 1.5rem auto;
  padding: 2rem;
  max-width: 48rem;
  background-color: white;
  border-radius: 8px;
  color: #6d6d6d;
}

/* line 144, ../../app/styles/_join.scss */
.qfxjsp--pltb {
  display: block;
  margin: 1rem 0;
  padding: 0;
  color: white;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  /* line 144, ../../app/styles/_join.scss */
  .qfxjsp--pltb {
    margin: 2rem 0;
  }
}

/* line 155, ../../app/styles/_join.scss */
.qfxjsp--pltb-md {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  text-align: center;
  font-weight: 400;
  line-height: 120%;
}
/* line 169, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-plantype {
  flex: 1 0 100%;
}
@media (min-width: 580px) {
  /* line 169, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-plantype {
    flex: 1 0 15%;
  }
}
/* line 176, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-plantype:first-child {
  display: none;
}
@media (min-width: 580px) {
  /* line 176, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-plantype:first-child {
    display: flex;
  }
}
/* line 183, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-plantype[data-amount="1"] {
  flex: 1 0 20%;
}
/* line 186, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-plantype[data-amount="3"] {
  flex: 3 0 60%;
}
/* line 191, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-col {
  flex: 1 0 20%;
}
/* line 193, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-col:first-child {
  flex: 1 0 100%;
}
@media (min-width: 580px) {
  /* line 193, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="4"][data-typestotal="2"] .qfxjsp--pltb-col:first-child {
    flex: 1 0 15%;
  }
}
/* line 209, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-plantype {
  flex: 1 0 100%;
}
@media (min-width: 580px) {
  /* line 209, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-plantype {
    flex: 1 0 15%;
  }
}
/* line 216, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-plantype:first-child {
  display: none;
}
@media (min-width: 580px) {
  /* line 216, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-plantype:first-child {
    display: flex;
  }
}
/* line 223, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-plantype[data-amount="1"] {
  flex: 1 0 20%;
}
/* line 227, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-plantype[data-amount="2"] {
  flex: 2 0 40%;
}
/* line 232, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-col {
  flex: 1 0 20%;
}
/* line 234, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-col:first-child {
  flex: 1 0 100%;
}
@media (min-width: 580px) {
  /* line 234, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="3"][data-typestotal="2"] .qfxjsp--pltb-col:first-child {
    flex: 1 0 15%;
  }
}
/* line 251, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-plantype {
  flex: 1 0 100%;
}
@media (min-width: 580px) {
  /* line 251, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-plantype {
    flex: 1 0 14%;
  }
}
/* line 258, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-plantype:first-child {
  display: none;
}
@media (min-width: 580px) {
  /* line 258, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-plantype:first-child {
    display: flex;
  }
}
/* line 265, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-plantype[data-amount="1"] {
  flex: 1 0 43%;
}
/* line 270, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-col {
  flex: 1 0 43%;
}
/* line 272, ../../app/styles/_join.scss */
.qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-col:first-child {
  flex: 1 0 100%;
}
@media (min-width: 580px) {
  /* line 272, ../../app/styles/_join.scss */
  .qfxjsp--pltb-md[data-planstotal="2"][data-typestotal="2"] .qfxjsp--pltb-col:first-child {
    flex: 1 0 14%;
  }
}

/* line 285, ../../app/styles/_join.scss */
.qfxjsp--pltb-plantypes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 285, ../../app/styles/_join.scss */
  .qfxjsp--pltb-plantypes {
    flex-wrap: nowrap;
  }
}

/* line 298, ../../app/styles/_join.scss */
.qfxjsp--pltb-plantype {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: transparent;
  margin: 0 0 3px 0;
  padding: 0;
  font-size: 135%;
  line-height: normal;
  text-transform: uppercase;
}
/* line 310, ../../app/styles/_join.scss */
.qfxjsp--pltb-plantype > div {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border-bottom: 2px solid white;
  margin: 0 1px;
  padding: 12px 4px;
}
/* line 325, ../../app/styles/_join.scss */
.qfxjsp--pltb-plantype:first-child > div {
  border-bottom-color: transparent;
}
/* line 330, ../../app/styles/_join.scss */
.qfxjsp--pltb-plantype .plangroup-type {
  font-weight: 700;
  display: block;
}
@media (min-width: 980px) {
  /* line 330, ../../app/styles/_join.scss */
  .qfxjsp--pltb-plantype .plangroup-type {
    display: inline-block;
  }
}

/* line 339, ../../app/styles/_join.scss */
.qfxjsp--pltb-planrows {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: transparent;
  width: 100%;
}

/* line 350, ../../app/styles/_join.scss */
.qfxjsp--pltb-planrow {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 580px) {
  /* line 350, ../../app/styles/_join.scss */
  .qfxjsp--pltb-planrow {
    flex-wrap: nowrap;
  }
}
/* line 366, ../../app/styles/_join.scss */
.qfxjsp--pltb-planrow:first-child .qfxjsp--pltb-col:first-child > div, .qfxjsp--pltb-planrow:last-child .qfxjsp--pltb-col:first-child > div {
  opacity: 0;
  display: none;
}
@media (min-width: 580px) {
  /* line 366, ../../app/styles/_join.scss */
  .qfxjsp--pltb-planrow:first-child .qfxjsp--pltb-col:first-child > div, .qfxjsp--pltb-planrow:last-child .qfxjsp--pltb-col:first-child > div {
    display: flex;
  }
}

/* line 378, ../../app/styles/_join.scss */
.qfxjsp--pltb-col {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
/* line 391, ../../app/styles/_join.scss */
.qfxjsp--pltb-col > div {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  border-width: 1px;
  border-style: solid;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.3);
  margin: 0;
  padding: 12px 4px;
}
@media (min-width: 460px) {
  /* line 391, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col > div {
    margin: 0 1px;
    padding: 14px 6px;
  }
}
@media (min-width: 580px) {
  /* line 391, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col > div {
    padding: 16px 8px;
  }
}
@media (min-width: 768px) {
  /* line 391, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col > div {
    padding: 16px 12px;
  }
}
@media (min-width: 960px) {
  /* line 391, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col > div {
    padding: 16px 14px;
  }
}
/* line 425, ../../app/styles/_join.scss */
.qfxjsp--pltb-col:first-child > div {
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 4px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
@media (min-width: 580px) {
  /* line 425, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col:first-child > div {
    background-color: transparent;
    border-color: transparent;
    text-align: right;
    justify-content: flex-end;
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
/* line 445, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="label"][data-plantype="Access"] > div {
  padding: 16px 2px;
  font-size: 110%;
  text-transform: uppercase;
  background-color: #1f7bee;
}
@media (min-width: 580px) {
  /* line 445, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col[data-slug="label"][data-plantype="Access"] > div {
    font-size: 130%;
    font-weight: 700;
    padding: 18px 4px;
  }
}
/* line 458, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="label"][data-plantype="RedCarpet"] > div {
  padding: 16px 2px;
  font-size: 110%;
  text-transform: uppercase;
  background-color: #eb1c2d;
}
@media (min-width: 580px) {
  /* line 458, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col[data-slug="label"][data-plantype="RedCarpet"] > div {
    font-size: 130%;
    font-weight: 700;
    padding: 18px 4px;
  }
}
/* line 474, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="cancellation-period"]:not(:first-child) > div {
  font-size: 160%;
}
/* line 481, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="monthly-cost"]:not(:first-child) > div {
  font-size: 140%;
}
@media (min-width: 768px) {
  /* line 481, ../../app/styles/_join.scss */
  .qfxjsp--pltb-col[data-slug="monthly-cost"]:not(:first-child) > div {
    font-size: 160%;
    line-height: 100%;
  }
}
/* line 492, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="monthly-cost"] .value {
  font-size: 60%;
}
/* line 498, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="select-plan"] > div {
  background-color: transparent;
  border-color: transparent;
  padding-left: 2px;
  padding-right: 2px;
}
/* line 504, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="select-plan"] .button {
  text-align: center;
  font-weight: 700;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  color: #363636;
  background: #eaeaea;
  border-color: #dddddd;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-shadow: none;
}
/* line 517, ../../app/styles/_join.scss */
.qfxjsp--pltb-col[data-slug="select-plan"] .button:hover {
  color: white;
  background: #ea1c2d;
  border-color: #d81424;
}
/* line 525, ../../app/styles/_join.scss */
.qfxjsp--pltb-col .plncost {
  padding: 5px 0;
}
/* line 527, ../../app/styles/_join.scss */
.qfxjsp--pltb-col .plncost .price {
  font-weight: 700;
}
/* line 530, ../../app/styles/_join.scss */
.qfxjsp--pltb-col .plncost .permo {
  font-weight: 300;
}

/* line 576, ../../app/styles/_join.scss */
.qfxjsp--ptbl-qdisclaim {
  display: block;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 28rem;
}
/* line 581, ../../app/styles/_join.scss */
.qfxjsp--ptbl-qdisclaim p {
  text-align: center;
  font-weight: 300;
  font-size: 90%;
  line-height: 110%;
  color: white;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}

/* line 596, ../../app/styles/_join.scss */
.qfxjfpm {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.83);
  z-index: 200;
}
/* line 605, ../../app/styles/_join.scss */
.qfxjfpm.open {
  display: block;
}

/* line 609, ../../app/styles/_join.scss */
.qfxjfpm--content-wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 201;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.5rem;
}
@media (min-width: 480px) {
  /* line 609, ../../app/styles/_join.scss */
  .qfxjfpm--content-wrap {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  /* line 609, ../../app/styles/_join.scss */
  .qfxjfpm--content-wrap {
    padding: 3rem;
  }
}

/* line 634, ../../app/styles/_join.scss */
.qfxjfpm--content {
  flex: 1 0 auto;
  width: 100%;
  background: white;
  border-radius: 4px;
  max-height: 50%;
  max-width: 34rem;
  position: relative;
}

/* line 644, ../../app/styles/_join.scss */
.qfxjfpm--close {
  position: absolute;
  right: -10px;
  top: -14px;
  width: 44px;
  height: 44px;
  background: #DCDCDC;
  border-radius: 24px;
  color: #333;
}
/* line 653, ../../app/styles/_join.scss */
.qfxjfpm--close:after {
  content: "X";
  font-size: 30px;
  line-height: 48px;
  vertical-align: middle;
  display: block;
  font-weight: 900;
  width: 44px;
  height: 44px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  color: #333;
}
@media (min-width: 480px) {
  /* line 644, ../../app/styles/_join.scss */
  .qfxjfpm--close {
    right: -14px;
    width: 48px;
    height: 48px;
  }
  /* line 672, ../../app/styles/_join.scss */
  .qfxjfpm--close:after {
    width: 48px;
    height: 48px;
  }
}

/* line 679, ../../app/styles/_join.scss */
.qfxjfpm--form {
  outline: none;
  display: block;
  max-width: 100%;
  margin: 0.8rem 1.4rem;
  padding: 0;
  *zoom: 1;
}
/* line 58, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.qfxjfpm--form:before, .qfxjfpm--form:after {
  content: " ";
  display: table;
}
/* line 64, ../../bower_components/qfx-style-base/sass/var/_mixins.scss */
.qfxjfpm--form:after {
  clear: both;
}
@media (min-width: 480px) {
  /* line 679, ../../app/styles/_join.scss */
  .qfxjfpm--form {
    margin: 1.2rem 1.8rem;
  }
}
/* line 692, ../../app/styles/_join.scss */
.qfxjfpm--form ng-messages ng-message {
  font-weight: 700;
}
/* line 696, ../../app/styles/_join.scss */
.qfxjfpm--form label {
  font-weight: 400;
  text-transform: none;
  padding: 2px 3px;
}
/* line 700, ../../app/styles/_join.scss */
.qfxjfpm--form label.small {
  font-size: 85%;
}
/* line 703, ../../app/styles/_join.scss */
.qfxjfpm--form label.muted {
  color: #A9A9A9;
}
/* line 707, ../../app/styles/_join.scss */
.qfxjfpm--form .validation-errors {
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid #d0020e;
}
/* line 711, ../../app/styles/_join.scss */
.qfxjfpm--form .validation-errors li {
  list-style-type: none;
  color: #d0020e;
}

/* line 718, ../../app/styles/_join.scss */
.qfxjfpm--form--title {
  font-size: 140%;
  line-height: normal;
  margin-bottom: 1.2rem;
}

/* line 724, ../../app/styles/_join.scss */
.qfxjfpm--form-elems {
  display: block;
}

/* line 728, ../../app/styles/_join.scss */
.qfxjfpm--form--fieldset {
  display: block;
  position: relative;
  float: none;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0;
}
/* line 735, ../../app/styles/_join.scss */
.qfxjfpm--form--fieldset input[name="email"],
.qfxjfpm--form--fieldset input[name="password"] {
  display: block;
  margin: 0;
  padding: 0.5rem;
  height: 3rem;
  width: 100%;
  text-align: left;
  border-radius: 3px 0 0 3px;
  max-width: 100%;
  font-size: 110%;
  background: white;
}
@media (min-width: 580px) {
  /* line 735, ../../app/styles/_join.scss */
  .qfxjfpm--form--fieldset input[name="email"],
  .qfxjfpm--form--fieldset input[name="password"] {
    padding: 0.5rem 1rem;
  }
}
/* line 750, ../../app/styles/_join.scss */
.qfxjfpm--form--fieldset input[name="email"].ng-valid,
.qfxjfpm--form--fieldset input[name="password"].ng-valid {
  background: transparent;
  border: 1px solid #3dcb42;
}

/* line 759, ../../app/styles/_join.scss */
.qfxjfpm--form--input-wrap {
  display: block;
  position: relative;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 0;
}
/* line 767, ../../app/styles/_join.scss */
.qfxjfpm--form--input-wrap:after {
  display: block;
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 32px;
  z-index: -1;
  display: block;
  color: #3dcb42;
  font-family: 'qfx' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e62c";
}

/* line 791, ../../app/styles/_join.scss */
.qfxjfpm--form--submitwrap {
  display: block;
  position: relative;
  float: none;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0;
  text-align: center;
}
/* line 799, ../../app/styles/_join.scss */
.qfxjfpm--form--submitwrap button {
  display: block;
  width: 100%;
  padding: 0.5rem;
  height: 3rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  background: linear-gradient(to top, #940122 0%, #cf002f 100%);
  border-radius: 0 3px 3px 0;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #e10b3c;
}
/* line 813, ../../app/styles/_join.scss */
.qfxjfpm--form--submitwrap button[disabled] {
  opacity: 0.5;
}

/*
 * Mobile plan styles
 * Some styles should be shared with main table styles but were just duplicated due to time constraints and the fact that this already needed some cleanup
 */
/* line 825, ../../app/styles/_join.scss */
.qfxjsp--plmbl {
  display: none;
  max-width: 420px;
  margin: 0 auto;
}
/* line 830, ../../app/styles/_join.scss */
.qfxjsp--plmbl .group {
  margin-bottom: 1rem;
  text-align: center;
}
/* line 836, ../../app/styles/_join.scss */
.qfxjsp--plmbl .group[data-plantype="RedCarpet"] [data-slug="label"] .feature-value {
  background-color: #eb1c2d;
}
/* line 843, ../../app/styles/_join.scss */
.qfxjsp--plmbl .group[data-plantype="Access"] [data-slug="label"] .feature-value {
  background-color: #1f7bee;
}
/* line 850, ../../app/styles/_join.scss */
.qfxjsp--plmbl .plangroup-name {
  font-size: 185%;
  border-bottom: 2px solid white;
  margin-bottom: 0.25rem;
}
/* line 854, ../../app/styles/_join.scss */
.qfxjsp--plmbl .plangroup-name .plangroup-type {
  font-weight: 700;
}
/* line 859, ../../app/styles/_join.scss */
.qfxjsp--plmbl .plan {
  background-color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0.75rem;
}
/* line 864, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
/* line 869, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature:first-child, .qfxjsp--plmbl .feature:nth-child(2), .qfxjsp--plmbl .feature:last-child {
  display: block;
  width: 100%;
  border-left: none;
}
/* line 876, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature:nth-child(2n+4) {
  border-left: 1px solid #343434;
}
/* line 880, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature .feature-name {
  border-top: 1px solid #787878;
  border-bottom: 1px solid #343434;
  color: #ababab;
  font-weight: bold;
  font-size: 120%;
}
/* line 888, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature .feature-value {
  padding: 0.5rem;
}
/* line 894, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="label"] .feature-name, .qfxjsp--plmbl .feature[data-slug="select-plan"] .feature-name {
  display: none;
}
/* line 900, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="label"] .feature-value {
  text-align: center;
  font-weight: bold;
  padding: 0.75rem;
  font-size: 150%;
  text-transform: uppercase;
}
/* line 911, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="monthly-cost"] .feature-value .price {
  font-weight: bold;
  font-size: 140%;
}
/* line 915, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="monthly-cost"] .feature-value .value {
  font-size: 80%;
}
/* line 921, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="select-plan"] {
  padding: 0.5rem;
}
/* line 924, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="select-plan"] .feature-value .button {
  text-align: center;
  font-weight: 700;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  color: #363636;
  background: #eaeaea;
  border-color: #dddddd;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-shadow: none;
}
/* line 937, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature[data-slug="select-plan"] .feature-value .button:hover {
  color: white;
  background: #ea1c2d;
  border-color: #d81424;
}
/* line 946, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature .icon {
  font-size: 160%;
}
/* line 948, ../../app/styles/_join.scss */
.qfxjsp--plmbl .feature .icon:before {
  float: none;
}

@media (max-width: 650px) {
  /* line 957, ../../app/styles/_join.scss */
  .qfxjsp--pltb {
    display: none;
  }

  /* line 960, ../../app/styles/_join.scss */
  .qfxjsp--plmbl {
    display: block;
  }
}
