/**
 * sass > screen.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 *
 * This file acts as an import base for all the Application styling.
 * Styling is split into logical groups to make it easy to modularise the code.
 *
 * For more information please take a look at the Essence Digital Coding Standards site - http://essencedigital.github.com/coding-standards/
 */
/**
 * sass > generic > _clearfix.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/**
 * sass > generic > _helpers.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
.align-left {
  text-align: left; }

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

.align-right {
  text-align: right; }

/**
 * sass > _animations.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
@-webkit-keyframes fuckingwait {
  0% {
    left: -5rem; }
  50% {
    left: 5rem; }
  100% {
    left: -5rem; } }
@-moz-keyframes fuckingwait {
  0% {
    left: -5rem; }
  50% {
    left: 5rem; }
  100% {
    left: -5rem; } }
/**
 * sass > generic > _mixins.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 *
 * SASS Mixins are useful to automate common styling patterns.
 * Mixins can be used throughout your SASS files by using @include [MIXIN NAME]
 */
/**
 * sass > _defaults.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/* DEFAULT BRAND COLOURS
 ******************************/
/*
 * Set up the media query variables.
 *
 * DEFAULT SCREEN SIZES
 ******************************/
/* CONVERT SCREEN SIZES TO EMS
 ******************************/
/**
 * sass > _layout.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 *
 */
* {
  box-sizing: border-box; }

@font-face {
  font-family: 'bebas';
  src: url("../fonts/BebasNeue-webfont.eot");
  src: url("../fonts/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeue-webfont.woff") format("woff"), url("../fonts/BebasNeue-webfont.ttf") format("truetype"), url("../fonts/BebasNeue-webfont.svg#BebasNeueRegular") format("svg");
  font-weight: normal;
  font-style: normal; }
::-moz-selection {
  background: #ff8400;
  color: #ffffff; }

::-webkit-selection {
  background: #ff8400;
  color: #ffffff; }

::selection {
  background: #ff8400;
  color: #ffffff; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

html {
  font-size: 10px; }

body {
  color: #000000;
  font-family: "bebas", Tahoma, Geneva, sans-serif;
  text-transform: uppercase;
  line-height: 1; }

input {
  -webkit-appearance: none !important;
  cursor: pointer;
  font-family: "bebas", Tahoma, Geneva, sans-serif;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s; }

a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s; }
  a:hover {
    color: #ff8400; }

.grid.grid--alpha.main {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 2rem;
  font-size: 2rem; }
  @media only screen and (min-width: 30em) {
    .grid.grid--alpha.main {
      padding-top: 4rem; } }

.loader {
  background: rgba(255, 255, 255, 0.5);
  color: #000000;
  display: none;
  font-size: 4rem;
  height: 100%;
  padding-top: 17rem;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 2000;
  left: 0; }
  @media only screen and (min-width: 30em) {
    .loader {
      font-size: 5rem;
      padding-top: 26rem; } }
  .loader .loader__image {
    display: block;
    width: 2.5rem;
    background: url(../img/wait.png) no-repeat;
    margin: 2rem auto;
    height: 3.5rem;
    position: relative;
    -o-transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    transition: all linear 0.3s;
    -webkit-animation: fuckingwait 1000ms infinite both;
    -moz-animation: fuckingwait 1000ms infinite; }

.locator .locator__message {
  display: none;
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 2rem; }
.locator .locator__search {
  font-size: 3rem;
  width: 80%;
  display: block;
  margin: 0 auto;
  padding: 1rem 1rem 0.5rem 1rem;
  color: #cccccc;
  text-align: left;
  border-radius: 0;
  border: 0.1rem solid #000000; }
  .locator .locator__search:focus {
    color: #000000; }
  @media only screen and (min-width: 30em) {
    .locator .locator__search {
      font-size: 4rem;
      width: 50%; } }
.locator .locator__submit {
  background: #000000;
  border: 0 none;
  color: #ffffff;
  display: block;
  font-size: 2rem;
  padding: 1rem;
  margin: 3rem auto;
  width: 90%; }
  .locator .locator__submit:hover {
    background: #ff8400; }
  @media only screen and (min-width: 30em) {
    .locator .locator__submit {
      font-size: 3rem;
      width: 36rem; } }

.pac-container {
  border: 0.1rem solid #000000;
  border-top: 0.1rem solid #cccccc; }
  .pac-container .pac-item {
    color: #cccccc;
    line-height: 1;
    padding: 0.65rem 1rem 0.25rem;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s; }
    .pac-container .pac-item span {
      font-family: 'bebas';
      font-size: 2.5rem; }
      @media only screen and (min-width: 30em) {
        .pac-container .pac-item span {
          font-size: 3.5rem; } }
    .pac-container .pac-item:hover, .pac-container .pac-item.pac-item-selected {
      background: #ff8400;
      color: #ffffff; }
  .pac-container .pac-icon {
    display: none; }

.recommendation .recommendation__destination {
  font-size: 3rem;
  text-align: center;
  display: none; }
  .recommendation .recommendation__destination a {
    border-bottom: 0.075em solid #000000;
    line-height: 0.8;
    display: inline-block;
    padding-bottom: 0; }
    .recommendation .recommendation__destination a:hover {
      border-bottom: 0.075em solid #ff8400; }
  @media only screen and (min-width: 30em) {
    .recommendation .recommendation__destination {
      font-size: 6rem; } }

.map {
  margin: 1rem auto 0 auto;
  position: relative;
  width: 100%; }
  @media only screen and (min-width: 30em) {
    .map {
      margin: 4rem auto 2rem auto; } }
  .map .map__address {
    font-size: 2rem;
    padding: 0;
    z-index: 3000;
    text-align: center;
    margin: 1rem 0;
    color: #999999;
    display: none; }
    @media only screen and (min-width: 30em) {
      .map .map__address {
        height: 30rem;
        font-size: 3.2rem;
        padding: 1rem;
        width: 25%;
        position: absolute;
        text-align: right;
        background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
        bottom: 0;
        margin: 0;
        right: 0;
        color: #000000; } }
  .map .map__canvas {
    height: 15rem;
    position: relative;
    width: 100%;
    background: #ffffff !important;
    margin: 1rem auto 0 auto; }
    @media only screen and (min-width: 30em) {
      .map .map__canvas {
        height: 30rem;
        margin: 4rem auto 2rem auto; } }

.grid .grid__row--actions {
  display: none;
  padding-top: 2rem; }
  .grid .grid__row--actions a {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: block;
    text-align: center; }
    @media only screen and (min-width: 30em) {
      .grid .grid__row--actions a {
        font-size: 3rem; } }
  .grid .grid__row--actions .actions__shit {
    font-size: 3rem; }
    @media only screen and (min-width: 30em) {
      .grid .grid__row--actions .actions__shit {
        font-size: 4rem; } }

.grid__row--links {
  border-bottom: 0.1rem solid #cccccc;
  border-top: 0.1rem solid #cccccc;
  padding: 3rem 0 2rem 0;
  display: none; }
  .grid__row--links a {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin: 0 0 2rem 0; }
    @media only screen and (min-width: 30em) {
      .grid__row--links a img {
        display: block;
        width: 90%;
        margin: -10px auto 0;
        max-width: 154px; } }

.grid__row--social iframe {
  margin: 0 auto;
  display: block; }
.grid__row--social .gplus-container {
  width: 12rem;
  margin: 0 auto; }

.fyyfs {
  display: none; }
  .fyyfs a {
    display: block;
    padding: 2rem 0;
    font-size: 2rem;
    text-align: center; }

/*ADSENSE*/
.adsense {
  display: none;
  margin-top: 4rem; }
  .adsense--top {
    margin-top: -2rem; }

.ad-module {
  text-align: center;
  display: block;
  margin-bottom: 20px; }

.ad-module--large {
  display: none; }

@media only screen and (min-width: 768px) {
  .ad-module--large {
    display: block; }

  .ad-module--small {
    display: none; } }
/**
 * sass > base > _paragraphs.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/* BASIC TEXT STYLING
 ******************************/
p {
  font-size: 0.875em; }

em,
i {
  font-style: italic; }

strong,
b {
  font-weight: 700; }

del {
  color: #f00;
  text-decoration: line-through; }

/**
 * sass > base > _headings.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/* HEADING STYLING
 ******************************/
/**
 * sass > base > _lists.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/* LIST STYLING
 ******************************/
/**
 * sass > base > _forms.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/**
 * sass > base > _images.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
img {
  max-width: 100%;
  height: auto; }

img[width],
img[height] {
  max-width: none; }

/**
 * sass > objects > _grids.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 *
 * This file will build up the code for a responsive fluid layout using %
 */
.grid.grid--alpha {
  margin: 0 20px;
  margin:  0 1.25rem; }
.grid,
.grid .grid__row {
  *zoom: 1; }
  .grid:before, .grid:after,
  .grid .grid__row:before,
  .grid .grid__row:after {
    content: ' ';
    display: table; }
  .grid:after,
  .grid .grid__row:after {
    clear: both; }
.grid .grid__row {
  margin: 0 -10px;
  margin:  0 -0.625rem; }
.grid .grid__column {
  float: left;
  display: block;
  padding: 0 10px;
  padding:  0 0.625rem; }
  @media only screen and (max-width: 47.9375em) {
    .grid .grid__column.sml--column-1-3 {
      width: 33.33333%; }
    .grid .grid__column.sml--column-2-3 {
      width: 66.66667%; }
    .grid .grid__column.sml--column-3-3 {
      width: 100%; } }
  @media only screen and (min-width: 48em) and (max-width: 59.9375em) {
    .grid .grid__column.med--column-1-6 {
      width: 16.66667%; }
    .grid .grid__column.med--column-2-6 {
      width: 33.33333%; }
    .grid .grid__column.med--column-3-6 {
      width: 50%; }
    .grid .grid__column.med--column-4-6 {
      width: 66.66667%; }
    .grid .grid__column.med--column-5-6 {
      width: 83.33333%; }
    .grid .grid__column.med--column-6-6 {
      width: 100%; } }
  @media only screen and (min-width: 60em) {
    .grid .grid__column.lrg--column-1-12 {
      width: 8.33333%; }
    .grid .grid__column.lrg--column-2-12 {
      width: 16.66667%; }
    .grid .grid__column.lrg--column-3-12 {
      width: 25%; }
    .grid .grid__column.lrg--column-4-12 {
      width: 33.33333%; }
    .grid .grid__column.lrg--column-5-12 {
      width: 41.66667%; }
    .grid .grid__column.lrg--column-6-12 {
      width: 50%; }
    .grid .grid__column.lrg--column-7-12 {
      width: 58.33333%; }
    .grid .grid__column.lrg--column-8-12 {
      width: 66.66667%; }
    .grid .grid__column.lrg--column-9-12 {
      width: 75%; }
    .grid .grid__column.lrg--column-10-12 {
      width: 83.33333%; }
    .grid .grid__column.lrg--column-11-12 {
      width: 91.66667%; }
    .grid .grid__column.lrg--column-12-12 {
      width: 100%; } }

/**
 * sass > objects > _navigation.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 */
/**
 * sass > objects > _boxes.scss
 * @author Matthew Burrows <matthew.burrows@essencedigital.com>
 *
 */
.box {
  display: block;
  margin: 0 0 20px 0;
  margin:  0 0 1.25rem 0; }
  .box.box--alpha {
    padding: 8px;
    padding: 0.5rem;
    background: #fefefe;
    border: 1px solid #efefef;
    border-radius: 5px; }
