/* @less partials */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* @group GN Additions */
/* @end */
/* @group Corporate colours taken from logo */
/* @end */
/* @group Site Defaults */
/* @end */
/* @group Greys */
/* @end */
.FullHeight {
  height: 100vh!important;
  margin-top: 0px!important;
  padding: 0px!important;
}
.FullHeight .vertCenter {
  position: relative;
  z-index: 99;
  top: 45%;
  transform: translateY(-45%);
}
.FullHeightLgMd .vertCenter {
  position: relative;
  z-index: 99;
}
/* Large screens ----------- */
@media only screen and (min-width: 1024px) {
  .FullHeightLgMd {
    height: 100vh!important;
    margin-top: 0px!important;
    padding: 0px!important;
  }
  .FullHeightLgMd .vertCenter {
    position: relative;
    z-index: 99;
    top: 45%;
    transform: translateY(-45%);
  }
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .FullHeight,
  .FullHeightLgMd {
    height: -o-calc(94vh) !important;
    /* opera */
    height: -webkit-calc(94vh) !important;
    /* google, safari */
    height: -moz-calc(94vh) !important;
    /* firefox */
  }
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .FullHeight {
    height: -o-calc(96vh) !important;
    /* opera */
    height: -webkit-calc(96vh) !important;
    /* google, safari */
    height: -moz-calc(96vh) !important;
    /* firefox */
  }
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 736px) {
  .FullHeight {
    height: -o-calc(96vh) !important;
    /* opera */
    height: -webkit-calc(96vh) !important;
    /* google, safari */
    height: -moz-calc(96vh) !important;
    /* firefox */
  }
}
/*# sourceMappingURL=fullHeight.css.map */