@charset "UTF-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
@import "https://fonts.googleapis.com/css?family=Roboto:300,400,900|Roboto+Condensed|Roboto+Slab:300,400";
:root {
  --theme--pale: #ECEDEE;
  --theme--light: #d9dbdd;
  --theme--main: #00568D;
}

.section-insolvency {
  --theme--pale: #F3F4F5;
  --theme--light: #E4D4E3;
  --theme--main: #7B2971;
}

.section-ppsr {
  --theme--pale: #e8f9fc;
  --theme--light: #D6F4F9;
  --theme--main: #046274;
}

/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-scss
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 */
/*
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
html {
  font-family: 'Roboto', sans-serif;
  /* 1 */
  /* Delete all but one of the following font-size declarations: */
  /* Use a 12px base font size. 16px x 75% = 12px */
  font-size: 75%;
  /* 3 */
  /* Use a 14px base font size. 16px x .875 = 14px */
  font-size: 87.5%;
  /* 3 */
  /* Use a 16px base font size. */
  font-size: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  /* Establish a vertical rhythm. */
  line-height: 1.5;
}

/* Address `font-family` inconsistency between `textarea` and other form elements. */
button,
input,
select,
textarea {
  /**
   * The following font family declarations are available on most computers.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif, serif or
   * monospace) hints at what type of font to use if the web browser doesn't
   * find any of the fonts in the list.
   *
   * font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
   * font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
   * font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
   *
   * font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
   * font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
   * font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
   * font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
   *
   * font-family: "Courier New", "DejaVu Sans Mono", monospace;
   */
  font-family: 'Roboto', sans-serif;
}

/* Remove default margin. */
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

/**
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a,
a:link {
  text-decoration: none;
  color: #00568D;
}

a:visited {
  color: #7B2972;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
p,
pre {
  margin: 1.5em 0;
}

blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
#header .header-top,
h1, h2, h3, h4, h5, h6,
#navigation .menu .sf-depth-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
}

.breadcrumb {
  font-size: 0.8em;
  clear: both;
  margin: 1.6em 0 1.5em;
  width: 100%;
}

@media (max-width: 659px) {
  .breadcrumb {
    margin-top: 2em;
  }
}

.section-creditor-meetings h1,
.section-insolvency h1 {
  color: #7B2972;
}

h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2.3em;
  line-height: 1.5;
  /* 3rem / 2em = 1.5em */
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  /* 1.5rem / 2em = .75em */
  margin-bottom: 0.75em;
  color: #00568D;
}

h2 {
  font-size: 2em;
  padding-bottom: 5px;
  border-bottom: solid #9e9e9e 0.1rem;
  line-height: 1;
  /* 3rem / 1.5em = 2em */
}

h3 {
  font-size: 1.45em;
  line-height: 1;
  /* 1.5rem / 1.17em = 1.28205em */
}

h4 {
  font-size: 1.2em;
  line-height: 1;
  /* 1.5rem / 1em = 1.5em */
}

h5 {
  font-size: 1em;
  line-height: 1;
  /* 1.5rem / 0.83em = 1.80723em */
}

h6 {
  font-size: 0.8em;
  line-height: 2;
  /* 1.5rem / 0.67em = 2.23881em */
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
b,
strong {
  font-weight: bold;
}

/* Address styling not present in Safari 5 and Chrome. */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
hr {
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

/* Improve readability of pre-formatted text in all browsers. */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Set consistent quote types. */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
dl,
menu,
ol,
ul {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
menu,
ol,
ul {
  padding: 0 0 0 30px;
  /* LTR */
}

ol.search-results {
  padding-left: 0;
}

/* Correct list images handled incorrectly in IE 7. */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Correct margin displayed oddly in IE 6/7. */
form {
  margin: 0 0 1em;
}

/* Define consistent border, margin, and padding. */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.5em 0.625em 1em;
}

.view-announcements fieldset {
  border: none;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
  /* LTR */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  vertical-align: baseline;
  /* 4 */
  *vertical-align: middle;
  /* 4 */
  max-width: 100%;
  /* 5 */
  box-sizing: border-box;
  /* 5 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
  padding: 0.5em 1em;
  border: none;
  background-color: #ECEDEE;
}

input[value="hidden"] {
  display: none;
  visibility: hidden;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
label {
  display: block;
  font-weight: bold;
}

/* Feedback form elements. */
#webform-client-form-10041,
#webform-client-form-1 {
  clear: both;
  border: 1px solid #CCC;
  padding: 0px 1.5em;
  font-size: 80%;
}

#webform-client-form-10041 label,
#webform-client-form-1 label {
  font-weight: normal;
}

#webform-client-form-10041 fieldset,
#webform-client-form-1 fieldset {
  border: none;
}

#webform-client-form-1004 fieldset legend,
1#webform-client-form-1 fieldset legend {
  float: left;
  clear: both;
  margin-bottom: 1em;
  width: 99%;
}

#webform-client-form-1004 .form-required,
#webform-client-form-1 .form-required {
  display: none;
}

/**
 * Tables
 */
table {
  /* Remove most spacing between table cells. */
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  float: none;
}

caption {
  text-align: left;
  font-weight: bold;
}

th {
  text-align: left;
}

article table {
  max-width: 755px;
  font-size: 0.9em;
}

article thead th,
article tbody th {
  background-color: #EAEAEA;
}

article th,
article td {
  border: 1px solid #CCC;
  padding: 0.5em 1.5em;
}

.mobile-table th {
  display: block;
  background-color: #CCC;
}

table.views-view-grid tr {
  vertical-align: top;
}

/**
 * Tables for attachments or sticky tables
 */
table.sticky-table {
  border: 1px solid #CCC;
  padding: 0 1em 1em;
  width: 100%;
}

table.sticky-table th {
  border: none;
  background: none;
}

table.sticky-table td {
  background-color: #E4D4E3;
  border-bottom: 6px solid #FFF;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* Prevents the user from being able to scroll overflowing content */
.-scrollLock {
  overflow-y: hidden;
}

/**
 * Optional floating class to specify elements
 */
.left {
  float: left;
}

.right {
  float: right;
}

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

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

.clear {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.none-display {
  display: none;
}

.block-display {
  display: block;
}

.inline-display {
  display: inline;
}

.left-pad-one {
  padding-left: 1em;
}

.right-pad-one {
  padding-right: 1em;
}

.top-pad-one {
  padding-top: 1em;
}

.bottom-pad-one {
  padding-bottom: 1em;
}

.padding-one {
  padding: 1em;
}

.padding-half {
  padding: 0.5em;
}

.left-mar-one {
  margin-left: 1em;
}

.right-mar-one {
  margin-right: 1em;
}

.top-mar-one {
  margin-top: 1em;
}

.bottom-mar-one {
  margin-bottom: 1em;
}

.margin-one {
  margin: 1em;
}

.margin-half {
  margin: 0.5em;
}

.zero-padding {
  padding: 0;
}

.zero-margin {
  margin: 0;
}

/* CRM-NSC purpose */
.logged-in .field-name-field-internal-nsc-view {
  width: 54%;
  background-color: #EAEAEA;
  padding: 1em;
  border-radius: 1.4em;
  max-height: 640px;
  overflow-y: scroll;
  position: absolute !important;
  z-index: 1000;
  top: 100px;
  right: -30%;
}

.not-logged-in .field-name-field-internal-nsc-view {
  display: none !important;
  visibility: hidden !important;
}

/* Announce view on homepage */
.view-announcements li.views-row {
  list-style: none;
  line-height: 1.75;
}

/* Media Releases landing page */
.view-media-releases .view-content {
  margin-left: -1.8em;
}

.pane-media-releases .views-field-field-type .field-content {
  display: inline-block;
  padding: 0.1em 0.4em;
  border: 1px dotted #00568D;
}

/* Field display */
.field .field-label {
  font-weight: bold;
}

.field-label-inline .field-label,
.field-label-inline .field-items {
  float: left;
  /*LTR*/
}

/* Form display */
.block-webform {
  clear: both;
}

form .field-multiple-table {
  margin: 0;
}

form .field-multiple-table th.field-label {
  padding-left: 0;
  /*LTR*/
}

form .field-multiple-table td.field-multiple-drag {
  width: 30px;
  padding-right: 0;
  /*LTR*/
}

form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
  padding-right: .5em;
  /*LTR*/
}

form .field-add-more-submit {
  margin: .5em 0 0;
}

/* Facet Search display */
.block-facetapi ul {
  list-style: none;
  padding-left: 0;
}

/* Creditor meeting ILRA design changes*/
.node-type-creditor-meeting h1::before {
  content: "Notice of creditor meeting: ";
  margin-right: .4em;
}

.ds-1col .group-notifying-particulars.field-group-html-element {
  margin-bottom: 1.5em;
}

/* Careers position vacancy field adjustments*/
.field.field-name-field-position-number .field-item, .field.field-name-field-employment-status .field-item, .field.field-name-field-hours .field-item {
  float: left;
  padding-right: 0.25em;
}

.field.field-name-field-position-number .field-item::after, .field.field-name-field-employment-status .field-item::after, .field.field-name-field-hours .field-item::after {
  content: ",";
}

/* Used for feedback-survey block at the bottom of content */
.feedback-survey {
  background-color: #EDEDED;
  padding: 0 1em;
  border-top: 8px solid #7b2972;
  overflow: hidden;
  font-size: 85%;
  color: #555555;
  margin-bottom: 1em;
  max-width: 92%;
}

/* Used for key-facts block at the bottom of media releases */
.key-facts {
  font-size: 80%;
  background-color: #EDEDED;
  color: #555555;
  padding: 0 1em;
  border-top: 8px solid #00568D;
  overflow: hidden;
  margin-bottom: 1em;
  max-width: 75%;
}

.blockquote {
  font-size: 80%;
  width: 60%;
  color: #555555;
  padding: 1.2em 30px 1.2em 30px;
  border-left: 8px solid #E4D4E3;
  line-height: 1.6;
  position: relative;
}

.video-block {
  font-size: 80%;
  width: 60%;
  margin: 50px auto;
  color: #555555;
  padding: 0.5em 20px 1.5em 20px;
  border-top: 8px solid #E4D4E3;
  border-bottom: 8px solid #E4D4E3;
  line-height: 1.6;
  position: relative;
}

.field-name-field-linkto {
  padding: .5em;
  border-top: 8px solid #808080;
  background-color: #ecedee;
  margin: 1em 0;
  border-radius: 8px;
}

.field-name-field-linkto .field-label {
  font-size: 1.5em;
  font-weight: normal;
  color: #555;
}

.field-name-field-linkto .field-items {
  font-size: .9em;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0.3em 0;
}

/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
.region-bottom .block {
  margin-left: auto;
  margin-right: auto;
}

article,
.page-glossary .view-glossary-listing .item-list, .ds-1col.node-creditor-meeting {
  width: 65%;
}

.node-landing-page,
.node-basic-page,
.views-row article {
  width: 100%;
}

.view-footer {
  width: 90%;
  float: left;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
#header .header-top {
  background: #00568d url("../images/headerbg.png") no-repeat right bottom;
}

#header .header-top,
#content,
.region-sidebar-second,
#footer {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: normal;
  *behavior: url("/path/to/boxsizing.htc");
  _display: inline;
  _overflow: hidden;
  _overflow-y: visible;
  padding-left: 1em;
  padding-right: 1em;
}

/* Services and languages block */
.languages > br,
.online-services > br {
  display: none;
}

a.contactus {
  font-size: 0.75em;
  color: #FFF;
  display: block;
  padding: 8px 0;
}

/* Specify site environment block */
.environ {
  position: absolute;
  margin: 0;
  color: red;
  z-index: 99;
  top: -1em;
  width: 6em;
  left: 10%;
}

/* Announcement pane */
.front a.close-window {
  margin: -0.5em 2em;
}

a.close-window {
  text-decoration: none !important;
  float: right;
  padding-right: 1.5rem;
}

a.close-window::after {
  content: '\f057';
  font-family: 'FontAwesome';
  float: right;
  margin: -1.8em -1.4em;
}

.pane-announcements {
  background-color: #000;
  color: #FFF;
  width: 100%;
}

.region.region-announcement .view-announcements li.views-row h2,
.region.region-announcement .view-announcements li.views-row h2 a {
  font-size: 1.4rem;
  border-bottom: none;
  min-height: 2rem;
  margin: 0;
  padding-bottom: 5px;
}

.region.region-announcement .close-window {
  font-size: 85%;
}

.region.region-announcement .field-name-body.field-type-text-with-summary p {
  font-size: 85%;
  margin: 1em 0;
}

:not([class*="section-"]) .region.region-announcement {
  background-color: black;
  padding: 0 10%;
}

@media (max-width: 767px) {
  :not([class*="section-"]) .region.region-announcement #block-views-announcements-block-1 {
    margin: 0;
  }
}

@media (min-width: 960px) {
  :not([class*="section-"]) .region.region-announcement #block-views-announcements-block-1 {
    max-width: 100%;
  }
}

@media (min-width: 1500px) {
  :not([class*="section-"]) .region.region-announcement #block-views-announcements-block-1 {
    max-width: 80%;
  }
}

:not([class*="section-"]) .region.region-announcement .view-announcements li.views-row h2,
:not([class*="section-"]) .region.region-announcement .view-announcements li.views-row h2 a {
  padding-top: 1rem;
}

:not([class*="section-"]) .region.region-announcement .close-window {
  padding-top: 1rem;
}

@media (max-width: 959px) {
  :not([class*="section-"]) .region.region-announcement {
    padding: 0;
  }
}

[class*="section-"] .region.region-announcement {
  background-color: transparent;
}

@media (max-width: 767px) {
  [class*="section-"] .region.region-announcement #block-views-announcements-block-1 {
    margin: 0 1em;
  }
}

[class*="section-"] .region.region-announcement .field-name-body.field-type-text-with-summary .field-items {
  padding-top: 0;
}

[class*="section-"] .region.region-announcement .field-name-body.field-type-text-with-summary .field-items p {
  font-size: 100%;
}

[class*="section-"] .region.region-announcement .view-announcements li.views-row h2,
[class*="section-"] .region.region-announcement .view-announcements li.views-row h2 a {
  padding-top: 0rem;
}

[class*="section-"] .region.region-announcement .views-row {
  float: none;
}

[class*="section-"] .region.region-announcement .close-window {
  padding-top: 0rem;
  font-size: 100%;
}

.region-highlighted .view-announcements li.views-row h2,
.region-highlighted .view-announcements li.views-row h2 a,
.region-announcement .view-announcements li.views-row h2,
.region-announcement .view-announcements li.views-row h2 a {
  color: #FFF;
  text-decoration: none;
}

.region-highlighted .view-announcements li.views-row a,
.region-announcement .view-announcements li.views-row a,
.pane-announcements a {
  color: #FFF;
  text-decoration: underline;
}

.pane-announcements .view-content {
  width: 80%;
}

.pane-announcements .item-list:before {
  content: '\f06a';
  font: 6.5em 'FontAwesome';
  color: #FFF;
  display: inline-block;
  float: right;
  margin-right: -20%;
}

/* Landing pages and home page boxes */
.page-insolvency .pane-views-panes .pane-title a {
  color: #7b2972;
  display: inline-block;
  width: 100%;
  padding: 1em 2em 0.4em;
  margin: -1em -2em -0.4em;
}

.page-insolvency .pane-views-panes .pane-title a:hover,
.page-insolvency .pane-views-panes .pane-title a:focus {
  color: #fff;
  background-color: #7b2972;
  text-decoration: none;
}

[class*="section-"] .views-row h2 a {
  color: #00568D;
  display: inline-block;
  width: 100%;
  padding: 2em 2em 0.4em;
  margin: -1em -2em -0.4em;
}

[class*="section-"] .views-row h2 a:hover,
[class*="section-"] .views-row h2 a:focus {
  color: #fff;
  background-color: #00568D;
  text-decoration: none;
}

[class*="section-"] .views-row p,
.page-insolvency .pane-views-panes p {
  margin-top: 0;
}

[class*="section-"] .views-row .field-items,
.page-insolvency .pane-views-panes .field-content {
  font-size: 85%;
  padding-top: 1rem;
}

[class*="section-"] .view-careers .views-row .field-items {
  padding-top: 0;
}

.pane-views-panes h2.pane-title,
.views-row h2.node__title,
[class*="section-"] .views-row h2 {
  border-bottom: 0;
  font-size: 1.4rem;
  min-height: 2rem;
  margin: 0;
}

.pane-views-panes h2.pane-title a:after,
.front .panels-flexible-region-1-top_right h3 a:after,
.front .panels-flexible-region-1-top_left h3 a:after,
[class*="section-"] .views-row h2 a:after {
  content: '\f105';
  font-family: 'FontAwesome';
  float: right;
  margin-right: -0.4em;
}

.front .panels-flexible-region-1-top_right,
.front .panels-flexible-region-1-top_left {
  background-color: #ECEDEE;
  width: 43%;
  padding: 0 1em;
  border-top: 6px solid;
  overflow: hidden;
}

.front .panels-flexible-region-1-top_right h3 a,
.front .panels-flexible-region-1-top_left h3 a {
  display: inline-block;
  width: 100%;
  padding: 1em 3em 0.4em;
  margin: -1em -3em 0em;
}

.front .panels-flexible-region-1-top_left h3 a:hover,
.front .panels-flexible-region-1-top_left h3 a:focus {
  color: #fff;
  background-color: #7b2972;
  text-decoration: none;
}

.front .panels-flexible-region-1-top_right h3 a:hover, .front .panels-flexible-region-1-top_right h3 a:focus {
  color: #fff;
  background-color: #046274;
  text-decoration: none;
}

.front .panels-flexible-region-1-top_left h3 a {
  color: #7b2972;
}

.front .panels-flexible-region-1-top_left {
  border-color: #7b2972;
  float: left;
}

.front .panels-flexible-region-1-top_right h3 a {
  color: #046274;
}

.front .panels-flexible-region-1-top_right {
  border-color: #046274;
  float: right;
}

.front .panels-flexible-region-1-top_right li,
.front .panels-flexible-region-1-top_left li {
  list-style: none;
  font-size: 90%;
  margin: 0.2em 0 0.4em -0.5em;
}

.front .panels-flexible-region-1-top_right ul,
.front .panels-flexible-region-1-top_left ul {
  margin-top: -0.5em;
}

.front .panels-flexible-region-1-top_right li a::before,
.front .panels-flexible-region-1-top_left li a::before {
  content: '\f105';
  font-family: 'FontAwesome';
  float: left;
  margin-left: -1.3em;
}

.front .panels-flexible-row-1-main-row .panels-ipe-portlet-content ul {
  padding-left: 1.4em;
}

/* View tables styles */
.views-table {
  width: 100%;
  font-size: 0.9em;
}

.views-table th {
  background-color: #00568D;
  color: #fff;
  padding: 0.4em;
}

.views-table td {
  padding: 0.4em;
}

.region-bottom {
  background-color: #000;
  color: #FFF;
  font-size: 75%;
  padding: 1px 1em;
}

/* Containers for grid items and flow items. */
#header .header-top,
#main,
#footer {
  *position: relative;
  *zoom: 1;
}

/*#header .header-top:before,*/
header .header-top:after,
#main:before,
#main:after {
  content: "";
  display: table;
}

/*#header .header-top:after,*/
#main:after {
  clear: both;
}

#header .header-top:after,
#main:after {
  clear: both;
}

/* Feedback form elements. */
#webform-client-form-10041 .form-actions,
#webform-client-form-1 .form-actions {
  float: right;
  margin-top: -3.4em;
}

#edit-submitted-was-this-information-helpful-options {
  width: 230px;
  float: right;
}

/* Header blocks on large desktop display. */
.region-header .block {
  float: right;
}

.region-header .block.even {
  clear: right;
}

.online-services a.atcb-link {
  color: #222;
  padding: 10px 18px;
  background-color: #FFF;
  min-width: 170px;
}

.languages a.atcb-link {
  padding: 9px 0;
}

.languages a.atcb-link:hover, .languages a.atcb-link:focus {
  text-decoration: underline;
}

.region-header .languages {
  position: relative;
}

.region-header .languages a {
  font-size: 0.75em;
}

.region-header .form-item {
  margin: 0;
}

.region-header .form-text {
  width: 85%;
  border: none;
}

.region-header .search-form-widget {
  min-width: 170px;
  background-color: #FFF;
  padding: 8px 18px;
  margin-left: 1em;
}

.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 1em;
}

.region-header .search-form-widget input[type="submit"] {
  width: 2.6em;
  height: 2.4em;
  text-indent: -1000px;
  background-color: transparent;
  float: right;
  margin-top: -2em;
  margin-right: -2.2em;
}

.region-header .form-type-textfield::after {
  content: '\f002';
  font-family: 'FontAwesome';
  color: #222;
  font-size: 1.3em;
  float: right;
  margin-top: -5px;
}

/* Search result page */
#search-api-page-search-form .form-text {
  max-width: 40%;
}

/* Landing pages quicktabs */
#quicktabs-multilingual_resources {
  font-size: 90%;
  overflow: hidden;
}

#quicktabs-view__level_1_landing_page__default {
  background-color: #ECEDEE;
  font-size: 90%;
  overflow: hidden;
  position: relative;
}

#quicktabs-multilingual_resources .item-list {
  float: left;
  width: 20%;
}

#quicktabs-view__level_1_landing_page__default .item-list {
  float: left;
  width: 40%;
}

#quicktabs-multilingual_resources .item-list ul.quicktabs-tabs,
#quicktabs-view__level_1_landing_page__default .item-list ul.quicktabs-tabs {
  margin-bottom: 0;
}

#quicktabs-view__level_1_landing_page__default .field-content {
  font-size: 1.1em;
}

#quicktabs-view__level_1_landing_page__default .field-content a::before {
  content: '\f054';
  font-family: 'FontAwesome';
  float: left;
  margin-left: -1.3em;
  font-size: 0.7em;
  margin-top: 0.28em;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li,
#quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li {
  display: block;
  padding: 1em;
  margin-left: -30px;
  border: 2px solid #fff;
  white-space: inherit;
  background-color: #E4D4E3;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li {
  background-color: #C7CCDF;
}

#quicktabs-container-multilingual_resources {
  float: left;
  width: 74%;
  margin-left: 1em;
}

#quicktabs-container-view__level_1_landing_page__default {
  padding: 0 2em 2em;
  position: absolute;
  left: 40.1%;
  top: 0;
  width: 54%;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li.active {
  background-color: #00568D;
}

#quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li.active {
  background-color: #7B2972;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li.active a,
#quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li.active a {
  color: #FFF;
  position: relative;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li.active a::after,
#quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li.active a::after {
  content: '\f0da';
  font-family: 'FontAwesome';
  margin-top: -0.33em;
  margin-right: -0.8em;
  font-size: 2em;
  position: absolute;
  right: 0;
  z-index: 99;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li.active a::after {
  color: #00568D;
}

#quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li.active a::after {
  color: #7B2972;
}

#quicktabs-multilingual_resources ul.quicktabs-tabs li a,
#quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li a {
  display: block;
  color: #222;
}

/* Slideshow landing page block */
.list-element {
  list-style: none;
}

.list-element .center-wrapper {
  position: absolute;
  z-index: 77;
  top: 3em;
  width: 77%;
}

.list-element .center-wrapper .panel-col-first {
  background-color: #fff;
  padding: 0 1em;
  min-height: 15em;
}

.transparent .list-element .center-wrapper .panel-col-first {
  background-color: transparent;
  text-shadow: 2px 2px 5px #00568D;
  color: #fff;
  word-wrap: normal;
}

.transparent .list-element .center-wrapper .panel-col-first h1 {
  color: #fff;
  font-size: 3.2em;
  width: 100%;
}

.page-insolvency .list-element .center-wrapper .panel-col-first {
  padding: 0 1.4em;
}

.list-element .field-name-body,
.pane-announcements .field-name-body {
  font-size: 88%;
}

.list-element h2 {
  width: 84%;
  font-size: 180%;
}

.list-element h2,
.list-element .field-name-field-read-more .field-item a {
  color: #00568D;
}

.page-insolvency .list-element h1 {
  font-size: 1.6em !important;
  margin: 1em 0 0.4em 0;
}

.page-insolvency .list-element h1,
.page-insolvency .list-element .field-name-field-read-more .field-item a {
  color: #7B2972;
}

.list-element .field-name-field-read-more .field-item {
  background-color: #fff;
  padding: 1em 2em 1em 1em;
  margin: 0 10px 10px;
}

.list-element .field-name-field-read-more .field-item a::after {
  content: '\f105';
  font-family: 'FontAwesome';
  font-size: 1.7em;
  margin-top: -0.4em;
  margin-right: -0.5em;
  float: right;
}

.page-insolvency .list-element .field-item {
  font-size: 1.33em;
}

.page-insolvency .list-element .field-item p {
  font-size: 90%;
}

.page-insolvency .list-element .field-items {
  padding-top: 0;
}

.slide img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}

.slide {
  width: 100%;
  overflow: hidden;
  line-height: 1.4;
  position: relative;
  min-height: 22em;
  background-color: #00568D;
  padding: 0 2.3%;
  margin-left: -2%;
}

.page-insolvency .slide {
  background-color: #7B2972;
}

.panels-flexible-36 {
  margin-top: -1.5em;
}

/* Optional width class to specify elements on large desktop display. */
.full-width {
  width: 98%;
}

.half-width {
  width: 44.4%;
}

.third-width {
  width: 32.4%;
}

.quarter-width {
  width: 24.5%;
}

.full-width select,
.half-width select,
.third-width select,
.quarter-width select {
  max-width: 70%;
}

body:before {
  display: none;
}

/* Table of content styles full width */
div.toc-filter-content {
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-left: 5px solid #555;
  background-color: #ecedee;
  font-size: 90%;
}

div.toc-filter .item-list > h3 {
  color: #555;
  font-size: 0.9em;
}

.toc-filter-content li {
  list-style: none;
  margin-left: -0.7em;
  font-size: 0.9em;
}

div.toc-filter-content a {
  padding: 0.3em 0;
  display: block;
  color: #555;
  position: relative;
}

div.toc-filter-content a:visited {
  color: #555;
}

div.toc-filter-content a::before {
  content: '\f054 ';
  font-family: 'FontAwesome';
  margin: 0 0.5em 0 -1em;
}

[class*="section-"] .views-row {
  border-top: 6px solid #00568D;
}

.section-insolvency .pane-views-panes {
  border-top: 6px solid #7b2972;
}

[class*="section-"] .views-row,
.page-insolvency .pane-views-panes {
  background: #e1e1e1 linear-gradient(to top right, #DADADA, #fff);
  min-height: 9em;
  float: left;
  width: 28%;
  margin: 0.5em 0.5em 0.5em 0;
  padding: 1em;
  display: block;
  overflow: hidden;
}

/* Section and glossary page */
.region-highlighted .view-announcements .item-list > ul,
.region-announcement .view-announcements .item-list > ul {
  margin: 0;
  padding: 0;
}

.region-highlighted .view-announcements li.views-row,
.region-announcement .view-announcements li.views-row {
  box-sizing: border-box;
  width: 100%;
  border: 0 none;
  background: #000;
  color: #FFF;
  min-height: auto;
  font-size: 90%;
  padding: 10px 20px 20px;
}

.section-glossary .views-row {
  width: 100%;
  min-height: auto;
}

.view-glossary-listing ul {
  padding: 0;
}

.view-glossary-listing .views-field-body {
  padding-top: 1em;
}

.section-insolvency .views-row {
  background: transparent;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: auto !important;
}

.page-taxonomy-term-886 .views-row {
  width: 44%;
  background-color: transparent;
  clear: none !important;
  border: 1px solid #CCC;
  border-top: 6px solid #00568D;
}

[class*="section-"] .views-row-4,
[class*="section-"] .views-row-7,
[class*="section-"] .views-row-10,
[class*="section-"] .views-row-13,
[class*="section-"] .views-row-16,
[class*="section-"] .views-row-19,
[class*="section-"] .views-row-22,
[class*="section-"] .views-row-25 {
  clear: left;
}

/* Creditor meeting */
.node-type-creditor-meeting .group-left,
.node-type-creditor-meeting .group-right {
  border: 1px solid #CCC;
  max-width: 44%;
  padding: 0 1.5em 1em;
  font-size: 90%;
  margin: 1em auto;
  min-height: 15em;
}

.node-type-creditor-meeting h2 {
  color: #00568D;
  margin-bottom: 0.4em;
}

/**
 * For  desktop view above 1500px.
 */
@media all and (min-width: 1500px) {
  #header .header-top,
  #content,
  #footer {
    padding: 0 20%;
  }
  .region-bottom .block {
    width: 57%;
  }
  .pane-announcements {
    padding: 0.5em 34.4%;
    margin-left: -34.4%;
  }
  .slide {
    padding: 0 37.2%;
    margin-left: -40%;
  }
  .list-element .center-wrapper .panel-col-first,
  .page-insolvency .list-element .center-wrapper .panel-col-last {
    width: 34%;
  }
  .front .list-element .center-wrapper .panel-col-last {
    width: 40%;
  }
}

/**
 * For normal desktop view below 1500px.
 */
@media all and (min-width: 960px) and (max-width: 1499px) {
  #header .header-top,
  #footer {
    padding: 0 10%;
  }
  .region-bottom .block {
    width: 77%;
  }
  .pane-announcements {
    padding: 0.5em 13.4%;
    margin-left: -13.4%;
  }
  .slide {
    padding: 0 16.2%;
    margin-left: -19%;
  }
  .page-insolvency .panels-flexible-36 {
    margin-top: -1.4em;
  }
}

/**
 * Use 3 grid columns for smaller screens.
 */
@media all and (min-width: 660px) and (max-width: 959px) {
  body:before {
    content: 'tablet';
  }
  #header .header-top {
    padding: 0 2em 0 2.5em;
  }
  .pane-announcements {
    padding: 0.5em 1.55em 0.5em 0.7em;
    margin-left: -1em;
  }
  article,
  .page-glossary .view-content .item-list,
  .ds-1col.node-creditor-meeting {
    width: 100%;
  }
  /* Creditor meeting */
  .node-type-creditor-meeting .group-left,
  .node-type-creditor-meeting .group-right {
    max-width: 40%;
  }
  /** Blocks for standard landing page. */
  .list-element .center-wrapper {
    width: 87%;
  }
  /** Blocks for standard landing page. */
  .page-insolvency .pane-views-panes,
  [class*="section-"] .views-row {
    width: 40%;
    clear: none;
  }
  .section-insolvency .views-row {
    width: auto;
  }
  .section-glossary .views-row,
  .view-careers .views-row {
    width: 90%;
  }
  /* Landing pages quicktabs on tablet display. */
  #quicktabs-container-view__level_1_landing_page__default {
    width: 40%;
  }
  /**
    * The layout when there is only one sidebar, the left one.
    */
  /**
     * The layout when there is only one sidebar, the right one.
     */
  /* Span 2 columns, starting in 1st column from left. */
  .sidebar-second #content {
    float: left;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: -66.66667%;
  }
  /* Span 1 column, starting in 3rd column from left. */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
  /**
     * The layout when there are two sidebars.
     */
  /* Span 2 columns, starting in 2nd column from left. */
  .two-sidebars #content {
    float: left;
    width: 66.66667%;
    margin-left: 33.33333%;
    margin-right: -100%;
  }
  /* Span 1 column, starting in 1st column from left. */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
  }
  /* Start a new row and span all 3 columns. */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left: 0;
    padding-right: 0;
    clear: left;
  }
  /* Apply the shared properties of grid items in a single, efficient ruleset. */
  .two-sidebars .region-sidebar-second .block {
    padding-left: 10px;
    padding-right: 10px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    *behavior: url("/path/to/boxsizing.htc");
    _display: inline;
    _overflow: hidden;
    _overflow-y: visible;
  }
  /* Span 1 column, starting in the 1st column from left. */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
    float: left;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: -33.33333%;
    clear: left;
  }
  /* Span 1 column, starting in the 2nd column from left. */
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
    float: left;
    width: 33.33333%;
    margin-left: 33.33333%;
    margin-right: -66.66667%;
  }
  /* Span 1 column, starting in the 3rd column from left. */
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
    float: left;
    width: 33.33333%;
    margin-left: 66.66667%;
    margin-right: -100%;
  }
}

/**
 * Use 5 grid columns for larger desktop screens.
 */
@media all and (min-width: 960px) {
  body:before {
    content: 'desktop';
  }
  /**
     * The layout when there is only one sidebar, the right one.
     */
  /* Span 4 columns, starting in 1st column from left. */
  .sidebar-second #content {
    float: left;
    width: 80%;
    margin-left: 0%;
    margin-right: -80%;
  }
  /* Span 1 column, starting in 5th column from left. */
  .sidebar-second .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
  /**
     * The layout when there are two sidebars.
     */
  /* Span 3 columns, starting in 2nd column from left. */
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  /* Span 1 column, starting in 1st column from left. */
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  /* Span 1 column, starting in 5th column from left. */
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}

/* Navigation bar */
@media all and (min-width: 660px) {
  #main {
    /* Move all the children of #main down to make room. */
    position: relative;
  }
  /** For standard landing page within sections. */
  .mobile {
    display: none;
  }
}

/**
 * Slide image background setting for different screen sizes.
 */
@media all and (min-width: 660px) and (max-width: 1499px) {
  .list-element .center-wrapper .panel-col-first {
    width: 40%;
  }
  .front .list-element .center-wrapper .panel-col-last {
    float: right;
    width: 49%;
  }
}

@media all and (min-width: 960px) and (max-width: 1199px) {
  .slide img {
    top: -40%;
    height: auto;
  }
}

@media all and (min-width: 1200px) {
  .slide img {
    top: -90%;
    height: auto;
  }
}

/**
 * Use for mobile smaller screens.
 */
@media all and (max-width: 659px) {
  body:before {
    content: 'mobile';
  }
  .desktop,
  .element-invisible,
  .element-focusable,
  #content {
    padding: 0;
  }
  /* Announcement notices */
  .pane-announcements,
  .region-highlighted .view-announcements li.views-row,
  .region-announcement .view-announcements li.views-row {
    display: inline-block;
  }
  .pane-announcements .item-list::before {
    position: absolute;
    right: 25%;
    font-size: 64px;
  }
  .region-highlighted .view-announcements li.views-row,
  .region-announcement .view-announcements li.views-row {
    margin-top: 1em;
  }
  .page-insolvency .region-highlighted .view-announcements li.views-row,
  .page-insolvency .region-announcement .view-announcements li.views-row {
    margin-bottom: -2em;
  }
  /* Slideshow landing page block */
  .slide {
    padding: 0;
    margin-left: 0;
    margin-top: 0.3em;
  }
  .page-insolvency .slide {
    width: 113%;
    margin-left: -6%;
  }
  .list-element .center-wrapper {
    top: 1em;
    position: relative;
    width: 94%;
  }
  .list-element .center-wrapper .panel-col-first {
    min-height: auto;
  }
  .transparent .list-element .center-wrapper .panel-col-first h2 {
    margin-top: 0;
    text-align: center;
  }
  .list-element {
    font-size: 84%;
  }
  .list-element h2 {
    width: 100%;
  }
  .list-element .field-name-field-read-more .field-item {
    width: 100%;
    margin: 0.4em 0 0.4em -0.5em;
    padding: 10px 1.5em 10px 1em;
  }
  .page-insolvency .list-element .field-name-field-read-more .field-item {
    padding: 10px 2em 10px 1em;
  }
  article,
  .page-glossary .view-content .item-list,
  .ds-1col.node-creditor-meeting {
    width: 100%;
  }
  /* Creditor meeting */
  .node-type-creditor-meeting .group-left,
  .node-type-creditor-meeting .group-right {
    min-height: auto;
  }
  /** Blocks for standard landing page. */
  [class*="section-"] #main {
    padding: 1em;
  }
  [class*="section-"] .views-row,
  .page-insolvency .pane-views-panes {
    width: 92%;
    min-height: 3em;
  }
  .view-careers .views-row {
    margin-left: -1em;
  }
  /* Landing pages quicktabs on mobile display. */
  #quicktabs-container-multilingual_resources,
  #quicktabs-container-view__level_1_landing_page__default {
    position: relative;
    left: 0;
    clear: left;
    padding-top: 1em;
    width: auto;
  }
  #quicktabs-multilingual_resources ul.quicktabs-tabs li {
    float: left;
    width: 33%;
    border: 1px dotted #FFF;
  }
  #quicktabs-multilingual_resources .item-list,
  #quicktabs-view__level_1_landing_page__default .item-list {
    width: 100%;
  }
  #quicktabs-multilingual_resources ul.quicktabs-tabs li.active a::after {
    content: "\f078";
    margin-top: 0;
    margin-right: 1.4em;
    font-size: 13px;
    color: #FFF;
  }
  #quicktabs-view__level_1_landing_page__default ul.quicktabs-tabs li.active a::after {
    content: "\f078";
    margin-top: 0;
    margin-right: 0;
    font-size: 1em;
    color: #FFF;
    position: relative;
    float: right;
  }
  /* Header */
  #header {
    background: #00568D;
    padding-top: 2em;
  }
}

@media all and (max-width: 659px) and (max-width: 660px) {
  #header {
    padding-top: 5em;
  }
}

@media all and (max-width: 659px) {
  /* Hide/Show mobile content */
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  /* Region bottom */
  .region-bottom {
    min-height: 7em;
  }
  /* Region header */
  .region-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #00568D;
    z-index: 1000;
  }
  .region-header .block {
    float: none;
    text-align: center;
    word-wrap: normal;
    display: flex;
    align-items: flex-end;
    min-width: 0;
  }
  .region-header > .block > .right-mar-one {
    margin-right: 0;
  }
  .region-header .block > div > a {
    padding: 10px;
  }
  .region-header .languages .atcb-link a {
    height: 20px;
  }
  /* Region header - Search block */
  .region-header .search-form-widget {
    position: fixed;
    top: 3.3em;
    z-index: 101;
    right: 0;
    background-color: #004B79;
    width: 94%;
    display: none;
  }
  .region-header .form-text {
    width: 70%;
    padding: 0.4em;
  }
  .region-header .form-type-textfield::after {
    color: #FFF;
    float: none;
  }
  .region-header .search-form-widget input[type="submit"] {
    right: 3em;
    width: 4.6em;
    z-index: 100;
    position: absolute;
  }
  .mobile.search-btn {
    color: #FFF;
    font-size: 0.75em;
    position: relative;
    top: 2px;
  }
  .search-btn .fa-search {
    height: 20px;
    width: 100%;
  }
  /* Languages and Services block */
  .languages {
    width: 80px;
    padding-bottom: 1px;
  }
  .online-services {
    width: 80px;
    position: relative;
  }
  .online-services a {
    font-size: 0.75em;
  }
  .languages .atcb-link,
  .languages .atcb-link:hover,
  .languages .atcb-link:active,
  .languages .atcb-link:focus,
  .online-services .atcb-link,
  .online-services .atcb-link:hover,
  .online-services .atcb-link:active,
  .online-services .atcb-link:focus {
    background: transparent none repeat scroll 0% 0% !important;
    box-shadow: none;
    overflow: hidden;
    line-height: 1.4;
  }
  .online-services .fa-user,
  .languages .fa-globe {
    font-size: 20px;
    height: 20px;
    line-height: 1;
    margin-bottom: 4px;
    width: 100%;
  }
  .online-services a.atcb-link {
    color: #FFF;
    min-width: 40px;
  }
  .online-services .atcb-list,
  .languages .atcb-list {
    margin-left: -65%;
  }
  a.contactus .fa {
    font-size: 18px;
    float: none;
    height: 18px;
    margin-top: 4px;
    width: 100%;
  }
  a.contactus {
    text-align: center;
  }
  div.toc-filter,
  div.toc-filter-bullet,
  div.toc-filter-number,
  div.toc-filter-faq,
  .toc-filter-back-to-top {
    display: none;
  }
  div.toc-filter {
    display: block;
    background: #ecedee;
  }
  div.toc-filter-content {
    background: none;
    border: none;
    font-size: 1.5rem;
  }
  div.toc-filter-content a {
    color: #7B2971;
  }
  div.toc-filter-content a:visited {
    color: #7B2971;
  }
  div.toc-filter-content a::before {
    content: '\f063 ';
    display: block;
    position: absolute;
    left: 0;
    transform: rotate(-45deg);
    font-weight: 100;
    font-family: 'FontAwesome';
    margin: 0 0.5em 0 -1em;
  }
  h2 {
    color: #7B2971;
    border: none;
  }
  .group-left,
  .group-right,
  .panels-flexible-region,
  .contextual-links-region,
  .panels-flexible-region-inside,
  .panel-panel,
  .full-width,
  .half-width,
  .third-width,
  .quarter-width {
    padding: 0;
  }
  .front .panels-flexible-region-1-top_right,
  .front .panels-flexible-region-1-top_left {
    float: left;
    margin-top: 0.5em;
    width: 93%;
  }
  /* Feedback form elements. */
  #webform-client-form-10041 .form-actions,
  #webform-client-form-1 .form-actions {
    float: none;
    text-align: right;
    margin: 1em;
  }
  #edit-submitted-was-this-information-helpful-options {
    width: 100%;
  }
  .environ {
    position: fixed;
  }
}

/* Responsive code for Youtube video */
.video-filter {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-filter iframe,
.video-filter object,
.video-filter embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.view-annual-report .views-row {
  background: #e1e1e1 linear-gradient(to top right, #DADADA, #fff);
  min-height: 14em;
  float: left;
  width: 28%;
  margin: 0.5em 0.5em 0.5em 0;
  padding: 1em;
  display: block;
  overflow: hidden;
}

@media (max-width: 960px) {
  .view-annual-report .views-row {
    width: 40%;
    clear: none;
  }
}

@media (max-width: 660px) {
  .view-annual-report .views-row {
    width: 94%;
    min-height: 3em;
  }
}

.annual-report {
  font-size: 80%;
  background: none;
  color: #555555;
  padding: 0 1em;
  border-top: 6px solid #00568D;
  overflow: hidden;
  margin-bottom: 1em;
  max-width: 92%;
}

.custom-counter {
  margin-left: 0;
  padding-right: 0;
  list-style-type: none;
}

.custom-counter li {
  margin: 0;
  margin-left: 0;
  margin-bottom: 15px;
  list-style-type: none;
  counter-increment: step-counter;
  margin-right: 5px;
  font-size: 100%;
  background-color: transparent;
  color: #7B2971;
  padding: 3px 8px;
  border-radius: 3px;
}

.custom-counter li:before {
  content: counter(step-counter);
  margin-right: 20px;
  font-size: 1em;
  color: #7B2971;
  font-weight: bold;
  padding: 3px 8px;
  border: 3px solid #7B2971;
  border-radius: 50%;
}

.page__title {
  line-height: 1;
}

#content h2, #content h3, #content h4, #content h5, #content h6 {
  margin-bottom: 10px;
  padding-bottom: 0;
}

#content h2 + p, #content h3 + p, #content h4 + p, #content h5 + p, #content h6 + p {
  margin-top: 10px;
}

.atcb-list {
  min-width: 125px !important;
}

/* Component (SMACSS module) rules */
/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/**
 * Wireframes.
 */
.add-wireframe,
.with-wireframes #header .header-top,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/**
 * Accessibility features.
 */
/* Hide elements to appear for print only. */
#header .header-top .print,
.print {
  display: none;
  visibility: hidden;
}

/* Turns off the element-invisible effect. */
.element-invisible,
.element-focusable,
#navigation .block-menu .block__title,
#navigation .block-menu-block .block__title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.element-focusable:active,
.element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/* The skip-link link will be completely hidden until a user tabs to the link. */
#skip-link {
  margin: 0;
}

/**
 * Branding header.
 */
/* Wrapping link for logo. */
.header__logo {
  float: left;
  /* LTR */
  margin: 0;
  padding: 1em 0;
}

/* Logo image. */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
.header__name-and-slogan {
  float: left;
}

/* The name of the website. */
.header__site-name {
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}

/* The link around the name of the website. */
.header__region .atcb-link {
  color: #fff;
}

.header__site-link:link,
.header__site-link:visited {
  color: #000;
  text-decoration: none;
}

.header__site-link:hover,
.header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
.header__secondary-menu {
  float: right;
  /* LTR */
}

/* Wrapper for any blocks placed in the header region. */
.region-header .menu li {
  display: inline;
}

/**
 * Breadcrumb navigation.
 */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.breadcrumb a {
  color: #00568D;
}

.section-insolvency .breadcrumb a {
  color: #7B2971;
}

/**
 * Titles.
 */
.page__title,
.node__title,
.block__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/**
 * Messages.
 */
.messages,
.messages--status,
.messages--warning,
.messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=");
  *background-image: url("../../images/message-24-ok.png");
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.messages--warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC");
  *background-image: url("../../images/message-24-warning.png");
  border-color: #ed5;
}

.messages--error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==");
  *background-image: url("../../images/message-24-error.png");
  border-color: #ed541d;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
.messages--error p.error {
  color: #333;
}

/* System status report. */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
.tabs-primary,
.tabs-secondary {
  overflow: hidden;
  *zoom: 1;
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

.tabs-primary__tab,
.tabs-primary__tab.is-active,
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

a.tabs-primary__tab-link,
a.tabs-primary__tab-link.is-active,
a.tabs-secondary__tab-link,
a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
.tabs-primary__tab,
.tabs-primary__tab.is-active {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

a.tabs-primary__tab-link,
a.tabs-primary__tab-link.is-active {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

a.tabs-primary__tab-link:hover,
a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

a.tabs-primary__tab-link:active,
a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

a.tabs-secondary__tab-link,
a.tabs-secondary__tab-link.is-active {
  border-radius: 0.75em;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

a.tabs-secondary__tab-link:hover,
a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

a.tabs-secondary__tab-link:active,
a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
.inline {
  display: inline;
  padding: 0;
}

.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
.more-link {
  text-align: right;
  /* LTR */
}

.more-help-link {
  text-align: right;
  /* LTR */
}

.more-help-link a {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC");
  *background-image: url("../../images/help.png");
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis,
.pager-current {
  /* The current page's list item. */
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

.pager-current {
  font-weight: bold;
}

/**
 * Blocks.
 */
/* Block wrapper. */
#block-webform-client-block-1 {
  clear: both;
}

/**
 * Menus.
 */
/**
 * Marker.
 */
/* The "new" or "updated" marker. */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
  /* Otherwise these elements will appear below the "Unpublished" text. */
  position: relative;
}

/**
 * Comments.
 */
/* Wrapper for the list of comments and its title. */
.comments {
  margin: 1em 0;
}

/* Preview of the comment before submitting new or updated comment. */
.comment-preview {
  /* Drupal core will use a #ffffea background. See #1110842. */
  background-color: #ffffea;
}

/* Wrapper for a single comment. */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* Nested comments are indented. */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
.form-item {
  margin: 1.5em 0;
}

/* Pack groups of checkboxes and radio buttons closer together. */
.form-checkboxes .form-item,
.form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}

/* Form items in a table. */
tr.odd .form-item,
tr.even .form-item {
  margin: 0;
}

/* Highlight the form elements that caused a form submission error. */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}

/* The descriptive help text (separate from the label). */
.form-item .description {
  font-size: 0.85em;
}

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
.form-required {
  color: #c00;
}

#footer span.form-required {
  display: none;
}

/* Labels for radios and checkboxes. */
label.option {
  display: inline;
  font-weight: normal;
}

/**
 * Branding footer.
 */
.region-bottom a {
  color: #FFF;
}

/* Buttons used by contrib modules like Media. */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Common button styles */
.blue-btn:hover,
.blue-btn:focus,
a.blue-btn:hover,
a.blue-btn:focus,
.grey-btn {
  background-color: #444444;
}

.grey-btn:hover,
.grey-btn:focus,
a.grey-btn:hover,
a.grey-btn:focus,
.blue-btn {
  background-color: #00568D;
}

.grey-btn,
.blue-btn {
  border-radius: 4px;
  padding: 7px 25px;
  display: inline-block;
}

a.grey-btn,
a.blue-btn,
.blue-btn a,
.grey-btn a {
  color: #FFF;
  text-decoration: none !important;
}

.blue-btn .field-items,
.grey-btn .field-items {
  padding-top: 0 !important;
}

/* Password confirmation. */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody {
  border-top: 1px solid #ccc;
}

form table ul {
  margin: 0;
}

tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

tr.even {
  background-color: #fff;
}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
  /* IE doesn't display borders on table rows. */
  border-bottom: 1px solid #ccc;
}

/* Markup generated by theme_tablesort_indicator(). */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
td.menu-disabled {
  background: #ccc;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js .collapsible .fieldset-legend {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==");
  *background-image: url("../../images/menu-expanded.png");
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}

html.js .collapsed .fieldset-legend {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC");
  /* LTR */
  *background-image: url("../../images/menu-collapsed.png");
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}

.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}

.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  border-radius: 3px;
}

.progress .filled {
  background-color: #0072b9;
  background-image: url("../../images/progress.gif");
}

/**
 * Back to top
 *
 * @see scrollTop.js
 */
a.js__scroll_top {
  position: fixed;
  bottom: 40px;
  right: 14px;
  color: #FFF;
  background: #444;
  padding: 10px;
  display: none;
  transition: all 0.3s ease;
  z-index: 1000;
  text-decoration: none;
  border-radius: 1em;
  border: 1px solid #666;
}

.toc-filter-back-to-top {
  display: none;
}

/**
 * Accordion behavior.
 *
 * @see mobileaccordion.js
 */
.ui-accordion-header {
  border: 1px solid #666;
  padding: 0.5em 1.2em;
  border-radius: 4px;
}

.ui-accordion-header:hover,
.ui-accordion-header:focus {
  cursor: pointer;
  background-color: #EAEAEA;
}

/**
 * et cetera, et cetera, et cetera
 */
.field-name-field-related-l,
.field-name-field-linkto {
  border: 0;
  border-radius: 0;
  border-left: 5px solid #555;
  background-color: #ecedee;
  font-size: 90%;
  margin: 1em 0;
  padding: 1em;
}

.field-name-field-related-l a,
.field-name-field-linkto a {
  color: #555;
}

.field-name-field-related-l a:visited,
.field-name-field-linkto a:visited {
  color: #555;
}

.field-name-field-related-l .field-label,
.field-name-field-linkto .field-label {
  color: #555;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.5em;
  margin-bottom: 1em;
  margin-top: 0;
  line-height: 1;
}

.field-name-field-related-l .field-item,
.field-name-field-linkto .field-item {
  font-size: 0.9em;
  margin-left: 20px;
}

.field-name-field-related-l .field-item a,
.field-name-field-linkto .field-item a {
  padding: 0.3em 0;
  display: block;
}

.field-name-field-related-l .field-item a:before,
.field-name-field-linkto .field-item a:before {
  content: '\f054 ';
  font-family: 'FontAwesome';
  margin: 0 0.5em 0 -1em;
}

/* Optionally, add your own components here. */
#divRss-practitioner .itemTitle {
  display: none;
}

/*! *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)*/
@font-face {
  font-family: 'FontAwesome';
  src: url("./fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("./fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("./fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("./fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("./fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("./fonts/fontawesome-webfont.svg?v=4.7.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;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .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: .14285714em;
  text-align: center;
}

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

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  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;
}

.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 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

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

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

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

.fa-flip-vertical {
  -ms-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: #fff;
}

.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-pp: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-resistance: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: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";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

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

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

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

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

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

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

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

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

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

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

.fa-linode:before {
  content: "\f2b8";
}

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

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}

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

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

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

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only, .homepage__wrap .views-field-field-image img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*** AddToCalendar Blue Style * http://addtocalendar.com */
/* Base */
.ds-1col.node-creditor-meeting .addtocalendar var {
  display: none;
}

.ds-1col.node-creditor-meeting .addtocalendar {
  position: relative;
  display: inline-block;
  background: #00568D;
  padding: 0.3em 0 0 1em;
  color: #fff;
}

.addtocalendar:before {
  content: "\f271";
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  top: 9px;
  left: 15px;
}

.atcb-link {
  display: block;
  outline: none !important;
  cursor: pointer;
}

.atcb-link:focus ~ ul, .atcb-link:active ~ ul, .atcb-list:hover {
  visibility: visible;
}

.addtocalendar .atcb-list {
  margin-left: -1em !important;
}

.atcb-list {
  visibility: hidden;
  position: absolute;
  z-index: 900;
}

.atcb-list, .atcb-item {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.atcb-item {
  float: none;
  text-align: left;
}

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block;
}

.atcb-item.hover, .atcb-item:hover {
  position: relative;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.ds-2col-fluid.node-creditor-meeting .addtocalendar var {
  display: none;
}

.ds-2col-fluid.node-creditor-meeting .addtocalendar {
  position: relative;
  display: inline-block;
  background: #00568D;
  margin: -2.5em 1em;
  padding: 0.3em 0 0 1em;
  color: #fff;
}

.addtocalendar:before {
  content: "\f271";
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  top: 9px;
  left: 15px;
}

.atcb-link {
  display: block;
  outline: none !important;
  cursor: pointer;
}

.atcb-link:focus ~ ul, .atcb-link:active ~ ul, .atcb-list:hover {
  visibility: visible;
}

.addtocalendar .atcb-list {
  margin-left: -1em !important;
}

.atcb-list {
  visibility: hidden;
  position: absolute;
  z-index: 900;
}

.atcb-list, .atcb-item {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.atcb-item {
  float: none;
  text-align: left;
}

.atcb-item-link {
  text-decoration: none;
  outline: none;
  display: block;
}

.atcb-item.hover, .atcb-item:hover {
  position: relative;
  z-index: 900;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

/* Theming */
/*** Use for mobile smaller screens. */
@media all and (max-width: 659px) {
  .addtocalendar {
    margin: 1em;
  }
}

.atcb-link, .atcb-link:hover, .atcb-link:active, .atcb-link:focus {
  margin: 0;
  padding: 7px 25px;
  text-decoration: none;
  outline: none;
  line-height: 20px;
  vertical-align: middle;
  color: #fff;
}

.atcb-list {
  width: auto;
  min-width: 170px;
  border: 1px solid #ccc;
}

.atcb-list, .atcb-item {
  background: #fff;
}

.atcb-item, .atcb-item-link {
  line-height: 1.3em;
  vertical-align: middle;
}

.atcb-item-link {
  color: #000;
  text-decoration: none;
  outline: none;
  padding: 5px 15px;
}

.atcb-item-link:hover, .atcb-item-link:active, .atcb-item-link:focus {
  color: #fff;
}

.atcb-item.hover, .atcb-item:hover {
  background: #444;
}

/**
 * CSS Styles for Annual Report 
 */
.node-type-annual-report .field-group-tabs-wrapper,
.node-type-annual-report h1,
.node-type-annual-report h2,
.node-type-annual-report h3,
.node-type-annual-report h4,
.node-type-annual-report h5,
.node-type-annual-report h6 {
  font-family: 'Roboto Condensed', sans-serif;
}

.node-type-annual-report h1,
.node-type-annual-report h2,
.node-type-annual-report h4 {
  color: #00568D;
}

.node-type-annual-report h2 {
  font-size: 2.3em;
  font-weight: normal;
}

.node-type-annual-report h3 {
  font-size: 2em;
}

.node-type-annual-report h4 {
  font-size: 1.6em;
}

.node-type-annual-report h5 {
  font-size: 1.2em;
  color: #444A55;
}

/**
 * Image styles
 */
.node-type-annual-report img {
  padding: 0.5em;
}

.node-type-annual-report .file-icon {
  padding: 0;
}

/**
 * Table styles
 */
.AR-blue-one tr, .AR-blue-one th, .AR-blue-one td,
.AR-blue-two tr, .AR-blue-two th, .AR-blue-two td {
  border: 1px solid #e6e7e8;
  padding: 0.5em;
}

.AR-blue-one thead th,
.AR-blue-two thead th {
  background-color: #00558F;
  color: #FFF;
}

.AR-blue-one tbody th,
.AR-blue-two tbody th {
  background-color: #DCE1EC;
  color: #00558F;
}

.AR-blue-two tr:last-of-type td,
.AR-blue-two tr:last-of-type th {
  background-color: #444955;
  color: #FFF;
}

.AR-grey-one tr, .AR-grey-one th, .AR-grey-one td,
.AR-grey-two tr, .AR-grey-two th, .AR-grey-two td {
  border: 1px solid #CCC;
  padding: 0.5em;
}

.AR-grey-one thead th,
.AR-grey-two thead th {
  background-color: #E7E7EC;
  color: #444A55;
}

.AR-grey-one tbody th,
.AR-grey-two tbody th {
  background-color: #444A55;
  color: #FFF;
}

.AR-grey-two tr:last-of-type td {
  background-color: #DCE1EC;
  color: #00558F;
}

.AR-grey-two tr:last-of-type th {
  background-color: #00558F;
  color: #FFF;
}

/**
 * Vertical tab styles
 */
.node-type-annual-report ul.vertical-tabs-list li.selected {
  border-left: 4px solid #00558F;
}

@media all and (max-width: 659px) {
  .vertical-tabs {
    width: 99% !important;
    margin: 0 !important;
  }
  .vertical-tabs-list {
    position: fixed !important;
    bottom: 0;
    left: 1px;
    width: 24% !important;
    font-size: 0.8em;
    margin: 0 !important;
    z-index: 500;
  }
  .vertical-tabs-panes {
    width: 80%;
    margin-left: 19%;
  }
}

/**
 * CSS Styles for Current Vacancies content type
*/
.node-current-vacancies {
  background: #E7EFF6 url("../../images/headerbg.png") no-repeat right bottom;
  float: left;
  width: 100%;
}

.node-type-current-vacancies #page-title {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.node-current-vacancies .group-left,
.node-current-vacancies .group-right,
.node-current-vacancies .group-footer,
.node-current-vacancies .group-header .field-name-field-tagline {
  font-family: 'Roboto Slab', serif;
}

.node-current-vacancies .group-header,
.node-current-vacancies .group-left,
.node-current-vacancies .group-right,
.node-current-vacancies .group-footer {
  color: #00568d;
}

.node-current-vacancies .group-header a,
.node-current-vacancies .group-left a,
.node-current-vacancies .group-right a,
.node-current-vacancies .group-footer a {
  border-bottom: 1px dotted;
}

.node-current-vacancies .field-name-field-feature-image {
  text-align: center;
  max-height: 380px;
  position: relative;
  overflow: hidden;
}

.node-current-vacancies .field-name-field-feature-image img {
  width: 100%;
}

.node-current-vacancies .group-header .field-name-field-closing-date {
  float: right;
  margin: -1.5em 0 0 0;
  z-index: 1;
  background-color: #FFF;
  position: relative;
  padding: 0 1em;
}

.node-current-vacancies span.date-display-single {
  font-size: initial;
}

.node-current-vacancies .group-header .field-name-field-tagline {
  text-align: center;
  font-weight: 300;
  font-size: 1.3em;
  margin-bottom: 1em;
}

.node-current-vacancies .group-left {
  padding-left: 3em;
  margin-right: -6em;
}

@media (max-width: 659px) {
  .node-current-vacancies .group-left {
    padding-left: 1em;
    margin-right: 0;
    box-sizing: border-box;
  }
}

.node-current-vacancies .group-right {
  padding-left: 3em;
}

@media (max-width: 659px) {
  .node-current-vacancies .group-right {
    padding-left: 0.5em;
    box-sizing: border-box;
  }
}

.node-current-vacancies .group-left .field-items {
  display: table;
}

.node-current-vacancies .field-name-field-aps-classification .field-item,
.node-current-vacancies .field-name-field-work-hours .field-item,
.node-current-vacancies .field-name-field-job-type .field-item,
.node-current-vacancies .field-name-field-job-location .field-item {
  display: inline;
  padding-right: 0.44em;
  float: left;
}

.node-current-vacancies .group-left .field,
.node-current-vacancies .group-right .field {
  clear: left;
  max-width: 94%;
}

.node-current-vacancies .field-name-field-aps-classification:before,
.node-current-vacancies .field-name-field-work-hours:before,
.node-current-vacancies .field-name-field-job-type:before,
.node-current-vacancies .field-name-field-job-location:before,
.node-current-vacancies .field-name-field-contact-officer:before,
.node-current-vacancies .field-name-field-contact-officer-phone:before,
.node-current-vacancies .field-name-field-event-email:before {
  font-family: 'FontAwesome';
  margin: -0.5em 0.2em 0.2em 0;
  float: left;
}

.node-current-vacancies .field-name-field-job-location:before {
  font-size: 3.2em;
  content: "\f041";
}

.node-current-vacancies .field-name-field-job-type:before {
  font-size: 2.2em;
  content: "\f0b1";
}

.node-current-vacancies .field-name-field-work-hours:before {
  font-size: 2.5em;
  content: "\f017";
}

.node-current-vacancies .field-name-field-aps-classification:before {
  font-size: 2em;
  content: "\f19c";
}

.node-current-vacancies .field-name-field-contact-officer:before {
  font-size: 2.2em;
  content: "\f2be";
}

.node-current-vacancies .field-name-field-contact-officer-phone:before {
  font-size: 2.6em;
  content: "\f095";
}

.node-current-vacancies .field-name-field-event-email:before {
  font-size: 2.2em;
  content: "\f003";
}

.node-current-vacancies .field-name-field-aps-classification .field-item:after,
.node-current-vacancies .field-name-field-job-location .field-item:after {
  content: ",";
}

.node-current-vacancies .field-name-field-work-hours .field-item:after,
.node-current-vacancies .field-name-field-job-type .field-item:after {
  content: " /";
}

.node-current-vacancies .field-name-field-aps-classification .field-item:last-of-type:after,
.node-current-vacancies .field-name-field-job-location .field-item:last-of-type:after,
.node-current-vacancies .field-name-field-work-hours .field-item:last-of-type:after,
.node-current-vacancies .field-name-field-job-type .field-item:last-of-type:after {
  content: "";
}

.node-current-vacancies img.file-icon {
  display: none;
}

.node-current-vacancies .field .file::before {
  font-size: 2.3em;
  content: "\f019";
  font-family: 'FontAwesome';
  margin: -0.3em 0.2em 0.2em 0em;
  float: left;
}

.node-current-vacancies .field-type-link-field a.grey-btn {
  border-bottom: none;
  border-bottom-left-radius: 1.4em;
  margin-bottom: 1em;
}

.node-current-vacancies .field-type-link-field a.grey-btn:before {
  font-family: 'FontAwesome';
  margin: -0.3em 0.4em -1em 0;
  font-size: 1.8em;
  content: "\f05a";
  float: left;
}

.node-current-vacancies .field-name-field-tagline {
  padding: 0 1em;
}

.node-current-vacancies fieldset {
  background-color: #00568d;
  border: none;
  border-radius: 1em;
  margin: 0 2em 1em;
  padding: 1em 1em 2em;
  color: #FFF;
}

.node-current-vacancies fieldset a {
  color: #FFF;
  border-bottom: 1px dotted;
}

.node-current-vacancies a.fieldset-title {
  position: absolute;
  width: 94%;
  padding: 0.4em;
  border: none;
}

.node-current-vacancies .fieldset-legend {
  background: none !important;
  padding: 1em 0.8em 0 0 !important;
  height: 0;
}

.node-current-vacancies .fieldset-legend:after {
  font-family: 'FontAwesome';
  font-size: 1.6em;
  content: "\f059";
  right: 2em;
  position: absolute;
  color: #FFF;
}

/**
 * CSS Styles for Current Vacancies heading styles
*/
.node-current-vacancies .field-name-title h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  clear: both;
}

.node-current-vacancies h4 {
  margin-bottom: -0.4em;
  line-height: 0;
}

/**
 * CSS Styles for Talent Pool heading styles
*/
.talent-pool .group-left,
.talent-pool .group-right,
.talent-pool .group-header {
  min-width: 84%;
  font-size: 0.84em;
}

.talent-pool .views-row h2 a {
  color: #fff;
  background-color: #00568D;
}

.talent-pool .views-row h2 a::after {
  content: "";
}

.talent-pool .views-row h2 a:hover,
.talent-pool .views-row h2 a:focus {
  background-color: #444444;
}

/**
 * CSS Styles for Current Vacancies listing page
*/
.page-about-careers-current-vacancies .node-current-vacancies .field-name-title h2 a {
  background-color: #F1F1F1;
  margin-bottom: 1.3em;
  text-align: left;
  font-weight: normal;
  z-index: 3;
  display: block;
  position: relative;
}

.page-about-careers-current-vacancies .node-current-vacancies .field-name-title h2 a:hover,
.page-about-careers-current-vacancies .node-current-vacancies .field-name-title h2 a:focus {
  background-color: #00568D;
}

.page-about-careers-current-vacancies .node-current-vacancies .group-header {
  clear: both;
  float: left;
  width: 99%;
}

.page-about-careers-current-vacancies .node-current-vacancies .group-left,
.page-about-careers-current-vacancies .node-current-vacancies .group-right {
  font-size: 0.84em;
}

.page-about-careers-current-vacancies .views-row {
  width: 98%;
  position: relative;
}

.page-about-careers-current-vacancies .views-row .group-header {
  padding-bottom: 1em;
}

.page-about-careers-current-vacancies .views-row .ds-2col-stacked > .group-right {
  width: 64%;
}

@media (max-width: 659px) {
  .page-about-careers-current-vacancies .views-row .ds-2col-stacked > .group-right {
    width: 100%;
    float: none;
  }
}

.page-about-careers-current-vacancies .views-row .ds-2col-stacked > .group-left {
  width: 33.3%;
}

@media (max-width: 659px) {
  .page-about-careers-current-vacancies .views-row .ds-2col-stacked > .group-left {
    width: 100%;
    float: none;
  }
}

.page-about-careers-current-vacancies .node-current-vacancies .field-name-node-link a:hover,
.page-about-careers-current-vacancies .node-current-vacancies .field-name-node-link a:focus {
  background-color: #FFF;
  opacity: 0.3;
}

.page-about-careers-current-vacancies .node-current-vacancies .field-name-node-link a {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: 2em;
  z-index: 1;
}

.page-about-careers .node-current-vacancies .field-name-field-feature-image {
  opacity: 0.2;
  position: absolute;
  width: 100%;
  max-height: 15.3em;
  z-index: 0;
  margin-top: -4em;
}

@media all and (max-width: 489px) {
  .page-about-careers .node-current-vacancies .field-name-field-feature-image {
    display: none;
  }
  .node-current-vacancies {
    padding-bottom: 1em;
  }
  .talent-pool .views-row {
    width: 99%;
  }
}

@media (max-width: 659px) {
  .node-type-current-vacancies .node-current-vacancies.ds-2col-stacked .group-header h2 {
    padding-top: 20px;
  }
  .node-type-current-vacancies .node-current-vacancies.ds-2col-stacked .group-left {
    float: none;
    width: 100%;
  }
  .node-type-current-vacancies .node-current-vacancies.ds-2col-stacked .group-left .field {
    padding-bottom: 20px;
  }
  .node-type-current-vacancies .node-current-vacancies.ds-2col-stacked .group-right {
    float: none;
    width: 100%;
    padding-left: 1em;
  }
  .node-type-current-vacancies .node-current-vacancies.ds-2col-stacked .field {
    padding-bottom: 20px;
  }
  .node-type-current-vacancies .node-current-vacancies.ds-2col-stacked .group-footer .form-wrapper .fieldset-legend:after {
    right: 1em;
  }
  .node-type-careers.section-careers .node-careers.ds-2col-stacked .group-left {
    float: none;
    width: 100%;
  }
  .node-type-careers.section-careers .node-careers.ds-2col-stacked .group-right {
    float: none;
    width: 100%;
    padding-left: 1em;
  }
}

/* SMACSS theme rules */
/* @import "theme-A.css"; */
/* @import "theme-B.css"; */
@font-face {
  font-family: "icomoon";
  src: url("../css/fonts/fonts/icomoon.eot?4923dw");
  src: url("../css/fonts/fonts/icomoon.eot?4923dw#iefix") format("embedded-opentype"), url("../css/fonts/fonts/icomoon.ttf?4923dw") format("truetype"), url("../css/fonts/fonts/icomoon.woff?4923dw") format("woff"), url("../css/fonts/fonts/icomoon.svg?4923dw#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-icon_timer:before {
  content: "";
}

.icon-icon_download:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-stopwatch:before {
  content: "";
}

#main {
  min-height: 534px;
  /* Delete this section when CSS grid support is not an issue any more */
}

#main > #content {
  grid-area: content-n;
  padding: 0;
}

@media (max-width: 959px) {
  #main > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (max-width: 1499px) {
  #main > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (min-width: 660px) {
  #main > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

#main > .sidebar.first {
  grid-area: first-sb-f;
}

#main > .sidebar.second {
  grid-area: second-sb-s;
}

#main.has-first-sidebar > #content {
  grid-area: content-f;
}

@media (max-width: 959px) {
  #main > .sidebar.first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main.has-first-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

@media (max-width: 1499px) {
  #main > .sidebar.first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main.has-first-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

@media (min-width: 660px) {
  #main > .sidebar.first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main.has-first-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

#main.has-second-sidebar > #content {
  grid-area: content-s;
}

@media (max-width: 959px) {
  #main > .sidebar.second {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #main.has-second-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (max-width: 1499px) {
  #main > .sidebar.second {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #main.has-second-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (min-width: 660px) {
  #main > .sidebar.second {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #main.has-second-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

#main.has-first-sidebar.has-second-sidebar > #content {
  grid-area: content-fs;
}

#main.has-first-sidebar.has-second-sidebar > .sidebar.first {
  grid-area: first-sb-fs;
}

#main.has-first-sidebar.has-second-sidebar > .sidebar.second {
  grid-area: second-sb-fs;
}

@media (max-width: 959px) {
  #main.has-first-sidebar.has-second-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #main.has-first-sidebar.has-second-sidebar > .sidebar.first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main.has-first-sidebar.has-second-sidebar > .sidebar.second {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
}

@media (max-width: 1499px) {
  #main.has-first-sidebar.has-second-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #main.has-first-sidebar.has-second-sidebar > .sidebar.first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main.has-first-sidebar.has-second-sidebar > .sidebar.second {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
}

@media (min-width: 660px) {
  #main.has-first-sidebar.has-second-sidebar > #content {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #main.has-first-sidebar.has-second-sidebar > .sidebar.first {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  #main.has-first-sidebar.has-second-sidebar > .sidebar.second {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
}

@media (min-width: 660px) {
  #main {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 20% 1em 1fr 20%;
        grid-template: "..... ... content-n ....."/20% 1em 1fr 20%;
  }
  #main.has-first-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 20% 1em 300px 30px 1fr 20%;
        grid-template: "..... ... first-sb-f .... content-f ....."/20% 1em 300px 30px 1fr 20%;
  }
  #main.has-second-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 20% 1em 1fr 30px 300px 20%;
        grid-template: "..... ... content-s .... second-sb-s ....."/20% 1em 1fr 30px 300px 20%;
  }
  #main.has-first-sidebar.has-second-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 20% 1em 200px 30px 1fr 30px 200px 20%;
        grid-template: "..... ... first-sb-fs .... content-fs .... second-sb-fs ....."/20% 1em 200px 30px 1fr 30px 200px 20%;
  }
}

@media (max-width: 1499px) {
  #main {
    -ms-grid-rows: auto;
    -ms-grid-columns: 10% 1em 1fr 10%;
        grid-template: "..... ... content-n ....."/10% 1em 1fr 10%;
  }
  #main.has-first-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 10% 1em 250px 30px 1fr 10%;
        grid-template: "..... ... first-sb-f .... content-f ....."/10% 1em 250px 30px 1fr 10%;
  }
  #main.has-second-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 10% 1em 1fr 30px 250px 10%;
        grid-template: "..... ... content-s .... second-sb-s ....."/10% 1em 1fr 30px 250px 10%;
  }
  #main.has-first-sidebar.has-second-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 10% 1em 200px 30px 1fr 30px 200px 10%;
        grid-template: "..... ... first-sb-fs .... content-fs .... second-sb-fs ....."/10% 1em 200px 30px 1fr 30px 200px 10%;
  }
}

@media (max-width: 959px) {
  #main {
    -ms-grid-rows: auto;
    -ms-grid-columns: 2em 1em 1fr 2em;
        grid-template: "..... ... content-n ....."/2em 1em 1fr 2em;
  }
  #main.has-first-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 2em 1em 200px 30px 1fr 2em;
        grid-template: "..... ... first-sb-f .... content-f ....."/2em 1em 200px 30px 1fr 2em;
  }
  #main.has-second-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 2em 1em 1fr 30px 200px 2em;
        grid-template: "..... ... content-s .... second-sb-s ....."/2em 1em 1fr 30px 200px 2em;
  }
  #main.has-first-sidebar.has-second-sidebar {
    -ms-grid-rows: auto;
    -ms-grid-columns: 2em 1em 150px 30px 1fr 30px 150px 2em;
        grid-template: "..... ... first-sb-fs .... content-fs .... second-sb-fs ....."/2em 1em 150px 30px 1fr 30px 150px 2em;
  }
}

@supports (not (display: grid)) and (not (display: -ms-grid)) {
  @media (min-width: 660px) {
    #main {
      display: flex;
      justify-content: center;
    }
    #main > #content {
      width: 80%;
    }
    #main > .sidebar {
      width: 20%;
    }
    #main > .sidebar.first {
      margin-right: 2%;
    }
    #main > .sidebar.second {
      margin-left: 2%;
    }
    #main.has-first-sidebar > #content, #main.has-second-sidebar > #content {
      width: 56%;
    }
    #main.has-first-sidebar.has-second-sidebar > #content {
      width: 40%;
    }
    #main.has-first-sidebar.has-second-sidebar > .sidebar {
      width: 18%;
    }
  }
  @media (min-width: 1500px) {
    #main > #content {
      width: 60%;
    }
    #main > .sidebar {
      width: 15%;
    }
    #main.has-first-sidebar > #content, #main.has-second-sidebar > #content {
      width: 43%;
    }
    #main.has-first-sidebar.has-second-sidebar > #content {
      width: 32%;
    }
    #main.has-first-sidebar.has-second-sidebar > .sidebar {
      width: 13%;
    }
  }
}

.revealer {
  background: #ECEDEE;
  border-top: 1px solid #00568D;
}

.section-insolvency .revealer {
  background-color: #F3F4F5;
  border-top-color: #7B2971;
}

.revealer__triggerWrap {
  display: flex;
}

.revealer__triggerWrap a {
  color: #00568D;
}

.section-insolvency .revealer__triggerWrap a {
  color: #7B2971;
}

.revealer__heading, .revealer__trigger {
  transition: background-color 0.3s;
  color: #00568D;
}

.revealer__heading:hover, .revealer__heading:focus, .revealer__trigger:hover, .revealer__trigger:focus {
  text-decoration: none;
}

.revealer__heading:hover, .revealer__trigger:hover {
  background: #d9dbdd;
}

.revealer__heading:focus, .revealer__trigger:focus {
  outline: 1px solid currentColor;
  outline-offset: -2px;
}

.section-insolvency .revealer__heading, .section-insolvency .revealer__trigger {
  color: #7B2971;
}

.section-insolvency .revealer__heading:hover, .section-insolvency .revealer__trigger:hover {
  background-color: #E4D4E3;
}

.revealer__heading {
  flex-grow: 1;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 10px;
  transition: background-color 0.3s;
}

.revealer__heading.-clickable {
  cursor: pointer;
  padding-right: 0;
}

.revealer__trigger {
  background: transparent;
  position: relative;
}

.revealer__heading + .revealer__trigger {
  width: 48px;
}

.revealer__triggerText {
  flex-grow: 1;
}

.revealer__triggerText + .revealer__icon {
  width: 48px;
}

.revealer__icon {
  display: block;
  position: relative;
}

.revealer__icon::before, .revealer__icon::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.5s;
}

.revealer__icon.-plus::before, .revealer__icon.-plus::after {
  background: currentColor;
}

.-hidden > * > * > .revealer__icon.-plus::before,
.-hidden > * > .revealer__icon.-plus::before, .-hidden > * > * > .revealer__icon.-plus::after,
.-hidden > * > .revealer__icon.-plus::after {
  transform: rotate(0);
}

.revealer__icon.-plus::before {
  height: 2px;
  width: 16px;
  transform: rotate(1turn);
}

.revealer__icon.-plus::after {
  height: 16px;
  width: 2px;
  transform: rotate(1.25turn);
}

.revealer__icon.-chevron {
  perspective: 100px;
}

.revealer__icon.-chevron::before {
  height: 10px;
  width: 10px;
  border: 0 solid currentColor;
  border-width: 2px 0 0 2px;
  transform: rotateX(0deg) rotateZ(45deg);
  transform-style: preserve-3d;
  transform-origin: 10% 50%;
}

.-hidden > * > * > .revealer__icon.-chevron::before {
  transform: rotateX(180deg) rotateZ(45deg);
}

.revealer__expander {
  transition: max-height 0.5s;
  overflow: hidden;
  visibility: visible;
}

.-hidden > .revealer__expander {
  max-height: 0 !important;
  transition: max-height 0.5s, visibility 0s 0.5s;
  visibility: hidden;
}

.region-navigation {
  background-color: #ecedee;
  box-sizing: border-box;
  outline: none;
}

body:not(.front) .region-navigation {
  margin-bottom: 2rem;
}

@media (min-width: 660px) {
  body:not(.front) .region-navigation {
    padding-bottom: 3.875rem;
  }
}

@media (max-width: 659px) {
  .region-navigation {
    position: fixed;
    top: 3.7em;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: calc(100% - 50px);
    transform: translateX(-100%);
    transition: transform 0.5s, visibility 0s 0.5s;
    max-height: calc(100vh - 3.3em);
    visibility: hidden;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
  }
  .region-navigation .block-menu-block {
    background: #ECEDEE;
    width: 100%;
    padding-bottom: 30px;
    overflow: auto;
    max-height: 100%;
  }
  .region-navigation .navigation__overlay {
    position: absolute;
    top: 0;
    left: 100%;
    bottom: 0;
    width: 50px;
    pointer-events: none;
  }
  .region-navigation.-showMobileNav {
    transition: transform 0.5s;
    transform: translateX(0);
    visibility: visible;
  }
  .region-navigation.-showMobileNav .navigation__overlay {
    pointer-events: auto;
  }
}

.region-navigation *, .region-navigation *::before, .region-navigation *::after {
  box-sizing: inherit;
}

.region-navigation .menu-block-wrapper {
  position: relative;
  z-index: 100;
  max-width: 100%;
}

@media (max-width: 659px) {
  .region-navigation .menu-block-wrapper .revealer__trigger {
    background: transparent !important;
  }
}

@media (min-width: 660px) and (max-width: 959px) {
  .region-navigation .menu-block-wrapper {
    margin: 0 2em 0 2.5em;
  }
}

@media (min-width: 960px) {
  .region-navigation .menu-block-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 1500px) {
  .region-navigation .menu-block-wrapper {
    max-width: 100%;
  }
}

.region-navigation .menu-block-wrapper a {
  display: block;
  padding: 16px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 659px) {
  .region-navigation .menu-block-wrapper a {
    padding-left: 25px;
  }
  .region-navigation .menu-block-wrapper a, .region-navigation .menu-block-wrapper a:hover, .region-navigation .menu-block-wrapper a:focus {
    background: transparent;
  }
}

@media (min-width: 660px) {
  .region-navigation .menu-block-wrapper a {
    font-family: 'Roboto Condensed', sans-serif;
    border-bottom: 6px solid transparent;
    transition: border-bottom-color 0.3s;
  }
  .region-navigation .menu-block-wrapper a:hover, .region-navigation .menu-block-wrapper a:focus, .region-navigation .menu-block-wrapper a.active {
    border-bottom-color: #00568D;
  }
  .region-navigation .menu-block-wrapper a[href="/"] {
    color: transparent;
    font-size: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .region-navigation .menu-block-wrapper a[href="/"]::before {
    content: "\f015";
    font-size: 20px;
    line-height: 1;
    color: #000;
    font-family: 'FontAwesome';
  }
}

.region-navigation .menu-block-wrapper > .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  max-width: 100%;
  margin: auto;
}

@media (min-width: 660px) {
  .region-navigation .menu-block-wrapper > .menu {
    max-width: 100%;
  }
}

@media (min-width: 960px) {
  .region-navigation .menu-block-wrapper > .menu {
    max-width: 80%;
  }
}

@media (min-width: 1500px) {
  .region-navigation .menu-block-wrapper > .menu {
    max-width: 60%;
  }
}

.region-navigation .menu-block-wrapper > .menu .menu__item .menu {
  max-width: 100%;
}

.region-navigation .menu-block-wrapper > .menu .menu__item .menu .first {
  margin-left: 20%;
}

@media (max-width: 660px) {
  .region-navigation .menu-block-wrapper > .menu .menu__item .menu .first {
    margin-left: 0;
  }
}

@media (min-width: 660px) {
  .region-navigation .menu-block-wrapper > .menu .menu__item .menu .first {
    margin-left: 0;
  }
}

@media (min-width: 960px) {
  .region-navigation .menu-block-wrapper > .menu .menu__item .menu .first {
    margin-left: 10%;
  }
}

@media (min-width: 1500px) {
  .region-navigation .menu-block-wrapper > .menu .menu__item .menu .first {
    margin-left: 20%;
  }
}

.region-navigation .menu-block-wrapper > .menu > .expanded > a {
  position: relative;
  padding-right: 28px;
}

@media (min-width: 660px) {
  .region-navigation .menu-block-wrapper > .menu > .expanded > a::after {
    content: '';
    height: 7px;
    width: 7px;
    border: 0 solid #000;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto 0;
    transform: rotate(45deg);
  }
}

@media (max-width: 659px) {
  .region-navigation .menu-block-wrapper > .menu {
    display: block;
    width: 100%;
    border-bottom: 1px solid #D4D4D4;
  }
  .region-navigation .menu-block-wrapper > .menu li.is-active-trail > .revealer__triggerWrap, .region-navigation .menu-block-wrapper > .menu li.is-active-trail > a, .region-navigation .menu-block-wrapper > .menu li.is-active > .revealer__triggerWrap, .region-navigation .menu-block-wrapper > .menu li.is-active > a {
    background-color: var(--navTheme--main, #00568D);
    color: #fff !important;
  }
  .region-navigation .menu-block-wrapper > .menu > li {
    color: #000;
    border-color: #D4D4D4;
    font-size: 1.125em;
    transition-property: background-color, color;
    transition-duration: 0.5s;
  }
  .region-navigation .menu-block-wrapper > .menu > li.-hidden {
    background-color: var(--navTheme--pale, #ECEDEE) !important;
    color: #000 !important;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) {
    background-color: var(--navTheme--main, #ECEDEE);
    color: #fff;
    --navTheme--main: #7B2971;
    --navTheme--light: #E4D4E3;
    --navTheme--dark: #dac4d9;
  }
}

@media (max-width: 659px) and (min-width: 960px) {
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) {
    --navTheme--pale: #eee4ed;
  }
}

@media (max-width: 659px) {
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) {
    background-color: var(--navTheme--main, #ECEDEE);
    color: #fff;
    --navTheme--main: #046274;
    --navTheme--light: #D6F4F9;
  }
}

@media (max-width: 659px) and (min-width: 960px) {
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) {
    --navTheme--pale: #ecfafc;
  }
}

@media (max-width: 659px) {
  .region-navigation .menu-block-wrapper > .menu > li .revealer__triggerWrap > *, .region-navigation .menu-block-wrapper > .menu > li a {
    color: inherit;
  }
  .region-navigation .menu-block-wrapper > .menu > li > .revealer__expander > ul {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--navTheme--main, #00568D);
  }
  .region-navigation .menu-block-wrapper > .menu > li > .revealer__expander > ul li {
    background: var(--navTheme--light, #d9dbdd);
  }
  .region-navigation .menu-block-wrapper > .menu > li > .revealer__expander > ul a {
    padding-left: 50px;
    color: #000;
  }
}

@media (min-width: 660px) {
  .region-navigation .menu-block-wrapper > .menu > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    background: #d9dbdd;
    list-style: none;
    padding-left: 0;
    opacity: 0;
    transition: 0.5s;
  }
  .region-navigation .menu-block-wrapper > .menu > li.-hover > ul, .region-navigation .menu-block-wrapper > .menu > li.is-active-trail > ul {
    opacity: 1;
    pointer-events: auto;
  }
  .region-navigation .menu-block-wrapper > .menu > li.-hover > ul {
    z-index: 1;
  }
  .region-navigation .menu-block-wrapper > .menu > li.is-active-trail.-hoverOut > ul {
    transition-delay: 0.3s;
  }
  .region-navigation .menu-block-wrapper > .menu > li.-hoverOut:not(.is-active-trail) > ul {
    pointer-events: none;
  }
  .region-navigation .menu-block-wrapper > .menu > li:hover > a {
    border-bottom-color: #00568D;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) a:hover, .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) a:focus, .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) a.active {
    border-bottom-color: #7B2971;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(2):hover > a {
    border-bottom-color: #7B2971;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) ul, .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) ul::before, .region-navigation .menu-block-wrapper > .menu > li:nth-child(2) ul::after {
    background-color: #E4D4E3;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) a:hover, .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) a:focus, .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) a.active {
    border-bottom-color: #046274;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(3):hover > a {
    border-bottom-color: #046274;
  }
  .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) ul, .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) ul::before, .region-navigation .menu-block-wrapper > .menu > li:nth-child(3) ul::after {
    background-color: #D6F4F9;
  }
  .region-navigation .menu-block-wrapper > .menu.-hasHover > .is-active-trail:not(:hover) > ul {
    opacity: 0;
    pointer-events: none;
  }
}

.region-navigation .menu-block-wrapper > .menu > li > ul::before {
  background: #d9dbdd;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 110%;
  z-index: -1;
}

@media (min-width: 1024px) {
  .region-navigation .menu-block-wrapper > .menu > li > ul::before {
    width: 125%;
  }
}

.region-navigation .menu-block-wrapper > .menu > li > ul:before {
  left: -5.6%;
}

@media (min-width: 1024px) {
  .region-navigation .menu-block-wrapper > .menu > li > ul:before {
    left: -12.5%;
  }
}

.sidenav {
  font-family: 'Roboto', sans-serif;
  width: 100%;
}

.sidenav * {
  font-family: inherit;
}

.sidenav .block-title {
  font-weight: normal;
  padding: 1rem 10px;
  font-size: 1.5em;
  color: #00568D;
  border: 0;
}

@media (min-width: 660px) {
  .sidenav .block-title {
    padding-right: 0;
    font-weight: bold;
    cursor: text;
    background: transparent !important;
  }
  .sidenav .block-title .revealer__icon {
    display: none;
  }
}

.section-insolvency .sidenav .block-title {
  color: #7B2971;
}

.sidenav .menu-block-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
}

.section-insolvency .sidenav .menu-block-wrapper {
  border-bottom-color: #7B2971 !important;
}

.sidenav .menu-block-wrapper .is-active-trail > a, .sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap > *:not(.revealer__triggerText) {
  background-color: #7B2972 !important;
  color: #ECEDEE !important;
}

.section-insolvency .sidenav .menu-block-wrapper .is-active-trail > a, .section-insolvency .sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap > *:not(.revealer__triggerText) {
  background-color: #E4D4E3 !important;
  color: #7b2972 !important;
}

.sidenav .menu-block-wrapper .is-active-trail > a:before, .sidenav .menu-block-wrapper .is-active-trail > a:after, .sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap > *:not(.revealer__triggerText):before, .sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap > *:not(.revealer__triggerText):after {
  border-color: currentColor !important;
}

.sidenav .menu-block-wrapper .is-active-trail > a:focus, .sidenav .menu-block-wrapper .is-active-trail > a:hover, .sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap > *:not(.revealer__triggerText):focus, .sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap > *:not(.revealer__triggerText):hover {
  box-shadow: inset 0 0 0 1px currentColor !important;
  background-color: #8e2f84 !important;
  color: #E4D4E3 !important;
}

.sidenav .menu-block-wrapper .is-active-trail > .revealer__triggerWrap {
  border-bottom: 1px solid currentColor;
}

.sidenav .menu-block-wrapper > .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul {
  padding: 0;
  list-style: none;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li {
  list-style: none;
  padding-left: 0;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a {
  padding: 10px 20px;
  padding-left: 35px;
  display: block;
  position: relative;
  color: #000;
  transition: background-color 0.3s;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a::before {
  content: '';
  display: block;
  position: absolute;
  top: 1.15em;
  left: 12px;
  height: 7px;
  width: 7px;
  border: 0 solid #000;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a:hover {
  text-decoration: none;
  background: #d9dbdd;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a:hover:before {
  transform: rotate(45deg) translate(2px, -2px);
}

.section-insolvency .sidenav .menu-block-wrapper > .menu > li > * > ul > li > a:hover {
  background: #E4D4E3 !important;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a:focus {
  outline: none;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px #7B2971;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a.is-active-trail {
  background-color: #0075c0 !important;
}

.section-insolvency .sidenav .menu-block-wrapper > .menu > li > * > ul > li > a.is-active-trail {
  background-color: #a13694 !important;
}

.sidenav .menu-block-wrapper > .menu > li > * > ul > li > a.is-active-trail:hover {
  background-color: #000 !important;
}

.sidenav .menu-block-wrapper > .menu > .menu__item {
  border-top: 1px solid #7b2971;
}

.sidenav .menu-block-wrapper > .menu > .menu__item > a {
  display: block;
  padding: 10px;
  transition: 0.3s;
  padding-right: 30px;
  color: #00568D;
}

.section-insolvency .sidenav .menu-block-wrapper > .menu > .menu__item > a {
  color: #7B2971;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded {
  border-top: 1px solid #7b2971;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded:last-child {
  border-bottom: 1px solid #7b2971;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a {
  color: #7B2972;
  font-weight: normal;
  position: relative;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a.-active {
  background-color: #7B2972 !important;
  color: #fff !important;
  text-decoration: none;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a:before, .sidenav .menu-block-wrapper > .menu > .is-expanded > a:after {
  background: currentColor;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  transition: transform 0.5s, background-color 0.3s;
  transform: rotate(0);
  width: 16px;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a:before {
  transform: rotate(1turn);
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a:after {
  transform: rotate(1.25turn);
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a.-active:before, .sidenav .menu-block-wrapper > .menu > .is-expanded > a.-active:after {
  transform: rotate(0);
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > a + .menu {
  display: none;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded > .menu > .menu__item > a:hover, .sidenav .menu-block-wrapper > .menu > .is-expanded > .menu > .menu__item > a:focus {
  background-color: #ecedee !important;
  color: #7b2972 !important;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu {
  list-style: none;
  padding-left: 0;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu a {
  color: #000;
  transition: background-color 0.3s;
  display: block;
  padding: 10px;
  padding-left: 35px;
  position: relative;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu a:hover, .sidenav .menu-block-wrapper > .menu > .is-expanded .menu a:focus {
  background: #7b2971;
  color: #fff !important;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu a:hover:before, .sidenav .menu-block-wrapper > .menu > .is-expanded .menu a:focus:before {
  transform: rotate(45deg) translate(2px, -2px);
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu a:before {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: 1.15em;
  left: 12px;
  height: 7px;
  width: 7px;
  border: 0 solid #000;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu .menu a {
  padding-left: 60px;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu .menu a:before {
  left: 32px;
}

.sidenav .menu-block-wrapper > .menu > .is-expanded .menu .menu a:hover, .sidenav .menu-block-wrapper > .menu > .is-expanded .menu .menu a:focus {
  background: #ecedee;
}

.sidenav .menu-block-wrapper > .menu > .active-trail > a + .menu {
  display: block;
}

@media (max-width: 659px) {
  .node-type-landing-page #main, .node-type-basic-page #main {
    display: flex;
    flex-direction: column;
  }
  .node-type-landing-page #main > .sidebars, .node-type-basic-page #main > .sidebars {
    order: -1;
  }
}

.mobileNavBtn {
  -ms-grid-row-align: center;
      align-self: center;
  margin-right: auto;
  margin-left: 10px;
  color: #fff;
  background: transparent;
  padding-bottom: 6px;
}

@media (min-width: 660px) {
  .mobileNavBtn {
    display: none;
  }
}

.mobileNavBtn__icon {
  position: relative;
  margin: 6px auto;
}

.mobileNavBtn__icon, .mobileNavBtn__icon::before, .mobileNavBtn__icon::after {
  display: block;
  width: 25px;
  height: 3px;
  background: currentColor;
  transition: background-color 0.5s, transform 0.5s;
}

.mobileNavBtn__icon::before, .mobileNavBtn__icon::after {
  content: '';
  position: absolute;
}

.mobileNavBtn__icon::before {
  transform: translateY(-6px);
}

.mobileNavBtn__icon::after {
  transform: translateY(6px);
}

[aria-expanded="true"] > .mobileNavBtn__icon {
  transform: rotate(225deg);
  background-color: transparent;
}

[aria-expanded="true"] > .mobileNavBtn__icon::before {
  transform: translateY(0) rotate(1.25turn);
}

[aria-expanded="true"] > .mobileNavBtn__icon::after {
  transform: translateY(0) rotate(1turn);
}

.mobileNavBtn__text {
  font-size: 0.75rem;
  font-family: 'Roboto', sans-serif;
}

.paragraphs-item-landing-content-block {
  box-sizing: border-box;
}

.paragraphs-item-landing-content-block *, .paragraphs-item-landing-content-block *::before, .paragraphs-item-landing-content-block *::after {
  box-sizing: inherit;
}

.paragraphs-item-landing-content-block p:first-child, .paragraphs-item-landing-content-block ul:first-child, .paragraphs-item-landing-content-block ol:first-child, .paragraphs-item-landing-content-block h3:first-child {
  margin-top: 0;
}

.paragraphs-item-landing-content-block p:last-child, .paragraphs-item-landing-content-block ul:last-child, .paragraphs-item-landing-content-block ol:last-child, .paragraphs-item-landing-content-block h3:last-child {
  margin-bottom: 0;
}

.paragraphs-item-landing-content-block a {
  text-decoration: underline;
}

.paragraphs-item-landing-content-block a:hover, .paragraphs-item-landing-content-block a:focus {
  text-decoration: none;
}

.paragraphs-item-landing-content-block svg {
  fill: currentColor;
  width: 100%;
  max-width: 100px;
  margin: 0 auto 1.5em;
}

.paragraphs-item-landing-content-block > .content {
  display: flex;
  width: 100%;
}

@media (max-width: 959px) {
  .paragraphs-item-landing-content-block > .content {
    flex-direction: column;
  }
}

.paragraphs-item-landing-content-block > .content .group-left {
  width: 40%;
  flex-shrink: 0;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.paragraphs-item-landing-content-block > .content .group-left .field-name-field-icon-text {
  max-width: 12rem;
  margin: 0 auto;
  line-height: 1.1;
}

@media (max-width: 959px) {
  .paragraphs-item-landing-content-block > .content .group-left {
    max-width: none;
    width: 100%;
  }
}

.paragraphs-item-landing-content-block > .content .group-right {
  padding: 25px;
  flex-grow: 1;
  position: relative;
}

@media (max-width: 959px) {
  .paragraphs-item-landing-content-block > .content .group-right::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
    border-top: 1px solid #d9dbdd;
  }
}

.paragraphs-item-landing-content-block > .content .group-right h2 {
  margin-top: 0;
}

.paragraphs-item-landing-content-block > .content .group-right h3 {
  font-size: 1em;
  margin-bottom: 0;
  font-weight: bold;
  font-family: inherit;
}

.paragraphs-item-landing-content-block > .content .group-right h3 + p, .paragraphs-item-landing-content-block > .content .group-right h3 + ul, .paragraphs-item-landing-content-block > .content .group-right h3 + ol {
  margin-top: 0;
}

.paragraphs-item-landing-content-block > .content .group-right ul {
  list-style: none;
  padding-left: 0;
}

.paragraphs-item-landing-content-block > .content .group-right li {
  margin-top: 0.5em;
}

.paragraphs-item-landing-content-block > .content .group-right li a:after {
  content: '';
  display: inline-block;
  margin-left: 0.5em;
  transform: rotate(45deg);
  border: 0 solid currentColor;
  border-width: 1px 1px 0 0;
  height: 7px;
  width: 7px;
}

.paragraphs-item-landing-content-block > .content .group-right .landing-video {
  background-color: #EDEDED;
  padding: 15px;
  color: #555555;
}

.paragraphs-item-landing-content-block > .content .group-right .landing-video h3, .paragraphs-item-landing-content-block > .content .group-right .landing-video h4 {
  margin-top: 0;
  margin-bottom: 15px;
}

.paragraphs-item-landing-content-block > .content .group-right .custom-counter li {
  color: black;
}

.paragraphs-item-landing-content-block > .content .group-right .custom-counter li:before {
  color: black;
  border-color: black;
}

.paragraphs-item-landing-content-block .field-name-field-icon-text {
  font-size: 1.375em;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}

.paragraphs-item-landing-content-block .field-name-field-icon-text h2 {
  font-size: inherit;
  font-family: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0;
  border: 0;
}

.paragraphs-item-landing-content-block.light {
  background-color: #fff;
}

.paragraphs-item-landing-content-block.light h2 {
  color: #00568D;
}

.section-insolvency .paragraphs-item-landing-content-block.light h2 {
  color: #7B2971;
}

.paragraphs-item-landing-content-block.medium {
  background-color: #ECEDEE;
}

.paragraphs-item-landing-content-block.medium h2 {
  color: #00568D;
}

.section-insolvency .paragraphs-item-landing-content-block.medium {
  background-color: #F3F4F5;
}

.section-insolvency .paragraphs-item-landing-content-block.medium h2 {
  color: #7B2971;
}

.paragraphs-item-landing-content-block.dark {
  background-color: #d9dbdd;
}

.paragraphs-item-landing-content-block.dark a, .paragraphs-item-landing-content-block.dark {
  color: #000;
}

.section-insolvency .paragraphs-item-landing-content-block.dark {
  background-color: #E4D4E3;
}

.paragraphs-item-landing-content-block .paragraphs-items-field-button {
  margin-top: 2em;
}

.paragraphs-item-landing-content-block .paragraphs-items-field-button a {
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 10px 20px;
  padding-right: 40px;
  position: relative;
  width: 100%;
  max-width: 275px;
  text-decoration: none;
  transition: 0.3s;
  background-color: #00568D;
}

.section-insolvency .paragraphs-item-landing-content-block .paragraphs-items-field-button a {
  background-color: #7B2971;
}

.paragraphs-item-landing-content-block .paragraphs-items-field-button a:hover, .paragraphs-item-landing-content-block .paragraphs-items-field-button a:focus {
  background-color: #000 !important;
}

.paragraphs-item-landing-content-block .paragraphs-items-field-button a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto 0;
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: currentColor;
}

.paragraphs-item-landing-content-block .paragraphs-items-field-button + .paragraphs-items-field-button {
  margin-top: 1em;
}

.node-type-landing-page blockquote,
.node-type-basic-page blockquote {
  background: #ECEDEE;
  border-top: 8px solid #00568D;
  padding: 25px 20px;
  margin: 2em 0;
}

.node-type-landing-page blockquote p:first-child, .node-type-landing-page blockquote ul:first-child, .node-type-landing-page blockquote ol:first-child,
.node-type-basic-page blockquote p:first-child,
.node-type-basic-page blockquote ul:first-child,
.node-type-basic-page blockquote ol:first-child {
  margin-top: 0;
}

.node-type-landing-page blockquote p:last-child, .node-type-landing-page blockquote ul:last-child, .node-type-landing-page blockquote ol:last-child,
.node-type-basic-page blockquote p:last-child,
.node-type-basic-page blockquote ul:last-child,
.node-type-basic-page blockquote ol:last-child {
  margin-bottom: 0;
}

.node-type-landing-page.section-insolvency blockquote,
.node-type-basic-page.section-insolvency blockquote {
  border-top-color: #7B2971 !important;
}

.sandpitLogo.sandpitLogo {
  text-decoration: none;
  margin: 0;
  border-left: 1px solid transparent;
  line-height: 0.8;
  white-space: nowrap;
  color: #fff;
  font-size: 0.8em;
  font-family: "Roboto",sans-serif;
}

.sandpitLogo.sandpitLogo strong {
  font-weight: 900;
}

.sandpitLogo.sandpitLogo span {
  margin-left: -0.27em;
  font-weight: 300;
}

.sandpitLogo.sandpitLogo:hover, .sandpitLogo.sandpitLogo:focus {
  text-decoration: underline;
}

.afsa-quick-links {
  display: flex;
  align-items: flex-start;
}

@media (min-width: 660px) {
  .afsa-quick-links {
    align-items: baseline;
  }
}

.afsa-quick-links > * {
  margin-left: 20px;
}

.afsa-quick-links .languages {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 470px) {
  .afsa-quick-links .sandpit-link {
    display: none;
  }
}

@media (min-width: 660px) {
  .afsa-quick-links {
    margin-top: 7px;
    margin-bottom: 35px;
  }
}

.group-online-form-link .field-name-field-url .field-items a {
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: 5px 15px;
  margin-bottom: 30px;
}

.group-online-form-link .field-name-field-url .field-items a:hover, .group-online-form-link .field-name-field-url .field-items a:focus {
  background-color: #fff;
  color: #00568d;
}

#block-bean-social-share {
  clear: both;
  position: relative;
  height: 100px;
  display: flex;
  vertical-align: middle;
  align-items: center;
  margin: 20px 0;
  align-content: center;
}

#block-bean-social-share h2 {
  margin: 0;
  padding-right: 20px;
  border: 0;
}

#block-bean-social-share ul {
  list-style: none;
  width: 60%;
  display: flex;
  margin: 0;
  padding: 0;
}

#block-bean-social-share ul li {
  margin: 0 5px;
  width: 45px;
  height: 45px;
}

#block-bean-social-share ul li svg {
  min-width: 45px;
  min-height: 45px;
  height: 100%;
  width: 100%;
}

@media (max-width: 959px) {
  #block-bean-social-share {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin-top: 45px;
  }
  #block-bean-social-share h2 {
    padding-bottom: 20px;
  }
  #block-bean-social-share ul {
    width: 100%;
  }
}

#block-bean-social-share .visually-hidden {
  display: none;
}

.node-type-webform .node-webform .webform-component select, .node-type-webform .node-webform .webform-component input, .node-type-webform .node-webform .webform-component span, .node-type-webform .node-webform .webform-component option,
.webform-client-form__calculator-form .webform-component select,
.webform-client-form__calculator-form .webform-component input,
.webform-client-form__calculator-form .webform-component span,
.webform-client-form__calculator-form .webform-component option {
  height: 40px;
}

.node-type-webform .node-webform .webform-component input,
.webform-client-form__calculator-form .webform-component input {
  padding: 4px 8px;
  margin: 0;
  float: left;
  border: 1px solid #9E9E9E;
}

.node-type-webform .node-webform .webform-component span:not(.form-required),
.webform-client-form__calculator-form .webform-component span:not(.form-required) {
  padding: 10px 16px;
  line-height: 1;
  background: #d9dbdd;
  text-align: center;
  margin: 0;
  float: left;
  border: 1px solid #9E9E9E;
  box-sizing: border-box;
}

.node-type-webform .node-webform .webform-component--after-tax-annual-income .custom-field-value-only,
.webform-client-form__calculator-form .webform-component--after-tax-annual-income .custom-field-value-only {
  position: relative;
  height: 40px;
}

.node-type-webform .node-webform .webform-component--after-tax-annual-income .after-tax-annual-income-field-non-description,
.webform-client-form__calculator-form .webform-component--after-tax-annual-income .after-tax-annual-income-field-non-description {
  position: relative;
  height: 40px;
}

.node-type-webform .node-webform .webform-component-select .custom-field-value-only,
.webform-client-form__calculator-form .webform-component-select .custom-field-value-only {
  position: relative;
  display: table;
  border-collapse: separate;
  height: 40px;
}

.node-type-webform .node-webform .webform-component-select .custom-field-value-only option,
.webform-client-form__calculator-form .webform-component-select .custom-field-value-only option {
  line-height: 2;
}

.node-type-webform .node-webform .webform-component-select .custom-field-value-only:before,
.webform-client-form__calculator-form .webform-component-select .custom-field-value-only:before {
  background: none repeat scroll 0 0 #000;
  border-radius: 0 5px 5px 0;
  bottom: 0;
  color: #FFF;
  font-family: "icomoon";
  content: "\e900";
  padding: .8em 1em;
  pointer-events: none;
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 1;
}

.node-type-webform .node-webform .webform-component--estimated-annual-contribution .estimated-annual-contribution-field-non-description,
.webform-client-form__calculator-form .webform-component--estimated-annual-contribution .estimated-annual-contribution-field-non-description {
  position: relative;
  height: 40px;
}

.node-type-webform .node-webform .webform-component--estimated-annual-contribution span:not(.form-required):first-child, .node-type-webform .node-webform .webform-component--after-tax-annual-income span:not(.form-required):first-child,
.webform-client-form__calculator-form .webform-component--estimated-annual-contribution span:not(.form-required):first-child,
.webform-client-form__calculator-form .webform-component--after-tax-annual-income span:not(.form-required):first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.node-type-webform .node-webform .webform-component--estimated-annual-contribution span:not(.form-required):last-child, .node-type-webform .node-webform .webform-component--after-tax-annual-income span:not(.form-required):last-child,
.webform-client-form__calculator-form .webform-component--estimated-annual-contribution span:not(.form-required):last-child,
.webform-client-form__calculator-form .webform-component--after-tax-annual-income span:not(.form-required):last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.node-type-webform .node-webform .webform-component--estimated-annual-contribution span + input:last-child, .node-type-webform .node-webform .webform-component--after-tax-annual-income span + input:last-child,
.webform-client-form__calculator-form .webform-component--estimated-annual-contribution span + input:last-child,
.webform-client-form__calculator-form .webform-component--after-tax-annual-income span + input:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.node-type-webform .node-webform .webform-component--estimated-annual-contribution > input, .node-type-webform .node-webform .webform-component--after-tax-annual-income > input,
.webform-client-form__calculator-form .webform-component--estimated-annual-contribution > input,
.webform-client-form__calculator-form .webform-component--after-tax-annual-income > input {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.node-type-webform .node-webform .form-actions::after, .node-type-webform .node-webform .custom-field-value-only::after,
.webform-client-form__calculator-form .form-actions::after,
.webform-client-form__calculator-form .custom-field-value-only::after {
  display: table;
  clear: both;
  content: "";
}

.node-type-webform .node-webform .form-actions a.restart-btn, .node-type-webform .node-webform .custom-field-value-only a.restart-btn,
.webform-client-form__calculator-form .form-actions a.restart-btn,
.webform-client-form__calculator-form .custom-field-value-only a.restart-btn {
  max-width: 100%;
  cursor: pointer;
  padding: 0.5em 1em;
  border: none;
  background-color: #ECEDEE;
  color: #000;
}

.node-type-webform .node-webform .form-actions a.restart-btn:visited, .node-type-webform .node-webform .custom-field-value-only a.restart-btn:visited,
.webform-client-form__calculator-form .form-actions a.restart-btn:visited,
.webform-client-form__calculator-form .custom-field-value-only a.restart-btn:visited {
  color: #000;
}

.webform-client-form__calculator-form {
  background: #ecedee;
  clear: both;
  padding: 1.5em 1.5em;
  font-size: 80%;
  width: 400px;
  border-radius: 10px;
  max-width: 100%;
}

@media (max-width: 660px) {
  .webform-client-form__calculator-form {
    width: 300px;
  }
}

.webform-client-form__calculator-form .webform-submit {
  -webkit-appearance: button;
  cursor: pointer;
  padding: 0.5em 1em;
  border: 1px solid #9E9E9E;
  background-color: #D9DBDD;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

input[type=text]::-ms-clear {
  display: none;
}

#block-views-forms-block .view-filters .views-widget-filter-keys .forms-search-btn, #block-views-forms-block .view-filters .views-submit-button input,
#block-views-forms-block .view-filters .views-reset-button input, #block-views-forms-block .view-content .views-field-field-url a {
  transition-property: background-color, border-color, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  border-radius: 4px;
  padding: 7px 25px;
  color: #fff;
  text-align: center;
  width: 100%;
}

#block-views-forms-block .view-filters .views-widget-filter-keys .forms-search-btn:hover, #block-views-forms-block .view-filters .views-submit-button input:hover,
#block-views-forms-block .view-filters .views-reset-button input:hover, #block-views-forms-block .view-content .views-field-field-url a:hover, #block-views-forms-block .view-filters .views-widget-filter-keys .forms-search-btn:focus, #block-views-forms-block .view-filters .views-submit-button input:focus,
#block-views-forms-block .view-filters .views-reset-button input:focus, #block-views-forms-block .view-content .views-field-field-url a:focus {
  background-color: #444444;
  border: 1px solid #444444;
}

#block-views-forms-block *,
#block-views-forms-block *:before,
#block-views-forms-block *:after {
  box-sizing: border-box;
}

#block-views-forms-block .view-forms {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}

#block-views-forms-block .view-forms:before, #block-views-forms-block .view-forms:after {
  content: '';
  display: table;
}

#block-views-forms-block .view-forms:after {
  clear: both;
}

@media screen and (min-width: 768px), print {
  #block-views-forms-block .view-filters {
    float: left;
    width: 25%;
  }
}

#block-views-forms-block .view-filters label {
  font-size: 1.125em;
}

#block-views-forms-block .view-filters .views-exposed-form > .views-exposed-widgets {
  background-color: #ecedee;
  margin-bottom: 40px;
  padding: 30px 20px;
}

#block-views-forms-block .view-filters .views-widget-filter-keys {
  margin-bottom: 20px;
  width: 100%;
}

#block-views-forms-block .view-filters .views-widget-filter-keys .form-text {
  border: 1px solid #e8e4e5;
  margin-bottom: 10px;
  padding: 15px 10px;
  width: 100%;
}

#block-views-forms-block .view-filters .views-widget-filter-keys .forms-search-wrapper {
  position: relative;
}

#block-views-forms-block .view-filters .views-widget-filter-keys .forms-search-icon {
  background: url(../images/search.svg) no-repeat center;
  background-size: contain;
  display: block;
  height: 22px;
  position: absolute;
  top: 15px;
  right: 13px;
  width: 22px;
}

#block-views-forms-block .view-filters #edit-form-type-wrapper {
  box-shadow: 0 2px 4px 0 rgba(209, 207, 207, 0.5);
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
}

#block-views-forms-block .view-filters #edit-form-type-wrapper label {
  margin-bottom: 10px;
}

#block-views-forms-block .view-filters .views-exposed-widget {
  padding: 0;
}

#block-views-forms-block .view-filters #edit-tid-wrapper {
  width: 100%;
}

#block-views-forms-block .view-filters .form-checkboxes label {
  font-size: 1em;
}

#block-views-forms-block .view-filters .form-type-select {
  margin-bottom: 0;
  width: 100%;
}

#block-views-forms-block .view-filters .form-type-select select {
  border: 1px solid #e8e4e5;
  padding: 15px 10px;
  width: 100%;
}

#block-views-forms-block .view-filters .views-submit-button,
#block-views-forms-block .view-filters .views-reset-button {
  width: 100%;
}

#block-views-forms-block .view-filters .views-reset-button input {
  background-color: #ECEDEE;
  border: 1px solid #444444;
  color: #444444;
}

#block-views-forms-block .view-filters .views-reset-button input:hover, #block-views-forms-block .view-filters .views-reset-button input:focus {
  background-color: #444444;
  color: #fff;
}

#block-views-forms-block .view-content {
  position: relative;
}

@media screen and (min-width: 768px), print {
  #block-views-forms-block .view-content {
    float: left;
    padding: 0 20px;
    padding-left: 40px;
    width: 75%;
  }
}

#block-views-forms-block .view-content p {
  margin-bottom: 15px;
}

#block-views-forms-block .view-content .views-row {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
  background-color: transparent;
  border-bottom: 2px solid #83acc7;
  margin-bottom: 15px;
  padding: 15px 0;
  width: 100%;
  position: relative;
}

#block-views-forms-block .view-content .views-row:before, #block-views-forms-block .view-content .views-row:after {
  content: '';
  display: table;
}

#block-views-forms-block .view-content .views-row:after {
  clear: both;
}

#block-views-forms-block .view-content .views-row:last-child {
  margin-bottom: 0;
}

#block-views-forms-block .view-content .views-field-title a {
  color: #000;
  display: inline-block;
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 15px;
  padding-right: 163px;
  text-decoration: underline;
  width: 100%;
}

#block-views-forms-block .view-content .views-field-title a:hover, #block-views-forms-block .view-content .views-field-title a:focus {
  text-decoration: none;
}

#block-views-forms-block .view-content .views-field-field-url {
  position: absolute;
  right: 20px;
  top: 17px;
}

#block-views-forms-block .view-content .views-field-field-url a:hover, #block-views-forms-block .view-content .views-field-field-url a:focus {
  text-decoration: none;
}

#block-views-forms-block .view-content .views-field-field-form-type {
  float: right;
  padding-left: 10px;
  text-align: right;
  width: 50%;
}

#block-views-forms-block .view-content .views-field-field-form-type a {
  color: #00568D;
  font-size: 0.875em;
}

#block-views-forms-block .view-content .views-field-field-form-number {
  color: #00568D;
  float: left;
  font-size: 0.875em;
  font-weight: bold;
  padding-right: 10px;
  width: 50%;
}

#block-views-forms-block .view-content .views-field-field-form-number:before {
  content: 'Includes: ';
  display: inline-block;
  vertical-align: top;
}

#block-views-forms-block .view-content .views-field-field-form-number .field-content {
  display: inline-block;
  vertical-align: top;
}

#block-views-forms-block .form-item {
  margin-bottom: 15px;
}

#block-views-forms-block .form-item input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#block-views-forms-block .form-item input[type="checkbox"]:focus + label:before {
  border: 1px solid #196698;
}

#block-views-forms-block .form-item input[type="checkbox"]:checked + label:before {
  border: 1px solid #196698;
}

#block-views-forms-block .form-item .form-type-bef-checkbox label {
  cursor: pointer;
  display: block;
  padding-left: 33px;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}

#block-views-forms-block .form-item .form-type-bef-checkbox label:before {
  transition-property: border, background;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid #196698;
  content: "";
  display: inline-block;
  height: 24px;
  left: 0;
  position: absolute;
  width: 24px;
}

#block-views-forms-block .form-item .form-type-bef-checkbox label:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  color: #fff;
  content: '';
  display: inline-block;
  height: 15px;
  left: 8px;
  margin: auto;
  position: absolute;
  top: 2px;
  transform: scale(1) rotate(-45deg);
  width: 8px;
}

#block-views-forms-block .form-item .form-type-bef-checkbox input[type="checkbox"]:checked + label:before {
  background: #196698;
}

#block-views-forms-block .form-item .form-type-bef-checkbox input[type="checkbox"]:checked + label:after {
  transform: scale(1) rotate(45deg);
}

#block-views-forms-block .tip {
  border: 1px solid #a0c0d5;
  padding: 30px 30px 30px 50px;
  position: relative;
}

#block-views-forms-block .tip h2 {
  border-bottom: 0;
  font: bold 1.125em 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

#block-views-forms-block .tip img {
  left: 10px;
  position: absolute;
  top: 10px;
}

#block-views-forms-block .tip p {
  margin: 10px 0;
}

@media screen and (min-width: 768px), print {
  #block-views-forms-block .item-list {
    float: left;
    margin-left: 25%;
    width: 75%;
  }
}

.view-id-forms .pager,
.view-contact-lists .pager,
.search-api-page-results .pager,
.page-search .pager,
.section-practitioners .pager {
  text-align: center;
}

.view-id-forms .pager li,
.view-contact-lists .pager li,
.search-api-page-results .pager li,
.page-search .pager li,
.section-practitioners .pager li {
  display: inline-block;
  vertical-align: top;
}

.view-id-forms .pager span,
.view-contact-lists .pager span,
.search-api-page-results .pager span,
.page-search .pager span,
.section-practitioners .pager span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.view-id-forms .pager a,
.view-contact-lists .pager a,
.search-api-page-results .pager a,
.page-search .pager a,
.section-practitioners .pager a {
  display: block;
  position: relative;
}

.view-id-forms .pager a:before, .view-id-forms .pager a:after,
.view-contact-lists .pager a:before,
.view-contact-lists .pager a:after,
.search-api-page-results .pager a:before,
.search-api-page-results .pager a:after,
.page-search .pager a:before,
.page-search .pager a:after,
.section-practitioners .pager a:before,
.section-practitioners .pager a:after {
  border-bottom: 0 !important;
  border-right: 0 !important;
  content: '';
  display: block;
  height: 10px;
  position: absolute;
  top: 6px;
  width: 10px;
}

.view-id-forms .pager .pager-current,
.view-contact-lists .pager .pager-current,
.search-api-page-results .pager .pager-current,
.page-search .pager .pager-current,
.section-practitioners .pager .pager-current {
  color: #003e7e;
}

.view-id-forms .pager .pager-item a,
.view-contact-lists .pager .pager-item a,
.search-api-page-results .pager .pager-item a,
.page-search .pager .pager-item a,
.section-practitioners .pager .pager-item a {
  color: #000;
}

.view-id-forms .pager .pager-item a:hover, .view-id-forms .pager .pager-item a:focus,
.view-contact-lists .pager .pager-item a:hover,
.view-contact-lists .pager .pager-item a:focus,
.search-api-page-results .pager .pager-item a:hover,
.search-api-page-results .pager .pager-item a:focus,
.page-search .pager .pager-item a:hover,
.page-search .pager .pager-item a:focus,
.section-practitioners .pager .pager-item a:hover,
.section-practitioners .pager .pager-item a:focus {
  text-decoration: underline;
}

.view-id-forms .pager .pager-first span, .view-id-forms .pager .pager-previous span, .view-id-forms .pager .pager-next span, .view-id-forms .pager .pager-last span,
.view-contact-lists .pager .pager-first span,
.view-contact-lists .pager .pager-previous span,
.view-contact-lists .pager .pager-next span,
.view-contact-lists .pager .pager-last span,
.search-api-page-results .pager .pager-first span,
.search-api-page-results .pager .pager-previous span,
.search-api-page-results .pager .pager-next span,
.search-api-page-results .pager .pager-last span,
.page-search .pager .pager-first span,
.page-search .pager .pager-previous span,
.page-search .pager .pager-next span,
.page-search .pager .pager-last span,
.section-practitioners .pager .pager-first span,
.section-practitioners .pager .pager-previous span,
.section-practitioners .pager .pager-next span,
.section-practitioners .pager .pager-last span {
  position: relative;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.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;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.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;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./") "ajax-loader.gif" center center no-repeat;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

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

.homepage__wrap {
  margin-bottom: 60px;
  width: 100%;
  color: white;
  background: #222222;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .homepage__wrap {
    margin-bottom: 60px;
  }
}

@media (max-width: 659px) {
  .homepage__wrap .contextual-links-region {
    min-width: 0%;
    float: none !important;
  }
}

.homepage__wrap .region-homepage-highlighted {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 0em 0 2.5em;
}

@media (max-width: 767px) {
  .homepage__wrap .region-homepage-highlighted {
    margin: 0;
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .homepage__wrap .region-homepage-highlighted {
    flex-direction: row;
    max-width: 100%;
    margin: 0 0 0 2.5em;
  }
}

@media (min-width: 960px) {
  .homepage__wrap .region-homepage-highlighted {
    flex-direction: row;
    margin: 0 0 0 auto;
    max-width: 90%;
  }
}

@media (min-width: 1500px) {
  .homepage__wrap .region-homepage-highlighted {
    max-width: 80%;
    margin: 0 0 0 auto;
  }
}

.homepage__wrap .last {
  height: 285px;
  order: 1;
  width: 100%;
}

@media (max-width: 660px) {
  .homepage__wrap .last {
    height: 385px;
  }
}

@media (min-width: 768px) {
  .homepage__wrap .last {
    height: 100%;
    height: auto;
    width: 60%;
  }
}

.homepage__wrap .views-row {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.homepage__wrap .views-row:before {
  content: "";
  position: absolute;
  width: 610px;
  height: 149px;
  opacity: 0.2;
  background: url("../images/afsa-lines.svg") no-repeat;
  bottom: 0;
  right: 0;
  background-size: cover;
}

@media (max-width: 660px) {
  .homepage__wrap .views-row:before {
    display: none;
  }
}

.homepage__wrap .views-row:after {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-image: url("../images/afsa-lines.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0.05;
}

.homepage__wrap .views-row .homepage__wrap {
  margin-bottom: 0;
  background: none;
  padding-top: 25px;
}

.homepage__wrap .homepage-carousel__content .views-field {
  line-height: 1.2;
}

.homepage__wrap .homepage-carousel__content .views-field-title {
  font-size: 1.5em;
}

@media (min-width: 1024px) {
  .homepage__wrap .homepage-carousel__content .views-field-title {
    font-size: 2.875em;
  }
}

.homepage__wrap .homepage-carousel__content .views-field-body {
  width: 77%;
  font-size: 1.125em;
}

@media (max-width: 660px) {
  .homepage__wrap .homepage-carousel__content .views-field-body {
    width: 95%;
  }
}

.homepage__wrap .homepage-carousel__content .views-field-field-one-link a {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background: white;
  color: #00568D;
  padding: 10px 60px 10px 10px;
  position: relative;
  display: inline-block;
}

.homepage__wrap .homepage-carousel__content .views-field-field-one-link a:after {
  font-family: "icomoon";
  content: "\e901";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.homepage__wrap .homepage-carousel__content .views-field-field-one-link a:hover, .homepage__wrap .homepage-carousel__content .views-field-field-one-link a:focus {
  background: #00568D;
  color: #fff;
}

.homepage__wrap .views-field-field-image {
  height: 100%;
  width: 100%;
}

.homepage__wrap .views-field-nothing {
  left: 30px;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  width: 75%;
  z-index: 5;
}

@media (max-width: 660px) {
  .homepage__wrap .views-field-nothing {
    width: 70%;
  }
}

@media (min-width: 960px) {
  .homepage__wrap .views-field-nothing {
    left: 70px;
    width: 50%;
  }
}

.homepage__wrap .first {
  width: 40%;
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .homepage__wrap .first {
    order: 2;
    width: 100%;
  }
}

.homepage__wrap .first:last-child {
  border: 0;
}

.homepage__wrap .first::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12%;
  height: 115px;
  width: 112%;
  background: url("../images/afsa-lines.svg") no-repeat;
  opacity: 0.05;
  background-size: cover;
}

.homepage__wrap .bean-homepage-featured-links {
  position: relative;
  width: 80%;
  padding: 0;
  margin: 0 20px 0 20px;
}

@media (max-width: 660px) {
  .homepage__wrap .bean-homepage-featured-links {
    padding: 0 20px 0 20px;
  }
}

@media (min-width: 768px) {
  .homepage__wrap .bean-homepage-featured-links {
    align-items: center;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .homepage__wrap .bean-homepage-featured-links {
    padding-left: 0;
    margin: 0;
  }
}

@media (max-width: 659px) {
  .homepage__wrap .bean-homepage-featured-links .field-type-text-long {
    display: none;
  }
}

.homepage__wrap .bean-homepage-featured-links .field-type-text-long .field-items {
  font-size: 0.875em;
}

@media (min-width: 1024px) {
  .homepage__wrap .bean-homepage-featured-links .field-name-field-links > .field-items {
    padding: 45px 0 35px 0;
  }
}

.homepage__wrap .bean-homepage-featured-links .field-item {
  border-bottom: solid 1px #fff;
}

.homepage__wrap .bean-homepage-featured-links .field-item:last-child {
  border: 0;
}

.homepage__wrap .bean-homepage-featured-links .field-item .content {
  padding: 25px 0 25px 0;
}

.homepage__wrap .bean-homepage-featured-links .field-item p {
  margin: 0;
}

.homepage__wrap .bean-homepage-featured-links .field-type-link-field {
  padding-bottom: .5rem;
}

.homepage__wrap .bean-homepage-featured-links .field-type-link-field a {
  color: white;
  font-weight: bold;
}

.homepage__wrap .bean-homepage-featured-links .field-name-field-one-link a {
  margin-bottom: 0;
  position: relative;
}

.homepage__wrap .bean-homepage-featured-links .field-name-field-one-link a:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  font-family: "icomoon";
  content: "\e901";
  position: relative;
  right: -15px;
  font-size: 10px;
}

.homepage__wrap .bean-homepage-featured-links .field-name-field-one-link a:hover:after, .homepage__wrap .bean-homepage-featured-links .field-name-field-one-link a:focus:after {
  transform: translateX(10px);
}

.homepage__wrap .view-homepage-carousel {
  height: 100%;
  position: relative;
}

.homepage__wrap .view-homepage-carousel .slick-slide > div,
.homepage__wrap .view-homepage-carousel .views-row,
.homepage__wrap .view-homepage-carousel .view-content,
.homepage__wrap .view-homepage-carousel .slick-list,
.homepage__wrap .view-homepage-carousel .slick-track {
  height: 100%;
}

@media (min-width: 1024px) {
  .homepage__wrap .view-homepage-carousel .view-content {
    margin-right: -10vw;
  }
}

.carousel__controls {
  display: none;
}

@media (min-width: 1024px) {
  .carousel__controls {
    bottom: 20px;
    display: flex;
    left: 80px;
    height: 20px;
    position: absolute;
    width: 100%;
  }
}

.carousel__dots {
  margin-right: 15px;
  position: relative;
}

.carousel__dots li {
  display: inline-block;
  margin: 0 4px;
  vertical-align: top;
}

.carousel__dots button {
  transition-property: background;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0;
  height: 20px;
  vertical-align: top;
  width: 20px;
}

.carousel__dots button:hover, .carousel__dots button:focus {
  background: #fff;
}

.carousel__dots .slick-active button {
  background: #fff;
}

.carousel__dots .slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel__arrows {
  position: relative;
}

.carousel__arrows .slick-arrow {
  background: none;
  font-size: 0;
}

.carousel__arrows .slick-arrow:before {
  content: '';
  display: block;
  height: 10px;
  transform: rotate(45deg);
  width: 10px;
}

.carousel__arrows .slick-prev:before {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.carousel__arrows .slick-next:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.carousel__arrows .slick-pause:before, .carousel__arrows .slick-pause:after {
  background: #fff;
  display: inline-block;
  content: '';
  height: 16px;
  margin: 0 2px;
  transform: translateY(2px);
  width: 3px;
}

.section-insolvency .border_iet_form {
  border: solid #D0BDCE 1px;
  box-sizing: border;
  margin: 20px 0px;
  padding: 10px 20px;
}

.section-insolvency .border_iet_form p {
  margin: 5px 0px;
}

.section-insolvency .border_iet_form .accordion_iet_form {
  text-decoration: none;
  outline: 0px;
  color: #7B2971;
  display: block;
  height: 20px;
  position: relative;
}

.section-insolvency .border_iet_form .accordion_iet_form.-active {
  text-decoration: none;
}

.section-insolvency .border_iet_form .accordion_iet_form.-active:before, .section-insolvency .border_iet_form .accordion_iet_form.-active:after {
  transform: rotate(0);
}

.section-insolvency .border_iet_form .accordion_iet_form:before, .section-insolvency .border_iet_form .accordion_iet_form:after {
  background: currentColor;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  transition: transform 0.5s, background-color 0.3s;
  transform: rotate(0);
  width: 16px;
}

.section-insolvency .border_iet_form .accordion_iet_form:before {
  transform: rotate(1turn);
}

.section-insolvency .border_iet_form .accordion_iet_form:after {
  transform: rotate(1.25turn);
}

.section-insolvency .border_iet_form .panel_iet_form {
  display: none;
  margin-top: 35px;
}

.section-insolvency .border_iet_form .panel_iet_form a {
  text-decoration: underline;
  color: #7B2971;
}

/*
 * Homepage
 */
#block-views-announcements-block-1 {
  margin: 0 2em 0 2.5em;
}

#block-views-announcements-block-1 ul {
  padding: 0;
}

@media (min-width: 960px) {
  #block-views-announcements-block-1 {
    max-width: 80%;
    margin: 0 auto;
  }
  #block-views-announcements-block-1 ul {
    padding: 0;
  }
}

@media (min-width: 1500px) {
  #block-views-announcements-block-1 {
    max-width: 60%;
    margin: auto;
  }
  #block-views-announcements-block-1 ul {
    padding: 0;
  }
}

@media (min-width: 600px) {
  #block-bean-homepage-ppsr-block,
  #block-bean-homepage-fas-block {
    margin: 0 2em 0 2.5em;
    padding: 0 40px;
  }
}

@media (min-width: 960px) {
  #block-bean-homepage-ppsr-block,
  #block-bean-homepage-fas-block {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media (min-width: 1500px) {
  #block-bean-homepage-ppsr-block,
  #block-bean-homepage-fas-block {
    max-width: 60%;
    margin: 0 auto 20px auto;
    padding: 0 40px;
  }
}

.front #main {
  display: block;
}

.front #block-bean-homepage-ppsr-block,
.front #block-bean-homepage-fas-block {
  line-height: 1.25;
  padding: 0 40px;
}

@media screen and (min-width: 768px), print {
  .front #block-bean-homepage-ppsr-block,
  .front #block-bean-homepage-fas-block {
    padding: 0 40px;
  }
}

.front #block-bean-homepage-ppsr-block .field-name-field-linkable-title,
.front #block-bean-homepage-fas-block .field-name-field-linkable-title {
  border-bottom: 0;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 20px;
}

.front #block-bean-homepage-ppsr-block .field-name-field-title,
.front #block-bean-homepage-fas-block .field-name-field-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.front #block-bean-homepage-ppsr-block .field-name-field-body,
.front #block-bean-homepage-fas-block .field-name-field-body {
  margin-bottom: 50px;
}

.front #block-bean-homepage-ppsr-block .field-name-field-one-link .field-items > .field-item a,
.front #block-bean-homepage-fas-block .field-name-field-one-link .field-items > .field-item a {
  display: block;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 45px;
}

.front #block-bean-homepage-ppsr-block .field-name-field-url a,
.front #block-bean-homepage-fas-block .field-name-field-url a {
  display: block;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 980px), print {
  .front #block-bean-homepage-ppsr-block .paragraphs-items > .field > .field-items,
  .front #block-bean-homepage-fas-block .paragraphs-items > .field > .field-items {
    margin: 0 -25px;
    display: flex;
  }
}

@media screen and (min-width: 980px), print {
  .front #block-bean-homepage-ppsr-block .paragraphs-items > .field > .field-items > .field-item,
  .front #block-bean-homepage-fas-block .paragraphs-items > .field > .field-items > .field-item {
    padding: 0 25px;
    width: 33.333333%;
  }
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item,
.front #block-bean-homepage-fas-block .entity-paragraphs-item {
  height: 100%;
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content {
  display: flex;
  height: inherit;
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content:before,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content:before {
  align-items: center;
  content: '';
  height: 48px;
  display: flex;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  width: 48px;
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content .group-wrap,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content .group-wrap {
  padding-left: 15px;
  position: relative;
  margin-bottom: 35px;
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a {
  font-size: 13px;
  margin-bottom: 0;
  position: relative;
  text-transform: uppercase;
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a:after,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  font-family: "icomoon";
  content: "\e901";
  position: absolute;
  right: -25px;
  top: 1px;
  font-size: 10px;
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a:hover:after, .front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a:focus:after,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a:hover:after,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content .group-wrap .field-name-field-one-link a:focus:after {
  transform: translateX(10px);
}

.front #block-bean-homepage-ppsr-block .entity-paragraphs-item > .content .field-name-field-one-link,
.front #block-bean-homepage-fas-block .entity-paragraphs-item > .content .field-name-field-one-link {
  bottom: 0;
  position: absolute;
}

.front #block-bean-homepage-fas-block {
  border-bottom: 2px solid #e8e8e8;
  padding: 0 0 20px 0;
}

@media (max-width: 660px) {
  .front #block-bean-homepage-fas-block {
    padding: 0 20px 40px 20px;
  }
}

.front #block-bean-homepage-fas-block .field-name-field-linkable-title a {
  color: #7b2971;
}

.front #block-bean-homepage-fas-block .field-name-field-linkable-title,
.front #block-bean-homepage-fas-block .field-name-field-title {
  color: #7b2971;
}

.front #block-bean-homepage-fas-block .field-name-field-one-link a,
.front #block-bean-homepage-fas-block .field-name-field-url a {
  color: #7b2971;
}

.front #block-bean-homepage-ppsr-block {
  padding: 10px 0 50px 0;
}

@media (max-width: 660px) {
  .front #block-bean-homepage-ppsr-block {
    padding: 0 20px 40px 20px;
  }
}

.front #block-bean-homepage-ppsr-block .field-name-field-linkable-title a {
  color: #1a7880;
}

.front #block-bean-homepage-ppsr-block .field-name-field-linkable-title,
.front #block-bean-homepage-ppsr-block .field-name-field-title {
  color: #1a7880;
}

.front #block-bean-homepage-ppsr-block .field-name-field-one-link a,
.front #block-bean-homepage-ppsr-block .field-name-field-url a {
  color: #1a7880;
}

.front #block-bean-homepage-ppsr-block a:visited {
  color: #1a7880;
}

.front .paragraphs-items .entity-paragraphs-item.-bulb > .content:before {
  background: url(../images/svg/icon-lightbulb.svg) no-repeat center;
}

.front .paragraphs-items .entity-paragraphs-item.-badge > .content:before {
  background: url(../images/svg/icon-badge.svg) no-repeat center;
}

.front .paragraphs-items .entity-paragraphs-item.-book > .content:before {
  background: url(../images/svg/icon-book.svg) no-repeat center;
  height: 54px !important;
  min-height: 54px !important;
}

.front .paragraphs-items .entity-paragraphs-item.-car > .content:before {
  background: url(../images/svg/icon-car.svg) no-repeat center;
}

.front .paragraphs-items .entity-paragraphs-item.-dollar-network > .content:before {
  background: url(../images/svg/icon-dollar-network.svg) no-repeat center;
  height: 54px !important;
  min-height: 54px !important;
}

.front .paragraphs-items .entity-paragraphs-item.-search-car > .content:before {
  background: url(../images/svg/icon-search-car.svg) no-repeat center;
}

.front .featured-news {
  background-color: #ecedee;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px), print {
  .front .featured-news {
    flex-direction: row;
  }
}

.front .featured-news *,
.front .featured-news *:before,
.front .featured-news *:after {
  box-sizing: border-box;
}

.front .featured-news h2 {
  border-bottom: 0;
  font-family: 'Roboto', sans-serif;
  padding-bottom: 0;
  font-weight: 600;
}

.front .featured-news__cont {
  padding: 0 20px 40px 20px;
  width: 100%;
  /* IE11 */
}

@media (min-width: 960px) {
  .front .featured-news__cont {
    max-width: 80%;
    margin: auto;
  }
}

@media (min-width: 1500px) {
  .front .featured-news__cont {
    max-width: 60%;
    margin: auto;
  }
}

.front .featured-news__wrap {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 980px), print {
  .front .featured-news__wrap {
    margin: 0 -35px;
    flex-direction: row;
  }
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region {
    padding: 0 15px;
  }
}

@media screen and (min-width: 1200px), print {
  .front .featured-news .region {
    padding: 0 35px;
  }
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-left {
    width: 70%;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-left {
    margin-bottom: 40px;
  }
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left {
    margin-bottom: 40px;
  }
}

.front .featured-news .region-featured-news-left a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 0;
}

.front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item {
  background-color: #fff;
  margin-bottom: 70px;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item {
    margin-bottom: 40px;
  }
}

.front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item:last-child, .front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item:only-child {
  margin-bottom: 0;
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item.odd .group-left {
    order: 2;
  }
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-left .paragraphs-items > .field > .field-items > .field-item.odd .group-right {
    order: 1;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item {
  height: 360px;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item h3 {
  width: 85%;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item {
    height: 100%;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item {
    height: 100%;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item h3 {
    font-size: 1.3em;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .content {
    flex-direction: row;
    height: 100%;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .field-group-html-element {
  width: 100%;
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .field-group-html-element {
    width: 50%;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-left {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .group-left {
    height: 200px;
  }
}

@media screen and (min-width: 768px), print {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .group-left {
    height: 300px;
  }
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .group-left {
    height: 100%;
  }
}

@media screen and (min-width: 1200px), print {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .group-left {
    padding-bottom: 0;
    height: 100%;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-left .file-image img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
  padding-top: 35px;
  padding-bottom: 28px;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right:before, .front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right:after {
  content: '';
  display: table;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right:after {
  clear: both;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right .field-name-field-date-of-release,
.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right .field-name-field-type {
  float: left;
  font-size: 0.750em;
  margin-bottom: 30px;
  width: 50%;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right .field-name-field-date-of-release a,
.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right .field-name-field-type a {
  font-size: inherit;
  padding: 0;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right .field-name-field-type {
  text-align: right;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .group-right .field-name-field-rich-title {
  clear: both;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .field-name-field-body {
  margin-bottom: 40px;
  line-height: 19px;
}

@media (min-width: 980px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item .field-name-field-one-link {
    position: absolute;
    bottom: 30px;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .field-name-field-one-link a {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: 5px 15px;
  text-transform: uppercase;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .field-name-field-one-link a:after {
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 30px;
  transform: rotate(45deg);
  width: 10px;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .field-name-field-one-link a:hover {
  background-color: #fff;
  color: #00568d;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item .field-name-field-one-link a:hover:after {
  border-top: 2px solid #00568d;
  border-right: 2px solid #00568d;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-black {
  background-color: #222222;
  color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-black .field-name-field-one-link a {
  background-color: #fff;
  border: 1px solid #fff;
  color: #222222;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-black .field-name-field-one-link a:after {
  border-top-color: #222222;
  border-right-color: #222222;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-black .field-name-field-one-link a:hover {
  background-color: #222222;
  color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-black .field-name-field-one-link a:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin {
  background-color: #00568d;
  color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .field-name-field-one-link a {
  background-color: #fff;
  border: 1px solid #fff;
  color: #00568d;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .field-name-field-one-link a:after {
  border-top-color: #00568d;
  border-right-color: #00568d;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .field-name-field-one-link a:hover {
  background-color: #00568d;
  color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .field-name-field-one-link a:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-pine-green {
  background-color: #1a7880;
  color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-pine-green .field-name-field-one-link a {
  background-color: #fff;
  border: 1px solid #fff;
  color: #1a7880;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-pine-green .field-name-field-one-link a:after {
  border-top-color: #1a7880;
  border-right-color: #1a7880;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-pine-green .field-name-field-one-link a:hover {
  background-color: #1a7880;
  color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-pine-green .field-name-field-one-link a:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .group-right {
  background-image: url("../images/svg/icon-linkedin-whitebg.svg");
  background-position: right 25px top 35px;
  background-size: 25px;
  background-repeat: no-repeat;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .group-right {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item.-linkedin .group-right {
    width: 100%;
  }
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-youtube .group-left {
  padding-bottom: 0;
  padding-top: 0;
}

.front .featured-news .region-featured-news-left .entity-paragraphs-item.-youtube .group-right {
  content: '';
  background-image: url("../images/svg/icon-youtube-grey.svg");
  background-position: right 25px top 35px;
  background-size: 25px;
  background-repeat: no-repeat;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item.-youtube .group-right {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-left .entity-paragraphs-item.-youtube .group-right {
    width: 100%;
  }
}

.front .featured-news .region-featured-news-right {
  width: 100%;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-right {
    margin-top: 0;
  }
}

@media (width: 768px) {
  .front .featured-news .region-featured-news-right {
    margin-top: 0;
  }
}

@media screen and (min-width: 980px), print {
  .front .featured-news .region-featured-news-right {
    width: 30%;
  }
}

.front .featured-news .region-featured-news-right .views-row {
  margin-bottom: 70px;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-right .views-row {
    margin-bottom: 40px;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-right .views-row {
    margin-bottom: 40px;
  }
}

.front .featured-news .region-featured-news-right .views-row:last-child, .front .featured-news .region-featured-news-right .views-row:only-child {
  margin-bottom: 0;
}

.front .featured-news .region-featured-news-right .news-list-item {
  background-color: #fff;
  padding: 28px 25px;
  height: 360px;
  position: relative;
}

@media (max-width: 660px) {
  .front .featured-news .region-featured-news-right .news-list-item {
    padding: 28px 25px;
  }
}

@media (max-width: 960px) {
  .front .featured-news .region-featured-news-right .news-list-item {
    padding: 28px 25px;
  }
}

.front .featured-news .region-featured-news-right .news-list-item:last-child, .front .featured-news .region-featured-news-right .news-list-item:only-child {
  margin-bottom: 0;
}

.front .featured-news .region-featured-news-right .news-list-item__header {
  display: flex;
  margin-bottom: 30px;
}

.front .featured-news .region-featured-news-right .news-list-item__date, .front .featured-news .region-featured-news-right .news-list-item__type {
  font-size: 0.750em;
  width: 50%;
}

.front .featured-news .region-featured-news-right .news-list-item__type {
  font-weight: bold;
  text-align: right;
}

.front .featured-news .region-featured-news-right .news-list-item__title {
  font-weight: 500;
  font-size: 1.300em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.front .featured-news .region-featured-news-right .news-list-item__title a {
  color: #000;
  font-weight: bold;
  font-family: 'Roboto',sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}

.front .featured-news .region-featured-news-right .news-list-item__title + .news-list-item__body {
  font-weight: 300;
  line-height: 19px;
}

.front .featured-news .region-featured-news-right .news-list-item p {
  line-height: 19px;
}

@media (min-width: 980px) {
  .front .featured-news .region-featured-news-right .news-list-item__cta {
    position: absolute;
    bottom: 30px;
  }
}

.front .featured-news .region-featured-news-right .news-list-item__cta a {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: 5px 15px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10%;
}

.front .featured-news .region-featured-news-right .news-list-item__cta a:after {
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 15px;
  transform: rotate(45deg);
  width: 10px;
}

@media (min-width: 1510px) {
  .front .featured-news .region-featured-news-right .news-list-item__cta a:after {
    margin-left: 30px;
  }
}

.front .featured-news .region-featured-news-right .news-list-item__cta a:hover {
  background-color: #fff;
  color: #00568d;
}

.front .featured-news .region-featured-news-right .news-list-item__cta a:hover:after {
  border-top: 2px solid #00568d;
  border-right: 2px solid #00568d;
}

.front .featured-news .region-featured-news-right .news-list-item.-black {
  background-color: #222222;
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__title a {
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__cta a {
  border: 1px solid #fff;
  background-color: #fff;
  color: #222222;
}

.front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__cta a:after {
  border-top-color: #222222;
  border-right-color: #222222;
}

.front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__cta a:hover, .front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__cta a:focus {
  background-color: #222222;
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__cta a:hover:after, .front .featured-news .region-featured-news-right .news-list-item.-black .news-list-item__cta a:focus:after {
  border-top-color: #fff !important;
  border-right-color: #fff !important;
}

.front .featured-news .region-featured-news-right .news-list-item.-linkedin {
  background-color: #00568d;
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__title a {
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__cta a {
  border: 1px solid #fff;
  background-color: #fff;
  color: #00568d;
}

.front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__cta a:after {
  border-top-color: #00568d;
  border-right-color: #00568d;
}

.front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__cta a:hover, .front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__cta a:focus {
  background-color: #00568d;
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__cta a:hover:after, .front .featured-news .region-featured-news-right .news-list-item.-linkedin .news-list-item__cta a:focus:after {
  border-top-color: #fff !important;
  border-right-color: #fff !important;
}

.front .featured-news .region-featured-news-right .news-list-item.-pine-green {
  background-color: #1a7880;
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__title a {
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__cta a {
  border: 1px solid #fff;
  background-color: #fff;
  color: #1a7880;
}

.front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__cta a:after {
  border-top-color: #1a7880;
  border-right-color: #1a7880;
}

.front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__cta a:hover, .front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__cta a:focus {
  background-color: #1a7880;
  color: #fff;
}

.front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__cta a:hover:after, .front .featured-news .region-featured-news-right .news-list-item.-pine-green .news-list-item__cta a:focus:after {
  border-top-color: #fff !important;
  border-right-color: #fff !important;
}

.front .after-content {
  clear: both;
}

.front .bean-homepage-subscription-block {
  margin: auto;
  max-width: 800px;
}

.front .bean-homepage-subscription-block .content {
  margin: auto;
}

@media screen and (min-width: 768px), print {
  .front .bean-homepage-subscription-block .content {
    display: flex;
    margin: 0 -90px;
    align-items: center;
  }
}

@media screen and (min-width: 768px), print {
  .front .bean-homepage-subscription-block .field-group-html-element {
    padding: 0 30px;
    width: 50%;
  }
}

.front #block-bean-homepage-subscription-block {
  max-width: 60%;
  margin: 0 auto;
  padding: 40px 0;
}

@media (max-width: 660px) {
  .front #block-bean-homepage-subscription-block {
    max-width: 100%;
    margin: 0;
    padding: 40px 20px;
  }
}

.front #block-bean-homepage-subscription-block h2 {
  border-bottom: 0;
  font-size: 32px;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  margin-bottom: 15px;
  padding-bottom: 0;
}

@media (max-width: 660px) {
  .front #block-bean-homepage-subscription-block h2 {
    font-size: 26px;
  }
}

.front #block-bean-homepage-subscription-block p {
  margin: 0;
}

.front #block-bean-homepage-subscription-block .field-name-field-one-link a {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: 12px 15px;
  text-transform: uppercase;
}

@media (max-width: 660px) {
  .front #block-bean-homepage-subscription-block .field-name-field-one-link a {
    margin-top: 15px;
  }
}

.front #block-bean-homepage-subscription-block .field-name-field-one-link a:after {
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 120px;
  transform: rotate(45deg);
  width: 10px;
}

@media (max-width: 660px) {
  .front #block-bean-homepage-subscription-block .field-name-field-one-link a:after {
    margin-left: 70px;
  }
}

@media (min-width: 768px) {
  .front #block-bean-homepage-subscription-block .field-name-field-one-link a:after {
    margin-left: 20px;
  }
}

.front #block-bean-homepage-subscription-block .field-name-field-one-link a:hover, .front #block-bean-homepage-subscription-block .field-name-field-one-link a:focus {
  background-color: #fff;
  color: #00568d;
}

.front #block-bean-homepage-subscription-block .field-name-field-one-link a:hover:after, .front #block-bean-homepage-subscription-block .field-name-field-one-link a:focus:after {
  border-top: 2px solid #00568d;
  border-right: 2px solid #00568d;
}

.front .footer__social-media-icon-group {
  background-color: #ecedee;
}

.front .footer__social-media-icon-group ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.front .footer__social-media-icon-group .footer__social-media-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.front .footer__social-media-icon-group .footer__social-media-title {
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
}

.front .footer__social-media-icon-group .footer__socialItem {
  margin-right: 10px;
}

.front .footer__social-media-icon-group .footer__socialItem:last-child, .front .footer__social-media-icon-group .footer__socialItem:only-child {
  margin-right: 0;
}

.front .footer__social-media-icon-group .footer__socialLink {
  display: block;
}

.front .footer__social-media-icon-group .footer__socialLink:before {
  content: '';
  display: block;
  height: 30px;
  width: 30px;
}

.front .footer__social-media-icon-group .footer__socialLink.linkedin:before {
  content: '';
  background: url("../images/svg/icon-linkedin.svg") no-repeat center;
}

.front .footer__social-media-icon-group .footer__socialLink.youtube:before {
  content: '';
  background: url("../images/svg/icon-youtube.svg") no-repeat center;
}

#footer {
  background-color: #00568d;
  color: #fff;
  position: relative;
  width: 100%;
}

#footer *,
#footer *:before,
#footer *:after {
  box-sizing: border-box;
}

#footer a {
  color: #fff;
  display: inline-block;
  font-size: 13px;
}

#footer .block-menu-block {
  padding: 25px 0 25px 0;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block {
    display: flex;
  }
}

#footer .block-menu-block.first {
  border-bottom: 1px solid #377aa5;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.first .menu-name-menu-footer {
    width: 80%;
  }
}

#footer .block-menu-block.first .menu-name-menu-footer .menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .block-menu-block.first .menu-name-menu-footer li {
  width: 50%;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.first .menu-name-menu-footer li {
    width: auto;
  }
}

#footer .block-menu-block.first .menu-name-menu-footer li a {
  margin-bottom: 20px;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.first .menu-name-menu-footer li a {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

#footer .block-menu-block.first .menu-name-menu-footer li:only-child a, #footer .block-menu-block.first .menu-name-menu-footer li:last-child a {
  margin-right: 0;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.first .external-links {
    display: flex;
    justify-content: flex-end;
    width: 20%;
  }
}

#footer .block-menu-block.first .external-links a {
  margin-bottom: 20px;
  width: 49%;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.first .external-links a {
    margin-bottom: 0;
    margin-right: 20px;
    width: auto;
  }
}

#footer .block-menu-block.first .external-links a:only-child, #footer .block-menu-block.first .external-links a:last-child {
  margin-right: 0;
}

#footer .block-menu-block.last {
  text-align: center;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.last {
    text-align: left;
  }
}

#footer .block-menu-block.last .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 980px), print {
  #footer .block-menu-block.last .menu {
    display: flex;
    justify-content: flex-end;
  }
}

#footer .business-tag {
  font-size: 14px;
  margin-bottom: 30px;
}

@media screen and (min-width: 980px), print {
  #footer .business-tag {
    margin-bottom: 0;
    margin-right: 30px;
    width: 30%;
  }
}

#footer .menu-name-menu-secondary-footer-menu {
  margin-bottom: 50px;
}

@media screen and (min-width: 980px), print {
  #footer .menu-name-menu-secondary-footer-menu {
    margin-bottom: 0;
    text-align: right;
    width: 70%;
  }
}

#footer .menu-name-menu-secondary-footer-menu li {
  margin-bottom: 10px;
}

@media screen and (min-width: 980px), print {
  #footer .menu-name-menu-secondary-footer-menu li {
    margin-bottom: 0;
  }
}

#footer .menu-name-menu-secondary-footer-menu li a {
  margin-right: 20px;
}

#footer .menu-name-menu-secondary-footer-menu li:only-child a, #footer .menu-name-menu-secondary-footer-menu li:last-child a {
  margin-right: 0;
}

#footer .menu-name-menu-secondary-footer-menu a {
  text-decoration: underline;
}

.file-video {
  position: relative;
  height: 360px;
  overflow: hidden;
}

@media (max-width: 660px) {
  .file-video {
    height: 200px;
  }
}

.file-video .content {
  height: 100%;
}

.file-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 660px) {
  .file-video video {
    height: 200px;
  }
}

@media screen and (min-width: 768px), print {
  .file-video video {
    height: 300px;
  }
}

@media screen and (min-width: 980px), print {
  .file-video video {
    height: 100%;
  }
}

@media screen and (min-width: 1200px), print {
  .file-video video {
    height: 100%;
  }
}

.view-announcements.hide {
  display: none;
  /* .field-name-title.active {
        display: none;
    }
    .field-name-body.active {
        display: none;
    }
    .close-window.active {
        display: none;
    }*/
}

.case-study-wrapper {
  width: 100%;
}

.case-study-wrapper table {
  border: none;
  width: 100% !important;
  border-spacing: 0 20px;
}

.case-study-wrapper table tr {
  margin-bottom: 20px;
}

.case-study-wrapper table tr td {
  background-color: #DBEFF9;
  border: none;
  text-align: center;
  vertical-align: top;
  width: 30%;
  padding: 0 20px;
}

.case-study-wrapper table tr td h3 {
  font-size: 1.5em;
  color: #00568D;
}

.case-study-wrapper table tr td a {
  color: #7B2971;
  text-decoration: underline;
  display: block;
}

.case-study-wrapper table tr td:nth-child(even) {
  background-color: #EFF9FF;
  text-align: left;
  width: 70%;
}

@media (max-width: 600px) {
  .case-study-wrapper {
    width: 87%;
  }
  .case-study-wrapper table {
    width: 100% !important;
  }
  .case-study-wrapper table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .case-study-wrapper table tr td {
    width: 100%;
  }
  .case-study-wrapper table tr td:nth-child(even) {
    width: 100%;
  }
}

.case-study-wrapper-pink {
  width: 100%;
}

.case-study-wrapper-pink table {
  border: none;
  width: 100% !important;
  border-spacing: 0 20px;
}

.case-study-wrapper-pink table tr {
  margin-bottom: 20px;
}

.case-study-wrapper-pink table tr td {
  background-color: #ECDDE9;
  border: none;
  text-align: center;
  vertical-align: top;
  width: 30%;
  padding: 0 20px;
}

.case-study-wrapper-pink table tr td h3 {
  font-size: 1.5em;
  color: #00568D;
}

.case-study-wrapper-pink table tr td a {
  color: #7B2971;
  text-decoration: underline;
  display: block;
}

.case-study-wrapper-pink table tr td:nth-child(even) {
  background-color: rgba(246, 239, 247, 0.893);
  text-align: left;
  width: 70%;
}

@media (max-width: 600px) {
  .case-study-wrapper-pink {
    width: 87%;
  }
  .case-study-wrapper-pink table {
    width: 100% !important;
  }
  .case-study-wrapper-pink table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .case-study-wrapper-pink table tr td {
    width: 100%;
  }
  .case-study-wrapper-pink table tr td:nth-child(even) {
    width: 100%;
  }
}

.bluebutton_iet_form {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff !important;
  display: inline-block !important;
  font-size: 1em;
  padding: 5px 15px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.bluebutton_iet_form:after {
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 15px;
  transform: rotate(45deg);
  width: 10px;
}

.gap_iet_form {
  border-top: dotted #dddddd 2px;
  height: 5px;
  margin: 50px 0px 20px 0px;
}

.time_iet_form {
  height: 65px;
  box-sizing: border-box;
  position: relative;
  margin: 0px 0px 20px 0px;
}

.time_iet_form .ttc_iet_form {
  box-sizing: border-box;
  background-color: #F1F1F1;
  font-size: 15px;
  position: absolute;
  height: 100%;
  width: 60%;
  z-index: auto;
  padding: 15px 15px;
}

.time_iet_form .ttc_iet_form p {
  font-size: 18px;
  position: absolute;
  margin: 0px 0px 0px 33px;
  line-height: 33px;
}

.time_iet_form .ttc_iet_form::before {
  color: #000000;
  content: "\e952";
  font-family: "icomoon";
  font-size: 26px;
  height: 35px;
  width: 30px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.time_iet_form .dl_iet_form {
  font-family: inherit;
  height: 100%;
  width: 40%;
  box-sizing: border-box;
  font-size: 15px;
  background-color: #E2E2E2;
  position: absolute;
  margin-left: 60%;
  padding: 15px 15px;
  cursor: pointer;
  z-index: auto;
}

.time_iet_form .dl_iet_form a {
  color: black;
  text-decoration: none;
  font-family: inherit;
  position: absolute;
  margin-left: 33px;
  line-height: 17px;
}

.time_iet_form .dl_iet_form .pdfsize_iet_form {
  position: absolute;
  margin: 0px 0px 0px 33px;
  line-height: 7px;
}

.time_iet_form .dl_iet_form::before {
  color: #000000;
  content: "\e902";
  font-family: "icomoon";
  font-size: 26px;
  height: 35px;
  width: 30px;
  pointer-events: none;
  position: absolute;
  line-height: 33px;
  z-index: 5;
}

.quest_iet_form {
  color: #7A2A71;
}

.section-about-us .field-item ol,
.node-type-publication .field-item ol {
  list-style-type: none;
  counter-reset: list;
  margin: 0;
}

.section-about-us .field-item ol li,
.node-type-publication .field-item ol li {
  list-style: none;
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
}

.section-about-us .field-item ol li:before,
.node-type-publication .field-item ol li:before {
  counter-increment: list;
  content: "(" counter(list) ") ";
  position: absolute;
  left: -1.4em;
}

.section-about-us .field-item ol li ol li,
.node-type-publication .field-item ol li ol li {
  padding-left: 20px;
}

.section-about-us .field-item ol li ol li:before,
.node-type-publication .field-item ol li ol li:before {
  counter-increment: list;
  content: "(" counter(list, lower-alpha) ") ";
  position: absolute;
  left: -1.4em;
}

.section-about-us .field-item ol li ol li ol li:before,
.node-type-publication .field-item ol li ol li ol li:before {
  counter-increment: list;
  content: "(" counter(list, lower-roman) ") ";
  position: absolute;
  left: -1.4em;
}

.node-webform {
  width: 100%;
}

@media (max-width: 660px) {
  .node-webform .webform-component--q1 {
    display: block;
  }
}

.node-webform .webform-component--q1 > label {
  background-color: #E4D4E3;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0px;
}

.node-webform .webform-component--q1 .field-name-field-webform-code {
  border: 1px dashed #E4D4E3;
  padding: 5px 5px 5px 0;
  margin: 10px;
}

.node-webform .webform-component--q1 .field-name-field-webform-code p {
  padding-left: 20px;
  color: #7B2971;
  margin-bottom: 0;
  font-weight: bold;
}

.node-webform .webform-component--q1 .field-name-field-webform-code ul {
  margin-top: 5px;
}

.node-webform .webform-component {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.625rem !important;
  margin-top: 0.625rem !important;
}

.node-webform .webform-component > label {
  padding: 20px 0px;
  font-size: 1.125rem;
  font-weight: bold !important;
  display: block;
  margin: 0px;
}

.node-webform .webform-component > .description {
  border: dotted #dddddd 2px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px 15px 20px 15px;
  position: relative;
  width: 60%;
  height: 100%;
  box-sizing: border-box;
  display: inline;
  right: 0;
  float: right;
  top: 0;
}

.node-webform .webform-component .form-radios {
  padding: 0px;
}

.node-webform .webform-component .form-radios .form-item {
  position: relative;
}

.node-webform .webform-component .form-radios .form-item label {
  display: block;
  padding: 0px 0 0px 30px;
  font-size: 1rem;
}

.node-webform .webform-component .form-radios .form-item input {
  height: 15px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.node-webform .webform-component .form-radios .form-item input + label::before {
  border: 1px solid black;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 1px;
  width: 18px;
  border-radius: 50%;
}

.node-webform .webform-component .form-radios .form-item input + label::after {
  content: "";
  opacity: 0;
  border: 6px solid #4888FD;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 1px;
  transition: opacity 0.2s ease-in-out;
  width: 8px;
  height: 8px;
  display: inline-block;
}

.node-webform .webform-component .form-radios .form-item input:checked + label::after {
  opacity: 1;
}

.node-webform .webform-component .form-radios .form-item input:focus + label::before {
  border: 1px solid #4888FD;
  outline: 3px solid transparent;
  /* For Windows high contrast mode. */
}

.node-webform .bluebutton_iet_form {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff !important;
  display: inline-block !important;
  font-size: 1em;
  padding: 5px 15px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.node-webform .bluebutton_iet_form:after {
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 15px;
  transform: rotate(45deg);
  width: 10px;
}

.webform-mn_iet_form {
  width: 100%;
}

@media (max-width: 660px) {
  .webform-mn_iet_form .webform-component--q1 {
    display: block;
  }
}

.webform-mn_iet_form .webform-component--q1 > label {
  background-color: #E4D4E3;
  padding: 20px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0px;
}

.webform-mn_iet_form .webform-component--q1 .field-name-field-webform-code {
  border: 1px dashed #E4D4E3;
  padding: 5px 5px 5px 0;
  margin: 10px;
}

.webform-mn_iet_form .webform-component--q1 .field-name-field-webform-code p {
  padding-left: 20px;
  color: #7B2971;
  margin-bottom: 0;
  font-weight: bold;
}

.webform-mn_iet_form .webform-component--q1 .field-name-field-webform-code ul {
  margin-top: 5px;
}

.webform-mn_iet_form .webform-component {
  font-size: 1.1rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.625rem !important;
  margin-top: 0.625rem !important;
}

.webform-mn_iet_form .webform-component > label {
  background-color: #E4D4E3;
  padding: 20px;
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
  margin: 0px;
}

.webform-mn_iet_form .webform-component .form-radios {
  padding-left: 30px;
  width: 40%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  left: 0px;
  display: inline-block;
}

.webform-mn_iet_form .webform-component .form-radios .form-item {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  height: 25px;
}

.webform-mn_iet_form .webform-component .form-radios .form-item label {
  display: block;
  padding: 0px 0 0px 35px;
  font-size: 1.1875rem;
  line-height: 25px;
}

.webform-mn_iet_form .webform-component .form-radios .form-item input {
  height: 25px;
  left: 0;
  opacity: 0;
  position: relative;
  top: 0;
  width: 25px;
}

.webform-mn_iet_form .webform-component .form-radios .form-item input + label::before {
  border: 1px solid black;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  width: 22px;
  border-radius: 50%;
}

.webform-mn_iet_form .webform-component .form-radios .form-item input + label::after {
  content: "";
  opacity: 0;
  border: 1px solid #7B2972;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
  transition: opacity 0.2s ease-in-out;
  width: 14px;
  height: 14px;
  background-color: #7B2972;
  display: inline-block;
}

.webform-mn_iet_form .webform-component .form-radios .form-item input:checked + label::after {
  opacity: 1;
}

.webform-mn_iet_form .webform-component .form-radios .form-item input:focus + label::before {
  border: 1px solid #7B2972;
  outline: 3px solid transparent;
  /* For Windows high contrast mode. */
}

.webform-mn_iet_form .gap_iet_form {
  border-top: dotted #dddddd 2px;
  height: 5px;
  margin: 50px 0px 20px 0px;
}

.webform-mn_iet_form .result_iet_form {
  background-color: white;
  border-left: solid #7B2972 7px;
  padding: 5px 15px;
  font-size: 1rem;
}

.webform-mn_iet_form .result_iet_form .heading_iet_form {
  color: #7B2971;
  margin: 10px 0px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Roboto', sans-serif;
}

.webform-mn_iet_form .result_iet_form p {
  color: black;
  margin: 0px 0px 20px 0px;
}

.webform-mn_iet_form .result_iet_form ul {
  margin: 10px 0px 10px 0px;
}

.webform-mn_iet_form .result_iet_form ul li {
  padding: 5px 0px;
}

.webform-mn_iet_form .bmd_iet_form {
  background-color: #ECEDEE;
  border-left: solid #7B2972 7px;
  padding: 5px 15px;
  font-size: 1rem;
}

.webform-mn_iet_form .bmd_iet_form .heading_iet_form {
  color: #7B2971;
  margin: 10px 0px;
  font-weight: 700;
  font-size: 1.0625rem;
}

.webform-mn_iet_form .bmd_iet_form .subheading_iet_form {
  margin: 0px;
  color: #7B2971;
}

.webform-mn_iet_form .bmd_iet_form p {
  color: black;
  margin: 0px 0px 20px 0px;
}

.webform-mn_iet_form .bmd_iet_form a {
  color: #7B2971;
  text-decoration: underline;
  cursor: pointer;
}

.webform-mn_iet_form .bluebutton_iet_form {
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #00568d;
  border: 1px solid #00568d;
  color: #fff !important;
  display: inline-block !important;
  font-size: 1em;
  padding: 5px 15px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.webform-mn_iet_form .bluebutton_iet_form:after {
  transition-property: border;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: inline-block;
  height: 10px;
  margin-left: 15px;
  transform: rotate(45deg);
  width: 10px;
}

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