/*
# Settings (_settings)
*/
/*
## Variables

### General

$phi: 1.618033988749 - Golden ratio
*/
/*
### Colours

<span style="color: #333">$colour-base - #333</span> <span style="background: #333; color: #FFF;">&nbsp;$colour-base - #333&nbsp;</span>

<span style="color: #339">$colour-highlight - #339</span> <span style="background: #339; color: #FFF;">&nbsp;$colour-highlight - #339&nbsp;</span>

<span style="color: #339">$colour-link - #339</span> <span style="background: #339; color: #FFF;">&nbsp;$colour-link - #339&nbsp;</span>
*/
/*
### Fonts

$font-size - 13

$line-height - 1.4

<span style="font-family: sans-serif;">$font-base - sans-serif</span>

<span style="font-family: sans-serif;">$font-header - sans-serif</span>
*/
/*
## Functions

### em($size: $font-size, $context: $fs)

Will convert a pixel based size to an em value.
First value is the target size, the second value is the font-size of the context it is in.

Examples:
`em(26)` // 2em if base font-size is 13px
`em(18, 12)` // 1.5em
*/
/*
### rem($size: $font-size, $context: $fs)

Will convert a pixel based size to an rem value.
First value is the target size, the second value is the font-size of the context it is in.

Examples:
`em(26)` // 2em if base font-size is 13px
`em(18, 12)` // 1.5em
*/
/*
### lh($size: $font-size, $context: $fs)

Will provide the same function as 'em' above buth without appending 'em' to the result.
This makes it more suitable to use as a line-height value.

Examples:
`lh(26)` // 2 if base font-size is 13px
`lh(18, 12)` // 1.5
*/
/*
## Mixins

Mixins must to be called using @include (scss) or + (sass)
*/
/*
### max($maxwidth: $width)

A simple max-width media query

<pre>
div {
	@include max(768px) {
		display: none;
	}
}
</pre>

Outputs:
<pre>
@media (max-width: 768px) {
	div {
		display: none;
	}
}
</pre>
*/
/*
### min($minwidth: $width)

A simple min-width media query

<pre>
div {
	@include min(768px) {
		display: block;
	}
}
</pre>

Outputs:
<pre>
@media (min-width: 768px) {
	div {
		display: block;
	}
}
</pre>
*/
/*
### pixel-ratio($pixelratio: 2, $basedpi: 96)

A simple pixel-ratio media query

$basedpi is used for fine control over the dpi query value

<pre>
div {
	@include pixel-ratio {
		background-image: url(image@2x.png);
	}
}
</pre>

Outputs:
<pre>
@media
	(-webkit-min-device-pixel-ratio: 2),
	(   min--moz-device-pixel-ratio: 2),
	(     -o-min-device-pixel-ratio: 2/1),
	(        min-device-pixel-ratio: 2),
	(                min-resolution: 192dpi),
	(                min-resolution: 2dppx) {
		div {
			background-image: url(image@2x.png);
		}
	}
</pre>
*/
/*
### Placeholders
*/
/*
### boxes($cols: 3, $gutter: 10px, $selector: ".col")

Set the container and its children (as  selected by the selector argument) to be a set of columns.
*/
/*
## Extend

Use these placeholder styles with @extend.
*/
/*
### %clearfix

@extend interface for @include clearfix;
*/
.form-item, .tabs-links, .tabs-links-uneven, .wrap, .header-site, .nav-blocks, .post, .form-petition .totaliser, .form-checkout .form-checkout_group_inner, .mslistorders-row-actions {
  *zoom: 1;
}
.form-item:before, .tabs-links:before, .tabs-links-uneven:before, .wrap:before, .header-site:before, .nav-blocks:before, .post:before, .form-petition .totaliser:before, .form-checkout .form-checkout_group_inner:before, .mslistorders-row-actions:before, .form-item:after, .tabs-links:after, .tabs-links-uneven:after, .wrap:after, .header-site:after, .nav-blocks:after, .post:after, .form-petition .totaliser:after, .form-checkout .form-checkout_group_inner:after, .mslistorders-row-actions:after {
  content: "";
  display: table;
}
.form-item:after, .tabs-links:after, .tabs-links-uneven:after, .wrap:after, .header-site:after, .nav-blocks:after, .post:after, .form-petition .totaliser:after, .form-checkout .form-checkout_group_inner:after, .mslistorders-row-actions:after {
  clear: both;
}

/*
### %list-reset

@extend interface for @include list-reset;
*/
.pagination ul, .carousel-wrap .carousel, .tabs-links, .tabs-links-uneven, .donation ul, .just-giving-leaderboard ol, .mslistorders-row-actions, .ui-menu {
  font-size: 1em;
  margin: 0;
  padding: 0;
}
.pagination ul > li, .carousel-wrap .carousel > li, .tabs-links > li, .tabs-links-uneven > li, .donation ul > li, .just-giving-leaderboard ol > li, .mslistorders-row-actions > li, .ui-menu > li {
  list-style: none;
  list-style-image: none;
  margin: 0;
}
.pagination ul > li + li, .carousel-wrap .carousel > li + li, .tabs-links > li + li, .tabs-links-uneven > li + li, .donation ul > li + li, .just-giving-leaderboard ol > li + li, .mslistorders-row-actions > li + li, .ui-menu > li + li {
  margin: 0;
}
.pagination ul > li:before, .carousel-wrap .carousel > li:before, .tabs-links > li:before, .tabs-links-uneven > li:before, .donation ul > li:before, .just-giving-leaderboard ol > li:before, .mslistorders-row-actions > li:before, .ui-menu > li:before {
  background: none;
  content: normal;
  height: auto;
  width: auto;
}

/*
### %list-reset-full

@extend interface for @include list-reset-full;
*/
/*
# Normalize (_normalize)

normalize.css v1.0.1 | MIT License | git.io/normalize

Global reset. This file should not be edited.

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

*, *:after, *:before {
  box-sizing: inherit;
  background-repeat: no-repeat;
}

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

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

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

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

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

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

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

menu,
ol,
ul {
  padding: 0 0 0 40px;
}

nav ul, nav ol {
  font-size: 1em;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
nav ul li, nav ol li {
  margin: 0;
  position: static;
}
nav ul li + li, nav ol li + li {
  margin: 0;
}
nav ul li:before, nav ol li:before {
  background: none;
  content: normal;
  height: auto;
  width: auto;
}
nav a {
  text-decoration: none;
}

img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

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

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

button,
input {
  line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

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

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
}

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

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

textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
  resize: vertical;
}

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

td {
  vertical-align: top;
}

/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("/site/fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("/site/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("/site/fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("/site/fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("/site/fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("/site/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

/*
# Base styles: opinionated defaults (_base)
*/
html,
button,
input,
select,
textarea {
  color: #003B49;
}

option {
  color: #003B49;
  font-family: Neris-Regular, sans-serif;
}

body.site {
  font-family: Neris-Regular, sans-serif;
  font-size: 0.875em;
  line-height: 1.2;
  word-wrap: break-word;
}

* {
  margin: 0;
}
* + p {
  margin-top: 1em;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

legend {
  max-width: 100%;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/*
	====
	List
	====
*/
ul {
  font-family: Neris-Regular, sans-serif;
  font-size: 1em;
  list-style: none;
  padding-left: 0;
}
ul li {
  margin-left: 24px;
  position: relative;
}
ul li:before {
  background-color: #FBE122;
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
  background-position: 5px center;
  background-size: 6px 9px;
  border-radius: 50%;
  content: '';
  display: inline-block;
  margin-left: -24px;
  position: absolute;
  height: 15px;
  width: 15px;
  vertical-align: middle;
}
.no-svg ul li:before {
  background-image: url(/site/images/icon/brand-1/chevron-right.png);
}
ul li + li {
  margin-top: 1em;
}

/* List */
/*
 * Text Reset
 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: Neris-Bold, sans-serif;
  margin: 0;
}
h1 + *, h2 + *, h3 + *, h4 + *, h5 + *, h6 + *,
.h1 + *, .h2 + *, .h3 + *, .h4 + *, .h5 + *, .h6 + * {
  margin-top: 1em;
}

h1,
.h1 {
  font-family: Neris-Black, sans-serif;
  color: inherit;
  font-size: 3.5714285714em;
}
h1 + *,
.h1 + * {
  margin-top: 25px;
}
h1 + h2,
.h1 + h2 {
  margin-top: 10px;
}

h2,
.h2 {
  color: #00B2A9;
  font-size: 2em;
}

h3,
.h3 {
  color: inherit;
  font-size: 1.4285714286em;
}

h4,
.h4 {
  color: inherit;
  font-size: 1.2857142857em;
}

p + * {
  margin-top: 1em;
}

/*
 * Links
 */
a {
  color: #00B2A9;
}

/* Text Alignment */
.justifyleft {
  text-align: left;
}

.justifyright {
  text-align: right;
}

.justifyfull {
  text-align: justify;
}

.justifycentre {
  text-align: center;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

.hide {
  display: none;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
##  Object styles (_objects)
### Images
*/
img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
.oldie img {
  max-width: none;
}
img.right {
  float: right;
  margin: 0 0 16px 16px;
}
img.left {
  float: left;
  margin: 0 16px 16px 0;
}
img[style*="left"] {
  margin: 0 16px 16px 0;
}
img[style*="right"] {
  margin: 0 0 16px 16px;
}

figure {
  border-bottom: 1px dotted #00B2A9;
  margin-bottom: 10px;
  padding-bottom: 30px;
  position: relative;
}
figure figcaption {
  bottom: 0;
  color: #999;
  font-size: 0.8571428571em;
  font-style: italic;
  left: 0;
  line-height: 1.5;
  padding: 6px 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
figure .fig-img {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fig-left {
    float: left;
    margin-bottom: 1em;
    margin-right: 1em;
  }
}

@media (min-width: 768px) {
  .fig-right {
    float: right;
    margin-bottom: 1em;
    margin-left: 1em;
  }
}

.textbutton {
  background: none;
  border: none;
  font-family: Neris-Bold, sans-serif;
  line-height: 1.4;
  padding: .35em .6em;
  color: #003B49;
  display: block;
  cursor: pointer;
}
.textbutton.with-arrow {
  position: relative;
  padding-right: 1.5625rem;
}
.textbutton.with-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.6em;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  width: 0.390625rem;
  height: 0.625rem;
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button {
  background: #FBE122;
  border: none;
  border-radius: 4px;
  color: #003B49;
  display: inline-block;
  font-family: Neris-Bold, sans-serif;
  font-size: 1.4285714286em;
  line-height: 1.4;
  padding: .35em .6em;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s linear;
  vertical-align: middle;
}
.button:hover {
  background-color: #e6cb04;
}
.button.arrow {
  padding-right: 1.6em;
}
.button.arrow:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
  content: '';
  width: 11px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
}
.no-svg .button.arrow:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.button.white {
  background-color: #FFF;
  color: #00B2A9;
}
.button.white.arrow:after {
  background-image: url(/site/images/icon/brand-2/chevron-right.svg);
}
.no-svg .button.white.arrow:after {
  background-image: url(/site/images/icon/brand-2/chevron-right.png);
}
.button.white:hover {
  background-color: #00B2A9;
  color: #FFF;
}
.button.white:hover.arrow:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .button.white:hover.arrow:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.button.brand-4 {
  background-color: #ECE6EF;
  color: #003B49;
}
.button.brand-4.arrow:after {
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
}
.no-svg .button.brand-4.arrow:after {
  background-image: url(/site/images/icon/brand-1/chevron-right.png);
}
.button.button-loading {
  background-color: grey;
  border: 2px solid grey;
  color: white;
  pointer-events: none;
}
.button.button-loading:hover {
  background-color: grey;
  color: white;
}

.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

.icon-button-basket, .icon-button-search {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  transition: color 0.5s;
  vertical-align: middle;
}
.icon-button-basket:before, .icon-button-search:before, .icon-button-basket:after, .icon-button-search:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.5s;
}
.icon-button-basket:before, .icon-button-search:before {
  opacity: 1;
}
.icon-button-basket:after, .icon-button-search:after {
  opacity: 0;
}
.icon-button-basket:hover, .icon-button-search:hover {
  color: #00B2A9;
}
.icon-button-basket:hover:before, .icon-button-search:hover:before {
  opacity: 0;
}
.icon-button-basket:hover:after, .icon-button-search:hover:after {
  opacity: 1;
}

.icon-button-basket {
  min-width: 23px;
  min-height: 17px;
}
.icon-button-basket:before {
  background-image: url(/site/images/icon/brand-1/basket.svg);
}
.no-svg .icon-button-basket:before {
  background-image: url(/site/images/icon/brand-1/basket.png);
}
.icon-button-basket:after {
  background-image: url(/site/images/icon/brand-2/basket.svg);
}
.no-svg .icon-button-basket:after {
  background-image: url(/site/images/icon/brand-2/basket.png);
}

.icon-button-search {
  min-width: 20px;
  min-height: 20px;
}
.icon-button-search:before {
  background-image: url(/site/images/icon/brand-1/search.svg);
}
.no-svg .icon-button-search:before {
  background-image: url(/site/images/icon/brand-1/search.png);
}
.icon-button-search:after {
  background-image: url(/site/images/icon/brand-2/search.svg);
}
.no-svg .icon-button-search:after {
  background-image: url(/site/images/icon/brand-2/search.png);
}

.video-embed-frame {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.video-embed-frame iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  position: fixed;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  z-index: 100;
  transition: opacity .3s linear;
}
.overlay.overlay__hide {
  display: none;
}

.overlay_block {
  background: #FFF;
  border-radius: 10px;
  padding: 15px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
  max-width: 500px;
  z-index: 101;
}
.overlay_block.overlay__hide {
  left: -200%;
}

.overlay__show {
  opacity: 1;
}

.lnk-overlay {
  cursor: pointer;
  text-decoration: underline;
}

.cookie {
  height: 0;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  background: #003B49;
  transition: height .3s linear;
}
.cookie,
.cookie a {
  color: #FFF;
}
.cookie .inner {
  text-align: center;
  border-bottom: 1px solid #003B49;
}
.cookie .lnk-accept-cookies {
  cursor: pointer;
  margin-left: 10px;
}
.cookie.show {
  height: 32px;
}
.cookie.hide {
  display: none !important;
  visibility: hidden;
}

textarea, [type="text"], [type="password"], [type="datetime"], [type="datetime-local"], [type="date"], [type="month"], [type="time"], [type="week"], [type="number"], [type="email"], [type="url"], [type="search"], [type="tel"], [type="color"], .fake-input {
  background: white;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjliOWI5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: linear-gradient(to bottom, white 70%, #b9b9b9 100%);
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  padding: 12px;
  width: 100%;
}
.lt-ie9 textarea,
.lt-ie9 [type="text"],
.lt-ie9 [type="password"],
.lt-ie9 [type="datetime"],
.lt-ie9 [type="datetime-local"],
.lt-ie9 [type="date"],
.lt-ie9 [type="month"],
.lt-ie9 [type="time"],
.lt-ie9 [type="week"],
.lt-ie9 [type="number"],
.lt-ie9 [type="email"],
.lt-ie9 [type="url"],
.lt-ie9 [type="search"],
.lt-ie9 [type="tel"],
.lt-ie9 [type="color"],
.lt-ie9 .fake-input {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b9b9b9',GradientType=0 );
}

.fake-input {
  width: auto;
}

input[readonly] {
  background-color: #C0C0C1;
}

input:invalid {
  outline: none;
}

input:-moz-ui-invalid {
  background-color: #FEE;
  border-color: #F00;
  box-shadow: none;
}

select {
  width: 100%;
}

.checkbox label,
.radiobutton label {
  margin-left: 3px;
  vertical-align: middle;
}
.checkbox input,
.radiobutton input {
  vertical-align: middle;
}

.form-donation .form-donation_item, .form .form_radio, .form-donate-full .form_radio, .form-event .form_radio, .form-publication .form_radio, .form-login .form_radio, .form-contact .form_radio, .form-newsletter-full .form_radio, .form-checkout .form_radio, .form-order .form_radio, .form-profile .form_radio, .form .form_checkbox, .form-donate-full .form_checkbox, .form-event .form_checkbox, .form-publication .form_checkbox, .form-login .form_checkbox, .form-contact .form_checkbox, .form-newsletter-full .form_checkbox, .form-checkout .form_checkbox, .form-order .form_checkbox, .form-profile .form_checkbox {
  overflow: hidden;
  position: relative;
}
.form-donation .form-donation_item [type=checkbox], .form .form_radio [type=checkbox], .form-donate-full .form_radio [type=checkbox], .form-event .form_radio [type=checkbox], .form-publication .form_radio [type=checkbox], .form-login .form_radio [type=checkbox], .form-contact .form_radio [type=checkbox], .form-newsletter-full .form_radio [type=checkbox], .form-checkout .form_radio [type=checkbox], .form-order .form_radio [type=checkbox], .form-profile .form_radio [type=checkbox], .form .form_checkbox [type=checkbox], .form-donate-full .form_checkbox [type=checkbox], .form-event .form_checkbox [type=checkbox], .form-publication .form_checkbox [type=checkbox], .form-login .form_checkbox [type=checkbox], .form-contact .form_checkbox [type=checkbox], .form-newsletter-full .form_checkbox [type=checkbox], .form-checkout .form_checkbox [type=checkbox], .form-order .form_checkbox [type=checkbox], .form-profile .form_checkbox [type=checkbox],
.form-donation .form-donation_item [type=radio],
.form .form_radio [type=radio],
.form-donate-full .form_radio [type=radio],
.form-event .form_radio [type=radio],
.form-publication .form_radio [type=radio],
.form-login .form_radio [type=radio],
.form-contact .form_radio [type=radio],
.form-newsletter-full .form_radio [type=radio],
.form-checkout .form_radio [type=radio],
.form-order .form_radio [type=radio],
.form-profile .form_radio [type=radio],
.form .form_checkbox [type=radio],
.form-donate-full .form_checkbox [type=radio],
.form-event .form_checkbox [type=radio],
.form-publication .form_checkbox [type=radio],
.form-login .form_checkbox [type=radio],
.form-contact .form_checkbox [type=radio],
.form-newsletter-full .form_checkbox [type=radio],
.form-checkout .form_checkbox [type=radio],
.form-order .form_checkbox [type=radio],
.form-profile .form_checkbox [type=radio] {
  position: absolute;
  left: -9999px;
}
.form-donation .form-donation_item [type=checkbox] + span, .form .form_radio [type=checkbox] + span, .form-donate-full .form_radio [type=checkbox] + span, .form-event .form_radio [type=checkbox] + span, .form-publication .form_radio [type=checkbox] + span, .form-login .form_radio [type=checkbox] + span, .form-contact .form_radio [type=checkbox] + span, .form-newsletter-full .form_radio [type=checkbox] + span, .form-checkout .form_radio [type=checkbox] + span, .form-order .form_radio [type=checkbox] + span, .form-profile .form_radio [type=checkbox] + span, .form .form_checkbox [type=checkbox] + span, .form-donate-full .form_checkbox [type=checkbox] + span, .form-event .form_checkbox [type=checkbox] + span, .form-publication .form_checkbox [type=checkbox] + span, .form-login .form_checkbox [type=checkbox] + span, .form-contact .form_checkbox [type=checkbox] + span, .form-newsletter-full .form_checkbox [type=checkbox] + span, .form-checkout .form_checkbox [type=checkbox] + span, .form-order .form_checkbox [type=checkbox] + span, .form-profile .form_checkbox [type=checkbox] + span,
.form-donation .form-donation_item [type=radio] + span,
.form .form_radio [type=radio] + span,
.form-donate-full .form_radio [type=radio] + span,
.form-event .form_radio [type=radio] + span,
.form-publication .form_radio [type=radio] + span,
.form-login .form_radio [type=radio] + span,
.form-contact .form_radio [type=radio] + span,
.form-newsletter-full .form_radio [type=radio] + span,
.form-checkout .form_radio [type=radio] + span,
.form-order .form_radio [type=radio] + span,
.form-profile .form_radio [type=radio] + span,
.form .form_checkbox [type=radio] + span,
.form-donate-full .form_checkbox [type=radio] + span,
.form-event .form_checkbox [type=radio] + span,
.form-publication .form_checkbox [type=radio] + span,
.form-login .form_checkbox [type=radio] + span,
.form-contact .form_checkbox [type=radio] + span,
.form-newsletter-full .form_checkbox [type=radio] + span,
.form-checkout .form_checkbox [type=radio] + span,
.form-order .form_checkbox [type=radio] + span,
.form-profile .form_checkbox [type=radio] + span {
  background-color: #FFF;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.form-donation .form-donation_item [type=radio] + span, .form .form_radio [type=radio] + span, .form-donate-full .form_radio [type=radio] + span, .form-event .form_radio [type=radio] + span, .form-publication .form_radio [type=radio] + span, .form-login .form_radio [type=radio] + span, .form-contact .form_radio [type=radio] + span, .form-newsletter-full .form_radio [type=radio] + span, .form-checkout .form_radio [type=radio] + span, .form-order .form_radio [type=radio] + span, .form-profile .form_radio [type=radio] + span {
  border: 5px solid #FFF;
  border-radius: 50%;
  color: #FFF;
  width: 16px;
  height: 16px;
  transition: background-color 1s;
}
.form-donation .form-donation_item [type=radio]:checked + span, .form .form_radio [type=radio]:checked + span, .form-donate-full .form_radio [type=radio]:checked + span, .form-event .form_radio [type=radio]:checked + span, .form-publication .form_radio [type=radio]:checked + span, .form-login .form_radio [type=radio]:checked + span, .form-contact .form_radio [type=radio]:checked + span, .form-newsletter-full .form_radio [type=radio]:checked + span, .form-checkout .form_radio [type=radio]:checked + span, .form-order .form_radio [type=radio]:checked + span, .form-profile .form_radio [type=radio]:checked + span {
  background-color: #003B49;
}

.form .form_checkbox [type=checkbox] + span, .form-donate-full .form_checkbox [type=checkbox] + span, .form-event .form_checkbox [type=checkbox] + span, .form-publication .form_checkbox [type=checkbox] + span, .form-login .form_checkbox [type=checkbox] + span, .form-contact .form_checkbox [type=checkbox] + span, .form-newsletter-full .form_checkbox [type=checkbox] + span, .form-checkout .form_checkbox [type=checkbox] + span, .form-order .form_checkbox [type=checkbox] + span, .form-profile .form_checkbox [type=checkbox] + span {
  border: 1px solid #003B49;
  border-radius: 2px;
  color: #FFF;
  width: 17px;
  height: 17px;
  text-align: center;
}
.form .form_checkbox [type=checkbox] + span:before, .form-donate-full .form_checkbox [type=checkbox] + span:before, .form-event .form_checkbox [type=checkbox] + span:before, .form-publication .form_checkbox [type=checkbox] + span:before, .form-login .form_checkbox [type=checkbox] + span:before, .form-contact .form_checkbox [type=checkbox] + span:before, .form-newsletter-full .form_checkbox [type=checkbox] + span:before, .form-checkout .form_checkbox [type=checkbox] + span:before, .form-order .form_checkbox [type=checkbox] + span:before, .form-profile .form_checkbox [type=checkbox] + span:before {
  content: "\f00c";
  transition: color 1s;
}
.form .form_checkbox [type=checkbox]:checked + span:before, .form-donate-full .form_checkbox [type=checkbox]:checked + span:before, .form-event .form_checkbox [type=checkbox]:checked + span:before, .form-publication .form_checkbox [type=checkbox]:checked + span:before, .form-login .form_checkbox [type=checkbox]:checked + span:before, .form-contact .form_checkbox [type=checkbox]:checked + span:before, .form-newsletter-full .form_checkbox [type=checkbox]:checked + span:before, .form-checkout .form_checkbox [type=checkbox]:checked + span:before, .form-order .form_checkbox [type=checkbox]:checked + span:before, .form-profile .form_checkbox [type=checkbox]:checked + span:before {
  color: #003B49;
}

:-moz-placeholder {
  color: #003B49;
  font-family: Neris-Black, sans-serif;
  opacity: 1;
}

::-moz-placeholder {
  color: #003B49;
  font-family: Neris-Black, sans-serif;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #003B49;
  font-family: Neris-Black, sans-serif;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #003B49;
  font-family: Neris-Black, sans-serif;
  opacity: 1;
}

.niceselect-wrapper {
  background: white;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI3MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjliOWI5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: linear-gradient(to bottom, white 70%, #b9b9b9 100%);
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  display: block;
  line-height: 1.1428571429;
  overflow: hidden;
  padding: 12px 24px 12px 12px;
  position: relative;
  z-index: 1;
  /* This is applied when the user tabs to focus or hovers on a nice select element */
  /* Creates the arrow and positions it to the right */
  /* Make sure the line-height matches the height of .niceSelect including padding */
  /* The height must match the overall height of .niceSelect including padding */
}
.lt-ie9 .niceselect-wrapper {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b9b9b9',GradientType=0 );
}
.niceselect-wrapper:after, .niceselect-wrapper:before {
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: '';
  position: absolute;
  right: 12px;
  z-index: 5;
}
.niceselect-wrapper:after {
  border-top: 5px solid #003B49;
  margin-top: 1px;
  top: 50%;
}
.niceselect-wrapper:before {
  border-bottom: 5px solid #003B49;
  bottom: 50%;
  margin-top: -1px;
}
.niceselect-wrapper .niceselect-text {
  display: block;
}
.niceselect-wrapper select {
  border: 1px solid #eee;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
.niceselect-wrapper.niceselect-default {
  color: #003B49;
  font-family: Neris-Black, sans-serif;
}
.niceselect-wrapper.niceselect-disabled {
  background-color: #C0C0C1;
}

.form-item {
  margin-bottom: 10px;
}
.form-item label {
  display: block;
}

.form_buttons {
  margin-bottom: 10px;
  text-align: right;
}

.form-errors {
  background: #FEE;
  border: 1px solid #F00;
  color: #F00;
  padding: 10px;
}
.form-errors :last-child {
  margin-bottom: 0;
}
.form-errors + * {
  margin-top: 30px;
}

.error {
  color: #900;
  margin-top: 5px;
}

.alert-error, .alert-warning, .alert-success {
  border-style: solid;
  border-width: 1px;
  margin-bottom: 10px;
  padding: 10px;
}
.alert-error *, .alert-warning *, .alert-success * {
  margin: 0;
}
.alert-error * + *, .alert-warning * + *, .alert-success * + * {
  margin-top: 10px;
}

.alert-error {
  background-color: #FEE;
  border-color: #F00;
  color: #F00;
}

.alert-warning {
  background-color: #FFE;
  border-color: #C90;
  color: #C90;
}

.alert-success {
  background-color: #EFE;
  border-color: #090;
  color: #090;
}

.pagination {
  clear: both;
  font-size: 1em;
  padding-top: 50px;
  text-align: center;
}
.pagination ul {
  display: inline-block;
}
.pagination li {
  border-top: 1px solid #003B49;
  border-bottom: 1px solid #003B49;
  border-left: 1px solid #003B49;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  transition: background-color 0.5s, color 0.5s;
  width: 40px;
}
.pagination li:first-child {
  border-radius: 8px 0 0 8px;
}
.pagination li:last-child {
  border-right: 1px solid #003B49;
  border-radius: 0 8px 8px 0;
}
.pagination a,
.pagination span {
  background-position: center center;
  color: inherit;
  display: block;
  text-decoration: none;
}
.pagination .disabled {
  background-color: #EBEBEB;
  border-color: #DADADA;
}
.pagination .disabled:first-child, .pagination .disabled:last-child {
  border-color: #DADADA;
}
.pagination li:not(.disabled):hover,
.pagination .active {
  background-color: #003B49;
  color: #FFF;
}

.carousel-wrap {
  overflow: hidden;
  position: relative;
}
.carousel-wrap .carousel {
  position: relative;
}
.carousel-wrap .carousel-item {
  float: left;
}

.hover {
  cursor: pointer;
}

.small {
  font-size: 0.6428571429em;
}

.xsmall {
  font-size: 0.5714285714em;
}

.large {
  font-size: 1.1428571429em;
}

.xlarge {
  font-size: 1.2857142857em;
}

.highlight {
  color: #003B49;
  font-family: Neris-Bold, sans-serif;
  font-size: 1.1428571429em;
}

.colour-white {
  color: #FFF;
}

.colour-brand-3 {
  color: #FBE122;
}

iframe {
  max-width: 100%;
}

.tabs {
  margin-bottom: 24px;
  position: relative;
}

.tabs-links, .tabs-links-uneven {
  font-family: Neris-Black, sans-serif;
  margin-bottom: -1px;
}
@media (min-width: 768px) {
  .tabs-links, .tabs-links-uneven {
    margin-left: -4px;
    margin-right: -4px;
  }
  .tabs-links li, .tabs-links-uneven li {
    float: left;
    padding-left: 4px;
    padding-right: 4px;
    width: 20%;
  }
  .tabs-links li:nth-child(n), .tabs-links-uneven li:nth-child(n) {
    clear: none;
  }
  .tabs-links li:nth-child(5n+1), .tabs-links-uneven li:nth-child(5n+1) {
    clear: left;
  }
}
.tabs-links a, .tabs-links-uneven a {
  background: #003B49;
  border: 1px solid #003B49;
  border-bottom-color: transparent;
  color: #FFF;
  display: block;
  font-size: 1em;
  line-height: 1.5;
  padding: 9px 6px;
  text-align: center;
  text-decoration: none;
  transition: background-color .3s linear, color .3s linear;
}
@media (max-width: 767px) {
  .tabs-links a, .tabs-links-uneven a {
    height: auto !important;
  }
}
.tabs-links a:hover, .tabs-links-uneven a:hover {
  background: #FFF;
  color: #003B49;
}
.tabs-links .active, .tabs-links-uneven .active {
  background: #FFF;
  border-color: #00B2A9;
  border-bottom: none;
  color: #003B49;
  padding-bottom: 10px;
}

.tabs-links-uneven {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .tabs-links-uneven li {
    display: inline-block;
    float: none;
    padding-left: 0;
    padding-right: 0;
    vertical-align: bottom;
    width: auto;
  }
}
.tabs-links-uneven a {
  padding-left: 10px;
  padding-right: 10px;
}

.tabs-pane {
  border: 1px solid #00B2A9;
  left: -10000px;
  position: absolute;
  width: 100%;
}
.tabs-pane.show {
  display: block;
  position: static;
}
.tabs-pane .inner {
  padding: 24px 0;
}

.form .form_checkbox [type=checkbox] + span:before, .form-donate-full .form_checkbox [type=checkbox] + span:before, .form-event .form_checkbox [type=checkbox] + span:before, .form-publication .form_checkbox [type=checkbox] + span:before, .form-login .form_checkbox [type=checkbox] + span:before, .form-contact .form_checkbox [type=checkbox] + span:before, .form-newsletter-full .form_checkbox [type=checkbox] + span:before, .form-checkout .form_checkbox [type=checkbox] + span:before, .form-order .form_checkbox [type=checkbox] + span:before, .form-profile .form_checkbox [type=checkbox] + span:before, .nav-contact a:before, .date:before, .news-listing-block .listing-block_date:before, .form [class*=form_icon]:before, .form-donate-full [class*=form_icon]:before, .form-event [class*=form_icon]:before, .form-publication [class*=form_icon]:before, .form-login [class*=form_icon]:before, .form-contact [class*=form_icon]:before, .form-newsletter-full [class*=form_icon]:before, .form-checkout [class*=form_icon]:before, .form-order [class*=form_icon]:before, .form-profile [class*=form_icon]:before, .form-contact .form-contact_icon-user .form-contact_field:before,
.form-contact .form-contact_icon-addr .form-contact_field:before, .tbl-basket .tbl-basket_remove_button:before, .tbl-basket .basket-qty_controls button:before, .checkout-steps * + :before {
  font-family: 'FontAwesome';
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 768px) {
  .gt-ie9 .tbl-mobile, .gt-ie9 .tbl-mobile table, .gt-ie9 .tbl-mobile tbody, .gt-ie9 .tbl-mobile tr, .gt-ie9 .tbl-mobile td {
    display: block;
  }
  .gt-ie9 .tbl-mobile thead, .gt-ie9 .tbl-mobile th {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tbl-mobile-attr tr {
    border: 1px solid #00B2A9;
    margin-bottom: 20px;
  }
  .tbl-mobile-attr td:before {
    background-color: #00B2A9;
    color: #FFF;
    content: attr(title);
    display: block;
  }
}

.home-boxes .slick-arrow, .home-banner-carousel .slick-arrow, .gallery-carousel .slick-arrow {
  background-color: #003B49;
  background-repeat: no-repeat;
  background-size: 19px 28px;
  border-radius: 50%;
  height: 56px;
  opacity: 1;
  width: 56px;
  margin-top: -28px;
  transition: background-color 0.3s, opacity 0.3s;
}
.home-boxes .slick-arrow:before, .home-banner-carousel .slick-arrow:before, .gallery-carousel .slick-arrow:before {
  content: normal;
}
.home-boxes .slick-disabled.slick-arrow, .home-banner-carousel .slick-disabled.slick-arrow, .gallery-carousel .slick-disabled.slick-arrow {
  opacity: 0.25;
}
.home-boxes .slick-arrow:hover, .home-banner-carousel .slick-arrow:hover, .gallery-carousel .slick-arrow:hover {
  background-color: #FFF;
}
.home-boxes .slick-prev.slick-arrow, .home-banner-carousel .slick-prev.slick-arrow, .gallery-carousel .slick-prev.slick-arrow {
  background-image: url(/site/images/icon/white/chevron-left.svg);
  background-position: 16px center;
  left: -82px;
}
.no-svg .home-boxes .slick-prev.slick-arrow, .home-boxes .no-svg .slick-prev.slick-arrow, .no-svg .home-banner-carousel .slick-prev.slick-arrow, .home-banner-carousel .no-svg .slick-prev.slick-arrow, .no-svg .gallery-carousel .slick-prev.slick-arrow, .gallery-carousel .no-svg .slick-prev.slick-arrow {
  background-image: url(/site/images/icon/white/chevron-left.png);
}
.home-boxes .slick-prev.slick-arrow:hover, .home-banner-carousel .slick-prev.slick-arrow:hover, .gallery-carousel .slick-prev.slick-arrow:hover {
  background-image: url(/site/images/icon/brand-1/chevron-left.svg);
}
.no-svg .home-boxes .slick-prev.slick-arrow:hover, .home-boxes .no-svg .slick-prev.slick-arrow:hover, .no-svg .home-banner-carousel .slick-prev.slick-arrow:hover, .home-banner-carousel .no-svg .slick-prev.slick-arrow:hover, .no-svg .gallery-carousel .slick-prev.slick-arrow:hover, .gallery-carousel .no-svg .slick-prev.slick-arrow:hover {
  background-image: url(/site/images/icon/brand-1/chevron-left.png);
}
.home-boxes .slick-next.slick-arrow, .home-banner-carousel .slick-next.slick-arrow, .gallery-carousel .slick-next.slick-arrow {
  background-image: url(/site/images/icon/white/chevron-right.svg);
  background-position: 20px center;
  right: -82px;
}
.no-svg .home-boxes .slick-next.slick-arrow, .home-boxes .no-svg .slick-next.slick-arrow, .no-svg .home-banner-carousel .slick-next.slick-arrow, .home-banner-carousel .no-svg .slick-next.slick-arrow, .no-svg .gallery-carousel .slick-next.slick-arrow, .gallery-carousel .no-svg .slick-next.slick-arrow {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.home-boxes .slick-next.slick-arrow:hover, .home-banner-carousel .slick-next.slick-arrow:hover, .gallery-carousel .slick-next.slick-arrow:hover {
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
}
.no-svg .home-boxes .slick-next.slick-arrow:hover, .home-boxes .no-svg .slick-next.slick-arrow:hover, .no-svg .home-banner-carousel .slick-next.slick-arrow:hover, .home-banner-carousel .no-svg .slick-next.slick-arrow:hover, .no-svg .gallery-carousel .slick-next.slick-arrow:hover, .gallery-carousel .no-svg .slick-next.slick-arrow:hover {
  background-image: url(/site/images/icon/brand-1/chevron-right.png);
}

/* ShareThis */
.sharethis span {
  box-sizing: content-box;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-loading .slick-list {
  background: #fff url(/site/images/ajax-loader.gif) center center no-repeat;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-track,
.slick-slide,
.slick-slide img {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
.slick-slide img {
  display: block;
}
.slick-slide img.slick-loading {
  background: white url(/site/images/ajax-loader.gif) center center no-repeat;
  padding-bottom: 100%;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/site/fonts/slick.eot");
  src: url("/site/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/site/fonts/slick.woff") format("woff"), url("/site/fonts/slick.ttf") format("truetype"), url("/site/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:focus,
.slick-next:focus {
  outline: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
.slick-prev:before {
  content: '\8592';
}

.slick-next {
  right: -25px;
}
.slick-next:before {
  content: '\8594';
}

/* Dots */
.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0px;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0px 5px;
  padding: 0px;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  outline: none;
}
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '\8226';
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
}

div.jGrowl {
  z-index: 9999;
  color: #fff;
  font-size: 12px;
}

/** Special IE6 Style Positioning **/
div.ie6 {
  position: absolute;
}

div.ie6.top-right {
  right: auto;
  bottom: auto;
  left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

div.ie6.top-left {
  left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

div.ie6.bottom-right {
  left: expression( ( 0 - jGrowl.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

div.ie6.bottom-left {
  left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  top: expression( ( 0 - jGrowl.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

div.ie6.center {
  left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
  width: 100%;
}

/** Normal Style Positions **/
div.jGrowl {
  position: absolute;
}

body > div.jGrowl {
  position: fixed;
}

div.jGrowl.top-left {
  left: 0px;
  top: 0px;
}

div.jGrowl.top-right {
  right: 0px;
  top: 0px;
}

div.jGrowl.bottom-left {
  left: 0px;
  bottom: 0px;
}

div.jGrowl.bottom-right {
  right: 0px;
  bottom: 0px;
}

div.jGrowl.center {
  top: 0px;
  width: 50%;
  left: 25%;
}

/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
  margin-left: auto;
  margin-right: auto;
}

div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
  background-color: #000;
  background-color: #003B49;
  background-image: none;
  border: 1px solid #003B49;
  color: #FFF;
  opacity: .85;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  zoom: 1;
  width: 235px;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 1em;
  text-align: left;
  display: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
div.jGrowl div.jGrowl-notification a, div.jGrowl div.jGrowl-closer a {
  color: #003B49;
}

div.jGrowl div.jGrowl-notification {
  min-height: 40px;
}

div.jGrowl div.jGrowl-notification,
div.jGrowl div.jGrowl-closer {
  margin: 10px;
}

div.jGrowl div.jGrowl-notification div.jGrowl-header {
  font-weight: bold;
  font-size: .85em;
}

div.jGrowl div.jGrowl-notification div.jGrowl-close {
  z-index: 99;
  float: right;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
}

div.jGrowl div.jGrowl-closer {
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  font-size: .9em;
  font-weight: bold;
  text-align: center;
}

/** Hide jGrowl when printing **/
@media print {
  div.jGrowl {
    display: none;
  }
}
.jGrowl-notification {
  background-color: #003B49 !important;
}

.full {
  position: relative;
  width: 100%;
}

.wrap, .header-site {
  margin-left: 5%;
  margin-right: 5%;
  width: 90%;
}
@media (min-width: 1320px) {
  .wrap, .header-site {
    margin: auto;
    width: 1200px;
  }
}

@media (min-width: 768px) {
  .nav-select, .nav-mobile {
    display: none;
  }
}

.display-no-mobile, .nav-main, .nav-top {
  display: none;
}
@media (min-width: 768px) {
  .display-no-mobile, .nav-main, .nav-top {
    display: block;
  }
}

/*
	=======
	Modules
	=======

	Module level CSS should be placed in this file.
	Modules are self-contained sections of markup.
	Modules can exist with other modules.
	Modules can often include objects.

	EXAMPLES::

	"Site Header" would be a module.

	"Top Navigation" may exist within the "Site Header" markup but it is capable of existing as its own module and so should be done separately.
*/
/*
	=========
	No Script
	=========
*/
.site-alert {
  background: #FFF;
  border-bottom: 2px solid #F00;
  display: block;
  font-family: sans-serif;
  font-size: 0.8571428571em;
  left: 0;
  padding: 5px 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 100;
}

/* No Script */
body > img[width="1"] {
  display: block;
  position: absolute;
  left: -1px;
  font-size: 0;
}

/*
	===========
	Site Header
	===========
*/
.header-site {
  padding: 15px 0;
  position: relative;
  z-index: 20;
}

.header_logo {
  display: block;
  margin-bottom: 15px;
  text-align: center;
  float: left;
  max-width: 120px;
}
@media (min-width: 768px) {
  .header_logo {
    float: left;
    max-width: none;
  }
}

.header_strapline {
  color: #003B49;
  font-family: Neris-Regular, sans-serif;
  font-size: 1.4285714286em;
  line-height: 1.1;
  margin-top: 20px;
  display: none;
}
@media (min-width: 700px) {
  .header_strapline {
    display: block;
    font-size: 2.1428571429em;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .header_strapline {
    clear: both;
    margin-top: 20px;
  }
}
@media (min-width: 1000px) {
  .header_strapline {
    clear: none;
    margin-top: -9px;
    float: left;
    margin-left: 30px;
    padding-left: 30px;
    padding-top: 6px;
    border-left: 2px solid #003B49;
  }
}
.header_strapline em {
  font-style: normal;
  text-transform: uppercase;
}

.header_buttons {
  text-align: center;
}
@media (max-width: 767px) {
  .header_buttons {
    display: none;
  }
}
@media (min-width: 700px) {
  .header_buttons {
    float: right;
  }
}
.header_buttons a {
  cursor: pointer;
}
.header_buttons * + * {
  margin-left: 25px;
}
.header_buttons .icon-button-basket {
  text-decoration: none;
  text-indent: 0;
}
.header_buttons .icon-button-basket.full {
  width: auto;
}
.header_buttons .icon-button-basket:before, .header_buttons .icon-button-basket:after {
  right: auto;
  bottom: auto;
  height: 17px;
  width: 23px;
}
.header_buttons .icon-button-search + * {
  margin-left: 15px;
}

.mini-basket_items {
  display: block;
  padding-left: 25px;
}

/* Site Header */
/*
	===========
	Site Footer
	===========
*/
.footer-site {
  background-color: #003B49;
  color: #FFF;
  margin-top: 60px;
  padding: 0 0 25px 0;
}
.footer-site a {
  color: inherit;
}
@media (min-width: 768px) {
  .footer-site .form-newsletter {
    float: left;
    width: 320px;
  }
}

.footer_details {
  margin-top: 1em;
}
.footer_details .padding {
  padding: 10px;
  background-color: #00B2A9;
}
@media (min-width: 768px) {
  .footer_details {
    margin-top: 0;
    padding-bottom: 100px;
    background: transparent url("/site/images/background/ft-right.png") no-repeat right top;
    background-size: 131px 128px;
  }
  .footer_details .padding {
    padding: 10px;
    background-color: #00B2A9;
    margin: 0 105px 0 10px;
  }
  .footer_details:before {
    background-size: 10px 52px;
    content: '';
    position: absolute;
    width: 10px;
    height: 52px;
    background-image: url("/site/images/background/ft-left.png");
  }
}

.footer_copyright {
  clear: both;
  font-family: Neris-Regular, sans-serif;
  font-size: 0.8571428571em;
  color: #00B2A9;
  border-top: 1px solid #00B2A9;
  padding-top: 1em;
}
.footer_copyright img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .footer_copyright img {
    float: right;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 0;
  }
}
.footer_copyright span {
  display: block;
  padding-top: 10px;
  line-height: 16px;
}

/* Site Footer */
/*
	==========
	Navigation
	==========
*/
.nav-main {
  background-color: #003B49;
  border-radius: 6px;
  clear: both;
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
  margin: 20px auto 0;
  max-width: 1200px;
  position: relative;
  text-align: center;
}
@media (min-width: 1000px) {
  .nav-main {
    margin-top: 0;
  }
}
.nav-main > ul {
  display: table;
  width: 100%;
}
@media (min-width: 1024px) {
  .nav-main > ul {
    display: block;
  }
}
.nav-main > ul > li {
  display: table-cell;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .nav-main > ul > li {
    display: inline-block;
  }
}
.nav-main > ul > li:first-child {
  border-radius: 6px 0 0 6px;
}
@media (min-width: 1024px) {
  .nav-main > ul > li:first-child {
    border-radius: 0;
  }
}
.nav-main > ul > li:last-child {
  border-radius: 0 6px 6px 0;
}
@media (min-width: 1024px) {
  .nav-main > ul > li:last-child {
    border-radius: 0;
  }
}
.nav-main > ul > li + li {
  border-left: 1px solid #FFF;
}
.nav-main ul ul {
  background-color: #00B2A9;
  padding-left: 10px;
  min-width: 200px;
  border-radius: 0 0 8px 8px;
  text-align: left;
  top: 100%;
}
@media (min-width: 768px) {
  .nav-main ul ul {
    left: -999em;
    padding-left: 0;
    position: absolute;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .nav-main ul ul {
    width: auto;
  }
}
.nav-main ul ul li {
  padding-right: 50%;
}
@media (min-width: 1024px) {
  .nav-main ul ul li {
    padding-right: 0;
  }
}
.nav-main ul ul li:last-child a {
  border-radius: 0 0 8px 8px;
}
.nav-main ul ul li.touched, .nav-main ul ul li:hover {
  background-color: #003B49;
}
.nav-main ul ul ul {
  background-color: #00B2A9;
  border-radius: 0 8px 8px 0;
}
.nav-main ul ul ul li {
  padding-right: 0;
}
.nav-main ul ul ul li:first-child a {
  border-top-right-radius: 8px;
}
.nav-main ul ul ul li:last-child a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 8px;
}
.nav-main li {
  transition: background-color 0.5s;
}
.nav-main li:hover, .nav-main li.touched {
  background-color: #00B2A9;
}
.nav-main li:hover > ul, .nav-main li.touched > ul {
  left: 0;
}
@media (min-width: 1024px) {
  .nav-main li:hover > ul, .nav-main li.touched > ul {
    left: auto;
  }
}
.nav-main li li:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.nav-main li li:hover,
.nav-main li li.touched {
  position: relative;
}
.nav-main li li:hover > ul,
.nav-main li li.touched > ul {
  left: 50%;
  top: 0;
  width: 50%;
}
@media (min-width: 1024px) {
  .nav-main li li:hover > ul,
  .nav-main li li.touched > ul {
    left: 100%;
    width: auto;
  }
}
.nav-main li .parent > a:after {
  display: inline-block;
  font-size: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .nav-main li .parent > a:after {
    content: '>';
  }
}
@media (min-width: 1024px) {
  .nav-main li .parent > a:after {
    content: normal;
  }
}
.nav-main a {
  background-color: transparent;
  color: #FFF;
  display: block;
  padding: 6px;
  transition: background-color 0.5s;
}
@media (min-width: 1024px) {
  .nav-main a {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.nav-main .active {
  background-color: #00B2A9;
}

.nav-top {
  font-size: 0.9285714286em;
  margin-bottom: 28px;
  text-align: right;
}
@media (min-width: 1024px) {
  .nav-top {
    font-size: 1em;
  }
}
.nav-top ul {
  font-family: Neris-Bold, sans-serif;
}
.nav-top ul li {
  display: inline-block;
}
.nav-top ul li + li {
  margin-left: 8px;
}
@media (min-width: 1024px) {
  .nav-top ul li + li {
    margin-left: 16px;
  }
}
.nav-top ul li li {
  display: none;
}
.nav-top ul a {
  color: #003B49;
  transition: color 0.5s;
}
.nav-top ul a:hover {
  color: #00B2A9;
}

.nav-select select {
  display: block;
  width: 100%;
}

.nav-mobile {
  text-align: right;
}
.nav-mobile ul {
  clear: both;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  transition: height 0.3s linear;
}
.nav-mobile ul ul {
  padding-left: 10px;
}
.nav-mobile ul ul li:last-child {
  border-bottom: none;
}
.nav-mobile ul a {
  display: block;
  padding: 5px;
}
.nav-mobile li {
  background-image: none;
  border-bottom: 1px solid #00B2A9;
  margin: 0;
  padding: 0;
}
.nav-mobile .open > ul, .nav-mobile.open > ul {
  border-top: 1px solid #00B2A9;
  height: auto;
}
.nav-mobile .open > ul + ul, .nav-mobile.open > ul + ul {
  border-top: none;
}
.nav-mobile .nav-mobile-header,
.nav-mobile .button {
  float: right;
}
.nav-mobile .nav-mobile-header {
  background-color: transparent;
  background-image: url(/site/images/navicon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: none;
  color: #FFF;
  text-align: center;
  width: 30px;
  height: 24px;
  margin-left: 20px;
  margin-top: 8px;
}
.nav-mobile .parent {
  position: relative;
}
.nav-mobile .parent:after {
  content: "+";
  line-height: 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 30px;
}
.nav-mobile .parent a {
  margin-right: 30px;
}
.nav-mobile .parent.open:after {
  content: "-";
}

.nav-side ul ul {
  padding-left: 10px;
}
.nav-side a {
  display: block;
  padding: 5px 0;
}

.nav-footer {
  font-size: 1em;
  text-align: right;
}
@media (max-width: 767px) {
  .nav-footer {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .nav-footer li {
    display: inline-block;
  }
}
.nav-footer li li {
  display: none;
}
.nav-footer a {
  display: block;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .nav-footer a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.nav-footer a:hover {
  color: #ECE6EF;
}

.nav-terms {
  font-family: Neris-Black, sans-serif;
  font-size: 1em;
  text-align: right;
}
@media (max-width: 767px) {
  .nav-terms {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .nav-terms li {
    display: inline-block;
  }
}
.nav-terms li li {
  display: none;
}
.nav-terms a {
  display: block;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .nav-terms a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.nav-terms a:hover {
  color: #ECE6EF;
}

.nav-contact {
  text-align: center;
}
@media (min-width: 768px) {
  .nav-contact {
    float: left;
  }
}
.nav-contact a {
  background-color: #fff;
  border-radius: 50%;
  color: #003B49;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  overflow: hidden;
  text-align: center;
  transition: background-color 1s, color 1s;
  vertical-align: top;
}
@media (min-width: 768px) {
  .nav-contact a {
    height: 28px;
    width: 28px;
    line-height: 28px;
  }
}
.nav-contact a:hover {
  background-color: #003B49;
  color: #FFF;
}
.nav-contact a:before {
  font-size: 30px;
  position: relative;
}
.nav-contact .nav-contact_tel:before {
  content: '\f095';
  font-size: 18px;
}
@media (min-width: 768px) {
  .nav-contact .nav-contact_tel:before {
    line-height: 28px;
  }
}
.nav-contact .nav-contact_email:before {
  content: '\f0e0';
  font-size: 16px;
}
.nav-contact .nav-contact_twitter:before {
  content: '\f099';
  font-size: 18px;
}
.nav-contact .nav-contact_linkedin:before {
  content: '\f0e1';
  font-size: 18px;
}
.nav-contact .nav-contact_facebook:before {
  content: '\f09a';
  font-size: 18px;
}
.nav-contact .nav-contact_instagram:before {
  content: '\f16d';
  font-size: 18px;
}

.nav-blocks {
  margin-left: -15px;
  margin-right: -15px;
}
.nav-blocks a {
  background-color: #ECE6EF;
  border-radius: 8px;
  color: #003B49;
  display: block;
  padding: 24px 24px 80px;
  position: relative;
  transition: background-color 1s, color 1s;
}
.nav-blocks a:hover {
  background-color: #003B49;
  color: #FFF;
}
.nav-blocks a:hover:after {
  background-color: #fff;
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
}
.no-svg .nav-blocks a:hover:after {
  background-image: url(/site/images/icon/brand-1/chevron-right.png);
}
.nav-blocks a:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
  background-position: 11px 7px;
  background-size: 10px 15px;
  border-radius: 50%;
  content: '';
  position: absolute;
  transition: background-color 1s;
  height: 30px;
  width: 30px;
  bottom: 25px;
  left: 50%;
  margin-left: -15px;
}
.no-svg .nav-blocks a:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.nav-blocks .nav-blocks_item {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
@media (min-width: 640px) {
  .nav-blocks .nav-blocks_item {
    float: left;
    width: 50%;
  }
}
@media (min-width: 850px) {
  .nav-blocks .nav-blocks_item {
    width: 25%;
  }
}
.nav-blocks .nav-blocks_item ~ * {
  margin-top: 30px;
}
@media (min-width: 640px) {
  .nav-blocks .nav-blocks_item ~ * {
    margin-top: 0;
  }
}
.nav-blocks .nav-blocks_item:nth-child(2) ~ * {
  margin-top: 30px;
}
@media (min-width: 850px) {
  .nav-blocks .nav-blocks_item:nth-child(2) ~ * {
    margin-top: 0;
  }
}
.nav-blocks .nav-blocks_item:nth-child(4) ~ * {
  text-align: left;
}
@media (min-width: 850px) {
  .nav-blocks .nav-blocks_item:nth-child(4) ~ * {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .nav-blocks .nav-blocks_item:nth-child(4) ~ * a {
    padding-bottom: 24px;
    padding-right: 80px;
  }
  .nav-blocks .nav-blocks_item:nth-child(4) ~ * a:after {
    bottom: auto;
    top: 50%;
    margin-top: -14px;
    left: auto;
    right: 25px;
  }
}
.nav-blocks .nav-blocks_item:nth-child(4) ~ * .nav-blocks_intro {
  display: none;
}
.nav-blocks .nav-blocks_item:nth-child(4n+1) {
  clear: left;
}
.nav-blocks .nav-blocks_title {
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.nav-blocks .nav-blocks_intro {
  margin-top: 12px;
}
.nav-blocks .nav-blocks_image {
  background-position: center center;
  background-size: cover;
  border-radius: 8px 8px 0 0;
  padding-bottom: 78.5714%;
}
.nav-blocks.nav-blocks-landing .nav-blocks_item a {
  padding: 0;
}
.nav-blocks.nav-blocks-landing .nav-blocks_item a:after {
  background-position: 8px center;
  bottom: 14px;
  background-size: 7px 11px;
  left: auto;
  margin: 0;
  right: 18px;
  top: auto;
  height: 21px;
  width: 21px;
}
.nav-blocks.nav-blocks-landing .nav-blocks_title {
  text-align: left;
  padding: 12px 56px 12px 16px;
}
.nav-blocks.nav-blocks-landing .nav-blocks_intro {
  display: none;
}

.nav-profile {
  background-color: #ECE6EF;
  border-radius: 10px;
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
@media (min-width: 768px) {
  .nav-profile li {
    display: inline-block;
  }
}
.nav-profile li + li {
  border-top: 1px solid #003B49;
}
@media (min-width: 768px) {
  .nav-profile li + li {
    border-left: 1px solid #003B49;
    border-top: none;
  }
}
.nav-profile li:first-child a {
  border-radius: 10px 0 0 10px;
}
.nav-profile a {
  display: block;
  padding: 10px;
}
.nav-profile .active a {
  background-color: #003B49;
  color: #FFF;
}

/* Navigation */
/*
	===========
	Breadcrumbs
	===========
*/
.breadcrumbs {
  color: #776e7a;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
}
.breadcrumb li:before {
  display: none;
}

/* Breadcrumbs */
/*
	==========
	Home Boxes
	==========
*/
.home-boxes {
  font-family: Neris-Regular, sans-serif;
  margin-bottom: 0;
}
.home-boxes a {
  color: inherit;
  text-decoration: none;
}
.home-boxes p {
  font-size: 1em;
}
.home-boxes h2 {
  color: #003B49;
}
.home-boxes .slide {
  overflow: hidden;
}
.home-boxes .slide:focus, .home-boxes .slide:active {
  outline: none;
}
.home-boxes .slide + .slide {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-boxes .slide + .slide {
    margin-top: 0;
  }
}
.home-boxes .col-wrap {
  margin-left: -15px;
  margin-right: -15px;
}
.home-boxes .col {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .home-boxes .col {
    float: left;
  }
}
@media (min-width: 768px) {
  .home-boxes .col:nth-child(1) {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .home-boxes .col:nth-child(1) {
    width: 21.3333%;
  }
}
.home-boxes .col:nth-child(2) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-boxes .col:nth-child(2) {
    margin-top: 0;
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .home-boxes .col:nth-child(2) {
    width: 36%;
  }
}
.home-boxes .col:nth-child(3) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-boxes .col:nth-child(3) {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .home-boxes .col:nth-child(3) {
    margin-top: 0;
    width: 42.6667%;
  }
}
.home-boxes .inner {
  background: #EEF;
}
.home-boxes .home-boxes_text-box {
  border-radius: 8px;
  color: #FFF;
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .home-boxes .home-boxes_text-box {
    height: 314px;
  }
}
.home-boxes .home-boxes_text-box + * {
  margin-top: 30px;
}
.home-boxes .home-boxes_text-box:nth-child(1) {
  background-color: #ECE6EF;
  color: #003B49;
}
.home-boxes .home-boxes_text-box:nth-child(1) .home-boxes_text:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .home-boxes .home-boxes_text-box:nth-child(1) .home-boxes_text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.home-boxes .home-boxes_text-box:nth-child(2) {
  background-color: #003B49;
}
.home-boxes .home-boxes_text-box:nth-child(2) .home-boxes_text h2 {
  color: #00B2A9;
}
.home-boxes .home-boxes_text-box:nth-child(2) .home-boxes_text:after {
  background-color: #00B2A9;
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .home-boxes .home-boxes_text-box:nth-child(2) .home-boxes_text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.home-boxes .home-boxes_text-box .home-boxes_text {
  height: 100%;
  padding-bottom: 80px;
}
.home-boxes .home-boxes_text-box .home-boxes_text:after {
  background-color: #003B49;
  right: 20px;
  margin-left: -15px;
  bottom: 20px;
}
.home-boxes .home-boxes_text-box .home-boxes_text_inner {
  height: 100%;
}
@media (max-width: 1024px) {
  .home-boxes .home-boxes_text-box .home-boxes_text_inner {
    overflow: hidden;
  }
}
.home-boxes .home-boxes_image-box {
  background-color: #ECE6EF;
  border-radius: 8px;
  display: block;
  position: relative;
  transition: background-color 0.5s, color 0.5s;
}
@media (min-width: 768px) {
  .home-boxes .home-boxes_image-box {
    min-height: 200px;
  }
}
@media (min-width: 1024px) {
  .home-boxes .home-boxes_image-box {
    height: 314px;
  }
}
.home-boxes .home-boxes_image-box + * {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .home-boxes .home-boxes_image-box.tall {
    height: 658px;
  }
}
@media (min-width: 1024px) {
  .home-boxes .home-boxes_image-box.tall .home-boxes_text {
    min-height: 172px;
  }
}
.home-boxes .home-boxes_image-box.tall .home-boxes_image {
  height: 486px;
}
.home-boxes .home-boxes_image-box .home-boxes_text {
  background-color: #ECE6EF;
  border-radius: 0 0 8px 8px;
  padding-right: 80px;
  width: 100%;
  left: 0;
  bottom: 0;
  transition: background-color 0.5s, color 0.5s;
}
@media (min-width: 768px) {
  .home-boxes .home-boxes_image-box .home-boxes_text {
    position: absolute;
  }
}
.home-boxes .home-boxes_image-box .home-boxes_text:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
  right: 20px;
  top: 50%;
  margin-top: -15px;
}
.no-svg .home-boxes .home-boxes_image-box .home-boxes_text:after {
  background-image: url(/site/images/white/brand-4/chevron-right.png);
}
.home-boxes .home-boxes_image-box .home-boxes_image {
  background-position: center center;
  background-size: cover;
  border-radius: 8px 8px 0 0;
  height: 228px;
  display: none;
}
@media (min-width: 1024px) {
  .home-boxes .home-boxes_image-box .home-boxes_image {
    display: block;
  }
}
.home-boxes .col:nth-child(3) .home-boxes_image-box:nth-child(1) .home-boxes_text {
  background-color: #00B2A9;
  color: #fff;
}
.home-boxes .col:nth-child(3) .home-boxes_image-box:nth-child(1) .home-boxes_text h2 {
  color: #003B49;
}
.home-boxes .home-boxes_text {
  padding: 20px;
}
.home-boxes .home-boxes_text:after {
  background-position: 11px 8px;
  background-size: 10px 15px;
  border-radius: 50%;
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
}

/* Home Boxes */
/*
	========
	Articles
	========
*/
@media (min-width: 768px) {
  .post .image {
    float: left;
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .post .image + .text {
    margin-left: 200px;
  }
}

/* Articles */
/*
	======
	Banner
	======
*/
.banner {
  position: relative;
  text-align: center;
}
.banner + * {
  margin-top: 72px;
}
.banner .banner_title,
.banner .banner_subtitle {
  background-color: #FFF;
  border-radius: 8px;
  color: #003B49;
  display: inline-block;
  font-family: Neris-Black, sans-serif;
  padding-left: .3em;
  padding-right: .3em;
}
.banner .banner_image {
  overflow: hidden;
  position: relative;
}
.banner .banner_image img {
  border-radius: 8px;
}
.banner .banner_text {
  bottom: -22px;
  left: 0;
  width: 100%;
  margin-top: 15px;
}
@media (min-width: 700px) {
  .banner .banner_text {
    margin-top: 0;
    position: absolute;
  }
}
.banner .banner_title {
  font-size: 10vw;
}
@media (min-width: 700px) {
  .banner .banner_title {
    font-size: 5em;
  }
}
.banner .banner_subtitle {
  font-size: 5vw;
  margin-top: 3px;
}
@media (min-width: 600px) {
  .banner .banner_subtitle {
    font-size: 2.1428571429em;
  }
}
.banner .button {
  margin-top: 12px;
}

.home-banner .wrap, .home-banner .header-site {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1200px) {
  .home-banner .wrap, .home-banner .header-site {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }
}
@media (min-width: 1320px) {
  .home-banner .wrap, .home-banner .header-site {
    margin: auto;
    width: 1200px;
  }
}

.home-banner-carousel .slick-dots {
  margin: 0;
  bottom: -32px;
}
.home-banner-carousel .slick-dots li::before {
  content: none;
}
.home-banner-carousel .slick-dots li button::before {
  font-size: 10px;
}
@media (min-width: 700px) {
  .home-banner-carousel .banner {
    margin-bottom: 22px;
  }
}

/* Banner */
/*
	========
	Donation
	========
*/
.donation {
  overflow: hidden;
}
.donation ul {
  background-color: #003B49;
  border-radius: 7px 0 0 7px;
}
@media (min-width: 1024px) {
  .donation ul {
    border-radius: 7px;
    float: left;
    width: 200px;
  }
}
.donation ul li {
  background-color: #fff;
  width: 50%;
  display: inline-block;
}
@media (min-width: 1024px) {
  .donation ul li {
    border-radius: 0 6px 6px 0;
    display: block;
    width: auto;
  }
}
.donation ul a {
  padding: 5px;
  border-radius: 6px 6px 0 0;
  display: block;
  text-decoration: none;
}
@media (min-width: 768px) {
  .donation ul a {
    padding: 8px;
  }
}
@media (min-width: 1024px) {
  .donation ul a {
    border-radius: 6px 0 0 6px;
    padding-left: 0;
  }
}
.donation ul a:active, .donation ul a:focus {
  outline-style: none;
  -moz-outline-style: none;
}
.donation ul span {
  background-color: #00B2A9;
  color: #fff;
  border-radius: 4px;
  display: block;
  padding-left: 12px;
}
.donation ul span:hover {
  background-color: #007f79;
}
.donation ul span.button {
  font-size: 1.6428571429em;
}
@media (max-width: 767px) {
  .donation ul .button {
    font-size: 1em;
  }
}
.donation ul .active {
  background-color: #003B49;
}
.donation ul .active .button {
  background-color: #003B49;
}
.donation ul .active .arrow:after {
  content: normal;
}

.form-donation {
  border: none;
  color: #FFF;
}
@media (min-width: 1024px) {
  .form-donation {
    margin-left: 200px;
    width: auto;
  }
}
.form-donation label,
.form-donation input {
  display: inline-block;
  vertical-align: middle;
}
.form-donation label {
  font-family: Neris-Black, sans-serif;
  white-space: nowrap;
  font-size: 2.1428571429em;
}
.form-donation label [type=text] {
  font-size: 0.4666666667em;
}
@media (min-width: 1300px) {
  .form-donation label {
    white-space: normal;
  }
}
.form-donation button:hover {
  background-color: #00B2A9;
}
.form-donation [type=text],
.form-donation [type=number] {
  width: 100px;
}
@media (min-width: 768px) {
  .form-donation [type=text],
  .form-donation [type=number] {
    width: 120px;
  }
}
.form-donation .form-donation_intro,
.form-donation .form-donation_button,
.form-donation .form-donation_item {
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .form-donation .form-donation_intro,
  .form-donation .form-donation_button,
  .form-donation .form-donation_item {
    display: table-cell;
  }
}
.form-donation .form-donation_layout {
  width: 100%;
}
@media (min-width: 1024px) {
  .form-donation .form-donation_layout {
    display: table;
    height: 126px;
  }
}
.form-donation .form-donation_intro {
  background-color: #003B49;
  font-family: Neris-Regular, sans-serif;
  font-size: 1em;
  padding: 20px;
}
@media (min-width: 1024px) {
  .form-donation .form-donation_intro {
    width: 242px;
  }
}
.form-donation .form-donation_item {
  background-color: #00B2A9;
  padding: 8px 16px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  width: 50%;
}
@media (min-width: 1024px) {
  .form-donation .form-donation_item {
    border-right: 2px solid #fff;
    display: table-cell;
    padding-bottom: 0;
    padding-top: 0;
    width: auto;
  }
}
.form-donation .form-donation_item label {
  line-height: 45px;
}
.form-donation .form-donation_item:nth-child(2) {
  border-left: 2px solid #fff;
}
.form-donation .form-donation_item:nth-child(4) {
  display: block;
  width: 100%;
}
@media (min-width: 1024px) {
  .form-donation .form-donation_item:nth-child(4) {
    display: table-cell;
    width: 220px;
  }
}
.form-donation .form-donation_button {
  background-color: #FBE122;
  text-align: center;
}
@media (min-width: 1024px) {
  .form-donation .form-donation_button {
    border-radius: 0 6px 6px 0;
    width: 250px;
  }
}
.form-donation .form-donation_button .button {
  font-size: 1.8571428571em;
}
.form-donation .form-donation_button .button:hover {
  background-color: #FBE122;
}

@media (max-width: 1023px) {
  #tab-friend .form-donation_item {
    display: block;
    width: 100%;
  }
}

.donation-block_alt .button {
  font-size: 1rem;
  line-height: 1.9375rem;
}

/* Donation */
/*
	==============
	Content Blocks
	==============
*/
.content-block + .content-block {
  margin-top: 30px;
}

.content-layout.padding, .content-layout.bg-grey, .content-layout.bg-brand-1, .content-layout.bg-brand-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.content-layout.padding + .padding, .content-layout.bg-grey + .padding, .content-layout.bg-brand-1 + .padding, .content-layout.bg-brand-2 + .padding {
  margin-top: 0;
}
.content-layout + * {
  margin-top: 5vw;
}
@media (min-width: 1200px) {
  .content-layout + * {
    margin-top: 60px;
  }
}
.content-layout + .content-layout-products {
  margin-top: 30px;
}

.content-layout_breadcrumbs + * {
  margin-top: 40px;
}

.three-columns, .two-columns, .two-columns_60-40, .two-columns_40-60 {
  margin-left: -14px;
  margin-right: -14px;
  overflow: hidden;
}
.three-columns .col, .two-columns .col, .two-columns_60-40 .col, .two-columns_40-60 .col {
  padding-left: 14px;
  padding-right: 14px;
}

/*
background
None=bg-transparent
Grey=bg-grey
Purple=bg-brand-1
Green=bg-brand-2
*/
.bg-grey {
  background-color: #F8F8F8;
}

.bg-brand-1 {
  background-color: #DAD0DF;
}

.bg-brand-2 {
  background-color: #DFF3DF;
}

@media (min-width: 660px) {
  .three-columns .col {
    float: left;
    width: 33.3333%;
  }
}

@media (min-width: 660px) {
  .two-columns .col {
    float: left;
    width: 50%;
  }
}
.two-columns .col:last-child .image-block {
  text-align: right;
}
.two-columns .col + .col {
  margin-top: 10px;
}
@media (min-width: 660px) {
  .two-columns .col + .col {
    margin-top: 0;
  }
}

@media (min-width: 600px) {
  .two-columns_60-40 .col {
    float: left;
  }
  .two-columns_60-40 .col:first-child {
    width: 60%;
  }
  .two-columns_60-40 .col:last-child {
    width: 40%;
  }
}
.two-columns_60-40 .col + .col {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .two-columns_60-40 .col + .col {
    margin-top: 0;
  }
}
.two-columns_60-40 .col:last-child .image-block {
  text-align: right;
}

@media (min-width: 600px) {
  .two-columns_40-60 .col {
    float: left;
  }
  .two-columns_40-60 .col:first-child {
    width: 40%;
  }
  .two-columns_40-60 .col:last-child {
    width: 60%;
  }
}
.two-columns_40-60 .col + .col {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .two-columns_40-60 .col + .col {
    margin-top: 0;
  }
}
.two-columns_40-60 .col:last-child .image-block {
  text-align: right;
}

.gallery-carousel {
  margin: 0 -15px;
}
.gallery-carousel img {
  border-radius: 12px;
}
.gallery-carousel .slide {
  padding-left: 15px;
  padding-right: 15px;
}
.gallery-carousel .slide:focus {
  outline: none;
}

.quote-block {
  background-color: #00B2A9;
  background-image: url(/site/images/background/quote.png);
  background-position: -40px -100px;
  color: #FFF;
  font-family: Neris-Black, sans-serif;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.quote-block blockquote {
  font-size: 2em;
  margin: 0 auto;
  max-width: 850px;
}
.quote-block blockquote:before, .quote-block blockquote:after {
  background-image: url(/site/images/icon/white/quotes.png);
  content: '';
  display: inline-block;
  position: relative;
  height: 25px;
  width: 34px;
}
.quote-block blockquote:before {
  margin-left: -26px;
  top: -10px;
}
.quote-block blockquote:after {
  background-position: right 0;
  bottom: -10px;
  margin-right: -26px;
}

.image-form {
  position: relative;
}
@media (min-width: 768px) {
  .image-form {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.image-form .wrap, .image-form .header-site {
  position: relative;
  z-index: 20;
}
.image-form .image-form_image {
  background-position: center center;
  background-size: cover;
  display: none;
  position: absolute;
  top: 0;
  right: 40%;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .image-form .image-form_image {
    display: block;
  }
}
.image-form .form-contact {
  border: 8px solid #FFF;
}
@media (min-width: 768px) {
  .image-form .col {
    margin-left: 50%;
  }
}

.image-block img {
  border-radius: 12px;
}

.listing-block, .news-listing-block {
  font-family: Neris-Regular, sans-serif;
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.listing-block .listing-block_item, .news-listing-block .listing-block_item {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 600px) {
  .listing-block .listing-block_item, .news-listing-block .listing-block_item {
    float: left;
    width: 50%;
  }
}
@media (min-width: 900px) {
  .listing-block .listing-block_item, .news-listing-block .listing-block_item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .listing-block .listing-block_item, .news-listing-block .listing-block_item {
    width: 25%;
  }
}
.listing-block .listing-block_item ~ *, .news-listing-block .listing-block_item ~ * {
  margin-top: 26px;
}
@media (min-width: 600px) {
  .listing-block .listing-block_item ~ *, .news-listing-block .listing-block_item ~ * {
    margin-top: 0;
  }
}
@media (min-width: 600px) {
  .listing-block .listing-block_item:nth-child(2n+1), .news-listing-block .listing-block_item:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 900px) {
  .listing-block .listing-block_item:nth-child(2n+1), .news-listing-block .listing-block_item:nth-child(2n+1) {
    clear: none;
  }
}
@media (min-width: 900px) {
  .listing-block .listing-block_item:nth-child(3n+1), .news-listing-block .listing-block_item:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 1200px) {
  .listing-block .listing-block_item:nth-child(3n+1), .news-listing-block .listing-block_item:nth-child(3n+1) {
    clear: none;
  }
}
@media (min-width: 1200px) {
  .listing-block .listing-block_item:nth-child(4n+1), .news-listing-block .listing-block_item:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 600px) {
  .listing-block .listing-block_item:nth-child(2) ~ *, .news-listing-block .listing-block_item:nth-child(2) ~ * {
    margin-top: 52px;
  }
}
@media (min-width: 900px) {
  .listing-block .listing-block_item:nth-child(2) ~ *, .news-listing-block .listing-block_item:nth-child(2) ~ * {
    margin-top: 0;
  }
}
@media (min-width: 900px) {
  .listing-block .listing-block_item:nth-child(3) ~ *, .news-listing-block .listing-block_item:nth-child(3) ~ * {
    margin-top: 52px;
  }
}
@media (min-width: 1200px) {
  .listing-block .listing-block_item:nth-child(3) ~ *, .news-listing-block .listing-block_item:nth-child(3) ~ * {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .listing-block .listing-block_item:nth-child(4) ~ *, .news-listing-block .listing-block_item:nth-child(4) ~ * {
    margin-top: 52px;
  }
}
.listing-block .listing-block_item-inner, .news-listing-block .listing-block_item-inner {
  background-color: #ECE6EF;
  border-radius: 8px;
  color: #003B49;
  display: block;
  text-decoration: none;
  transition: background-color 1s, color 1s;
}
.listing-block .listing-block_item-inner:hover, .news-listing-block .listing-block_item-inner:hover {
  background-color: #003B49;
  color: #FFF;
}
.listing-block .listing-block_item-inner:hover .listing-block_item-text:after, .news-listing-block .listing-block_item-inner:hover .listing-block_item-text:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .listing-block .listing-block_item-inner:hover .listing-block_item-text:after, .no-svg .news-listing-block .listing-block_item-inner:hover .listing-block_item-text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.listing-block .listing-block_item-image, .news-listing-block .listing-block_item-image {
  background-position: center center;
  background-size: cover;
  border-radius: 8px;
  height: 220px;
}
.listing-block .listing-block_item-text, .news-listing-block .listing-block_item-text {
  padding: 9px 14px;
  position: relative;
}

.listing-block {
  font-size: 1.2857142857em;
}
.listing-block .listing-block_item-text {
  padding-right: 40px;
}
.listing-block .listing-block_item-text:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
  background-position: 7px 4px;
  background-size: 7px 11px;
  border-radius: 50%;
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  transition: background-color 1s;
}
.no-svg .listing-block .listing-block_item-text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}

.date {
  font-family: Neris-Regular, sans-serif;
}
.date:before {
  content: '\f073';
  padding-right: 5px;
}

.news-listing-block > h2 {
  margin-left: 15px;
  margin-right: 15px;
}
.news-listing-block .listing-block_date {
  font-family: Neris-Regular, sans-serif;
}
.news-listing-block .listing-block_date:before {
  content: '\f073';
}
.news-listing-block .listing-block_item h2 {
  color: inherit;
  font-size: 1.2857142857em;
}
.news-listing-block .listing-block_item-text {
  padding-bottom: 60px;
}
.news-listing-block .listing-block_item-text:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
  background-position: 11px 7px;
  background-size: 10px 15px;
  border-radius: 50%;
  content: '';
  position: absolute;
  transition: background-color 1s;
  width: 30px;
  height: 30px;
  left: 50%;
  margin-left: -15px;
  bottom: 16px;
}
.no-svg .news-listing-block .listing-block_item-text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
@media (min-width: 1200px) {
  .news-listing-block.featured .listing-block_item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .news-listing-block.featured .listing-block_item:nth-child(4n+1) {
    clear: none;
  }
}
@media (min-width: 1200px) {
  .news-listing-block.featured .listing-block_item:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 600px) {
  .news-listing-block.featured .listing-block_item:last-child {
    float: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
  }
}
@media (min-width: 900px) {
  .news-listing-block.featured .listing-block_item:last-child {
    float: left;
    padding-top: 0;
  }
}
.news-listing-block.featured .listing-block_item:hover .listing-block_item-inner {
  background-color: #003B49;
}
.news-listing-block.featured .listing-block_item-inner {
  background-color: #00B2A9;
  color: #FFF;
}
.news-listing-block.featured .listing-block_item-text {
  padding-bottom: 14px;
  padding-right: 52px;
}
.news-listing-block.featured .listing-block_item-text h2 {
  color: #003B49;
}
.news-listing-block.featured .listing-block_item-text:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
  left: auto;
  right: 10px;
  top: 50%;
  margin-left: 0;
  margin-top: -15px;
}
.no-svg .news-listing-block.featured .listing-block_item-text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.news-listing-block.featured .listing-block_item-text:hover h2 {
  color: #fff;
}
.news-listing-block.featured + .news-listing-block {
  margin-top: 60px;
}

.accordion_block + * {
  border-top: 1px solid #CCC;
  margin-top: 0.5em;
  padding-top: 0.5em;
}

.accordion_block__opened .accordion_body {
  height: auto;
}

.accordion_title {
  cursor: pointer;
}

.accordion_body {
  height: 0;
  overflow: hidden;
  position: relative;
  transition: height 0.3s;
}

.just-giving-meter {
  -ms-flex-align: center;
      align-items: center;
  background-color: #FBE122;
  background-image: url(/site/images/1x1.png);
  background-position: 0 100%;
  background-size: 100% 0;
  border: 2px solid #003B49;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 1s;
}
.just-giving-meter:before {
  color: #FFF;
  content: attr(data-amount);
}

.just-giving-totaliser {
  border: 1px solid #003B49;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

.just-giving-totaliser_meter {
  box-shadow: 0 0 2px #FBE122;
  width: 150px;
  height: 150px;
  line-height: 146px;
  margin: 0 auto 10px;
}
.just-giving-totaliser_meter:before {
  font-size: 48px;
}

.just-giving-totaliser_amount {
  font-size: 48px;
}

.just-giving-totaliser_target {
  margin-top: 10px;
}

.just-giving-leaderboard {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 20px;
}
.just-giving-leaderboard ol {
  margin-top: 1em;
}
.just-giving-leaderboard ol li {
  -ms-flex-align: start;
      align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.just-giving-leaderboard ol li + li {
  border-top: 1px solid #000;
  margin-top: 10px;
  padding-top: 10px;
}
.just-giving-leaderboard img {
  border-radius: 50%;
  -ms-flex: 0 0 65px;
      flex: 0 0 65px;
  width: 65px;
}
.just-giving-leaderboard h3 {
  margin: 0;
}
.just-giving-leaderboard p {
  margin: 0;
}
.just-giving-leaderboard .just-giving-meter {
  display: none;
  -ms-flex: 0 0 70px;
      flex: 0 0 70px;
  width: 70px;
  height: 70px;
}
@media (min-width: 870px) {
  .just-giving-leaderboard .just-giving-meter {
    display: -ms-flexbox;
    display: flex;
  }
}
.just-giving-leaderboard .just-giving-leaderboard_details {
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.just-giving-leaderboard .just-giving-leaderboard_amount {
  color: #FBE122;
  font-size: 18px;
}

@media (max-width: 659px) {
  .just-giving-thanks .col + .col {
    margin-top: 28px;
  }
}
.just-giving-thanks .just-giving-thanks_box {
  border: 1px solid #003B49;
  border-radius: 10px;
  padding: 15px;
}

/* Content Blocks */
/*
	=====
	Forms
	=====
*/
.form, .form-donate-full, .form-event, .form-publication, .form-login, .form-contact, .form-newsletter-full, .form-checkout, .form-order, .form-profile {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.form fieldset, .form-donate-full fieldset, .form-event fieldset, .form-publication fieldset, .form-login fieldset, .form-contact fieldset, .form-newsletter-full fieldset, .form-checkout fieldset, .form-order fieldset, .form-profile fieldset {
  max-width: 100%;
}
.form fieldset + *, .form-donate-full fieldset + *, .form-event fieldset + *, .form-publication fieldset + *, .form-login fieldset + *, .form-contact fieldset + *, .form-newsletter-full fieldset + *, .form-checkout fieldset + *, .form-order fieldset + *, .form-profile fieldset + * {
  margin-top: 30px;
}
.form legend, .form-donate-full legend, .form-event legend, .form-publication legend, .form-login legend, .form-contact legend, .form-newsletter-full legend, .form-checkout legend, .form-order legend, .form-profile legend {
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.form legend + *, .form-donate-full legend + *, .form-event legend + *, .form-publication legend + *, .form-login legend + *, .form-contact legend + *, .form-newsletter-full legend + *, .form-checkout legend + *, .form-order legend + *, .form-profile legend + * {
  margin-top: 15px;
}
.form label.error, .form-donate-full label.error, .form-event label.error, .form-publication label.error, .form-login label.error, .form-contact label.error, .form-newsletter-full label.error, .form-checkout label.error, .form-order label.error, .form-profile label.error {
  display: block;
}
.form label.error + .error, .form-donate-full label.error + .error, .form-event label.error + .error, .form-publication label.error + .error, .form-login label.error + .error, .form-contact label.error + .error, .form-newsletter-full label.error + .error, .form-checkout label.error + .error, .form-order label.error + .error, .form-profile label.error + .error {
  display: none;
}
.form label.error + label.error, .form-donate-full label.error + label.error, .form-event label.error + label.error, .form-publication label.error + label.error, .form-login label.error + label.error, .form-contact label.error + label.error, .form-newsletter-full label.error + label.error, .form-checkout label.error + label.error, .form-order label.error + label.error, .form-profile label.error + label.error {
  display: block;
}
.form .col, .form-donate-full .col, .form-event .col, .form-publication .col, .form-login .col, .form-contact .col, .form-newsletter-full .col, .form-checkout .col, .form-order .col, .form-profile .col {
  padding-left: 15px;
  padding-right: 15px;
}
.form .col + .col, .form-donate-full .col + .col, .form-event .col + .col, .form-publication .col + .col, .form-login .col + .col, .form-contact .col + .col, .form-newsletter-full .col + .col, .form-checkout .col + .col, .form-order .col + .col, .form-profile .col + .col {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .form .col + .col, .form-donate-full .col + .col, .form-event .col + .col, .form-publication .col + .col, .form-login .col + .col, .form-contact .col + .col, .form-newsletter-full .col + .col, .form-checkout .col + .col, .form-order .col + .col, .form-profile .col + .col {
    margin-top: 0;
  }
}
.form .col + .col-wide, .form-donate-full .col + .col-wide, .form-event .col + .col-wide, .form-publication .col + .col-wide, .form-login .col + .col-wide, .form-contact .col + .col-wide, .form-newsletter-full .col + .col-wide, .form-checkout .col + .col-wide, .form-order .col + .col-wide, .form-profile .col + .col-wide {
  padding-top: 30px;
}
@media (min-width: 1024px) {
  .form .col, .form-donate-full .col, .form-event .col, .form-publication .col, .form-login .col, .form-contact .col, .form-newsletter-full .col, .form-checkout .col, .form-order .col, .form-profile .col {
    float: left;
    width: 50%;
  }
}
.form .col-wide, .form-donate-full .col-wide, .form-event .col-wide, .form-publication .col-wide, .form-login .col-wide, .form-contact .col-wide, .form-newsletter-full .col-wide, .form-checkout .col-wide, .form-order .col-wide, .form-profile .col-wide {
  clear: both;
  padding-left: 15px;
  padding-right: 15px;
}
.form .col-wide + .col-wide, .form-donate-full .col-wide + .col-wide, .form-event .col-wide + .col-wide, .form-publication .col-wide + .col-wide, .form-login .col-wide + .col-wide, .form-contact .col-wide + .col-wide, .form-newsletter-full .col-wide + .col-wide, .form-checkout .col-wide + .col-wide, .form-order .col-wide + .col-wide, .form-profile .col-wide + .col-wide {
  margin-top: 30px;
}
.form .form_messages, .form-donate-full .form_messages, .form-event .form_messages, .form-publication .form_messages, .form-login .form_messages, .form-contact .form_messages, .form-newsletter-full .form_messages, .form-checkout .form_messages, .form-order .form_messages, .form-profile .form_messages {
  margin-left: 15px;
  margin-right: 15px;
}
.form .form_col-1, .form-donate-full .form_col-1, .form-event .form_col-1, .form-publication .form_col-1, .form-login .form_col-1, .form-contact .form_col-1, .form-newsletter-full .form_col-1, .form-checkout .form_col-1, .form-order .form_col-1, .form-profile .form_col-1 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .form .form_col-1, .form-donate-full .form_col-1, .form-event .form_col-1, .form-publication .form_col-1, .form-login .form_col-1, .form-contact .form_col-1, .form-newsletter-full .form_col-1, .form-checkout .form_col-1, .form-order .form_col-1, .form-profile .form_col-1 {
    margin-left: 0;
    margin-right: 0;
  }
}
.form .form_col-1 input, .form-donate-full .form_col-1 input, .form-event .form_col-1 input, .form-publication .form_col-1 input, .form-login .form_col-1 input, .form-contact .form_col-1 input, .form-newsletter-full .form_col-1 input, .form-checkout .form_col-1 input, .form-order .form_col-1 input, .form-profile .form_col-1 input,
.form .form_col-1 .niceselect-wrapper,
.form-donate-full .form_col-1 .niceselect-wrapper,
.form-event .form_col-1 .niceselect-wrapper,
.form-publication .form_col-1 .niceselect-wrapper,
.form-login .form_col-1 .niceselect-wrapper,
.form-contact .form_col-1 .niceselect-wrapper,
.form-newsletter-full .form_col-1 .niceselect-wrapper,
.form-checkout .form_col-1 .niceselect-wrapper,
.form-order .form_col-1 .niceselect-wrapper,
.form-profile .form_col-1 .niceselect-wrapper {
  background-image: none;
}
.form .form_col-1 .form_message, .form-donate-full .form_col-1 .form_message, .form-event .form_col-1 .form_message, .form-publication .form_col-1 .form_message, .form-login .form_col-1 .form_message, .form-contact .form_col-1 .form_message, .form-newsletter-full .form_col-1 .form_message, .form-checkout .form_col-1 .form_message, .form-order .form_col-1 .form_message, .form-profile .form_col-1 .form_message {
  margin: 0.3em;
}
.form .form_col-1 .form_label, .form-donate-full .form_col-1 .form_label, .form-event .form_col-1 .form_label, .form-publication .form_col-1 .form_label, .form-login .form_col-1 .form_label, .form-contact .form_col-1 .form_label, .form-newsletter-full .form_col-1 .form_label, .form-checkout .form_col-1 .form_label, .form-order .form_col-1 .form_label, .form-profile .form_col-1 .form_label {
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.form .form_col-2, .form-donate-full .form_col-2, .form-event .form_col-2, .form-publication .form_col-2, .form-login .form_col-2, .form-contact .form_col-2, .form-newsletter-full .form_col-2, .form-checkout .form_col-2, .form-order .form_col-2, .form-profile .form_col-2 {
  background-color: #00B2A9;
  color: #003B49;
  border-radius: 8px;
  padding: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .form .form_col-2, .form-donate-full .form_col-2, .form-event .form_col-2, .form-publication .form_col-2, .form-login .form_col-2, .form-contact .form_col-2, .form-newsletter-full .form_col-2, .form-checkout .form_col-2, .form-order .form_col-2, .form-profile .form_col-2 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
.form .form_col-2 .form_label, .form-donate-full .form_col-2 .form_label, .form-event .form_col-2 .form_label, .form-publication .form_col-2 .form_label, .form-login .form_col-2 .form_label, .form-contact .form_col-2 .form_label, .form-newsletter-full .form_col-2 .form_label, .form-checkout .form_col-2 .form_label, .form-order .form_col-2 .form_label, .form-profile .form_col-2 .form_label {
  color: #003B49;
  display: block;
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.form .form_col-2 .form_label + *, .form-donate-full .form_col-2 .form_label + *, .form-event .form_col-2 .form_label + *, .form-publication .form_col-2 .form_label + *, .form-login .form_col-2 .form_label + *, .form-contact .form_col-2 .form_label + *, .form-newsletter-full .form_col-2 .form_label + *, .form-checkout .form_col-2 .form_label + *, .form-order .form_col-2 .form_label + *, .form-profile .form_col-2 .form_label + * {
  margin-top: 12px;
}
.form .form_col-2 :-moz-placeholder, .form-donate-full .form_col-2 :-moz-placeholder, .form-event .form_col-2 :-moz-placeholder, .form-publication .form_col-2 :-moz-placeholder, .form-login .form_col-2 :-moz-placeholder, .form-contact .form_col-2 :-moz-placeholder, .form-newsletter-full .form_col-2 :-moz-placeholder, .form-checkout .form_col-2 :-moz-placeholder, .form-order .form_col-2 :-moz-placeholder, .form-profile .form_col-2 :-moz-placeholder {
  color: #003B49;
}
.form .form_col-2 ::-moz-placeholder, .form-donate-full .form_col-2 ::-moz-placeholder, .form-event .form_col-2 ::-moz-placeholder, .form-publication .form_col-2 ::-moz-placeholder, .form-login .form_col-2 ::-moz-placeholder, .form-contact .form_col-2 ::-moz-placeholder, .form-newsletter-full .form_col-2 ::-moz-placeholder, .form-checkout .form_col-2 ::-moz-placeholder, .form-order .form_col-2 ::-moz-placeholder, .form-profile .form_col-2 ::-moz-placeholder {
  color: #003B49;
}
.form .form_col-2 ::-webkit-input-placeholder, .form-donate-full .form_col-2 ::-webkit-input-placeholder, .form-event .form_col-2 ::-webkit-input-placeholder, .form-publication .form_col-2 ::-webkit-input-placeholder, .form-login .form_col-2 ::-webkit-input-placeholder, .form-contact .form_col-2 ::-webkit-input-placeholder, .form-newsletter-full .form_col-2 ::-webkit-input-placeholder, .form-checkout .form_col-2 ::-webkit-input-placeholder, .form-order .form_col-2 ::-webkit-input-placeholder, .form-profile .form_col-2 ::-webkit-input-placeholder {
  color: #003B49;
}
.form .form_col-2 :-ms-input-placeholder, .form-donate-full .form_col-2 :-ms-input-placeholder, .form-event .form_col-2 :-ms-input-placeholder, .form-publication .form_col-2 :-ms-input-placeholder, .form-login .form_col-2 :-ms-input-placeholder, .form-contact .form_col-2 :-ms-input-placeholder, .form-newsletter-full .form_col-2 :-ms-input-placeholder, .form-checkout .form_col-2 :-ms-input-placeholder, .form-order .form_col-2 :-ms-input-placeholder, .form-profile .form_col-2 :-ms-input-placeholder {
  color: #003B49;
}
.form .form_col-2 a, .form-donate-full .form_col-2 a, .form-event .form_col-2 a, .form-publication .form_col-2 a, .form-login .form_col-2 a, .form-contact .form_col-2 a, .form-newsletter-full .form_col-2 a, .form-checkout .form_col-2 a, .form-order .form_col-2 a, .form-profile .form_col-2 a {
  color: #003B49;
}
.form .form_collapse, .form-donate-full .form_collapse, .form-event .form_collapse, .form-publication .form_collapse, .form-login .form_collapse, .form-contact .form_collapse, .form-newsletter-full .form_collapse, .form-checkout .form_collapse, .form-order .form_collapse, .form-profile .form_collapse {
  height: 0;
  overflow: hidden;
}
.form .form_collapse.open, .form-donate-full .form_collapse.open, .form-event .form_collapse.open, .form-publication .form_collapse.open, .form-login .form_collapse.open, .form-contact .form_collapse.open, .form-newsletter-full .form_collapse.open, .form-checkout .form_collapse.open, .form-order .form_collapse.open, .form-profile .form_collapse.open {
  height: auto;
  overflow: visible;
}
.form .form_row + *, .form-donate-full .form_row + *, .form-event .form_row + *, .form-publication .form_row + *, .form-login .form_row + *, .form-contact .form_row + *, .form-newsletter-full .form_row + *, .form-checkout .form_row + *, .form-order .form_row + *, .form-profile .form_row + * {
  margin-top: 18px;
}
.form .form_row_button, .form-donate-full .form_row_button, .form-event .form_row_button, .form-publication .form_row_button, .form-login .form_row_button, .form-contact .form_row_button, .form-newsletter-full .form_row_button, .form-checkout .form_row_button, .form-order .form_row_button, .form-profile .form_row_button {
  display: -ms-flexbox;
  display: flex;
}
.form .form_row_button .form_field, .form-donate-full .form_row_button .form_field, .form-event .form_row_button .form_field, .form-publication .form_row_button .form_field, .form-login .form_row_button .form_field, .form-contact .form_row_button .form_field, .form-newsletter-full .form_row_button .form_field, .form-checkout .form_row_button .form_field, .form-order .form_row_button .form_field, .form-profile .form_row_button .form_field {
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding-right: 30px;
}
.form .form_field, .form-donate-full .form_field, .form-event .form_field, .form-publication .form_field, .form-login .form_field, .form-contact .form_field, .form-newsletter-full .form_field, .form-checkout .form_field, .form-order .form_field, .form-profile .form_field {
  position: relative;
}
.form .form_field + .form_field, .form-donate-full .form_field + .form_field, .form-event .form_field + .form_field, .form-publication .form_field + .form_field, .form-login .form_field + .form_field, .form-contact .form_field + .form_field, .form-newsletter-full .form_field + .form_field, .form-checkout .form_field + .form_field, .form-order .form_field + .form_field, .form-profile .form_field + .form_field {
  margin-top: 15px;
}
.form .form_field.form_checkbox + .form_checkbox, .form-donate-full .form_field.form_checkbox + .form_checkbox, .form-event .form_field.form_checkbox + .form_checkbox, .form-publication .form_field.form_checkbox + .form_checkbox, .form-login .form_field.form_checkbox + .form_checkbox, .form-contact .form_field.form_checkbox + .form_checkbox, .form-newsletter-full .form_field.form_checkbox + .form_checkbox, .form-checkout .form_field.form_checkbox + .form_checkbox, .form-order .form_field.form_checkbox + .form_checkbox, .form-profile .form_field.form_checkbox + .form_checkbox {
  margin-top: 10px;
}
.form .form_submit, .form-donate-full .form_submit, .form-event .form_submit, .form-publication .form_submit, .form-login .form_submit, .form-contact .form_submit, .form-newsletter-full .form_submit, .form-checkout .form_submit, .form-order .form_submit, .form-profile .form_submit {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.form .form_field-inline > input, .form-donate-full .form_field-inline > input, .form-event .form_field-inline > input, .form-publication .form_field-inline > input, .form-login .form_field-inline > input, .form-contact .form_field-inline > input, .form-newsletter-full .form_field-inline > input, .form-checkout .form_field-inline > input, .form-order .form_field-inline > input, .form-profile .form_field-inline > input,
.form .form_field-inline > select,
.form-donate-full .form_field-inline > select,
.form-event .form_field-inline > select,
.form-publication .form_field-inline > select,
.form-login .form_field-inline > select,
.form-contact .form_field-inline > select,
.form-newsletter-full .form_field-inline > select,
.form-checkout .form_field-inline > select,
.form-order .form_field-inline > select,
.form-profile .form_field-inline > select,
.form .form_field-inline > .niceselect-wrapper,
.form-donate-full .form_field-inline > .niceselect-wrapper,
.form-event .form_field-inline > .niceselect-wrapper,
.form-publication .form_field-inline > .niceselect-wrapper,
.form-login .form_field-inline > .niceselect-wrapper,
.form-contact .form_field-inline > .niceselect-wrapper,
.form-newsletter-full .form_field-inline > .niceselect-wrapper,
.form-checkout .form_field-inline > .niceselect-wrapper,
.form-order .form_field-inline > .niceselect-wrapper,
.form-profile .form_field-inline > .niceselect-wrapper,
.form .form_field-inline > .fake-input,
.form-donate-full .form_field-inline > .fake-input,
.form-event .form_field-inline > .fake-input,
.form-publication .form_field-inline > .fake-input,
.form-login .form_field-inline > .fake-input,
.form-contact .form_field-inline > .fake-input,
.form-newsletter-full .form_field-inline > .fake-input,
.form-checkout .form_field-inline > .fake-input,
.form-order .form_field-inline > .fake-input,
.form-profile .form_field-inline > .fake-input {
  display: inline-block;
  min-width: 150px;
  vertical-align: top;
}
.form .form_field-inline.weight input, .form-donate-full .form_field-inline.weight input, .form-event .form_field-inline.weight input, .form-publication .form_field-inline.weight input, .form-login .form_field-inline.weight input, .form-contact .form_field-inline.weight input, .form-newsletter-full .form_field-inline.weight input, .form-checkout .form_field-inline.weight input, .form-order .form_field-inline.weight input, .form-profile .form_field-inline.weight input {
  min-width: 100px;
  width: 100px;
  margin-right: 5px;
}
.form .form_dob input, .form-donate-full .form_dob input, .form-event .form_dob input, .form-publication .form_dob input, .form-login .form_dob input, .form-contact .form_dob input, .form-newsletter-full .form_dob input, .form-checkout .form_dob input, .form-order .form_dob input, .form-profile .form_dob input {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 66px;
  max-width: 31%;
}
.form .form_force_errors_newline label.error, .form-donate-full .form_force_errors_newline label.error, .form-event .form_force_errors_newline label.error, .form-publication .form_force_errors_newline label.error, .form-login .form_force_errors_newline label.error, .form-contact .form_force_errors_newline label.error, .form-newsletter-full .form_force_errors_newline label.error, .form-checkout .form_force_errors_newline label.error, .form-order .form_force_errors_newline label.error, .form-profile .form_force_errors_newline label.error {
  clear: left;
  float: left;
}
.form .form_split, .form-donate-full .form_split, .form-event .form_split, .form-publication .form_split, .form-login .form_split, .form-contact .form_split, .form-newsletter-full .form_split, .form-checkout .form_split, .form-order .form_split, .form-profile .form_split {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.form .form_split > .form_label, .form-donate-full .form_split > .form_label, .form-event .form_split > .form_label, .form-publication .form_split > .form_label, .form-login .form_split > .form_label, .form-contact .form_split > .form_label, .form-newsletter-full .form_split > .form_label, .form-checkout .form_split > .form_label, .form-order .form_split > .form_label, .form-profile .form_split > .form_label {
  clear: both;
  display: block;
  margin-left: 15px;
  margin-right: 15px;
}
.form .form_split .form_split_item, .form-donate-full .form_split .form_split_item, .form-event .form_split .form_split_item, .form-publication .form_split .form_split_item, .form-login .form_split .form_split_item, .form-contact .form_split .form_split_item, .form-newsletter-full .form_split .form_split_item, .form-checkout .form_split .form_split_item, .form-order .form_split .form_split_item, .form-profile .form_split .form_split_item {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1024px) {
  .form .form_split .form_split_item, .form-donate-full .form_split .form_split_item, .form-event .form_split .form_split_item, .form-publication .form_split .form_split_item, .form-login .form_split .form_split_item, .form-contact .form_split .form_split_item, .form-newsletter-full .form_split .form_split_item, .form-checkout .form_split .form_split_item, .form-order .form_split .form_split_item, .form-profile .form_split .form_split_item {
    float: left;
    width: 50%;
  }
}
.form .form_split .form_split_item + *, .form-donate-full .form_split .form_split_item + *, .form-event .form_split .form_split_item + *, .form-publication .form_split .form_split_item + *, .form-login .form_split .form_split_item + *, .form-contact .form_split .form_split_item + *, .form-newsletter-full .form_split .form_split_item + *, .form-checkout .form_split .form_split_item + *, .form-order .form_split .form_split_item + *, .form-profile .form_split .form_split_item + * {
  margin-top: 18px;
}
@media (min-width: 1024px) {
  .form .form_split .form_split_item + *, .form-donate-full .form_split .form_split_item + *, .form-event .form_split .form_split_item + *, .form-publication .form_split .form_split_item + *, .form-login .form_split .form_split_item + *, .form-contact .form_split .form_split_item + *, .form-newsletter-full .form_split .form_split_item + *, .form-checkout .form_split .form_split_item + *, .form-order .form_split .form_split_item + *, .form-profile .form_split .form_split_item + * {
    margin-top: 0;
  }
}
.form .form_label-title, .form-donate-full .form_label-title, .form-event .form_label-title, .form-publication .form_label-title, .form-login .form_label-title, .form-contact .form_label-title, .form-newsletter-full .form_label-title, .form-checkout .form_label-title, .form-order .form_label-title, .form-profile .form_label-title {
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.form .form_label-title + *, .form-donate-full .form_label-title + *, .form-event .form_label-title + *, .form-publication .form_label-title + *, .form-login .form_label-title + *, .form-contact .form_label-title + *, .form-newsletter-full .form_label-title + *, .form-checkout .form_label-title + *, .form-order .form_label-title + *, .form-profile .form_label-title + * {
  margin-top: 12px;
}
.form .form_checkbox, .form-donate-full .form_checkbox, .form-event .form_checkbox, .form-publication .form_checkbox, .form-login .form_checkbox, .form-contact .form_checkbox, .form-newsletter-full .form_checkbox, .form-checkout .form_checkbox, .form-order .form_checkbox, .form-profile .form_checkbox,
.form .form_radio,
.form-donate-full .form_radio,
.form-event .form_radio,
.form-publication .form_radio,
.form-login .form_radio,
.form-contact .form_radio,
.form-newsletter-full .form_radio,
.form-checkout .form_radio,
.form-order .form_radio,
.form-profile .form_radio {
  overflow: hidden;
  position: relative;
}
.form .form_checkbox [type=checkbox], .form-donate-full .form_checkbox [type=checkbox], .form-event .form_checkbox [type=checkbox], .form-publication .form_checkbox [type=checkbox], .form-login .form_checkbox [type=checkbox], .form-contact .form_checkbox [type=checkbox], .form-newsletter-full .form_checkbox [type=checkbox], .form-checkout .form_checkbox [type=checkbox], .form-order .form_checkbox [type=checkbox], .form-profile .form_checkbox [type=checkbox],
.form .form_checkbox [type=radio],
.form-donate-full .form_checkbox [type=radio],
.form-event .form_checkbox [type=radio],
.form-publication .form_checkbox [type=radio],
.form-login .form_checkbox [type=radio],
.form-contact .form_checkbox [type=radio],
.form-newsletter-full .form_checkbox [type=radio],
.form-checkout .form_checkbox [type=radio],
.form-order .form_checkbox [type=radio],
.form-profile .form_checkbox [type=radio],
.form .form_radio [type=checkbox],
.form-donate-full .form_radio [type=checkbox],
.form-event .form_radio [type=checkbox],
.form-publication .form_radio [type=checkbox],
.form-login .form_radio [type=checkbox],
.form-contact .form_radio [type=checkbox],
.form-newsletter-full .form_radio [type=checkbox],
.form-checkout .form_radio [type=checkbox],
.form-order .form_radio [type=checkbox],
.form-profile .form_radio [type=checkbox],
.form .form_radio [type=radio],
.form-donate-full .form_radio [type=radio],
.form-event .form_radio [type=radio],
.form-publication .form_radio [type=radio],
.form-login .form_radio [type=radio],
.form-contact .form_radio [type=radio],
.form-newsletter-full .form_radio [type=radio],
.form-checkout .form_radio [type=radio],
.form-order .form_radio [type=radio],
.form-profile .form_radio [type=radio] {
  position: absolute;
  left: -9999px;
}
.form .form_checkbox [type=checkbox] + span, .form-donate-full .form_checkbox [type=checkbox] + span, .form-event .form_checkbox [type=checkbox] + span, .form-publication .form_checkbox [type=checkbox] + span, .form-login .form_checkbox [type=checkbox] + span, .form-contact .form_checkbox [type=checkbox] + span, .form-newsletter-full .form_checkbox [type=checkbox] + span, .form-checkout .form_checkbox [type=checkbox] + span, .form-order .form_checkbox [type=checkbox] + span, .form-profile .form_checkbox [type=checkbox] + span,
.form .form_checkbox [type=radio] + span,
.form-donate-full .form_checkbox [type=radio] + span,
.form-event .form_checkbox [type=radio] + span,
.form-publication .form_checkbox [type=radio] + span,
.form-login .form_checkbox [type=radio] + span,
.form-contact .form_checkbox [type=radio] + span,
.form-newsletter-full .form_checkbox [type=radio] + span,
.form-checkout .form_checkbox [type=radio] + span,
.form-order .form_checkbox [type=radio] + span,
.form-profile .form_checkbox [type=radio] + span,
.form .form_radio [type=checkbox] + span,
.form-donate-full .form_radio [type=checkbox] + span,
.form-event .form_radio [type=checkbox] + span,
.form-publication .form_radio [type=checkbox] + span,
.form-login .form_radio [type=checkbox] + span,
.form-contact .form_radio [type=checkbox] + span,
.form-newsletter-full .form_radio [type=checkbox] + span,
.form-checkout .form_radio [type=checkbox] + span,
.form-order .form_radio [type=checkbox] + span,
.form-profile .form_radio [type=checkbox] + span,
.form .form_radio [type=radio] + span,
.form-donate-full .form_radio [type=radio] + span,
.form-event .form_radio [type=radio] + span,
.form-publication .form_radio [type=radio] + span,
.form-login .form_radio [type=radio] + span,
.form-contact .form_radio [type=radio] + span,
.form-newsletter-full .form_radio [type=radio] + span,
.form-checkout .form_radio [type=radio] + span,
.form-order .form_radio [type=radio] + span,
.form-profile .form_radio [type=radio] + span {
  background-color: #FFF;
  border: 1px solid #003B49;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.form .form_radio-inline .form_radio, .form-donate-full .form_radio-inline .form_radio, .form-event .form_radio-inline .form_radio, .form-publication .form_radio-inline .form_radio, .form-login .form_radio-inline .form_radio, .form-contact .form_radio-inline .form_radio, .form-newsletter-full .form_radio-inline .form_radio, .form-checkout .form_radio-inline .form_radio, .form-order .form_radio-inline .form_radio, .form-profile .form_radio-inline .form_radio {
  display: inline-block;
  vertical-align: middle;
}
.form .form_radio-inline .form_radio + *, .form-donate-full .form_radio-inline .form_radio + *, .form-event .form_radio-inline .form_radio + *, .form-publication .form_radio-inline .form_radio + *, .form-login .form_radio-inline .form_radio + *, .form-contact .form_radio-inline .form_radio + *, .form-newsletter-full .form_radio-inline .form_radio + *, .form-checkout .form_radio-inline .form_radio + *, .form-order .form_radio-inline .form_radio + *, .form-profile .form_radio-inline .form_radio + * {
  margin-left: 20px;
  margin-top: 0;
}
.form .form_checkbox_input, .form-donate-full .form_checkbox_input, .form-event .form_checkbox_input, .form-publication .form_checkbox_input, .form-login .form_checkbox_input, .form-contact .form_checkbox_input, .form-newsletter-full .form_checkbox_input, .form-checkout .form_checkbox_input, .form-order .form_checkbox_input, .form-profile .form_checkbox_input {
  float: left;
}
.form .form_checkbox_label, .form-donate-full .form_checkbox_label, .form-event .form_checkbox_label, .form-publication .form_checkbox_label, .form-login .form_checkbox_label, .form-contact .form_checkbox_label, .form-newsletter-full .form_checkbox_label, .form-checkout .form_checkbox_label, .form-order .form_checkbox_label, .form-profile .form_checkbox_label {
  display: block;
  margin-left: 28px;
}
.form [class*=form_icon] input, .form-donate-full [class*=form_icon] input, .form-event [class*=form_icon] input, .form-publication [class*=form_icon] input, .form-login [class*=form_icon] input, .form-contact [class*=form_icon] input, .form-newsletter-full [class*=form_icon] input, .form-checkout [class*=form_icon] input, .form-order [class*=form_icon] input, .form-profile [class*=form_icon] input,
.form [class*=form_icon] .niceselect-wrapper,
.form-donate-full [class*=form_icon] .niceselect-wrapper,
.form-event [class*=form_icon] .niceselect-wrapper,
.form-publication [class*=form_icon] .niceselect-wrapper,
.form-login [class*=form_icon] .niceselect-wrapper,
.form-contact [class*=form_icon] .niceselect-wrapper,
.form-newsletter-full [class*=form_icon] .niceselect-wrapper,
.form-checkout [class*=form_icon] .niceselect-wrapper,
.form-order [class*=form_icon] .niceselect-wrapper,
.form-profile [class*=form_icon] .niceselect-wrapper,
.form [class*=form_icon] .fake-input,
.form-donate-full [class*=form_icon] .fake-input,
.form-event [class*=form_icon] .fake-input,
.form-publication [class*=form_icon] .fake-input,
.form-login [class*=form_icon] .fake-input,
.form-contact [class*=form_icon] .fake-input,
.form-newsletter-full [class*=form_icon] .fake-input,
.form-checkout [class*=form_icon] .fake-input,
.form-order [class*=form_icon] .fake-input,
.form-profile [class*=form_icon] .fake-input {
  padding-left: 40px;
}
.form [class*=form_icon]:before, .form-donate-full [class*=form_icon]:before, .form-event [class*=form_icon]:before, .form-publication [class*=form_icon]:before, .form-login [class*=form_icon]:before, .form-contact [class*=form_icon]:before, .form-newsletter-full [class*=form_icon]:before, .form-checkout [class*=form_icon]:before, .form-order [class*=form_icon]:before, .form-profile [class*=form_icon]:before {
  top: 12px;
  left: 14px;
  position: absolute;
  z-index: 10;
}
.form .form_icon-user:before, .form-donate-full .form_icon-user:before, .form-event .form_icon-user:before, .form-publication .form_icon-user:before, .form-login .form_icon-user:before, .form-contact .form_icon-user:before, .form-newsletter-full .form_icon-user:before, .form-checkout .form_icon-user:before, .form-order .form_icon-user:before, .form-profile .form_icon-user:before {
  content: "\f007";
}
.form .form_icon-addr:before, .form-donate-full .form_icon-addr:before, .form-event .form_icon-addr:before, .form-publication .form_icon-addr:before, .form-login .form_icon-addr:before, .form-contact .form_icon-addr:before, .form-newsletter-full .form_icon-addr:before, .form-checkout .form_icon-addr:before, .form-order .form_icon-addr:before, .form-profile .form_icon-addr:before {
  content: "\f015";
}
.form .form_icon-phone:before, .form-donate-full .form_icon-phone:before, .form-event .form_icon-phone:before, .form-publication .form_icon-phone:before, .form-login .form_icon-phone:before, .form-contact .form_icon-phone:before, .form-newsletter-full .form_icon-phone:before, .form-checkout .form_icon-phone:before, .form-order .form_icon-phone:before, .form-profile .form_icon-phone:before {
  content: "\f095";
}
.form .form_icon-email:before, .form-donate-full .form_icon-email:before, .form-event .form_icon-email:before, .form-publication .form_icon-email:before, .form-login .form_icon-email:before, .form-contact .form_icon-email:before, .form-newsletter-full .form_icon-email:before, .form-checkout .form_icon-email:before, .form-order .form_icon-email:before, .form-profile .form_icon-email:before {
  content: "\f0e0";
}
.form .form_icon-at:before, .form-donate-full .form_icon-at:before, .form-event .form_icon-at:before, .form-publication .form_icon-at:before, .form-login .form_icon-at:before, .form-contact .form_icon-at:before, .form-newsletter-full .form_icon-at:before, .form-checkout .form_icon-at:before, .form-order .form_icon-at:before, .form-profile .form_icon-at:before {
  content: "\f1fa";
}
.form .form_icon-secure:before, .form-donate-full .form_icon-secure:before, .form-event .form_icon-secure:before, .form-publication .form_icon-secure:before, .form-login .form_icon-secure:before, .form-contact .form_icon-secure:before, .form-newsletter-full .form_icon-secure:before, .form-checkout .form_icon-secure:before, .form-order .form_icon-secure:before, .form-profile .form_icon-secure:before {
  content: "\f023";
}
.form .form_icon-company:before, .form-donate-full .form_icon-company:before, .form-event .form_icon-company:before, .form-publication .form_icon-company:before, .form-login .form_icon-company:before, .form-contact .form_icon-company:before, .form-newsletter-full .form_icon-company:before, .form-checkout .form_icon-company:before, .form-order .form_icon-company:before, .form-profile .form_icon-company:before {
  content: "\f0b1";
}
.form .form_icon-search:before, .form-donate-full .form_icon-search:before, .form-event .form_icon-search:before, .form-publication .form_icon-search:before, .form-login .form_icon-search:before, .form-contact .form_icon-search:before, .form-newsletter-full .form_icon-search:before, .form-checkout .form_icon-search:before, .form-order .form_icon-search:before, .form-profile .form_icon-search:before {
  content: "\f002";
}
.form .form_giftaid .form_checkbox_label:before, .form-donate-full .form_giftaid .form_checkbox_label:before, .form-event .form_giftaid .form_checkbox_label:before, .form-publication .form_giftaid .form_checkbox_label:before, .form-login .form_giftaid .form_checkbox_label:before, .form-contact .form_giftaid .form_checkbox_label:before, .form-newsletter-full .form_giftaid .form_checkbox_label:before, .form-checkout .form_giftaid .form_checkbox_label:before, .form-order .form_giftaid .form_checkbox_label:before, .form-profile .form_giftaid .form_checkbox_label:before {
  background-image: url(/site/images/logo/giftaid.png);
  background-position: right top;
  content: '';
  float: right;
  height: 37px;
  width: 115px;
}
.form .form_contactopts .form_field > .form_label, .form-donate-full .form_contactopts .form_field > .form_label, .form-event .form_contactopts .form_field > .form_label, .form-publication .form_contactopts .form_field > .form_label, .form-login .form_contactopts .form_field > .form_label, .form-contact .form_contactopts .form_field > .form_label, .form-newsletter-full .form_contactopts .form_field > .form_label, .form-checkout .form_contactopts .form_field > .form_label, .form-order .form_contactopts .form_field > .form_label, .form-profile .form_contactopts .form_field > .form_label {
  color: #003B49;
  font-size: 1em;
}
.form .form_contactopts .form_field .form_field, .form-donate-full .form_contactopts .form_field .form_field, .form-event .form_contactopts .form_field .form_field, .form-publication .form_contactopts .form_field .form_field, .form-login .form_contactopts .form_field .form_field, .form-contact .form_contactopts .form_field .form_field, .form-newsletter-full .form_contactopts .form_field .form_field, .form-checkout .form_contactopts .form_field .form_field, .form-order .form_contactopts .form_field .form_field, .form-profile .form_contactopts .form_field .form_field {
  margin-top: 0;
}
.form .form_contactopts .form_radio-inline .form_label, .form-donate-full .form_contactopts .form_radio-inline .form_label, .form-event .form_contactopts .form_radio-inline .form_label, .form-publication .form_contactopts .form_radio-inline .form_label, .form-login .form_contactopts .form_radio-inline .form_label, .form-contact .form_contactopts .form_radio-inline .form_label, .form-newsletter-full .form_contactopts .form_radio-inline .form_label, .form-checkout .form_contactopts .form_radio-inline .form_label, .form-order .form_contactopts .form_radio-inline .form_label, .form-profile .form_contactopts .form_radio-inline .form_label {
  font-family: Neris-Regular, sans-serif;
}

.form-donate-full .form-donate_amount label {
  color: #FFF;
  display: block;
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
@media (min-width: 640px) {
  .form-donate-full .form-donate_amount label {
    display: inline;
  }
}
.form-donate-full .form-donate_amount label + label {
  margin-top: 10px;
}
@media (min-width: 640px) {
  .form-donate-full .form-donate_amount label + label {
    margin-left: 10px;
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .form-donate-full .form-donate_amount label {
    font-size: 2.1428571429em;
  }
  .form-donate-full .form-donate_amount label + label {
    margin-left: 20px;
  }
}
.form-donate-full .form-donate_amount [type=text],
.form-donate-full .form-donate_amount [type=number] {
  color: #003B49;
  display: inline-block;
  font-family: Neris-Black, sans-serif;
  max-width: 120px;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
}
.form-donate-full .form-donate_type label,
.form-donate-full .form-donate_memory label {
  color: #FFF;
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.form-donate-full .form-donate_type label {
  display: block;
}
.form-donate-full .form-donate_type label + label {
  margin-top: 10px;
}
.form-donate-full .form-donate_memory label + label {
  margin-left: 30px;
}
.form-donate-full .form_contactopts > .form_field > .form_label {
  margin-bottom: 5px;
}

.form-event .form-event_howmuch input {
  display: inline-block;
  max-width: 220px;
  vertical-align: middle;
}
.form-event .form-event_howmuch .form_field:before {
  color: #FFF;
  content: '\00a3';
  display: inline-block;
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.form-event .form-event_pledge {
  border: 1px solid #FFF;
  border-radius: 5px;
  padding: 5px;
}
.form-event .form-event_pledge .form_label {
  font-weight: bold;
  font-family: Neris-Black, sans-serif;
  font-size: 1rem;
}
.form-event .form-event_pledge .form_label + .form_field {
  margin-top: 12px;
}
.form-event .form-contact_row_hearabout .form_label {
  color: #003B49 !important;
}
.form-event .form-event_summary {
  float: left;
}
.form-event .form-event_summary + * {
  margin-top: 50px;
}
.form-event .form-event_summary_amount {
  color: #FFF;
  font-family: Neris-Black, sans-serif;
  font-size: 2.1428571429em;
}

.form-event-walk label.error + label.error {
  display: block;
}
.form-event-walk .tbl-walkparty {
  width: 100%;
}
.form-event-walk .tbl-walkparty th,
.form-event-walk .tbl-walkparty td {
  padding: 5px;
}
.form-event-walk .tbl-walkparty th {
  background-color: #FFF;
  text-align: left;
}
.form-event-walk .tbl-walkparty td {
  background-color: rgba(255, 255, 255, 0.75);
}
.form-event-walk .tbl-walkparty tr:nth-child(2n) td {
  background-color: rgba(255, 255, 255, 0.65);
}

.form-publication .form-publication_donation [type=text] {
  color: #FBE122;
  display: inline-block;
  font-family: Neris-Black, sans-serif;
  font-size: 2.1428571429em;
  padding-top: 1px;
  padding-bottom: 1px;
  vertical-align: middle;
  width: 100px;
}
@media (max-width: 639px) {
  .form-publication .form-publication_donation .form_label {
    display: block;
    margin-left: 0;
  }
  .form-publication .form-publication_donation .form_label ~ * {
    margin-top: 10px;
  }
}
.form-publication .form-publication_publications {
  color: #FFF;
  overflow: hidden;
}
@media (min-width: 768px) {
  .form-publication .form-publication_publications {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.form-publication .form-publication_publications_item {
  overflow: hidden;
}
@media (min-width: 768px) {
  .form-publication .form-publication_publications_item {
    float: left;
    padding-left: 30px;
    padding-right: 30px;
    width: 50%;
  }
}
.form-publication .form-publication_publications_item ~ * {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .form-publication .form-publication_publications_item ~ * {
    margin-top: 0;
  }
}
.form-publication .form-publication_publications_item:nth-child(2) ~ * {
  margin-top: 20px;
}
.form-publication .form-publication_publications_label {
  color: #FFF;
  display: block;
  font-family: Neris-Black, sans-serif;
  font-size: 1em;
  margin-right: 70px;
  padding-top: 12px;
}
.form-publication .form-publication_publications_input {
  float: right;
  text-align: center;
  width: 65px;
}
.form-publication .form-publication_publications_input input {
  text-align: center;
}

.form-search {
  clear: both;
  margin-top: 15px;
  overflow: hidden;
  position: relative;
  transition: height 0.3s;
}
@media (min-width: 768px) {
  .form-search {
    height: 0;
    margin-top: 0;
  }
}
.form-search.open {
  height: 42px;
}
.form-search.open + .nav-main {
  margin-top: 15px;
}
.form-search [type=text],
.form-search .button {
  vertical-align: top;
}
.form-search .form-search_inner {
  display: table;
  width: 100%;
}
.form-search .form-search_field {
  display: table-cell;
  vertical-align: middle;
}
.form-search .form-search_field + * {
  padding-left: 10px;
}
@media (min-width: 768px) {
  .form-search .form-search_field:first-child {
    display: none;
  }
  .form-search .form-search_field:first-child + * {
    padding-left: 0;
  }
}
.form-search .form-search_field:last-child {
  max-width: 45px;
  width: 45px;
}
@media (min-width: 768px) {
  .form-search .form-search_field:last-child {
    max-width: none;
    width: 105px;
  }
}
.form-search .button:before {
  background-image: url(/site/images/icon/white/chevron-right.svg);
  content: '';
  display: inline-block;
  width: 11px;
  height: 16px;
}
@media (min-width: 768px) {
  .form-search .button:before {
    content: normal;
  }
}
.no-svg .form-search .button:before {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
@media (max-width: 767px) {
  .form-search .button span {
    display: none;
  }
}

.form-login .form_buttons a + * {
  margin-left: 25px;
}

.form-contact_success + .form-contact {
  display: none;
}

.form-contact {
  background-color: #00B2A9;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 45px;
  padding: 2.35vw;
  width: 100%;
  max-width: 588px;
}
.form-contact h2,
.form-contact h3 {
  color: #FFF;
}
.form-contact .form-contact_icon-user input,
.form-contact .form-contact_icon-user .niceselect-wrapper,
.form-contact .form-contact_icon-addr input,
.form-contact .form-contact_icon-addr .niceselect-wrapper {
  padding-left: 40px;
}
.form-contact .form-contact_icon-user .form-contact_field:before,
.form-contact .form-contact_icon-addr .form-contact_field:before {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 10;
}
.form-contact .form-contact_icon-user.form-contact_split .form-contact_field:before,
.form-contact .form-contact_icon-addr.form-contact_split .form-contact_field:before {
  left: 29px;
}
.form-contact .form-contact_title + * {
  margin-top: 30px;
}
.form-contact .form-contact_title h2 + * {
  margin-top: 0.5em;
}
.form-contact .form-contact_row + * {
  margin-top: 15px;
}
.form-contact .form-contact_field {
  position: relative;
}
.form-contact .form-contact_field + .form-contact_field {
  margin-top: 15px;
}
.form-contact .form-contact_split {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.form-contact .form-contact_split .form-contact_field {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 480px) {
  .form-contact .form-contact_split .form-contact_field {
    float: left;
    width: 50%;
  }
}
.form-contact .form-contact_split .form-contact_field ~ * {
  margin-top: 15px;
}
@media (min-width: 480px) {
  .form-contact .form-contact_split .form-contact_field ~ * {
    margin-top: 0;
  }
}
.form-contact .form-contact_icon-user .form-contact_field:before {
  content: "\f007";
}
.form-contact .form-contact_icon-addr .form-contact_field:before {
  content: "\f015";
}
.form-contact .niceselect-wrapper {
  display: inline-block;
  vertical-align: top;
  width: 152px;
}
.form-contact .form_contactopts > .form_field > .form_label {
  font-family: Neris-Black, sans-serif;
}
.form-contact .form_contactopts .form_field .form_field {
  margin-top: 6px;
}
.form-contact .form_label_highlight {
  color: #FFF;
  display: block;
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.form-contact .form_label_highlight + * {
  margin-top: 12px;
}
.form-contact .form-contact_row_hearabout .form_label {
  color: #FFF;
  display: block;
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.form-contact .form-contact_row_hearabout .form_label + * {
  margin-top: 12px;
}
.form-contact .form-contact_row_hearabout .form_label.xlarge {
  font-size: 1.25rem;
}
.form-contact .form-contact_row_hearabout .niceselect-wrapper {
  display: block;
  width: auto;
}

.petition-text {
  padding: 0 20px 10px 20px;
}
.petition-text p {
  margin: 1em 0;
  font-style: italic;
  font-size: 1.1428571429em;
}

.form-petition .form_checkbox_label {
  color: #fff;
}
.form-petition .totaliser {
  color: #fff;
  margin: 1em 0 2em 0;
}
.form-petition .totaliser .bar-container {
  background: #003B49;
  border: 1px solid #003B49;
  position: relative;
  margin: 0 0 5px 0;
  height: 20px;
  width: 100%;
}
.form-petition .totaliser .bar-container .bar {
  background: #FBE122;
  position: absolute;
  height: 100%;
}
.form-petition .totaliser .totaliser-current {
  float: left;
}
.form-petition .totaliser .totaliser-goal {
  float: right;
}

.form-formz .form_row > label {
  display: none;
}
.form-formz .form_row.static > label {
  display: block;
  color: #003B49;
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.form-formz .form_row.paragraph > label {
  display: block;
}
.form-formz .form_row .paragraph-wrap {
  display: none;
}
.form-formz .radio > label,
.form-formz .checkbox > label,
.form-formz .select > label {
  font-family: Neris-Black, sans-serif;
  display: block;
}
.form-formz .radio > label + *,
.form-formz .checkbox > label + *,
.form-formz .select > label + * {
  margin-top: 6px;
}

/* Forms */
/*
	==========
	Newsletter
	==========
*/
.form-newsletter {
  clear: both;
  padding: 0 0 3em 0;
  margin-top: 1em;
}
@media (min-width: 768px) {
  .form-newsletter {
    margin-top: -4em;
  }
}
.form-newsletter h2 {
  color: inherit;
  font-size: 1.4285714286em;
  float: left;
  margin-top: 5px;
  margin-right: 1em;
}
.form-newsletter .form-newsletter_row + * {
  margin-top: 16px;
}
.form-newsletter p.error,
.form-newsletter div.error,
.form-newsletter span.error,
.form-newsletter label.error {
  color: #FF8000;
}
.form-newsletter span.error,
.form-newsletter label.error {
  display: block;
  margin-top: 5px;
}
.form-newsletter .button {
  font-size: 1.2857142857em;
  float: left;
  margin-top: 0;
}

.form-newsletter-full {
  background-color: #00B2A9;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 45px;
  padding: 2.35vw;
  width: 100%;
  max-width: 588px;
}
.form-newsletter-full h2,
.form-newsletter-full h3 {
  color: #FFF;
}
.form-newsletter-full .form-newsletter-full_title + * {
  margin-top: 30px;
}

/* Newsletter */
/*
	========
	Products
	========
*/
.product-listing, .category-listing {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.product-listing [class*=listing_item], .category-listing [class*=listing_item] {
  padding-left: 15px;
  padding-right: 15px;
}
.product-listing [class*=listing_link], .category-listing [class*=listing_link] {
  background-color: #ECE6EF;
  border-radius: 12px;
  color: inherit;
  display: block;
  text-decoration: none;
  transition: background-color 1s, color 1s;
}
.product-listing [class*=listing_link]:hover, .category-listing [class*=listing_link]:hover {
  background-color: #003B49;
  color: #FFF;
}

.product-listing h3 + * {
  margin-top: 5px;
}
.product-listing .product-listing_product + * {
  margin-top: 30px;
}
@media (min-width: 480px) {
  .product-listing .product-listing_product {
    float: left;
    width: 50%;
  }
  .product-listing .product-listing_product + * {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .product-listing .product-listing_product {
    width: 33.3333%;
  }
}
@media (min-width: 960px) {
  .product-listing .product-listing_product {
    width: 25%;
  }
}
.product-listing .product-listing_product:nth-child(2n+1) {
  clear: left;
}
@media (min-width: 640px) {
  .product-listing .product-listing_product:nth-child(2n+1) {
    clear: none;
  }
}
@media (min-width: 640px) {
  .product-listing .product-listing_product:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 960px) {
  .product-listing .product-listing_product:nth-child(3n+1) {
    clear: none;
  }
}
@media (min-width: 960px) {
  .product-listing .product-listing_product:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 480px) {
  .product-listing .product-listing_product:nth-child(2) ~ * {
    margin-top: 30px;
  }
}
@media (min-width: 640px) {
  .product-listing .product-listing_product:nth-child(2) ~ * {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .product-listing .product-listing_product:nth-child(3) ~ * {
    margin-top: 30px;
  }
}
@media (min-width: 960px) {
  .product-listing .product-listing_product:nth-child(3) ~ * {
    margin-top: 0;
  }
}
.product-listing .product-listing_product:nth-child(4) ~ * {
  margin-top: 30px;
}
.product-listing .product-listing_link:hover .product-listing_text:after {
  background-color: #FFF;
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
}
.no-svg .product-listing .product-listing_link:hover .product-listing_text:after {
  background-image: url(/site/images/icon/brand-1/chevron-right.png);
}
.product-listing .product-listing_link:hover .product-listing_price,
.product-listing .product-listing_link:hover .product-listing_discount {
  color: #FFF;
}
.product-listing .product-listing_image {
  background-color: #FFF;
  border: 1px solid #D7D7D7;
  background-size: cover;
  border-radius: 12px 12px 0 0;
  padding-bottom: 70.945%;
}
.product-listing .product-listing_text {
  padding: 22px 52px 22px 22px;
  position: relative;
}
.product-listing .product-listing_text:after {
  background-color: #003B49;
  background-image: url(/site/images/icon/white/chevron-right.svg);
  background-position: 10px 7px;
  background-size: 11px 15px;
  border-radius: 50%;
  content: '';
  height: 30px;
  width: 30px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -15px;
  transition: background-color 1s;
}
.no-svg .product-listing .product-listing_text:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.product-listing .product-listing_price {
  color: #00B2A9;
  font-family: Neris-Black, sans-serif;
  font-size: 1.5714285714em;
  transition: color 1s;
}
.product-listing .product-listing_offer {
  font-family: Neris-Black, sans-serif;
  font-size: 1em;
}
.product-listing .product-listing_discount {
  color: #FBE122;
  text-transform: uppercase;
  transition: color 1s;
}

.products-featured-block + .products-block {
  border-top: 1px solid #003B49;
  padding-top: 30px;
}
.products-featured-block .product-listing_product + * {
  margin-top: 30px;
}
@media (min-width: 480px) {
  .products-featured-block .product-listing_product {
    float: left;
    width: 50%;
  }
  .products-featured-block .product-listing_product + * {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .products-featured-block .product-listing_product {
    width: 33.3333%;
  }
}
.products-featured-block .product-listing_product:nth-child(4n+1) {
  clear: none;
}
.products-featured-block .product-listing_product:nth-child(2n+1) {
  clear: left;
}
@media (min-width: 640px) {
  .products-featured-block .product-listing_product:nth-child(2n+1) {
    clear: none;
  }
}
@media (min-width: 640px) {
  .products-featured-block .product-listing_product:nth-child(3n+1) {
    clear: left;
  }
}
.products-featured-block .product-listing_product:nth-child(2) ~ * {
  margin-top: 30px;
}
@media (min-width: 640px) {
  .products-featured-block .product-listing_product:nth-child(2) ~ * {
    margin-top: 0;
  }
}
@media (min-width: 640px) {
  .products-featured-block .product-listing_product:nth-child(3) ~ * {
    margin-top: 30px;
  }
}

.category-listing .category-listing_category + * {
  margin-top: 30px;
}
@media (min-width: 640px) {
  .category-listing .category-listing_category {
    float: left;
    width: 50%;
  }
  .category-listing .category-listing_category + * {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .category-listing .category-listing_category {
    width: 25%;
  }
}
.category-listing .category-listing_category:nth-child(2n+1) {
  clear: left;
}
@media (min-width: 1024px) {
  .category-listing .category-listing_category:nth-child(2n+1) {
    clear: none;
  }
}
@media (min-width: 1024px) {
  .category-listing .category-listing_category:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 640px) {
  .category-listing .category-listing_category:nth-child(2) ~ * {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .category-listing .category-listing_category:nth-child(2) ~ * {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .category-listing .category-listing_category:nth-child(4) ~ * {
    margin-top: 30px;
  }
}
.category-listing .category-listing_link:hover .button {
  background-color: #FFF;
  color: #003B49;
}
.category-listing .category-listing_link:hover .button:after {
  background-image: url(/site/images/icon/brand-1/chevron-right.svg);
}
.no-svg .category-listing .category-listing_link:hover .button:after {
  background-image: url(/site/images/icon/brand-1/chevron-right.png);
}
.category-listing .category-listing_image {
  background-color: #FFF;
  border: 1px solid #D7D7D7;
  background-position: center center;
  background-size: cover;
  border-radius: 12px;
  padding-bottom: 78.4172%;
}
.category-listing .category-listing_text {
  overflow: hidden;
  padding: 20px 16px;
}
.category-listing .button {
  background-color: #003B49;
  float: right;
}

.product .product_price_old {
  color: #ECE6EF;
  text-decoration: line-through;
}
.product .product_gallery {
  border: 1px solid #ECE6EF;
  border-radius: 12px;
}
.product .product_gallery img {
  border-radius: 12px;
}
.product .product_variants {
  background-color: #00B2A9;
  border-radius: 8px;
  padding: 30px;
}
.product .product_variants label + *,
.product .product_variants .form-group + * {
  margin-top: 12px;
}
.product .product_variants label {
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.product .product_variants label + * {
  margin-top: 12px;
}
.product .product_variants button {
  margin-top: 24px;
}

/* Products */
/*
	========
	Checkout
	========
*/
.basket {
  position: relative;
}
.basket > * + * {
  margin-top: 30px;
}

.tbl-basket {
  width: 100%;
}
.tbl-basket th,
.tbl-basket td {
  padding: 20px 0;
  text-align: left;
}
.tbl-basket th + *,
.tbl-basket td + * {
  padding-left: 20px;
}
.tbl-basket th {
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.tbl-basket td {
  vertical-align: middle;
}
.tbl-basket img {
  border: 1px solid #ECE6EF;
  border-radius: 8px;
}
.tbl-basket .tbl-basket_header,
.tbl-basket .tbl-basket_row {
  background-image: url(/site/images/background/basket-row.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.tbl-basket .tbl-basket_image {
  width: 100px;
}
.tbl-basket .tbl-basket_image img {
  max-width: 100px;
}
.tbl-basket .tbl-basket_title {
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
.tbl-basket .tbl-basket_title a {
  color: inherit;
  text-decoration: none;
}
.tbl-basket .tbl-basket_price {
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.tbl-basket .tbl-basket_price_current {
  color: #00B2A9;
}
.tbl-basket .tbl-basket_price_old {
  color: #ECE6EF;
  text-decoration: line-through;
}
.tbl-basket .tbl-basket_remove_button {
  background-color: transparent;
  border: none;
}
.tbl-basket .tbl-basket_remove_button:before {
  content: '\f1f8';
  font-size: 24px;
}
.tbl-basket .tbl-basket_qty_refresh {
  display: none;
}
.tbl-basket .basket-qty_controls {
  float: left;
  width: 18px;
}
.tbl-basket .basket-qty_controls button {
  background-color: transparent;
  border: none;
  padding: 0;
}
.tbl-basket .basket-qty_controls button:before {
  display: block;
  font-size: 20px;
}
.tbl-basket .basket-qty_up:before {
  content: '\f055';
}
.tbl-basket .basket-qty_dn:before {
  content: '\f056';
}
.tbl-basket .basket-qty_field {
  margin-left: 22px;
  width: 65px;
}
.tbl-basket .basket-qty_field input {
  border: none;
  text-align: center;
}
@media (max-width: 767px) {
  .tbl-basket {
    display: block;
  }
  .tbl-basket tbody, .tbl-basket tr, .tbl-basket td {
    display: block;
  }
  .tbl-basket tr {
    overflow: hidden;
  }
  .tbl-basket td {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .tbl-basket th,
  .tbl-basket .tbl-basket_header {
    display: none;
  }
  .tbl-basket .tbl-basket_title,
  .tbl-basket .tbl-basket_price {
    margin-left: 50%;
  }
  .tbl-basket .tbl-basket_price {
    line-height: 40px;
  }
  .tbl-basket .tbl-basket_price:after {
    clear: both;
    content: '';
    display: table;
  }
  .tbl-basket .tbl-basket_image {
    clear: left;
    float: left;
    width: 50%;
  }
  .tbl-basket .tbl-basket_quantity {
    clear: left;
    float: left;
    width: 50%;
  }
  .tbl-basket .tbl-basket_title {
    padding-bottom: 0;
    padding-top: 20px;
  }
  .tbl-basket .tbl-basket_remove {
    display: none;
  }
}

.tbl-basket-footer {
  background-color: #ECE6EF;
  border-radius: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .tbl-basket-footer {
    display: inline-table;
    width: auto;
  }
}
.tbl-basket-footer th,
.tbl-basket-footer td {
  padding: 6px 24px;
}
.tbl-basket-footer tr:first-child td,
.tbl-basket-footer tr:first-child th {
  padding-top: 12px;
}
.tbl-basket-footer tr:last-child td,
.tbl-basket-footer tr:last-child th {
  padding-bottom: 12px;
}
.tbl-basket-footer th {
  text-align: left;
}
.tbl-basket-footer td {
  text-align: right;
}
.tbl-basket-footer .tbl-basket-footer_total {
  font-family: Neris-Black, sans-serif;
  font-size: 2em;
}

.checkout-steps h1,
.checkout-steps .h1 {
  display: inline-block;
  font-size: 2em;
}
.checkout-steps h1 + *,
.checkout-steps .h1 + * {
  margin-top: 0;
}
.checkout-steps + * {
  margin-top: 30px;
}
.checkout-steps * + *:before {
  color: #003B49;
  content: '\f101';
  font-size: 1em;
  margin-left: 6px;
  margin-right: 6px;
}
.checkout-steps .h1 {
  color: #ECE6EF;
  font-family: Neris-Regular, sans-serif;
}

.form-checkout {
  margin-left: 0;
  margin-right: 0;
}
.form-checkout input,
.form-checkout textarea,
.form-checkout .niceselect-wrapper,
.form-checkout .fake-input {
  background-image: none;
}
@media (min-width: 768px) {
  .form-checkout .form-checkout_login,
  .form-checkout .form-checkout_register {
    width: 50%;
  }
}
.form-checkout .form-checkout_login fieldset,
.form-checkout .form-checkout_register fieldset {
  max-width: 500px;
}
@media (min-width: 768px) {
  .form-checkout .form-checkout_login {
    float: right;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .form-checkout .form-checkout_login + * {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .form-checkout .form-checkout_register {
    float: left;
    padding-right: 15px;
  }
}
.form-checkout .form-checkout_group:after {
  clear: both;
  content: '';
  display: table;
}
.form-checkout .form-checkout_group + .form-checkout_group {
  background-image: url(/site/images/background/checkout-row.gif);
  background-position: 0 0;
  background-repeat: repeat-x;
  clear: both;
  margin-top: 50px;
  padding-top: 51px;
}
.form-checkout .form-checkout_group_inner {
  margin-left: -15px;
  margin-right: -15px;
}
.form-checkout .form-checkout_col {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .form-checkout .form-checkout_col + * {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .form-checkout .form-checkout_col {
    float: left;
    width: 50%;
  }
}
.form-checkout .form-checkout_terms {
  text-align: right;
}
.form-checkout .form-checkout_terms .form_checkbox_input {
  float: none;
  display: inline-block;
}
.form-checkout .form-checkout_terms .form_checkbox_label {
  display: inline-block;
  font-style: italic;
  margin-left: 0;
}
.form-checkout .form-checkout_terms + label.error {
  text-align: right;
}
.form-checkout .tbl-basket-footer_wrap + * {
  margin-top: 20px;
}

.checkout-address {
  max-width: 500px;
}
.checkout-address + * {
  margin-top: 10px;
}
.checkout-address .checkout-address_lookup .form_row {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .checkout-address .checkout-address_lookup .form_row {
    width: 70%;
  }
}
.checkout-address .checkout-address_manual {
  display: inline-block;
  font-size: 1em;
  margin-top: 12px;
  vertical-align: top;
}
.checkout-address .checkout-address_manual a {
  color: #00B2A9;
  cursor: pointer;
  text-decoration: underline;
}
.checkout-address .checkout-address_select + * {
  margin-top: 18px;
}
.checkout-address .checkout-address_select a {
  color: #00B2A9;
  cursor: pointer;
  font-size: 1em;
  text-decoration: underline;
}
.checkout-address .checkout-address_select .form_field {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
.checkout-address .show {
  display: block;
}

.textarea_count {
  color: #000;
  text-align: right;
}

/* Checkout */
/*
	=======
	Account
	=======
*/
.tbl-account {
  text-align: left;
  width: 100%;
  margin-bottom: 1em;
}
.tbl-account th,
.tbl-account td {
  padding: 10px;
  vertical-align: middle;
}
.tbl-account thead tr {
  background-image: url(/site/images/background/basket-row.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
}
.tbl-account tbody tr:nth-child(2n) td {
  background-color: #ECE6EF;
}
.tbl-account th {
  font-family: Neris-Black, sans-serif;
  font-size: 1.4285714286em;
}
.tbl-account a {
  text-decoration: none;
}
.tbl-account td.image img {
  border: 1px solid #ECE6EF;
  border-radius: 8px;
  max-width: 100px;
}
.tbl-account td.title {
  font-family: Neris-Black, sans-serif;
  font-size: 1.1428571429em;
}
@media (max-width: 767px) {
  .tbl-account,
  .tbl-account tbody,
  .tbl-account thead,
  .tbl-account tr,
  .tbl-account th,
  .tbl-account td {
    display: block;
  }
  .tbl-account + * {
    margin-top: 20px;
  }
  .tbl-account thead,
  .tbl-account th {
    display: none;
  }
  .tbl-account td {
    padding: 5px 0;
  }
  .tbl-account td:before {
    display: inline-block;
    margin-right: 1em;
  }
  .tbl-account tr + tr {
    border-top: 1px solid #003B49;
    margin-top: 10px;
    padding-top: 10px;
  }
}

.tbl-account-addresses .address_actions {
  text-align: right;
  white-space: nowrap;
}
.tbl-account-addresses + * {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .tbl-account-addresses .address_address:before {
    content: 'Address: ';
  }
  .tbl-account-addresses .address_name:before {
    content: 'Name: ';
  }
  .tbl-account-addresses .address_street:before {
    content: 'Street: ';
  }
  .tbl-account-addresses .address_town:before {
    content: 'Town: ';
  }
  .tbl-account-addresses .address_county:before {
    content: 'County: ';
  }
  .tbl-account-addresses .address_postcode:before {
    content: 'Postcode: ';
  }
  .tbl-account-addresses .address_country:before {
    content: 'Country: ';
  }
  .tbl-account-addresses .address_actions {
    text-align: center;
  }
}

.tbl-account-orders + * {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .tbl-account-orders tr + tr {
    margin-top: 0;
    padding-top: 0;
  }
  .tbl-account-orders td {
    padding-left: 5px;
    padding-right: 5px;
  }
  .tbl-account-orders td:before {
    color: #003B49;
    content: attr(data-title);
  }
  .tbl-account-orders td:first-child {
    padding-top: 10px;
  }
  .tbl-account-orders td:last-child {
    padding-bottom: 10px;
  }
  .tbl-account-orders .view {
    padding-top: 10px;
  }
  .tbl-account-orders .view:before {
    content: normal;
  }
}

.account_order-details {
  border-top: 1px solid #FBE122;
  padding-top: 30px;
}

.form-profile + * {
  margin-top: 20px;
}

/* Account */
.search .search_item {
  display: block;
  text-decoration: none;
}
.search .search_item + * {
  border-top: 1px oslid #003B49;
  margin-top: 1em;
  padding-top: 1em;
}

.search-results p {
  margin: 0 0 1em;
}

/*
	=======
	Cookies
	=======
*/
.cookie-bar {
  background-color: #003B49;
  color: #FFF;
  overflow: hidden;
  position: relative;
  transition: height 0.5s;
}
.cookie-bar a {
  color: inherit;
}
.cookie-bar .wrap, .cookie-bar .header-site {
  padding: 20px 0;
}

/* Cookies */
/*
	=========
	ShareThis
	=========
*/
@media (max-width: 767px) {
  #sthoverbuttons {
    display: none;
  }
}

#sthoverbuttons .stButton .stLarge:hover,
.share-buttons .stButton .stLarge:hover {
  background-position: 0 0;
}

.share-buttons {
  margin: 2em 0 0 0;
}
.share-buttons h3 {
  margin: 0 0 0.5em 0;
}
.share-buttons .stButton .stLarge {
  height: 64px;
  width: 64px;
}
.share-buttons .st_facebook_large .stButton .stLarge {
  background-image: url(/site/images/icon/social/facebook.png) !important;
}
.share-buttons .st_twitter_large .stButton .stLarge {
  background-image: url(/site/images/icon/social/twitter.png) !important;
}
.share-buttons .st_email_large .stButton .stLarge {
  background-image: url(/site/images/icon/social/email.png) !important;
  background-color: #fff;
  background-position: center center;
  border-radius: 5px;
}

/* ShareThis */
.tab_container {
  width: 100%;
  height: 1700px;
}
.tab_container #tab1:checked ~ .contents .item .tab1-content,
.tab_container #tab2:checked ~ .contents .item .tab2-content,
.tab_container #tab3:checked ~ .contents .item .tab3-content {
  display: block;
}
.tab_container #tab1:checked ~ .contents .item .tab1,
.tab_container #tab2:checked ~ .contents .item .tab2,
.tab_container #tab3:checked ~ .contents .item .tab3 {
  background-color: #00B2A9;
}
.tab_container input[type=radio] {
  display: none;
}
.tab_container .contents {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}
.tab_container .contents .item {
  display: inline-block;
  width: 100%;
}
.tab_container .contents .item > .tab {
  display: inline-block;
  height: 48px;
  padding: 0;
  margin-right: 15px;
  border-top: 1px solid #003B49;
  border-right: 1px solid #003B49;
  border-left: 1px solid #003B49;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  background-color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.tab_container .contents .item > .tab > p {
  -ms-flex-positive: 1;
      flex-grow: 1;
  font-size: 1.4285714286em;
  font-family: Neris-Bold, sans-serif;
  color: #003B49 !important;
}
.tab_container .contents .item > .tab > p > a {
  display: block;
  font-size: inherit;
  font-family: inherit;
  color: inherit !important;
  text-decoration: none;
}
.tab_container .contents .item > .tab > p > a:active, .tab_container .contents .item > .tab > p > a:focus {
  outline: none;
}
.tab_container .contents .item > .content {
  background: #FFFFFF;
  padding: 4rem 3rem 3rem;
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  border: 1px solid #003B49;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tab_container .contents .item > .content iframe {
  width: 100%;
  height: 1520px;
  overflow: hidden;
  border: none;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 768px) {
  .tab_container .contents .item > .tab > p {
    font-size: 1em;
  }
  .tab_container .contents .item > .content {
    padding: 3rem 0.625rem 0.625rem;
  }
}
