﻿@charset "UTF-8";
/* All Variables should be declared here which makes it easier to update if something changes globally */
/*----------  Colour Variables  ----------*/
/*==============================
=            MIXINS            =
==============================*/
/*----------  Responsive  ----------*/
/* Responsive breakpoint manager.
 * @access public
 * @param {String} $breakpoint - Breakpoint
 * usage: @include media-query(phone-max) {} */
/*----------  Layout  ----------*/
/* Vertical align anything! */
/* @include vertical-align; */
/* Absolute positioning */
/*----------  Gradient  ----------*/
/*----------  Themes  ----------*/
/* Themify mixin
 * @access private
 * @param {String} $property - Property to themify
 * @param {Map} $themes [$themes] - Map of themes to use */
/* we need a special function for pseudo elements otherwise the default function will create an invalid selector
  e.g. a:hover.theme-blue <-- invalid
*/
body.theme-industry {
    /* Global theme styles */
}

body.theme-consumer {
    /* Global theme styles */
}

body.theme-default {
    /* Global theme styles */
}

/*----------  Icons  ----------*/
/*=====  End of MIXINS  ======*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -webkit-font-smoothing: antialiased;
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

div,
footer,
header,
section,
nav {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

    /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

    /**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
    a:active,
    a:hover {
        outline: 0;
    }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: .67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * 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: -.5em;
}

sub {
    bottom: -.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
    max-width: 100%;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

    /**
 * Re-set default cursor for disabled elements.
 */
    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    /**
 * Remove inner padding and border in Firefox 4+.
 */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

    /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        /* 1 */
        padding: 0;
        /* 2 */
    }

    /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
    input[type="search"] {
        appearance: textfield;
        /* 1 */
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
            appearance: none;
        }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: .35em .625em .75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*/**
 * Updating this file with Bootstrap changes:
 *
 * 1. Go to http://getbootstrap.com/customize/
 * 2. Un-toggle everything
 * 3. Check: 'Typography'
 * 4. Download
 * 5. Remove margin property on body tag
 */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden],
template {
    display: none;
}

a {
    background: transparent;
}

    a:active,
    a:hover {
        outline: 0;
    }

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input {
    line-height: normal;
}

    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-appearance: textfield;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #ffffff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #428bca;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #2a6496;
        text-decoration: underline;
    }

    a:focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    width: 100% \9;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    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;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small,
    .h1 small,
    .h2 small,
    .h3 small,
    .h4 small,
    .h5 small,
    .h6 small,
    h1 .small,
    h2 .small,
    h3 .small,
    h4 .small,
    h5 .small,
    h6 .small,
    .h1 .small,
    .h2 .small,
    .h3 .small,
    .h4 .small,
    .h5 .small,
    .h6 .small {
        font-weight: normal;
        line-height: 1;
        color: #777777;
    }

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    h1 small,
    .h1 small,
    h2 small,
    .h2 small,
    h3 small,
    .h3 small,
    h1 .small,
    .h1 .small,
    h2 .small,
    .h2 .small,
    h3 .small,
    .h3 .small {
        font-size: 65%;
    }

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    h4 small,
    .h4 small,
    h5 small,
    .h5 small,
    h6 small,
    .h6 small,
    h4 .small,
    .h4 .small,
    h5 .small,
    .h5 .small,
    h6 .small,
    .h6 .small {
        font-size: 75%;
    }

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 14px;
}

h6,
.h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}

small,
.small {
    font-size: 85%;
}

cite {
    font-style: normal;
}

mark,
.mark {
    background-color: #fcf8e3;
    padding: .2em;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777777;
}

.text-primary {
    color: #428bca;
}

a.text-primary:hover {
    color: #3071a9;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover {
    color: #843534;
}

.bg-primary {
    color: #fff;
    background-color: #428bca;
}

a.bg-primary:hover {
    background-color: #3071a9;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover {
    background-color: #e4b9b9;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-bottom: 0;
    }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

    .list-inline > li {
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 1.42857143;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777777;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eeeeee;
}

    blockquote p:last-child,
    blockquote ul:last-child,
    blockquote ol:last-child {
        margin-bottom: 0;
    }

    blockquote footer,
    blockquote small,
    blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.42857143;
        color: #777777;
    }

        blockquote footer:before,
        blockquote small:before,
        blockquote .small:before {
            content: '\2014 \00A0';
        }

    .blockquote-reverse,
    blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        border-right: 5px solid #eeeeee;
        border-left: 0;
        text-align: right;
    }

        .blockquote-reverse footer:before,
        blockquote.pull-right footer:before,
        .blockquote-reverse small:before,
        blockquote.pull-right small:before,
        .blockquote-reverse .small:before,
        blockquote.pull-right .small:before {
            content: '';
        }

        .blockquote-reverse footer:after,
        blockquote.pull-right footer:after,
        .blockquote-reverse small:after,
        blockquote.pull-right small:after,
        .blockquote-reverse .small:after,
        blockquote.pull-right .small:after {
            content: '\00A0 \2014';
        }

    blockquote:before,
    blockquote:after {
        content: "";
    }

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after {
    content: " ";
    display: table;
}

.clearfix:after,
.dl-horizontal dd:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.affix {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* optional - base roots css */
/* Declare font face variations here - make sure to update the source url with the theme name, font name and install font files in /assets/fonts/ */
@font-face {
    font-family: 'montserratregular';
    src: url("../../assets/fonts/montserrat-regular-webfont.eot");
    src: url("../../assets/fonts/montserrat-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/montserrat-regular-webfont.woff2") format("woff2"), url("../../assets/fonts/montserrat-regular-webfont.woff") format("woff"), url("../../assets/fonts/montserrat-regular-webfont.ttf") format("truetype"), url("../../assets/fonts/montserrat-regular-webfont.svg#montserratregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans';
    src: url("../../assets/fonts/opensans-regular-webfont.eot");
    src: url("../../assets/fonts/opensans-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/opensans-regular-webfont.woff2") format("woff2"), url("../../assets/fonts/opensans-regular-webfont.woff") format("woff"), url("../../assets/fonts/opensans-regular-webfont.ttf") format("truetype"), url("../../assets/fonts/opensans-regular-webfont.svg#opensans") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_semibold';
    src: url("../../assets/fonts/opensans-semibold-webfont.eot");
    src: url("../../assets/fonts/opensans-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/opensans-semibold-webfont.woff") format("woff"), url("../../assets/fonts/opensans-semibold-webfont.ttf") format("truetype"), url("../../assets/fonts/opensans-semibold-webfont.svg#opensans_semibold") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'comreg-icons';
    src: url("../../assets/fonts/comreg-icons.eot?56405215");
    src: url("../../assets/fonts/comreg-icons.eot?56405215#iefix") format("embedded-opentype"), url("../../assets/fonts/comreg-icons.woff?56405215") format("woff"), url("../../assets/fonts/comreg-icons.ttf?56405215") format("truetype"), url("../../assets/fonts/comreg-icons.svg?56405215#comreg-icons") format("svg");
    font-weight: normal;
    font-style: normal;
}

/*----------  Global  ----------*/
html {
    font-size: 62.5%;
}

body {
    font-family: "opensans", Arial, sans-serif;
    /* 18px base size */
    font-size: 1.8rem;
    /* 28px base line height */
    line-height: 2.8rem;
    color: #383838;
    background: #eceff1;
}

@media (max-width: 48.05em) {
    body {
        font-size: 1.6rem;
        line-height: 2.4rem;
    }
}

/*----------  Headings  ----------*/
h1,
h2,
h3,
h4,
h5 {
    font-family: "opensans_semibold", Arial, sans-serif;
    color: #282828;
    line-height: 1;
}

h1 {
    font-family: "montserratregular", Arial, sans-serif;
    font-size: 6rem;
    text-transform: uppercase;
}

@media (max-width: 48.05em) {
    h1 {
        font-size: 2.5rem;
    }
}

h1.-main-content-heading {
    font-size: 2.4rem;
    text-transform: none;
}

@media (max-width: 48.05em) {
    h1.-main-content-heading {
        font-size: 2.4rem;
    }
}

h2 {
    font-size: 2.3rem;
    line-height: 2.8rem;
}

h3 {
    font-family: "opensans";
    font-size: 2rem;
}

    h3.BoldH3 {
        font-weight: 700;
    }

h4 {
    font-size: 1.8rem;
    line-height: 2.4rem;
}

h5 {
    font-size: 1.5rem;
    color: #727272;
}

p {
    margin-bottom: 2rem;
}

    p + h2 {
        margin-top: 4rem;
    }

    p.UseSearchFilters {
        font-style: italic;
        font-size: .8em;
    }

a {
    text-decoration: underline;
}

    a:hover, a.-hover {
        color: #383838;
        text-decoration: none;
    }

    a.skip-link {
        position: absolute;
        left: -2000px;
        top: -2000px;
        -webkit-transition: all .2s ease-in;
        -o-transition: all .2s ease-in;
        transition: all .2s ease-in;
        display: block;
        z-index: 1;
        height: 1px;
        width: 1px;
        padding: 5px 10px;
        border: 1px solid #00796b;
        font-size: 1.6rem;
        color: #ffffff;
    }

        a.skip-link.theme-industry,
        .theme-industry a.skip-link {
            background-color: #3277bc;
        }

        a.skip-link.theme-consumer,
        .theme-consumer a.skip-link {
            background-color: #009688;
        }

        a.skip-link.theme-default,
        .theme-default a.skip-link {
            background-color: #009688;
        }

        a.skip-link:focus, a.skip-link:hover, a.skip-link:active {
            position: absolute;
            left: 20px;
            top: 35px;
            height: auto;
            width: auto;
            overflow: hidden;
        }

    a[href^=tel] {
        text-decoration: none;
    }

        a[href^=tel].theme-industry,
        .theme-industry a[href^=tel] {
            color: #3277bc;
        }

        a[href^=tel].theme-consumer,
        .theme-consumer a[href^=tel] {
            color: #009688;
        }

        a[href^=tel].theme-default,
        .theme-default a[href^=tel] {
            color: #009688;
        }

/* definition lists */
dl {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

dt {
    display: inline-block;
    width: 30%;
    font-weight: normal;
    color: #282828;
    font-family: "opensans_semibold";
}

dd {
    display: inline-block;
    width: 70%;
    color: #727272;
}

dt:after {
    content: ": ";
}

.standard-content-container .inner-content a.theme-industry,
.theme-industry .standard-content-container .inner-content a {
    color: #26619a;
}

.standard-content-container .inner-content a.theme-consumer,
.theme-consumer .standard-content-container .inner-content a {
    color: #00796b;
}

.standard-content-container .inner-content a.theme-default,
.theme-default .standard-content-container .inner-content a {
    color: #00796b;
}

.big-link, .bigger-link {
    font-size: 2rem;
    font-family: "opensans_semibold";
}

.bigger-link {
    font-size: 2.3rem;
}

.icon-up-open:before {
    content: '\e800';
    /* '' */
}

.icon-down-open:before {
    content: '\e801';
    /* '' */
}

.icon-left-open:before {
    content: '\e802';
    /* '' */
}

.icon-right-open:before {
    content: '\e803';
    /* '' */
}

.icon-ok:before {
    content: '\e807';
    /* '' */
}

.icon-search:before {
    content: '\e808';
    /* '' */
}

.icon-phone:before {
    content: '\e809';
    /* '' */
}

.icon-doc:before {
    content: '\e80a';
    /* '' */
}

.icon-newspaper:before {
    content: '\e80b';
    /* '' */
}

.icon-mail:before {
    content: '\e80c';
    /* '' */
}

.icon-info:before {
    content: '\e80d';
    /* '' */
}

.icon-users:before {
    content: '\e80e';
    /* '' */
}

.icon-euro:before {
    content: '\e80f';
    /* '' */
}

.svg-sprite {
    display: none;
}

svg path {
    fill: inherit !important;
}

.svg-icon {
    display: inline-block;
    /* Flow with text content */
    fill: currentColor;
    /* Inherit the parent text color */
    height: 1.2em;
    /* Use the parent font-size for width and height */
    width: 1.2em;
    /* Use the parent font-size for width and height */
    vertical-align: middle;
    /* Vertically align icon with adjacent text */
    position: relative;
    /* Align nicely with capital letters */
    top: -.0625em;
}

.card-icon.premium-rate-icon {
    font-size: 2.3rem;
    margin-left: -4px;
}

.card-icon.consumer-services-icon {
    font-size: 2.2rem;
    margin-top: 5px;
}

.card-icon.about-comreg-icon, .card-icon.strategy-icon, .card-icon.freedom-act-icon, .card-icon.corporate-governance-icon {
    font-size: 2.3rem;
}

.card-icon.complaints-queries-icon, .card-icon.postal-icon, .card-icon.publications-icon {
    font-size: 2.1rem;
}

.card-icon.general-authorisation-icon, .card-icon.numbering-naming-addressing-icon, .card-icon.mobile-phone-icon, .card-icon.internet-icon, .card-icon.feedback-icon, .card-icon.legislation-icon {
    font-size: 2.2rem;
}

.card-icon.home-phone-icon {
    font-size: 1.9rem;
}

.card-icon.licensing-icon {
    padding-top: 8px;
}

/* IE10+ specific styles go here */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .header-primary-nav {
        width: 440px;
    }

    .header-logo-img {
        max-height: 70px;
    }

    .card-text-container {
        width: 100%;
    }

    .publications-search-option-button {
        -webkit-flex-basis: 22% !important;
        -ms-flex-preferred-size: 22% !important;
        flex-basis: 22% !important;
    }

    .banner.-publication {
        height: 300px;
    }

        .banner.-publication .banner-h2 {
            line-height: 6rem;
        }

    select::-ms-expand {
        display: none;
    }
}

.main-content-container {
    width: 1200px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 75em) {
    .main-content-container {
        width: 95%;
    }
}

.main-content-container.-white {
    background: #ffffff;
}

.main-content-container.-bordered {
    border: 1px solid #d5d8e0;
}

.main-content-container.-with-shadow {
    border-bottom: 1px solid #d5d8e0;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}

.main-content-container.-with-spacer {
    margin-bottom: 10px;
}

.inner-content {
    width: 1024px;
    margin: 0 auto;
}

@media (max-width: 75em) {
    .inner-content {
        width: 90%;
    }
}

/*==================================
=            Navigation            =
==================================*/
/*----------  Primary Header Navigation  ----------*/
.header-primary-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 93%;
    -ms-flex: 1 0 93%;
    flex: 1 0 93%;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 62em) {
    .header-primary-nav {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 85%;
        -ms-flex: 0 0 85%;
        flex: 0 0 85%;
        padding-left: 2%;
    }
}

@media (max-width: 48.05em) {
    .header-primary-nav {
        display: none;
    }
}

.header-primary-nav li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.header-primary-nav a {
    color: #383838;
    font-family: "opensans_semibold";
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

@media (max-width: 75em) {
    .header-primary-nav a {
        display: inline-block;
        font-size: 1.6rem;
    }
}

.header-primary-nav a:hover {
    text-decoration: none;
}

    .header-primary-nav a:hover.theme-industry,
    .theme-industry .header-primary-nav a:hover {
        color: #3277bc;
    }

    .header-primary-nav a:hover.theme-consumer,
    .theme-consumer .header-primary-nav a:hover {
        color: #009688;
    }

    .header-primary-nav a:hover.theme-default,
    .theme-default .header-primary-nav a:hover {
        color: #009688;
    }

    .header-primary-nav a:hover.theme-industry,
    .theme-industry .header-primary-nav a:hover {
        border-bottom-color: #3277bc;
    }

    .header-primary-nav a:hover.theme-consumer,
    .theme-consumer .header-primary-nav a:hover {
        border-bottom-color: #009688;
    }

    .header-primary-nav a:hover.theme-default,
    .theme-default .header-primary-nav a:hover {
        border-bottom-color: #009688;
    }

/*----------  Mobile Header Primary Navigation  ----------*/
.mobile-nav-toggle {
    display: none;
    padding-right: 10%;
    text-decoration: none;
    font-family: "opensans_semibold";
    font-size: 1.5rem;
    line-height: 2.6rem;
    -webkit-transition: background .1s ease-out .2s;
    -o-transition: background .1s ease-out .2s;
    transition: background .1s ease-out .2s;
}

    .mobile-nav-toggle.theme-industry,
    .theme-industry .mobile-nav-toggle {
        color: #3277bc;
    }

    .mobile-nav-toggle.theme-consumer,
    .theme-consumer .mobile-nav-toggle {
        color: #009688;
    }

    .mobile-nav-toggle.theme-default,
    .theme-default .mobile-nav-toggle {
        color: #009688;
    }

@media (max-width: 48.05em) {
    .mobile-nav-toggle {
        display: block;
        padding: 17px 20px;
        font-size: 1.5rem;
        line-height: 2.6rem;
    }
}

@media (max-width: 34em) {
    .mobile-nav-toggle {
        font-size: 1.5rem;
        line-height: 2.6rem;
    }
}

.mobile-nav-toggle:after {
    font-family: "comreg-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e801';
    margin-left: 5px;
    font-size: 1.3rem;
    -webkit-transition: -webkit-transform .2s ease-out;
    -o-transition: -o-transform .2s ease-out;
    transition: transform .2s ease-out;
}

    .mobile-nav-toggle:after.theme-industry,
    .theme-industry .mobile-nav-toggle:after {
        color: #3277bc;
    }

    .mobile-nav-toggle:after.theme-consumer,
    .theme-consumer .mobile-nav-toggle:after {
        color: #009688;
    }

    .mobile-nav-toggle:after.theme-default,
    .theme-default .mobile-nav-toggle:after {
        color: #009688;
    }

.mobile-nav-toggle.-active, .mobile-nav-toggle.publications-search-option-button.-open {
    background: #eceff1;
}

    .mobile-nav-toggle.-active:after, .mobile-nav-toggle.publications-search-option-button.-open:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

.mobile-nav-toggle:hover, .mobile-nav-toggle:focus {
    text-decoration: none;
}

.mobile-primary-nav-container {
    display: none;
}

@media (max-width: 48.05em) {
    .mobile-primary-nav-container {
        display: block;
    }
}

.mobile-primary-nav,
.mobile-secondary-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mobile-primary-nav li,
    .mobile-secondary-nav li {
        border-bottom: 1px solid #ffffff;
    }

    .mobile-primary-nav a,
    .mobile-secondary-nav a {
        display: block;
        padding: 10px 20px;
        font-size: 2rem;
        font-family: "opensans_semibold", Arial, sans-serif;
        color: #383838;
        text-decoration: none;
    }

        .mobile-primary-nav a:after,
        .mobile-secondary-nav a:after {
            font-family: "comreg-icons";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            width: 1em;
            text-align: center;
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: '\e803';
            color: #383838;
            font-size: 1.6rem;
            float: right;
        }

        .mobile-primary-nav a:hover.theme-industry,
        .theme-industry .mobile-primary-nav a:hover,
        .mobile-primary-nav li.active a.theme-industry,
        .theme-industry .mobile-primary-nav li.active a,
        .mobile-secondary-nav a:hover.theme-industry,
        .theme-industry .mobile-secondary-nav a:hover,
        .mobile-secondary-nav li.active a.theme-industry,
        .theme-industry .mobile-secondary-nav li.active a {
            color: #3277bc;
        }

        .mobile-primary-nav a:hover.theme-consumer,
        .theme-consumer .mobile-primary-nav a:hover,
        .mobile-primary-nav li.active a.theme-consumer,
        .theme-consumer .mobile-primary-nav li.active a,
        .mobile-secondary-nav a:hover.theme-consumer,
        .theme-consumer .mobile-secondary-nav a:hover,
        .mobile-secondary-nav li.active a.theme-consumer,
        .theme-consumer .mobile-secondary-nav li.active a {
            color: #009688;
        }

        .mobile-primary-nav a:hover.theme-default,
        .theme-default .mobile-primary-nav a:hover,
        .mobile-primary-nav li.active a.theme-default,
        .theme-default .mobile-primary-nav li.active a,
        .mobile-secondary-nav a:hover.theme-default,
        .theme-default .mobile-secondary-nav a:hover,
        .mobile-secondary-nav li.active a.theme-default,
        .theme-default .mobile-secondary-nav li.active a {
            color: #009688;
        }

.theme-industry .mobile-primary-nav a:hover:after, .theme-industry .mobile-primary-nav li.active a:after, .theme-industry .mobile-secondary-nav a:hover:after, .theme-industry .mobile-secondary-nav li.active a:after {
    color: #3277bc;
}

.theme-consumer .mobile-primary-nav a:hover:after, .theme-consumer .mobile-primary-nav li.active a:after, .theme-consumer .mobile-secondary-nav a:hover:after, .theme-consumer .mobile-secondary-nav li.active a:after {
    color: #009688;
}

.theme-default .mobile-primary-nav a:hover:after, .theme-default .mobile-primary-nav li.active a:after, .theme-default .mobile-secondary-nav a:hover:after, .theme-default .mobile-secondary-nav li.active a:after {
    color: #009688;
}

/*----------  Secondary Header Navigation  ----------*/
.header-secondary-nav-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 48.05em) {
    .header-secondary-nav-container {
        display: none;
    }
}

.header-secondary-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .header-secondary-nav a {
        padding-right: 25px;
        color: #727272;
        font-size: 1.5rem;
        font-family: "opensans_semibold";
        text-decoration: none;
        -webkit-transition: all .2s linear;
        -o-transition: all .2s linear;
        transition: all .2s linear;
    }

        .header-secondary-nav a:hover {
            text-decoration: none;
        }

            .header-secondary-nav a:hover.theme-industry,
            .theme-industry .header-secondary-nav a:hover {
                color: #3277bc;
            }

            .header-secondary-nav a:hover.theme-consumer,
            .theme-consumer .header-secondary-nav a:hover {
                color: #009688;
            }

            .header-secondary-nav a:hover.theme-default,
            .theme-default .header-secondary-nav a:hover {
                color: #009688;
            }

/*----------  Internal Secondary Navigation  ----------*/
.internal-secondary-nav-container {
    background: #d8e0e4;
}

@media (max-width: 48.05em) {
    .internal-secondary-nav-container {
        background: #eceff1;
    }
}

.internal-secondary-nav {
    padding: 5px 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}

@media (max-width: 48.05em) {
    .internal-secondary-nav {
        display: none;
    }
}

.internal-secondary-nav .page_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px 0;
}

    .internal-secondary-nav .page_item:first-child > a {
        border-left: none;
        padding-left: 30px;
    }

    .internal-secondary-nav .page_item:last-child > a {
        border-right: none;
    }

    .internal-secondary-nav .page_item.current_page_item, .internal-secondary-nav .page_item.current_page_ancestor {
        background: #eceff1;
        border-top: 1px solid #ffffff;
        border-left: 1px solid #ffffff;
        border-right: 1px solid #ffffff;
    }

        .internal-secondary-nav .page_item.current_page_item > a,
        .internal-secondary-nav .page_item.current_page_ancestor > a {
            border: none;
        }

            .internal-secondary-nav .page_item.current_page_item > a.theme-industry,
            .theme-industry .internal-secondary-nav .page_item.current_page_item > a,
            .internal-secondary-nav .page_item.current_page_ancestor > a.theme-industry,
            .theme-industry .internal-secondary-nav .page_item.current_page_ancestor > a {
                color: #3277bc;
            }

            .internal-secondary-nav .page_item.current_page_item > a.theme-consumer,
            .theme-consumer .internal-secondary-nav .page_item.current_page_item > a,
            .internal-secondary-nav .page_item.current_page_ancestor > a.theme-consumer,
            .theme-consumer .internal-secondary-nav .page_item.current_page_ancestor > a {
                color: #009688;
            }

            .internal-secondary-nav .page_item.current_page_item > a.theme-default,
            .theme-default .internal-secondary-nav .page_item.current_page_item > a,
            .internal-secondary-nav .page_item.current_page_ancestor > a.theme-default,
            .theme-default .internal-secondary-nav .page_item.current_page_ancestor > a {
                color: #009688;
            }

            .internal-secondary-nav .page_item.current_page_item > a:before,
            .internal-secondary-nav .page_item.current_page_ancestor > a:before {
                background: none;
            }

        .internal-secondary-nav .page_item.current_page_item + a,
        .internal-secondary-nav .page_item.current_page_ancestor + a {
            border: none;
        }

.current-page-item-sibling > a:before {
    background: none !important;
}

.current-page-item-sibling:first-child a {
    border-right: none !important;
}

.internal-secondary-nav .current_page_item + .page_item a,
.internal-secondary-nav .current_page_ancestor + .page_item a {
    border-left: none;
}

.internal-secondary-nav .page_item > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 9%;
    text-align: center;
    border-left: 1px solid #9c9b9b;
    font-family: "opensans_semibold", Arial, sans-serif;
    line-height: 2.2rem;
    color: #383838;
    text-decoration: none;
    -webkit-transition: color .2s ease-out;
    -o-transition: color .2s ease-out;
    transition: color .2s ease-out;
}

    .internal-secondary-nav .page_item > a:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 1px;
        background: #ffffff;
    }

@media (max-width: 75em) {
    .internal-secondary-nav .page_item > a {
        font-size: 1.6rem;
    }
}

@media (max-width: 62em) {
    .internal-secondary-nav .page_item > a {
        padding: 0 5%;
    }
}

.internal-secondary-nav .page_item > a:hover.theme-industry,
.theme-industry .internal-secondary-nav .page_item > a:hover {
    color: #3277bc;
}

.internal-secondary-nav .page_item > a:hover.theme-consumer,
.theme-consumer .internal-secondary-nav .page_item > a:hover {
    color: #009688;
}

.internal-secondary-nav .page_item > a:hover.theme-default,
.theme-default .internal-secondary-nav .page_item > a:hover {
    color: #009688;
}

.secondary-nav-back-link {
    display: none;
    padding: 12px 0 20px;
    font-size: 1.4rem;
    font-family: "opensans_semibold";
    color: #727272;
    text-decoration: none;
}

    .secondary-nav-back-link:before {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\e802';
    }

@media (max-width: 48.05em) {
    .secondary-nav-back-link {
        display: block;
    }
}

/*----------  Internal Tertiary Navigation  ----------*/
.internal-tertiary-nav-container {
    width: 300px;
}

@media (max-width: 75em) {
    .internal-tertiary-nav-container {
        width: 30%;
    }
}

@media (max-width: 48.05em) {
    .internal-tertiary-nav-container {
        width: 100%;
        padding: 0 0 20px;
        background: #eceff1;
    }
}

.internal-tertiary-nav-container + .inner-content {
    width: 900px;
    padding: 70px;
    border-left: 1px solid #eceff1;
}

@media (max-width: 75em) {
    .internal-tertiary-nav-container + .inner-content {
        width: 70%;
        padding: 70px 5%;
    }
}

@media (max-width: 48.05em) {
    .internal-tertiary-nav-container + .inner-content {
        width: 100%;
        padding: 25px 5%;
        border: none;
    }
}

.internal-tertiary-nav-container .select-container {
    width: 100%;
    background: #ffffff;
    display: none;
}

@media (max-width: 48.05em) {
    .internal-tertiary-nav-container .select-container {
        display: block;
    }
}

.internal-tertiary-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 1px solid #eceff1;
    border-bottom: 1px solid #eceff1;
}

@media (max-width: 48.05em) {
    .internal-tertiary-nav {
        display: none;
    }
}

.internal-tertiary-nav .page_item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 75px;
    padding: 20px 40px 20px 20px;
    border-bottom: 1px solid #eceff1;
}

    .internal-tertiary-nav .page_item:last-child {
        border-bottom: none;
    }

@media (max-width: 48.05em) {
    .internal-tertiary-nav .page_item {
        border: none;
    }
}

.internal-tertiary-nav .page_item > a {
    display: block;
    width: 100%;
    -webkit-transition: color .2s ease-out;
    -o-transition: color .2s ease-out;
    transition: color .2s ease-out;
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: "opensans_semibold", Arial, sans-serif;
    color: #727272;
    text-decoration: none;
}

    .internal-tertiary-nav .page_item > a:hover.theme-industry,
    .theme-industry .internal-tertiary-nav .page_item > a:hover {
        color: #3277bc;
    }

    .internal-tertiary-nav .page_item > a:hover.theme-consumer,
    .theme-consumer .internal-tertiary-nav .page_item > a:hover {
        color: #009688;
    }

    .internal-tertiary-nav .page_item > a:hover.theme-default,
    .theme-default .internal-tertiary-nav .page_item > a:hover {
        color: #009688;
    }

    .internal-tertiary-nav .page_item > a:after {
        position: absolute;
        right: 20px;
        top: 30%;
        display: block;
        margin-top: 8px;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6.5px 0 6.5px 6px;
        border-color: transparent transparent transparent #727272;
    }

.theme-industry .internal-tertiary-nav .page_item > a:hover:after {
    border-left-color: #3277bc;
}

.theme-consumer .internal-tertiary-nav .page_item > a:hover:after {
    border-left-color: #009688;
}

.theme-default .internal-tertiary-nav .page_item > a:hover:after {
    border-left-color: #009688;
}

@media (max-width: 48.05em) {
    .internal-tertiary-nav .page_item > a:after {
        border: none;
    }
}

.internal-tertiary-nav .current_page_item {
    border-left-width: 5px;
    border-left-style: solid;
}

    .internal-tertiary-nav .current_page_item.theme-industry,
    .theme-industry .internal-tertiary-nav .current_page_item {
        border-left-color: #3277bc;
    }

    .internal-tertiary-nav .current_page_item.theme-consumer,
    .theme-consumer .internal-tertiary-nav .current_page_item {
        border-left-color: #009688;
    }

    .internal-tertiary-nav .current_page_item.theme-default,
    .theme-default .internal-tertiary-nav .current_page_item {
        border-left-color: #009688;
    }

    .internal-tertiary-nav .current_page_item > a.theme-industry,
    .theme-industry .internal-tertiary-nav .current_page_item > a {
        color: #3277bc;
    }

    .internal-tertiary-nav .current_page_item > a.theme-consumer,
    .theme-consumer .internal-tertiary-nav .current_page_item > a {
        color: #009688;
    }

    .internal-tertiary-nav .current_page_item > a.theme-default,
    .theme-default .internal-tertiary-nav .current_page_item > a {
        color: #009688;
    }

.theme-industry .internal-tertiary-nav .current_page_item > a:after {
    border-left-color: #3277bc;
}

.theme-consumer .internal-tertiary-nav .current_page_item > a:after {
    border-left-color: #009688;
}

.theme-default .internal-tertiary-nav .current_page_item > a:after {
    border-left-color: #009688;
}

.internal-tertiary-nav-mobile {
    display: none;
    max-width: none;
    width: 100%;
}

@media (max-width: 48.05em) {
    .internal-tertiary-nav-mobile {
        display: block;
    }
}

.internal-tertiary-nav-mobile-label {
    color: transparent;
    line-height: 0;
    display: none;
}

/*----------  Footer Navigation  ----------*/
.footer-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 940px;
    /* workaround IE flex basis issue */
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 80%;
    -ms-flex: 1 0 80%;
    flex: 1 0 80%;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 75em) {
    .footer-nav {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: auto;
    }
}

@media (max-width: 75em) {
    .footer-nav > li {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

@media (max-width: 48.05em) {
    .footer-nav > li {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 35%;
        -ms-flex: 1 0 35%;
        flex: 1 0 35%;
        padding: 8px 0;
        border-bottom: 1px solid #727272;
    }

        .footer-nav > li:nth-child(odd) {
            margin-right: 15%;
        }
}

.footer-nav a {
    color: #ffffff;
    font-size: 1.5rem;
    font-family: "opensans_semibold";
    text-decoration: none;
    -webkit-transition: color .1s ease-out;
    -o-transition: color .1s ease-out;
    transition: color .1s ease-out;
}

    .footer-nav a:hover.theme-industry,
    .theme-industry .footer-nav a:hover, .footer-nav a:focus.theme-industry,
    .theme-industry .footer-nav a:focus {
        color: #3277bc;
    }

    .footer-nav a:hover.theme-consumer,
    .theme-consumer .footer-nav a:hover, .footer-nav a:focus.theme-consumer,
    .theme-consumer .footer-nav a:focus {
        color: #009688;
    }

    .footer-nav a:hover.theme-default,
    .theme-default .footer-nav a:hover, .footer-nav a:focus.theme-default,
    .theme-default .footer-nav a:focus {
        color: #009688;
    }

/*=====  End of Navigation  ======*/
/*==============================
=            HEADER            =
==============================*/
.header {
    background: #ffffff;
}

/*----------  Sector Selector  ----------*/
.sector-selector-container {
    background: #eceff1;
}

@media (max-width: 75em) {
    .sector-selector-container {
        text-align: center;
    }
}

.sector-selector-link {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 4rem;
    padding: 0 20px;
    color: #727272;
    text-decoration: none;
}

@media (max-width: 48.05em) {
    .sector-selector-link {
        padding: 0 3%;
        width: 46%;
    }
}

@media (max-width: 34em) {
    .sector-selector-link {
        padding: 0 1%;
        font-size: 1.3rem;
    }
}

.sector-selector-link.-active, .sector-selector-link.publications-search-option-button.-open {
    background: #ffffff;
}

    .sector-selector-link.-active.theme-industry, .sector-selector-link.theme-industry.publications-search-option-button.-open,
    .theme-industry .sector-selector-link.-active,
    .theme-industry .sector-selector-link.publications-search-option-button.-open {
        color: #3277bc;
    }

    .sector-selector-link.-active.theme-consumer, .sector-selector-link.theme-consumer.publications-search-option-button.-open,
    .theme-consumer .sector-selector-link.-active,
    .theme-consumer .sector-selector-link.publications-search-option-button.-open {
        color: #009688;
    }

    .sector-selector-link.-active.theme-default, .sector-selector-link.theme-default.publications-search-option-button.-open,
    .theme-default .sector-selector-link.-active,
    .theme-default .sector-selector-link.publications-search-option-button.-open {
        color: #009688;
    }

@media (max-width: 48.05em) {
    .sector-selector-link.-active, .sector-selector-link.publications-search-option-button.-open {
        border-right: 1px solid #d8d8d8;
    }
}

.sector-selector-link.-active span, .sector-selector-link.publications-search-option-button.-open span {
    font-family: "opensans_semibold";
}

/*----------  Logo  ----------*/
.header-content-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0 15px;
}

@media (max-width: 75em) {
    .header-content-container {
        padding: 20px 2% 15px;
    }
}

@media (max-width: 48.05em) {
    .header-content-container {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-bottom: 0;
    }
}

@media (max-width: 62em) {
    .header-top-right-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 10px;
    }
}

.header-bottom-right-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-logo-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 340px;
    -ms-flex: 1 0 340px;
    flex: 1 0 340px;
    padding-top: 5px;
}

@media (max-width: 62em) {
    .header-logo-container {
        display: none;
    }
}

@media (max-width: 48.05em) {
    .header-logo-container {
        display: block;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 66%;
        -ms-flex: 1 0 66%;
        flex: 1 0 66%;
        margin: 0 6% 15px 0;
    }
}

.header-logo-img {
    max-width: 322px;
}

@media (max-width: 48.05em) {
    .header-logo-img {
        max-width: 100%;
    }
}

.header-tablet-logo {
    display: none;
}

@media (max-width: 62em) {
    .header-tablet-logo {
        display: block;
    }
}

@media (max-width: 48.05em) {
    .header-tablet-logo {
        display: none;
    }
}

.header-nav-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 600px;
    -ms-flex: 1 0 600px;
    flex: 1 0 600px;
}

@media (max-width: 62em) {
    .header-nav-container {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

@media (max-width: 48.05em) {
    .header-nav-container {
        text-align: right;
    }
}

.theme-industry .header-nav-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 700px;
    -ms-flex: 1 0 700px;
    flex: 1 0 700px;
}

@media (max-width: 62em) {
    .theme-industry .header-nav-container {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }
}

.search-mobile-nav-container {
    background: #eceff1;
    overflow: hidden;
    height: auto;
    -webkit-transition: max-height .3s ease-in;
    -o-transition: max-height .3s ease-in;
    transition: max-height .3s ease-in;
}

@media (max-width: 48.05em) {
    .search-mobile-nav-container {
        max-height: 0;
    }

        .search-mobile-nav-container.-active, .search-mobile-nav-container.publications-search-option-button.-open {
            max-height: 999px;
        }
}

.search-mobile-nav-container .header-language-toggle {
    display: none;
}

@media (max-width: 48.05em) {
    .search-mobile-nav-container .header-language-toggle {
        display: block;
    }
}

/*----------  Language Toggle  ----------*/
.header-language-toggle {
    color: #727272;
    font-size: 1.5rem;
    font-family: "opensans_semibold";
    line-height: 3rem;
    margin-bottom: 5px;
}

@media (max-width: 48.05em) {
    .header-language-toggle {
        padding: 12px;
        text-align: center;
    }
}

.header-language-toggle a {
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    color: #727272;
    text-decoration: none;
}

@media (max-width: 48.05em) {
    .header-language-toggle a {
        padding: 0 10px;
        font-size: 1.5rem;
    }
}

.header-language-toggle a:hover, .header-language-toggle a.-active, .header-language-toggle a.publications-search-option-button.-open {
    text-decoration: none;
}

    .header-language-toggle a:hover.theme-industry,
    .theme-industry .header-language-toggle a:hover, .header-language-toggle a.-active.theme-industry, .header-language-toggle a.theme-industry.publications-search-option-button.-open,
    .theme-industry .header-language-toggle a.-active,
    .theme-industry .header-language-toggle a.publications-search-option-button.-open {
        color: #3277bc;
    }

    .header-language-toggle a:hover.theme-consumer,
    .theme-consumer .header-language-toggle a:hover, .header-language-toggle a.-active.theme-consumer, .header-language-toggle a.theme-consumer.publications-search-option-button.-open,
    .theme-consumer .header-language-toggle a.-active,
    .theme-consumer .header-language-toggle a.publications-search-option-button.-open {
        color: #009688;
    }

    .header-language-toggle a:hover.theme-default,
    .theme-default .header-language-toggle a:hover, .header-language-toggle a.-active.theme-default, .header-language-toggle a.theme-default.publications-search-option-button.-open,
    .theme-default .header-language-toggle a.-active,
    .theme-default .header-language-toggle a.publications-search-option-button.-open {
        color: #009688;
    }

/*=====  End of HEADER  ======*/
/*==============================
=            Footer            =
==============================*/
.footer {
    height: 100px;
    padding: 30px;
    background: #383838;
}

@media (max-width: 62em) {
    .footer {
        height: auto;
    }
}

@media (max-width: 48.05em) {
    .footer {
        padding: 30px 5%;
        margin-top: 30px;
    }
}

.footer-content-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 75em) {
    .footer-content-container {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 48.05em) {
    .footer-content-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/*----------  Footer Contact Details  ----------*/
.footer-contact-details-container {
    padding: 40px 0;
    background: transparent url("../../assets/img/footer-map.png") no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
}

@media (max-width: 48.05em) {
    .footer-contact-details-container {
        display: none;
    }
}

.footer-contact-details-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 0 30px;
    background: #ffffff;
    color: #383838;
}

@media (max-width: 75em) {
    .footer-contact-details-block {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 85%;
        padding: 40px 3% 30px;
    }
}

@media (max-width: 62em) {
    .footer-contact-details-block {
        width: 95%;
        font-size: 1.6rem;
    }
}

.footer-contact-details-block > div {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
}

@media (max-width: 75em) {
    .footer-contact-details-block > div {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 45%;
        -ms-flex: 1 0 45%;
        flex: 1 0 45%;
    }
}

@media (max-width: 75em) {
    .footer-phone {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.footer-logo {
    margin-right: -50px;
}

@media (max-width: 75em) {
    .footer-logo {
        margin: 0;
    }
}

.footer-logo-img {
    max-width: 280px;
    margin-left: 15px;
}

.footer-phone-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 75em) {
    .footer-phone-block {
        margin-top: 30px;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 45%;
        -ms-flex: 1 0 45%;
        flex: 1 0 45%;
    }
}

.footer-sector-name {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 120px;
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    font-family: "opensans_semibold";
}

.footer-email,
.footer-map-link {
    text-decoration: none;
    font-family: "opensans_semibold";
}

    .footer-email.theme-industry,
    .theme-industry .footer-email,
    .footer-map-link.theme-industry,
    .theme-industry .footer-map-link {
        color: #3277bc;
    }

    .footer-email.theme-consumer,
    .theme-consumer .footer-email,
    .footer-map-link.theme-consumer,
    .theme-consumer .footer-map-link {
        color: #009688;
    }

    .footer-email.theme-default,
    .theme-default .footer-email,
    .footer-map-link.theme-default,
    .theme-default .footer-map-link {
        color: #009688;
    }

    .footer-email:hover,
    .footer-map-link:hover {
        text-decoration: underline;
    }

/*----------  Footer Social Links  ----------*/
.footer-social-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 10%;
    -ms-flex: 1 0 10%;
    flex: 1 0 10%;
    margin-left: 8%;
}

@media (max-width: 75em) {
    .footer-social-links {
        margin-left: 20%;
    }
}

@media (max-width: 62em) {
    .footer-social-links {
        margin-left: 5%;
    }
}

@media (max-width: 48.05em) {
    .footer-social-links {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 30px 0 0;
    }
}

.twt-accessibility {
    text-indent: -12px;
}

.footer-social-icon-inner {
    -webkit-transition: fill .1s ease-in;
    -o-transition: fill .1s ease-in;
    transition: fill .1s ease-in;
    fill: #727272;
}

.footer-social-link {
    color: transparent;
}

@media (max-width: 48.05em) {
    .footer-social-link {
        padding: 0 6%;
    }
}

.footer-social-link:hover .footer-social-icon-inner {
    cursor: pointer;
    fill: #ffffff;
}

/*=====  End of Footer  ======*/
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend,
.section-heading {
    width: 100%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    margin: 10px 0 20px;
    font-size: 1.8rem;
    font-family: "opensans_semibold";
}

    legend.theme-industry,
    .theme-industry legend,
    .section-heading.theme-industry,
    .theme-industry .section-heading {
        border-bottom-color: #3277bc;
    }

    legend.theme-consumer,
    .theme-consumer legend,
    .section-heading.theme-consumer,
    .theme-consumer .section-heading {
        border-bottom-color: #009688;
    }

    legend.theme-default,
    .theme-default legend,
    .section-heading.theme-default,
    .theme-default .section-heading {
        border-bottom-color: #009688;
    }

    legend.theme-industry,
    .theme-industry legend,
    .section-heading.theme-industry,
    .theme-industry .section-heading {
        color: #3277bc;
    }

    legend.theme-consumer,
    .theme-consumer legend,
    .section-heading.theme-consumer,
    .theme-consumer .section-heading {
        color: #009688;
    }

    legend.theme-default,
    .theme-default legend,
    .section-heading.theme-default,
    .theme-default .section-heading {
        color: #009688;
    }

form {
    /* the little required asterisk when a field is required */
    /* checked mark aspect changes */
    /* disabled checkbox */
    /* Base for checkbox label styling */
    /* checkbox aspect */
    /* checked mark aspect */
    /* checked mark aspect changes */
    /* disabled checkbox */
    /* accessibility */
    /* required checkbox */
}

    form ul {
        margin: 0;
        padding: 0;
    }

    form li {
        list-style: none;
        margin-bottom: 10px;
        position: relative;
    }

        form li.inline-field {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: start;
            -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
            justify-content: flex-start;
            margin-bottom: 30px;
        }

@media (max-width: 48.05em) {
    form li.inline-field {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 20px;
        margin-bottom: 5px;
    }
}

form li.inline-field label:first-child {
    width: 60%;
}

@media (max-width: 48.05em) {
    form li.inline-field label:first-child {
        width: 93%;
        line-height: 2.9rem;
    }
}

form li.inline-field.-short label:first-child {
    width: 135px;
}

@media (max-width: 48.05em) {
    form li.inline-field.-short label:first-child {
        width: 93%;
    }
}

form li.inline-field.-medium label:first-child {
    width: 40%;
}

@media (max-width: 48.05em) {
    form li.inline-field.-medium label:first-child {
        width: 93%;
    }
}

form li.inline-field.-align-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

form label {
    font-size: 18px;
    line-height: 24px;
    padding: 5px 5px 5px 0;
    font-family: "opensans_semibold";
    display: block;
}

    form label.-error {
        outline-color: #cb0707;
    }

    form label.-required:after {
        content: "*";
        color: #cb0707;
        margin-left: 5px;
    }

form span.-required {
    color: #cb0707;
    margin-left: 5px;
}

form input[type=radio] + label {
    font-family: "opensans";
}

form input[type=text],
form input[type=email],
form input[type=search],
form input[type=number],
form textarea {
    -webkit-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #eceff1;
    border: 1px solid #ffffff;
    outline: 1px solid #ccc9c9;
    outline-offset: 0;
    height: 60px;
    line-height: 60px;
    padding: 0 40px 0 25px;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    form input[type=text]:focus.theme-industry,
    .theme-industry form input[type=text]:focus, form input[type=text].-focus.theme-industry,
    .theme-industry form input[type=text].-focus,
    form input[type=email]:focus.theme-industry,
    .theme-industry form input[type=email]:focus,
    form input[type=email].-focus.theme-industry,
    .theme-industry form input[type=email].-focus,
    form input[type=search]:focus.theme-industry,
    .theme-industry form input[type=search]:focus,
    form input[type=search].-focus.theme-industry,
    .theme-industry form input[type=search].-focus,
    form input[type=number]:focus.theme-industry,
    .theme-industry form input[type=number]:focus,
    form input[type=number].-focus.theme-industry,
    .theme-industry form input[type=number].-focus,
    form textarea:focus.theme-industry,
    .theme-industry form textarea:focus,
    form textarea.-focus.theme-industry,
    .theme-industry form textarea.-focus {
        outline-color: #3277bc;
    }

    form input[type=text]:focus.theme-consumer,
    .theme-consumer form input[type=text]:focus, form input[type=text].-focus.theme-consumer,
    .theme-consumer form input[type=text].-focus,
    form input[type=email]:focus.theme-consumer,
    .theme-consumer form input[type=email]:focus,
    form input[type=email].-focus.theme-consumer,
    .theme-consumer form input[type=email].-focus,
    form input[type=search]:focus.theme-consumer,
    .theme-consumer form input[type=search]:focus,
    form input[type=search].-focus.theme-consumer,
    .theme-consumer form input[type=search].-focus,
    form input[type=number]:focus.theme-consumer,
    .theme-consumer form input[type=number]:focus,
    form input[type=number].-focus.theme-consumer,
    .theme-consumer form input[type=number].-focus,
    form textarea:focus.theme-consumer,
    .theme-consumer form textarea:focus,
    form textarea.-focus.theme-consumer,
    .theme-consumer form textarea.-focus {
        outline-color: #009688;
    }

    form input[type=text]:focus.theme-default,
    .theme-default form input[type=text]:focus, form input[type=text].-focus.theme-default,
    .theme-default form input[type=text].-focus,
    form input[type=email]:focus.theme-default,
    .theme-default form input[type=email]:focus,
    form input[type=email].-focus.theme-default,
    .theme-default form input[type=email].-focus,
    form input[type=search]:focus.theme-default,
    .theme-default form input[type=search]:focus,
    form input[type=search].-focus.theme-default,
    .theme-default form input[type=search].-focus,
    form input[type=number]:focus.theme-default,
    .theme-default form input[type=number]:focus,
    form input[type=number].-focus.theme-default,
    .theme-default form input[type=number].-focus,
    form textarea:focus.theme-default,
    .theme-default form textarea:focus,
    form textarea.-focus.theme-default,
    .theme-default form textarea.-focus {
        outline-color: #009688;
    }

    form input[type=text].-short,
    form input[type=email].-short,
    form input[type=search].-short,
    form input[type=number].-short,
    form textarea.-short {
        width: 100px;
        padding: 0 10px;
    }

    form input[type=search]:focus, form input[type=search].-focus {
        outline: none;
        border: #ccc9c9 1px solid;
    }

form .error-icon-container {
    position: absolute;
    right: 15px;
    top: 25%;
}

form .error-icon-inner {
    fill: #cb0707;
}

form .error-icon {
    -webkit-transition: -webkit-transform .2s ease-out .2s, opacity .2s ease-in .2s;
    -o-transition: -o-transform .2s ease-out .2s, opacity .2s ease-in .2s;
    transition: transform .2s ease-out .2s, opacity .2s ease-in .2s;
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    -o-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
}

form .form-field-container {
    position: relative;
    display: inline-block;
}

    form .form-field-container.-error > input {
        outline: 1px solid #cb0707;
    }

    form .form-field-container.-error .error-icon {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

form select.error,
form input.error {
    outline: 1px solid #cb0707 !important;
    border: 1px solid #cb0707 !important;
    color: #cb0707 !important;
}

form [type="radio"]:not(:checked),
form [type="radio"]:checked {
    position: absolute;
    left: -9999px;
}

    form [type="radio"]:not(:checked) + label,
    form [type="radio"]:checked + label {
        position: relative;
        padding: 5px 35px;
        cursor: pointer;
    }

        form [type="radio"]:not(:checked) + label:after,
        form [type="radio"]:checked + label:after {
            content: '';
            position: absolute;
            left: 4px;
            top: 12px;
            width: 10px;
            height: 10px;
            border-radius: 5px;
            border-width: 2px;
            border-style: solid;
        }

.theme-industry form [type="radio"]:not(:checked) + label:after, .theme-industry form [type="radio"]:checked + label:after {
    border-color: #3277bc;
}

.theme-consumer form [type="radio"]:not(:checked) + label:after, .theme-consumer form [type="radio"]:checked + label:after {
    border-color: #009688;
}

.theme-default form [type="radio"]:not(:checked) + label:after, .theme-default form [type="radio"]:checked + label:after {
    border-color: #009688;
}

.theme-industry form [type="radio"]:not(:checked) + label:after, .theme-industry form [type="radio"]:checked + label:after {
    background: #3277bc;
}

.theme-consumer form [type="radio"]:not(:checked) + label:after, .theme-consumer form [type="radio"]:checked + label:after {
    background: #009688;
}

.theme-default form [type="radio"]:not(:checked) + label:after, .theme-default form [type="radio"]:checked + label:after {
    background: #009688;
}

form [type="radio"]:not(:checked) + label:before,
form [type="radio"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    border-width: 2px;
    border-style: solid;
}

.theme-industry form [type="radio"]:not(:checked) + label:before, .theme-industry form [type="radio"]:checked + label:before {
    border-color: #3277bc;
}

.theme-consumer form [type="radio"]:not(:checked) + label:before, .theme-consumer form [type="radio"]:checked + label:before {
    border-color: #009688;
}

.theme-default form [type="radio"]:not(:checked) + label:before, .theme-default form [type="radio"]:checked + label:before {
    border-color: #009688;
}

form [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

form [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

form [type="radio"]:disabled:not(:checked) + label:before,
form [type="radio"]:disabled:checked + label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

form [type="radio"]:disabled:checked + label:after {
    color: #999;
}

form [type="radio"]:disabled + label {
    color: #aaa;
}

form [type="checkbox"]:not(:checked),
form [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

    form [type="checkbox"]:not(:checked) + label,
    form [type="checkbox"]:checked + label {
        position: relative;
        padding-left: 35px;
        cursor: pointer;
    }

        form [type="checkbox"]:not(:checked) + label:before,
        form [type="checkbox"]:checked + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 27px;
            height: 27px;
            border-width: 2px;
            border-style: solid;
        }

.theme-industry form [type="checkbox"]:not(:checked) + label:before, .theme-industry form [type="checkbox"]:checked + label:before {
    border-color: #3277bc;
}

.theme-consumer form [type="checkbox"]:not(:checked) + label:before, .theme-consumer form [type="checkbox"]:checked + label:before {
    border-color: #009688;
}

.theme-default form [type="checkbox"]:not(:checked) + label:before, .theme-default form [type="checkbox"]:checked + label:before {
    border-color: #009688;
}

form [type="checkbox"]:not(:checked) + label:after,
form [type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 6px;
    left: 5px;
    font-size: 20px;
    line-height: .8;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.theme-industry form [type="checkbox"]:not(:checked) + label:after, .theme-industry form [type="checkbox"]:checked + label:after {
    color: #3277bc;
}

.theme-consumer form [type="checkbox"]:not(:checked) + label:after, .theme-consumer form [type="checkbox"]:checked + label:after {
    color: #009688;
}

.theme-default form [type="checkbox"]:not(:checked) + label:after, .theme-default form [type="checkbox"]:checked + label:after {
    color: #009688;
}

form [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

form [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

form [type="checkbox"]:disabled:not(:checked) + label:before,
form [type="checkbox"]:disabled:checked + label:before {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

form [type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

form [type="checkbox"]:disabled + label {
    color: #aaa;
}

form [type="checkbox"]:checked:focus + label:before,
form [type="checkbox"]:not(:checked):focus + label:before {
    border-width: 2px;
    border-style: solid;
}

.theme-industry form [type="checkbox"]:checked:focus + label:before, .theme-industry form [type="checkbox"]:not(:checked):focus + label:before {
    border-color: #3277bc;
}

.theme-consumer form [type="checkbox"]:checked:focus + label:before, .theme-consumer form [type="checkbox"]:not(:checked):focus + label:before {
    border-color: #009688;
}

.theme-default form [type="checkbox"]:checked:focus + label:before, .theme-default form [type="checkbox"]:not(:checked):focus + label:before {
    border-color: #009688;
}

form [type="checkbox"][required="true"].error:not(:checked) + label:before {
    border-color: #cb0707;
}

form textarea {
    height: auto;
}

form .post-field-text {
    display: inline-block;
    margin-left: 10px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 50px 0 20px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    border-width: 2px;
    border-style: solid;
    cursor: pointer;
}

    select.theme-industry,
    .theme-industry select {
        border-color: #3277bc;
    }

    select.theme-consumer,
    .theme-consumer select {
        border-color: #009688;
    }

    select.theme-default,
    .theme-default select {
        border-color: #009688;
    }

    select.theme-industry,
    .theme-industry select {
        color: #3277bc;
    }

    select.theme-consumer,
    .theme-consumer select {
        color: #009688;
    }

    select.theme-default,
    .theme-default select {
        color: #009688;
    }

    select:focus {
        outline-style: solid;
        outline-width: 1px;
        outline-offset: 0;
    }

        select:focus.theme-industry,
        .theme-industry select:focus {
            outline-color: #3277bc;
        }

        select:focus.theme-consumer,
        .theme-consumer select:focus {
            outline-color: #009688;
        }

        select:focus.theme-default,
        .theme-default select:focus {
            outline-color: #009688;
        }

    select.-blue {
        border-color: #3277bc;
        color: #3277bc;
    }

        select.-blue:focus {
            outline-color: #3277bc;
        }

    select.-mini {
        padding: 0 10px 0 10px;
        height: auto;
        min-width: 75px;
    }

@media (max-width: 48.05em) {
    select {
        max-width: 320px;
    }
}

.select-container {
    position: relative;
    display: inline-block;
}

    .select-container select {
        position: relative;
    }

    .select-container:before {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        right: 15px;
        top: 16px;
        content: '\e801';
        cursor: pointer;
    }

.theme-industry .select-container:before {
    color: #3277bc;
}

.theme-consumer .select-container:before {
    color: #009688;
}

.theme-default .select-container:before {
    color: #009688;
}

.select-container.-blue:before {
    color: #3277bc;
}

.select-container.-mini {
    width: 75px;
}

    .select-container.-mini:before {
        position: absolute;
        right: 10px;
        top: 0;
    }

/*----------  Contact form 7 overrides  ----------*/
.wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
}

/*----------  Main Content  ----------*/
body {
    background-color: #ffffff !important;
}

.standard-content-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

@media (max-width: 48.05em) {
    .application-body {
        padding: 0;
    }
}

@media (max-width: 47.99em) {
    .application-body .pagination .page-numbers.prev:after {
        display: none;
    }

    .application-body .pagination .page-numbers.next:after {
        display: none;
    }
}

/*----------  Form  ----------*/
.applications-form-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 48.05em) {
    .applications-form-items {
        margin-bottom: 60px;
    }
}

.applications-form-items input[type='text'] {
    width: 315px;
}

@media (max-width: 48.05em) {
    .applications-form-items input[type='text'] {
        width: 100%;
    }
}

.applications-form {
    padding: 10px 60px 0 60px;
    margin-bottom: -40px;
}

@media (max-width: 48.05em) {
    .applications-form {
        padding: 0;
    }
}

.applications-form li {
    margin-bottom: 20px;
}

    .applications-form li:last-child {
        margin-top: 40px;
    }

.applications-select {
    width: 315px;
}

@media (max-width: 48.05em) {
    .applications-select {
        width: 100%;
    }
}

.applications-select-options {
    width: 315px;
}

@media (max-width: 48.05em) {
    .applications-select-options {
        width: 100%;
    }
}

@media (max-width: 48.05em) {
    select {
        max-width: 100%;
    }
}

/*----------  Results Table  ----------*/
.applications-results-table {
    width: 100%;
}

.applications-results-table-head {
    background-color: #eceff1;
}

.applications-results-table-head-content {
    width: 100%;
}

    .applications-results-table-head-content td, th {
        padding: 10px;
        font-weight: normal;
        text-align: center;
        color: #727272;
    }

@media (max-width: 48.05em) {
    .applications-results-table-head-content td, th {
        min-width: 200px;
    }
}

@media (max-width: 48.05em) {
    .application-main.inner-content {
        padding: 0;
    }
}

/*----------  Pagination  ----------*/
.pagination .page-numbers {
    padding: 5px;
    font-size: 1.2rem;
}

.banner {
    position: relative;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.theme-industry .banner {
    background-color: #215992;
    background: -webkit-linear-gradient(315deg, #215992 0%, #4986c3 50%, #c49bf7 100%);
    background: -o-linear-gradient(315deg, #215992 0%, #4986c3 50%, #c49bf7 100%);
    background: linear-gradient(135deg, #215992 0%, #4986c3 50%, #c49bf7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#215992', endColorstr='#c49bf7',GradientType=1 );
}

.theme-consumer .banner {
    background-color: #085a52;
    background: -webkit-linear-gradient(315deg, #085a52 0%, #288c80 50%, #65b267 100%);
    background: -o-linear-gradient(315deg, #085a52 0%, #288c80 50%, #65b267 100%);
    background: linear-gradient(135deg, #085a52 0%, #288c80 50%, #65b267 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#085a52', endColorstr='#65b267',GradientType=1 );
}

@media (max-width: 48.05em) {
    .banner {
        padding: 40px 0;
    }
}

.banner:after {
    background: url("../../assets/img/home-banner.png") no-repeat right top;
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@media (max-width: 75em) {
    .banner:after {
        background-position: 50% top;
    }
}

@media (max-width: 48.05em) {
    .banner:after {
        background-position: 40% bottom;
    }
}

.banner.-large {
    height: 400px;
}

@media (max-width: 48.05em) {
    .banner.-large {
        height: auto;
    }
}

.banner.-publication, .banner.-enforcement {
    min-height: 400px;
    padding-top: 40px;
}

@media (max-width: 48.05em) {
    .banner.-publication, .banner.-enforcement {
        min-height: 0;
        padding: 40px 0;
    }
}

.banner.-publication .banner-h2, .banner.-enforcement .banner-h2 {
    margin-bottom: 20px;
}

@media (max-width: 48.05em) {
    .banner.-publication .banner-h2, .banner.-enforcement .banner-h2 {
        font-size: 2.4rem;
    }
}

.banner.-enforcement {
    min-height: 449px;
}

@media (max-width: 48.05em) {
    .banner.-enforcement {
        min-height: 0;
    }
}

.banner.-enforcement .banner-h1 {
    font-size: 5.5rem;
}

@media (max-width: 48.05em) {
    .banner.-enforcement .banner-h1 {
        font-size: 2.4rem;
    }
}

.banner.-medium {
    height: 290px;
}

@media (max-width: 48.05em) {
    .banner.-medium {
        height: auto;
        min-height: 150px;
    }
}

.banner.-small {
    height: 180px;
}

@media (max-width: 48.05em) {
    .banner.-small {
        height: auto;
        min-height: 100px;
    }

        .banner.-small:after {
            -webkit-background-size: 300% 300%;
            background-size: 300%;
        }

        .banner.-small .banner-h1 {
            margin: 0;
        }
}

.banner-h1,
.banner-h2 {
    margin-top: 0;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 6rem;
    text-align: center;
    width: 100%;
    max-width: 960px;
}

@media (max-width: 48.05em) {
    .banner-h1,
    .banner-h2 {
        white-space: normal !important;
        font-size: 2.5rem;
        width: 100%;
    }
}

.banner-h1.-integrated-subtitle,
.banner-h2.-integrated-subtitle {
    width: 100%;
}

.banner-h1-emphasis,
.banner-h2-emphasis {
    width: 100%;
    display: block;
    line-height: 9rem;
}

@media (max-width: 48.05em) {
    .banner-h1-emphasis,
    .banner-h2-emphasis {
        line-height: 4rem;
    }
}

.banner-h1-subtitle,
.banner-h2-subtitle {
    font-family: "opensans_semibold";
    font-size: 3.5rem;
    line-height: 4rem;
    text-transform: none;
    display: block;
    max-width: 720px;
    margin: 0 auto 25px;
}

@media (max-width: 48.05em) {
    .banner-h1-subtitle,
    .banner-h2-subtitle {
        font-size: 1.6rem;
        line-height: 2.4rem;
        max-width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 34em) {
    .banner-h1-subtitle,
    .banner-h2-subtitle {
        max-width: 80%;
    }
}

.banner-subtitle {
    display: block;
    font-size: 2.3rem;
    line-height: 2.1rem;
    max-width: 50%;
}

.banner.-medium .banner-subtitle {
    font-size: 2.3rem;
    line-height: 3.1rem;
    font-family: "opensans_semibold";
    max-width: 60%;
}

@media (max-width: 48.05em) {
    .banner.-medium .banner-subtitle {
        font-size: 1.4rem;
        line-height: 2rem;
        max-width: 80%;
    }
}

.banner-buttons .cta-btn.-large, .banner-buttons .-large.calc-search-query-button {
    margin: 0 12px;
    text-align: center;
}

@media (max-width: 48.05em) {
    .banner-buttons .cta-btn.-large, .banner-buttons .-large.calc-search-query-button {
        padding: 15px 0 15px 5px;
        margin: 0 5px;
        width: 200px;
    }
}

@media (max-width: 34em) {
    .banner-buttons .cta-btn.-large, .banner-buttons .-large.calc-search-query-button {
        display: block;
        margin: 0 0 10px;
    }
}

.cta-btn, .calc-search-query-button {
    display: inline-block;
    padding: 24px 60px;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-family: "opensans_semibold", Arial, sans-serif;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
    -webkit-box-shadow: 0 2px 0 1px #d2d5dd;
    box-shadow: 0 2px 0 1px #d2d5dd;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .cta-btn.theme-industry, .theme-industry.calc-search-query-button,
    .theme-industry .cta-btn,
    .theme-industry .calc-search-query-button {
        background: #3277bc;
    }

    .cta-btn.theme-consumer, .theme-consumer.calc-search-query-button,
    .theme-consumer .cta-btn,
    .theme-consumer .calc-search-query-button {
        background: #009688;
    }

    .cta-btn.theme-default, .theme-default.calc-search-query-button,
    .theme-default .cta-btn,
    .theme-default .calc-search-query-button {
        background: #009688;
    }

    .cta-btn.theme-industry, .theme-industry.calc-search-query-button,
    .theme-industry .cta-btn,
    .theme-industry .calc-search-query-button {
        border-color: #26619a;
    }

    .cta-btn.theme-consumer, .theme-consumer.calc-search-query-button,
    .theme-consumer .cta-btn,
    .theme-consumer .calc-search-query-button {
        border-color: #00796b;
    }

    .cta-btn.theme-default, .theme-default.calc-search-query-button,
    .theme-default .cta-btn,
    .theme-default .calc-search-query-button {
        border-color: #00796b;
    }

    .cta-btn:hover, .calc-search-query-button:hover, .cta-btn.-hover, .-hover.calc-search-query-button {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
    }

        .cta-btn:hover.theme-industry, .calc-search-query-button:hover.theme-industry,
        .theme-industry .cta-btn:hover,
        .theme-industry .calc-search-query-button:hover, .cta-btn.-hover.theme-industry, .-hover.theme-industry.calc-search-query-button,
        .theme-industry .cta-btn.-hover,
        .theme-industry .-hover.calc-search-query-button {
            background: #26619a;
        }

        .cta-btn:hover.theme-consumer, .calc-search-query-button:hover.theme-consumer,
        .theme-consumer .cta-btn:hover,
        .theme-consumer .calc-search-query-button:hover, .cta-btn.-hover.theme-consumer, .-hover.theme-consumer.calc-search-query-button,
        .theme-consumer .cta-btn.-hover,
        .theme-consumer .-hover.calc-search-query-button {
            background: #00796b;
        }

        .cta-btn:hover.theme-default, .calc-search-query-button:hover.theme-default,
        .theme-default .cta-btn:hover,
        .theme-default .calc-search-query-button:hover, .cta-btn.-hover.theme-default, .-hover.theme-default.calc-search-query-button,
        .theme-default .cta-btn.-hover,
        .theme-default .-hover.calc-search-query-button {
            background: #00796b;
        }

    .cta-btn:focus, .calc-search-query-button:focus, .cta-btn.-focus, .-focus.calc-search-query-button {
        color: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-decoration: none;
    }

        .cta-btn:focus.theme-industry, .calc-search-query-button:focus.theme-industry,
        .theme-industry .cta-btn:focus,
        .theme-industry .calc-search-query-button:focus, .cta-btn.-focus.theme-industry, .-focus.theme-industry.calc-search-query-button,
        .theme-industry .cta-btn.-focus,
        .theme-industry .-focus.calc-search-query-button {
            background: #26619a;
        }

        .cta-btn:focus.theme-consumer, .calc-search-query-button:focus.theme-consumer,
        .theme-consumer .cta-btn:focus,
        .theme-consumer .calc-search-query-button:focus, .cta-btn.-focus.theme-consumer, .-focus.theme-consumer.calc-search-query-button,
        .theme-consumer .cta-btn.-focus,
        .theme-consumer .-focus.calc-search-query-button {
            background: #00796b;
        }

        .cta-btn:focus.theme-default, .calc-search-query-button:focus.theme-default,
        .theme-default .cta-btn:focus,
        .theme-default .calc-search-query-button:focus, .cta-btn.-focus.theme-default, .-focus.theme-default.calc-search-query-button,
        .theme-default .cta-btn.-focus,
        .theme-default .-focus.calc-search-query-button {
            background: #00796b;
        }

    .cta-btn.-small, .-small.calc-search-query-button {
        font-size: 1.4rem;
        padding: 18px 60px;
    }

    .cta-btn.-large, .-large.calc-search-query-button {
        padding: 24px 60px;
        font-size: 2rem;
    }

@media (max-width: 48.05em) {
    .cta-btn.-large, .-large.calc-search-query-button {
        padding: 14px 20px;
        font-size: 1.4rem;
    }
}

.cta-btn.-right-arrow:after, .-right-arrow.calc-search-query-button:after {
    font-family: "comreg-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e803';
    margin-left: 10px;
}

.cta-btn.-coloured-outline, .-coloured-outline.calc-search-query-button {
    border: 2px solid #3277bc;
    background: #ffffff;
}

    .cta-btn.-coloured-outline.theme-industry, .-coloured-outline.theme-industry.calc-search-query-button,
    .theme-industry .cta-btn.-coloured-outline,
    .theme-industry .-coloured-outline.calc-search-query-button {
        border-color: #26619a;
    }

    .cta-btn.-coloured-outline.theme-consumer, .-coloured-outline.theme-consumer.calc-search-query-button,
    .theme-consumer .cta-btn.-coloured-outline,
    .theme-consumer .-coloured-outline.calc-search-query-button {
        border-color: #00796b;
    }

    .cta-btn.-coloured-outline.theme-default, .-coloured-outline.theme-default.calc-search-query-button,
    .theme-default .cta-btn.-coloured-outline,
    .theme-default .-coloured-outline.calc-search-query-button {
        border-color: #00796b;
    }

    .cta-btn.-coloured-outline.theme-industry, .-coloured-outline.theme-industry.calc-search-query-button,
    .theme-industry .cta-btn.-coloured-outline,
    .theme-industry .-coloured-outline.calc-search-query-button {
        color: #26619a;
    }

    .cta-btn.-coloured-outline.theme-consumer, .-coloured-outline.theme-consumer.calc-search-query-button,
    .theme-consumer .cta-btn.-coloured-outline,
    .theme-consumer .-coloured-outline.calc-search-query-button {
        color: #00796b;
    }

    .cta-btn.-coloured-outline.theme-default, .-coloured-outline.theme-default.calc-search-query-button,
    .theme-default .cta-btn.-coloured-outline,
    .theme-default .-coloured-outline.calc-search-query-button {
        color: #00796b;
    }

    .cta-btn.-coloured-outline:hover, .-coloured-outline.calc-search-query-button:hover, .cta-btn.-coloured-outline.-hover, .-coloured-outline.-hover.calc-search-query-button {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
    }

        .cta-btn.-coloured-outline:hover.theme-industry, .-coloured-outline.calc-search-query-button:hover.theme-industry,
        .theme-industry .cta-btn.-coloured-outline:hover,
        .theme-industry .-coloured-outline.calc-search-query-button:hover, .cta-btn.-coloured-outline.-hover.theme-industry, .-coloured-outline.-hover.theme-industry.calc-search-query-button,
        .theme-industry .cta-btn.-coloured-outline.-hover,
        .theme-industry .-coloured-outline.-hover.calc-search-query-button {
            background: #26619a;
        }

        .cta-btn.-coloured-outline:hover.theme-consumer, .-coloured-outline.calc-search-query-button:hover.theme-consumer,
        .theme-consumer .cta-btn.-coloured-outline:hover,
        .theme-consumer .-coloured-outline.calc-search-query-button:hover, .cta-btn.-coloured-outline.-hover.theme-consumer, .-coloured-outline.-hover.theme-consumer.calc-search-query-button,
        .theme-consumer .cta-btn.-coloured-outline.-hover,
        .theme-consumer .-coloured-outline.-hover.calc-search-query-button {
            background: #00796b;
        }

        .cta-btn.-coloured-outline:hover.theme-default, .-coloured-outline.calc-search-query-button:hover.theme-default,
        .theme-default .cta-btn.-coloured-outline:hover,
        .theme-default .-coloured-outline.calc-search-query-button:hover, .cta-btn.-coloured-outline.-hover.theme-default, .-coloured-outline.-hover.theme-default.calc-search-query-button,
        .theme-default .cta-btn.-coloured-outline.-hover,
        .theme-default .-coloured-outline.-hover.calc-search-query-button {
            background: #00796b;
        }

@media (max-width: 48.05em) {
    .cta-btn.-coloured-outline, .-coloured-outline.calc-search-query-button {
        padding: 20px 5px;
        font-size: 1.4rem;
    }
}

.cta-btn.-blue, .-blue.calc-search-query-button {
    background: #3277bc;
    border: 1px solid #1f5080;
}

    .cta-btn.-blue:hover, .-blue.calc-search-query-button:hover, .cta-btn.-blue.-hover, .-blue.-hover.calc-search-query-button {
        background: #26619a;
    }

    .cta-btn.-blue:focus, .-blue.calc-search-query-button:focus, .cta-btn.-blue.-focus, .-blue.-focus.calc-search-query-button {
        background: #26619a;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-decoration: none;
    }

    .cta-btn.-blue.-outline, .-blue.-outline.calc-search-query-button {
        border: 2px solid #ffffff;
    }

.cta-btn.-outline, .-outline.calc-search-query-button {
    border: 2px solid #ffffff;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffffff;
}

    .cta-btn.-outline:hover, .-outline.calc-search-query-button:hover, .cta-btn.-outline.-hover, .-outline.-hover.calc-search-query-button {
        background: rgba(255, 255, 255, 0.7);
        -webkit-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
    }

        .cta-btn.-outline:hover.theme-industry, .-outline.calc-search-query-button:hover.theme-industry,
        .theme-industry .cta-btn.-outline:hover,
        .theme-industry .-outline.calc-search-query-button:hover, .cta-btn.-outline.-hover.theme-industry, .-outline.-hover.theme-industry.calc-search-query-button,
        .theme-industry .cta-btn.-outline.-hover,
        .theme-industry .-outline.-hover.calc-search-query-button {
            color: #26619a;
        }

        .cta-btn.-outline:hover.theme-consumer, .-outline.calc-search-query-button:hover.theme-consumer,
        .theme-consumer .cta-btn.-outline:hover,
        .theme-consumer .-outline.calc-search-query-button:hover, .cta-btn.-outline.-hover.theme-consumer, .-outline.-hover.theme-consumer.calc-search-query-button,
        .theme-consumer .cta-btn.-outline.-hover,
        .theme-consumer .-outline.-hover.calc-search-query-button {
            color: #00796b;
        }

        .cta-btn.-outline:hover.theme-default, .-outline.calc-search-query-button:hover.theme-default,
        .theme-default .cta-btn.-outline:hover,
        .theme-default .-outline.calc-search-query-button:hover, .cta-btn.-outline.-hover.theme-default, .-outline.-hover.theme-default.calc-search-query-button,
        .theme-default .cta-btn.-outline.-hover,
        .theme-default .-outline.-hover.calc-search-query-button {
            color: #00796b;
        }

        .cta-btn.-outline:hover.-blue, .-outline.calc-search-query-button:hover.-blue, .cta-btn.-outline.-hover.-blue, .-outline.-hover.-blue.calc-search-query-button {
            color: #3277bc;
        }

    .cta-btn.-outline:focus, .-outline.calc-search-query-button:focus, .cta-btn.-outline.-focus, .-outline.-focus.calc-search-query-button {
        background: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
        text-decoration: none;
    }

        .cta-btn.-outline:focus.theme-industry, .-outline.calc-search-query-button:focus.theme-industry,
        .theme-industry .cta-btn.-outline:focus,
        .theme-industry .-outline.calc-search-query-button:focus, .cta-btn.-outline.-focus.theme-industry, .-outline.-focus.theme-industry.calc-search-query-button,
        .theme-industry .cta-btn.-outline.-focus,
        .theme-industry .-outline.-focus.calc-search-query-button {
            color: #3277bc;
        }

        .cta-btn.-outline:focus.theme-consumer, .-outline.calc-search-query-button:focus.theme-consumer,
        .theme-consumer .cta-btn.-outline:focus,
        .theme-consumer .-outline.calc-search-query-button:focus, .cta-btn.-outline.-focus.theme-consumer, .-outline.-focus.theme-consumer.calc-search-query-button,
        .theme-consumer .cta-btn.-outline.-focus,
        .theme-consumer .-outline.-focus.calc-search-query-button {
            color: #009688;
        }

        .cta-btn.-outline:focus.theme-default, .-outline.calc-search-query-button:focus.theme-default,
        .theme-default .cta-btn.-outline:focus,
        .theme-default .-outline.calc-search-query-button:focus, .cta-btn.-outline.-focus.theme-default, .-outline.-focus.theme-default.calc-search-query-button,
        .theme-default .cta-btn.-outline.-focus,
        .theme-default .-outline.-focus.calc-search-query-button {
            color: #009688;
        }

        .cta-btn.-outline:focus.-blue, .-outline.calc-search-query-button:focus.-blue, .cta-btn.-outline.-focus.-blue, .-outline.-focus.-blue.calc-search-query-button {
            color: #3277bc;
        }

.load-more-btn {
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    display: inline-block;
    padding: 18px 20px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    border: 2px solid #ccc9c9;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: "opensans_semibold", Arial, sans-serif;
    background: transparent;
    color: #383838;
    text-transform: uppercase;
    text-decoration: none;
}

    .load-more-btn:hover, .load-more-btn.-hover {
        background: whitesmoke;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #383838;
        text-decoration: none;
    }

.search-btn {
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    display: inline-block;
    padding: 18px 60px;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-family: "opensans_semibold", Arial, sans-serif;
    background: #fdbf02;
    color: #383838;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #cda11b;
    -webkit-box-shadow: 0 2px 0 #d2d5dd;
    box-shadow: 0 2px 0 #d2d5dd;
}

    .search-btn:hover, .search-btn.-hover {
        background: #e4ac02;
        color: #383838;
        text-decoration: none;
    }

.back-to-top-link {
    display: block;
    opacity: 0;
    text-align: right;
    color: #727272;
    font-size: 1.5rem;
    font-family: "opensans_semibold";
    -webkit-transition: color .2s ease-out, opacity .2s ease-in;
    -o-transition: color .2s ease-out, opacity .2s ease-in;
    transition: color .2s ease-out, opacity .2s ease-in;
}

    .back-to-top-link:after {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\e800';
        margin-left: 8px;
    }

    .back-to-top-link:hover {
        cursor: pointer;
    }

        .back-to-top-link:hover.theme-industry,
        .theme-industry .back-to-top-link:hover {
            color: #3277bc;
        }

        .back-to-top-link:hover.theme-consumer,
        .theme-consumer .back-to-top-link:hover {
            color: #009688;
        }

        .back-to-top-link:hover.theme-default,
        .theme-default .back-to-top-link:hover {
            color: #009688;
        }

    .back-to-top-link.-is-visible {
        opacity: 1;
    }

.card-wrapper-link,
.card-wrapper-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 75em) {
    .card-wrapper-link,
    .card-wrapper-link {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 48.5%;
        -ms-flex: 0 0 48.5%;
        flex: 0 0 48.5%;
    }
}

@media (max-width: 48.05em) {
    .card-wrapper-link,
    .card-wrapper-link {
        -webkit-box-flex: 0;
        -webkit-flex: 0;
        -ms-flex: 0;
        flex: 0;
    }
}

.card {
    -webkit-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
    -webkit-animation: cards_move_in .5s forwards .2s;
    -o-animation: cards_move_in .5s forwards .2s;
    animation: cards_move_in .5s forwards .2s;
    position: relative;
    width: 380px;
    height: 255px;
    -webkit-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
    padding: 40px;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #d5d8e0;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (max-width: 75em) {
    .card {
        width: 100%;
    }
}

@media (max-width: 48.05em) {
    .card {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
        height: auto;
        min-height: 150px;
        padding: 30px 5%;
        margin-top: 15px;
        margin-bottom: 5px;
    }
}

@-webkit-keyframes cards_move_in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px);
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
    }
}

@-o-keyframes cards_move_in {
    0% {
        opacity: 0;
        -o-transform: translateY(60px);
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(25px);
        transform: translateY(25px);
    }
}

@keyframes cards_move_in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(60px);
        -o-transform: translateY(60px);
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(25px);
        -o-transform: translateY(25px);
        transform: translateY(25px);
    }
}

.card-arrow-container {
    position: absolute;
    right: 40px;
    bottom: 20px;
    opacity: 0;
    -webkit-transition: -webkit-transform .2s ease-out .2s, opacity .3s ease-in-out .1s;
    -o-transition: -o-transform .2s ease-out .2s, opacity .3s ease-in-out .1s;
    transition: transform .2s ease-out .2s, opacity .3s ease-in-out .1s;
}

@media (max-width: 48.05em) {
    .card-arrow-container {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        right: 20px;
        opacity: 1;
    }
}

use.card-arrow-icon-inner.theme-industry,
.theme-industry use.card-arrow-icon-inner {
    fill: #3277bc;
}

use.card-arrow-icon-inner.theme-consumer,
.theme-consumer use.card-arrow-icon-inner {
    fill: #009688;
}

use.card-arrow-icon-inner.theme-default,
.theme-default use.card-arrow-icon-inner {
    fill: #009688;
}

.card-icon-container {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /* fixes iPhone safari bug */
}

@media (max-width: 48.05em) {
    .card-icon-container {
        width: 74px;
        padding-right: 20px;
    }
}

.card-icon-border {
    display: block;
    border-width: 1px;
    border-style: solid;
    width: 54px;
    height: 54px;
    min-height: 54px;
    border-radius: 27px;
    text-align: center;
}

    .card-icon-border.theme-industry,
    .theme-industry .card-icon-border {
        color: #3277bc;
    }

    .card-icon-border.theme-consumer,
    .theme-consumer .card-icon-border {
        color: #009688;
    }

    .card-icon-border.theme-default,
    .theme-default .card-icon-border {
        color: #009688;
    }

    .card-icon-border.theme-industry,
    .theme-industry .card-icon-border {
        border-color: #3277bc;
    }

    .card-icon-border.theme-consumer,
    .theme-consumer .card-icon-border {
        border-color: #009688;
    }

    .card-icon-border.theme-default,
    .theme-default .card-icon-border {
        border-color: #009688;
    }

@media (max-width: 48.05em) {
    .card-icon-border {
        margin-right: 20px;
    }
}

.card-icon {
    font-size: 2.8rem;
    top: 15%;
}

.card-title {
    -webkit-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
    text-transform: uppercase;
}

@media (max-width: 48.05em) {
    .card-title {
        font-size: 1.6rem;
        margin: 0;
    }
}

.card-subtitle {
    -webkit-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
    transition: all .1s ease-out;
    font-family: "opensans";
    font-size: 1.8rem;
    line-height: 2.6rem;
    min-height: 72px;
}

@media (max-width: 48.05em) {
    .card-subtitle {
        font-size: 1.4rem;
        line-height: 2rem;
        width: 90%;
        min-height: 0;
    }
}

.card:hover,
.card.-hover,
.card:focus {
    color: #ffffff;
    text-decoration: none;
    -webkit-box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

    .card:hover.theme-industry,
    .theme-industry .card:hover,
    .card.-hover.theme-industry,
    .theme-industry .card.-hover,
    .card:focus.theme-industry,
    .theme-industry .card:focus {
        background: #3277bc;
    }

    .card:hover.theme-consumer,
    .theme-consumer .card:hover,
    .card.-hover.theme-consumer,
    .theme-consumer .card.-hover,
    .card:focus.theme-consumer,
    .theme-consumer .card:focus {
        background: #009688;
    }

    .card:hover.theme-default,
    .theme-default .card:hover,
    .card.-hover.theme-default,
    .theme-default .card.-hover,
    .card:focus.theme-default,
    .theme-default .card:focus {
        background: #009688;
    }

    .card:hover .card-arrow-container,
    .card.-hover .card-arrow-container,
    .card:focus .card-arrow-container {
        -webkit-transform: translate(20px, 0);
        -ms-transform: translate(20px, 0);
        -o-transform: translate(20px, 0);
        transform: translate(20px, 0);
        opacity: 1;
    }

@media (max-width: 48.05em) {
    .card:hover .card-arrow-container,
    .card.-hover .card-arrow-container,
    .card:focus .card-arrow-container {
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}

.card:hover use.card-arrow-icon-inner,
.card.-hover use.card-arrow-icon-inner,
.card:focus use.card-arrow-icon-inner {
    fill: #ffffff;
}

.card:hover .card-title,
.card.-hover .card-title,
.card:focus .card-title {
    color: #ffffff;
    text-decoration: none;
}

.card:hover .card-subtitle,
.card.-hover .card-subtitle,
.card:focus .card-subtitle {
    color: #ffffff;
    text-decoration: none;
}

.card:hover .card-icon-border,
.card.-hover .card-icon-border,
.card:focus .card-icon-border {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.card:focus,
.card.-focus {
    text-decoration: none;
}

.card-text-container {
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    /* fixes iPhone safari bug */
}

@media (max-width: 48.05em) {
    .card-text-container {
        margin-right: 15px;
        width: 80%;
    }
}

.ui-rangeSlider {
    height: 32px;
    padding-top: 10px;
}

.ui-rangeSlider-container {
    height: 32px;
}

    .ui-rangeSlider-container:before {
        content: '';
        position: absolute;
        left: 0;
        top: 13px;
        background: #bebebe;
        height: 6px;
        width: 100%;
    }

.ui-rangeSlider-innerBar {
    width: 110%;
    height: 100%;
    left: -10px;
    overflow: hidden;
}

.ui-rangeSlider-bar {
    background: #68a1d6;
    height: 6px;
    top: 13px !important;
    margin: 0;
    cursor: -webkit-grab;
    cursor: grab;
}

.ui-rangeSlider-handle {
    width: 32px;
    height: 32px;
    background: #68a1d6;
    cursor: col-resize;
    border-radius: 15px;
}

.search-icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 30px;
    width: 40px;
    padding: 5px 10px;
    display: block;
    position: relative;
    cursor: pointer;
    border-radius: 0;
}

@media (max-width: 48.05em) {
    .search-icon {
        display: none;
    }
}

.search-icon:focus {
    outline: none;
}

.search-icon.-open {
    background: #eceff1;
}

    .search-icon.-open:after {
        position: absolute;
        left: 0;
        bottom: -22px;
        content: "";
        width: 100%;
        height: 22px;
        background: #eceff1;
    }

    .search-icon.-open .search-icon-circle {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 30% 40%;
        -ms-transform-origin: 30% 40%;
        -o-transform-origin: 30% 40%;
        transform-origin: 30% 40%;
        background: #eceff1;
    }

    .search-icon.-open .search-icon-handle.theme-industry,
    .theme-industry .search-icon.-open .search-icon-handle {
        background-color: #3277bc;
    }

    .search-icon.-open .search-icon-handle.theme-consumer,
    .theme-consumer .search-icon.-open .search-icon-handle {
        background-color: #009688;
    }

    .search-icon.-open .search-icon-handle.theme-default,
    .theme-default .search-icon.-open .search-icon-handle {
        background-color: #009688;
    }

    .search-icon.-open .search-icon-handle:after {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.theme-industry .search-icon.-open .search-icon-handle:after {
    background-color: #3277bc;
}

.theme-consumer .search-icon.-open .search-icon-handle:after {
    background-color: #009688;
}

.theme-default .search-icon.-open .search-icon-handle:after {
    background-color: #009688;
}

.search-icon-circle {
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: relative;
    right: 0;
    display: block;
    height: 13px;
    width: 13px;
    border-radius: 7.5px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 0 3px #383838;
    box-shadow: 0 0 0 3px #383838;
    z-index: 1;
}

.search-icon-handle {
    position: absolute;
    right: 10px;
    bottom: 12px;
    background-color: #383838;
    width: 20px;
    height: 3px;
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    float: right;
    border-radius: 2px;
}

    .search-icon-handle:after {
        -webkit-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        content: "";
        background-color: #383838;
        width: 20px;
        height: 3px;
        display: block;
        float: right;
        border-radius: 2px;
        z-index: -1;
    }

.header-search-container {
    display: none;
    background: #eceff1;
    padding: 40px;
    text-align: center;
}

    .header-search-container.-active, .header-search-container.publications-search-option-button.-open {
        display: block;
    }

@media (max-width: 48.05em) {
    .header-search-container {
        display: block;
        padding: 15px;
    }
}

.header-search-form {
    width: 960px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 62em) {
    .header-search-form {
        width: 100%;
    }
}

@media (max-width: 48.05em) {
    .header-search-form {
        width: 100%;
    }
}

.header-search-input-container {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-right: 2%;
    background: #ffffff;
    border-bottom: 1px solid #d5d8e0;
    -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: left;
}

@media (max-width: 48.05em) {
    .header-search-input-container {
        margin: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
    }

        .header-search-input-container:before {
            position: absolute;
            left: 15px;
            top: 5px;
            font-family: "comreg-icons";
            font-style: normal;
            font-weight: normal;
            speak: none;
            display: inline-block;
            text-decoration: inherit;
            width: 1em;
            text-align: center;
            /* For safety - reset parent styles, that can break glyph codes*/
            font-variant: normal;
            text-transform: none;
            /* Font smoothing. That was taken from TWBS */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: '\e808';
            color: #383838;
            font-size: 2rem;
        }
}

.main-search-form-label {
    color: transparent;
    line-height: 0;
    padding: 0;
}

.header-search-input[type=text] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    background: #ffffff;
    height: 65px;
    outline: none;
    font-size: 2.2rem;
    color: #727272;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (max-width: 48.05em) {
    .header-search-input[type=text] {
        margin-left: 40px;
        padding-left: 5px;
        height: 40px;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
        font-size: 1.6rem;
        line-height: 2rem;
    }
}

@media (max-width: 48.05em) {
    .header-search-submit-btn {
        display: none;
    }
}

.pagination {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 25px 0 30px;
}

    .pagination .page-numbers {
        padding: 10px;
        font-size: 2.4rem;
        font-family: "opensans_semibold";
        color: #383838;
        cursor: pointer;
        text-decoration: none;
    }

@media (max-width: 48.05em) {
    .pagination .page-numbers {
        padding: 10px 7px;
        font-size: 1.7rem;
    }
}

.pagination .page-numbers.next {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    position: absolute;
    right: 0;
    margin-right: 7%;
    align-self: flex-end;
}

    .pagination .page-numbers.next:after {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\e803';
    }

.pagination .page-numbers.prev {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 7%;
}

    .pagination .page-numbers.prev:after {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        margin-right: .2em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\e802';
    }

.pagination .page-numbers:hover.theme-industry,
.theme-industry .pagination .page-numbers:hover, .pagination .page-numbers.current.theme-industry,
.theme-industry .pagination .page-numbers.current {
    color: #3277bc;
}

.pagination .page-numbers:hover.theme-consumer,
.theme-consumer .pagination .page-numbers:hover, .pagination .page-numbers.current.theme-consumer,
.theme-consumer .pagination .page-numbers.current {
    color: #009688;
}

.pagination .page-numbers:hover.theme-default,
.theme-default .pagination .page-numbers:hover, .pagination .page-numbers.current.theme-default,
.theme-default .pagination .page-numbers.current {
    color: #009688;
}

.publications-search-form {
    width: 100%;
    padding: 0;
}

    .publications-search-form,
    .publications-search-form input {
        color: #383838;
    }

.publications-search-query-input {
    width: 100%;
    margin-top: 20px;
    padding: 15px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 6px 4px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 4px 1px rgba(0, 0, 0, 0.1);
}

    .publications-search-query-input[type=search]:focus {
        border-color: #26619a;
        border-width: 2px;
    }

.publications-search-btn {
    -webkit-box-shadow: 0 2px 0 #cda11b;
    box-shadow: 0 2px 0 #cda11b;
}

.publications-search-option-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 29px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}

@media (max-width: 48.05em) {
    .publications-search-option-buttons {
        display: none;
    }
}

.publications-search-option-buttons.-enforcement {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.publications-search-option-buttons-mobile {
    display: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 29px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}

@media (max-width: 48.05em) {
    .publications-search-option-buttons-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.publications-search-option-button {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 26%;
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    border: 0;
    padding: 20px 1%;
}

    .publications-search-option-button:last-child {
        margin-right: 0;
    }

    .publications-search-option-button.-down-arrow:after {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\e801';
        margin-left: 10px;
        font-size: 1.8rem;
    }

    .publications-search-option-button.-active, .publications-search-option-button.-open {
        background: #c8dbe9;
        border-color: #c8dbe9;
        color: #3277bc;
    }

        .publications-search-option-button.-active:focus, .publications-search-option-button.-open:focus {
            outline: none;
        }

    .publications-search-option-button.-open {
        padding-bottom: 25px;
    }

        .publications-search-option-button.-open.-down-arrow:after {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .publications-search-option-button.-mobile {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.5%;
        -ms-flex: 0 0 49.5%;
        flex: 0 0 49.5%;
    }

@media (max-width: 1024px) {
    .publications-search-option-button.publications-search-option-button-opener {
        font-size: 1.4rem;
    }
}

@media (max-width: 62em) {
    .publications-search-option-button.publications-search-option-button-opener {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: left;
        height: 57px;
        position: relative;
    }

        .publications-search-option-button.publications-search-option-button-opener:after {
            position: absolute;
            right: 0;
            top: 35%;
        }
}

.publications-search-option-button.-enforcement {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    margin-bottom: 15px;
}

    .publications-search-option-button.-enforcement.-open {
        padding-bottom: 20px;
    }

.publications-search-btn {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    padding: 22px 0 18px;
    border: 1px solid #cda11b;
}

    .publications-search-btn.-mobile {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49.5%;
        -ms-flex: 0 0 49.5%;
        flex: 0 0 49.5%;
    }

    .publications-search-btn.-enforcement {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 32%;
        -ms-flex: 0 0 32%;
        flex: 0 0 32%;
        padding: 22px 1%;
    }

@media (max-width: 48.05em) {
    .publications-search-btn.-enforcement {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 48%;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
    }
}

@media (max-width: 48.05em) {
    .publications-search-options-wrapper {
        display: none;
    }
}

.publications-search-options {
    display: none;
    width: 100%;
    color: #3277bc;
    background: #c8dbe9;
    padding: 20px 43px;
    text-align: left;
}

    .publications-search-options.-open {
        display: block;
    }

@media (max-width: 48.05em) {
    .publications-search-options {
        padding: 15px 15px;
    }
}

.publications-search-options ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
}

    .publications-search-options ul li {
        display: block;
        width: 33%;
        cursor: pointer;
        font-size: 14px;
        padding-right: 20px;
        text-transform: uppercase;
        margin: 0;
    }

.publications-search-slider-label {
    width: 100px;
}

@media (max-width: 48.05em) {
    .publications-search-slider-label {
        font-size: 90%;
        line-height: 110%;
        width: 15%;
    }
}

.publications-search-checkbox-label {
    /* get rid of inherited styles from the generalised form */
    font-size: 14px;
    line-height: 34px;
    display: block;
}

    .publications-search-checkbox-label:hover {
        background: #3277bc;
        color: #ffffff;
    }

    .publications-search-checkbox-label:before, .publications-search-checkbox-label:after {
        display: none;
    }

.publications-search-checkbox[type="checkbox"]:checked + label.publications-search-checkbox-label {
    background: #3277bc;
    color: #ffffff;
}

.publications-search-date-range-slider-wrapper.-mobile {
    display: none;
}

@media (max-width: 48.05em) {
    .publications-search-date-range-slider-wrapper.-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.publications-search-date-range-slider {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    margin: 5px 0;
    width: 100%;
}

.publications-date-range-selector {
    max-width: 600px;
    width: 600px;
    min-width: 100px;
    margin: 10px auto;
    padding-top: 0;
}

@media (max-width: 48.05em) {
    .publications-date-range-selector {
        width: 70%;
    }
}

.publications-add-filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3277bc;
    z-index: 5;
    padding-top: 60px;
}

.theme-industry .publications-add-filters-overlay {
    background-color: #215992;
    background: -webkit-linear-gradient(315deg, #215992 0%, #4986c3 50%, #c49bf7 100%);
    background: -o-linear-gradient(315deg, #215992 0%, #4986c3 50%, #c49bf7 100%);
    background: linear-gradient(135deg, #215992 0%, #4986c3 50%, #c49bf7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#215992', endColorstr='#c49bf7',GradientType=1 );
}

.theme-consumer .publications-add-filters-overlay {
    background-color: #085a52;
    background: -webkit-linear-gradient(315deg, #085a52 0%, #288c80 50%, #65b267 100%);
    background: -o-linear-gradient(315deg, #085a52 0%, #288c80 50%, #65b267 100%);
    background: linear-gradient(135deg, #085a52 0%, #288c80 50%, #65b267 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#085a52', endColorstr='#65b267',GradientType=1 );
}

.publication-filters-select-container {
    color: #ffffff;
    border-color: #ffffff;
    width: 100%;
    margin-bottom: 29px;
}

@media (max-width: 48.05em) {
    .publication-filters-select-container {
        width: auto;
    }
}

.publication-filters-select-container:before {
    color: #ffffff !important;
}

.publication-filters-select-container select {
    width: 100%;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.publications-pagination {
    padding-bottom: 20px;
}

.publication-previous-versions-list.-active, .publication-previous-versions-list.publications-search-option-button.-open {
    margin-bottom: 20px;
}

/**
 * CSS Modal
 * http://drublic.github.com/css-modal
 *
 * @author Hans Christian Reinl - @drublic
 */
/**
 * CSS Modal Configuration
 * http://drublic.github.com/css-modal
 *
 * @author Hans Christian Reinl - @drublic
 */
html {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.has-overlay {
    overflow: hidden;
    height: auto;
}

    .has-overlay > body {
        height: 100%;
        overflow: hidden;
    }

.modal--fade, .modal--show, .tariff-addon-modal {
    -webkit-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    display: none\9;
}

    .modal--fade:target, .modal--show:target, .tariff-addon-modal:target, .is-active.modal--fade, .is-active.modal--show, .is-active.tariff-addon-modal {
        -webkit-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        width: auto;
        height: auto;
        opacity: 1;
    }

.is-active.modal--fade, .is-active.modal--show, .is-active.tariff-addon-modal {
    display: block\9;
    height: 100%\9;
    width: 100%\9;
}

.modal--fade:target, .modal--show:target, .tariff-addon-modal:target, .is-active.modal--fade, .is-active.modal--show, .is-active.tariff-addon-modal {
    display: block\9;
}

.modal--fade .modal-inner, .modal--show .modal-inner, .tariff-addon-modal .modal-inner {
    position: absolute;
    top: 60px;
    left: 50%;
    z-index: 20;
    margin-left: -325px;
    width: 650px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

    .modal--fade .modal-inner > img, .modal--show .modal-inner > img, .tariff-addon-modal .modal-inner > img, .modal--fade .modal-inner > video, .modal--show .modal-inner > video, .tariff-addon-modal .modal-inner > video, .modal--fade .modal-inner > iframe, .modal--show .modal-inner > iframe, .tariff-addon-modal .modal-inner > iframe {
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    .modal--fade .modal-inner > img, .modal--show .modal-inner > img, .tariff-addon-modal .modal-inner > img {
        width: auto;
        max-width: 100%;
    }

    .modal--fade .modal-inner iframe, .modal--show .modal-inner iframe, .tariff-addon-modal .modal-inner iframe {
        display: block;
        width: 100%;
        border: 0;
    }

.modal--fade .modal-content, .modal--show .modal-content, .tariff-addon-modal .modal-content {
    position: relative;
    max-height: 400px;
    max-height: 60vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    .modal--fade .modal-content > *, .modal--show .modal-content > *, .tariff-addon-modal .modal-content > * {
        max-width: 100%;
    }

.modal--fade footer, .modal--show footer, .tariff-addon-modal footer {
    border-top: 1px solid white;
    padding: 0 1.2em 18px;
    background: #f0f0f0;
    border-radius: 2px;
}

.modal--fade .modal-close, .modal--show .modal-close, .tariff-addon-modal .modal-close {
    display: block;
    height: 1px;
    clip: rect(0 0 0 0);
    margin: -1px;
    overflow: hidden;
}

    .modal--fade .modal-close:focus:after, .modal--show .modal-close:focus:after, .tariff-addon-modal .modal-close:focus:after {
        outline: 1px dotted;
        outline: -webkit-focus-ring-color auto 5px;
    }

    .modal--fade .modal-close:before, .modal--show .modal-close:before, .tariff-addon-modal .modal-close:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10;
    }

    .modal--fade .modal-close:after, .modal--show .modal-close:after, .tariff-addon-modal .modal-close:after {
        content: '\00d7';
        position: absolute;
        top: 35px;
        right: 50%;
        z-index: 20;
        margin-right: -325px;
    }

@media screen and (max-width: 690px) {
    .modal--fade .modal-inner, .modal--show .modal-inner, .tariff-addon-modal .modal-inner {
        width: auto;
        left: 20px;
        right: 20px;
        margin-left: 0;
    }

    .modal--fade .modal-close:after, .modal--show .modal-close:after, .tariff-addon-modal .modal-close:after {
        margin-right: 0 !important;
        right: 20px;
    }
}

@media screen and (max-width: 30em) {
    .modal--fade, .modal--show, .tariff-addon-modal {
        -webkit-transform: translate(0, 400px);
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        -webkit-transition: opacity 1ms .25s;
        -o-transition: opacity 1ms .25s;
        transition: opacity 1ms .25s;
        display: block;
        right: auto;
        bottom: auto;
    }

        .modal--fade:target, .modal--show:target, .tariff-addon-modal:target, .is-active.modal--fade, .is-active.modal--show, .is-active.tariff-addon-modal {
            width: 100%;
            height: 100%;
        }

            .modal--fade:target .modal-close, .modal--show:target .modal-close, .tariff-addon-modal:target .modal-close, .is-active.modal--fade .modal-close, .is-active.modal--show .modal-close, .is-active.tariff-addon-modal .modal-close {
                display: block;
            }

        .modal--fade .modal-inner, .modal--show .modal-inner, .tariff-addon-modal .modal-inner {
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            overflow: auto;
        }

        .modal--fade .modal-content, .modal--show .modal-content, .tariff-addon-modal .modal-content {
            max-height: none;
            -ms-word-break: break-all;
            word-break: break-all;
            word-break: break-word;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
            hyphens: auto;
        }

        .modal--fade .modal-close, .modal--show .modal-close, .tariff-addon-modal .modal-close {
            display: none;
            right: auto;
        }

            .modal--fade .modal-close:before, .modal--show .modal-close:before, .tariff-addon-modal .modal-close:before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 20;
            }

            .modal--fade .modal-close:after, .modal--show .modal-close:after, .tariff-addon-modal .modal-close:after {
                top: 5px !important;
                right: 5px;
                left: auto;
                margin-left: 0;
            }
}

@media screen and (max-height: 46em) and (min-width: 30em) {
    .modal--fade .modal-content, .modal--show .modal-content, .tariff-addon-modal .modal-content {
        max-height: 340px;
        max-height: 50vh;
    }
}

@media screen and (max-height: 36em) and (min-width: 30em) {
    .modal--fade .modal-content, .modal--show .modal-content, .tariff-addon-modal .modal-content {
        max-height: 265px;
        max-height: 40vh;
    }
}

.is-stacked.modal--fade, .is-stacked.modal--show, .is-stacked.tariff-addon-modal {
    -webkit-transform: translate(0, 0) scale(1, 1);
    -o-transform: translate(0, 0) scale(1, 1);
    -ms-transform: translate(0, 0) scale(1, 1);
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
}

    .is-stacked.modal--fade .modal-inner, .is-stacked.modal--show .modal-inner, .is-stacked.tariff-addon-modal .modal-inner {
        -webkit-animation: scaleDown .7s ease both;
        -o-animation: scaleDown .7s ease both;
        animation: scaleDown .7s ease both;
    }

    .is-stacked.modal--fade .modal-close, .is-stacked.modal--show .modal-close, .is-stacked.tariff-addon-modal .modal-close {
        opacity: 0;
    }

@media screen and (max-width: 30em) {
    .is-stacked.modal--fade, .is-stacked.modal--show, .is-stacked.tariff-addon-modal {
        -webkit-animation: scaleDown .7s ease both;
        -o-animation: scaleDown .7s ease both;
        animation: scaleDown .7s ease both;
    }

        .is-stacked.modal--fade .modal-inner, .is-stacked.modal--show .modal-inner, .is-stacked.tariff-addon-modal .modal-inner {
            -webkit-animation: none;
            -o-animation: none;
            animation: none;
        }

        .is-stacked.modal--fade .modal-close, .is-stacked.modal--show .modal-close, .is-stacked.tariff-addon-modal .modal-close {
            opacity: 1;
        }
}

/**
 * All animations for CSS Modal
 *
 * Available:
 * - %modal--transition-fade (fade)
 * - %modal--transition-zoomIn (zooms in)
 * - %modal--transition-plainScreen (hides background)
 *
 * Usage:
 *
 * .selector {
 * 		@extend %modal--transition-fade;
 * }
 *
 */
@media screen and (min-width: 30em) {
    .modal--fade {
        -webkit-transition: opacity 0.4s;
        -o-transition: opacity 0.4s;
        transition: opacity 0.4s;
    }
}

/**
 * CSS Modal Themes
 * http://drublic.github.com/css-modal
 *
 * @author Hans Christian Reinl - @drublic
 */
/*
 * Global Theme Styles
 */
.modal--fade, .modal--show {
    color: #222;
    line-height: 1.3;
}

    .modal--fade .modal-inner, .modal--show .modal-inner {
        border-radius: 2px;
        background: #fff;
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
        max-width: 100%;
        -webkit-transition: max-width 0.25s linear, margin-left 0.125s linear;
        -o-transition: max-width 0.25s linear, margin-left 0.125s linear;
        transition: max-width 0.25s linear, margin-left 0.125s linear;
    }

    .modal--fade header, .modal--show header {
        border-bottom: 1px solid #ddd;
        padding: 0 1.2em;
    }

        .modal--fade header > h2, .modal--show header > h2 {
            margin: 0.5em 0;
        }

    .modal--fade .modal-content, .modal--show .modal-content {
        border-bottom: 1px solid #ddd;
        padding: 15px 1.2em;
    }

    .modal--fade footer, .modal--show footer {
        border-top: 1px solid white;
        padding: 0 1.2em 18px;
        background: #f0f0f0;
        border-radius: 2px;
    }

    .modal--fade .modal-close, .modal--show .modal-close {
        text-indent: -100px;
    }

        .modal--fade .modal-close:before, .modal--show .modal-close:before {
            background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAEUlEQVQoz2NgeEYAjioYSQoAzOTmAXhPhyoAAAAASUVORK5CYII=");
        }

        .modal--fade .modal-close:after, .modal--show .modal-close:after {
            content: '\00d7';
            background: #fff;
            border-radius: 2px;
            padding: 2px 8px;
            font-size: 1.2em;
            text-decoration: none;
            text-indent: 0;
        }

@media screen and (max-width: 30em) {
    .modal--fade .modal-close:before, .modal--show .modal-close:before {
        background: #27aae2;
        height: 3em;
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    }

    .modal--fade .modal-inner, .modal--show .modal-inner {
        padding-top: 3em;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .modal--fade .modal-close, .modal--show .modal-close {
        text-decoration: none;
    }

        .modal--fade .modal-close:after, .modal--show .modal-close:after {
            content: attr(data-close);
            font-size: 1em;
            padding: 0.5em 1em;
        }
}

/*
 * Plain Screen Theme Styles
 */
/**
 * Apply the desired modal behavior to your container selector
 */
/* https://github.com/drublic/css-modal */
.scroll-to-see-more-hint {
    display: none;
    width: 100%;
    text-align: right;
    color: #727272;
    font-size: 13px;
    padding-right: 10px;
    margin-bottom: 5px;
}

    .scroll-to-see-more-hint:after {
        content: "»";
        color: #009688;
        font-size: 17px;
        margin-left: 6px;
    }

@media (max-width: 48.05em) {
    .scroll-to-see-more-hint {
        display: block;
    }
}

/*----------  Head  ----------*/
.numbering-search-header {
    padding-top: 30px;
}

/*----------  Form  ----------*/
@media (max-width: 48.05em) {
    .numbering-search-form {
        padding: 10px;
    }
}

.numbering-search-form li {
    margin-bottom: 20px;
}

.numbering-search-form-items label {
    display: inline-block;
    font-family: "opensans";
    min-width: 180px;
    text-align: right;
    margin-right: 20px;
}

@media (max-width: 48.05em) {
    .numbering-search-form-items label {
        text-align: left;
    }
}

.numbering-search-submit {
    display: block;
    margin: 0 auto;
}

/*----------  Results  ----------*/
.numbering-search-results {
    position: relative;
    margin: 60px 20px 80px 20px;
    min-height: 150px;
}

@media (max-width: 48.05em) {
    .numbering-search-results {
        overflow: hidden;
        overflow-x: scroll;
        padding-top: 10px;
    }
}

.numbering-search-results-header {
    background-color: #3277bc;
    color: #ffffff;
    text-align: center;
}

.numbering-search-results-title {
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

.numbering-search-results-table-head-content {
    width: 100%;
}

    .numbering-search-results-table-head-content td {
        width: 14.2%;
    }

.numbering-search-results-table-body td {
    border: 1px solid #eceff1;
    text-align: center;
    padding: 8px;
}
.numbering-search-results-loading-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(200,200,200,0.5);
    z-index: 5;
}
/*----------  Top Content  ----------*/
.sms-search-header {
    padding-top: 30px;
}

/*----------  Form  ----------*/
.sms-search-form {
    padding: 20px 0 20px 0;
}

    .sms-search-form li {
        margin-bottom: 20px;
    }

.sms-search-form-items label {
    display: inline-block;
    font-family: "opensans";
    min-width: 200px;
    text-align: right;
    margin-right: 20px;
}

@media (max-width: 48.05em) {
    .sms-search-form-items label {
        text-align: left;
    }
}

.sms-search-submit {
    display: block;
    margin: 0 auto;
}

/*----------  Results  ----------*/
.sms-search-results {
    width: 100%;
    padding: 60px 20px 80px 20px;
}

@media (max-width: 48.05em) {
    .sms-search-results {
        overflow: hidden !important;
        overflow-x: scroll !important;
        padding-top: 10px;
    }
}

.sms-search-results-header {
    background-color: #3277bc;
    color: #ffffff;
    text-align: center;
}

.sms-search-results-title {
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

.sms-search-results-table-head-content td {
    width: 14.2%;
}

.sms-search-results-table-body td {
    border: 1px solid #eceff1;
    text-align: center;
    padding: 8px;
}

@media (max-width: 48.05em) {
    .sms-search-results-table-body td {
        min-width: 120px;
    }
}

/*----------  Top Content  ----------*/
.database-header {
    padding-top: 30px;
}

/*----------  Form  ----------*/
@media (max-width: 48.05em) {
    .database-form {
        padding: 10px;
    }
}

.database-form li {
    margin-bottom: 20px;
}

.database-form-items label {
    display: inline-block;
    font-family: "opensans";
    min-width: 180px;
    text-align: right;
    margin-right: 20px;
}

@media (max-width: 48.05em) {
    .database-form-items label {
        text-align: left;
    }
}

.database-submit {
    display: block;
    margin: 0 auto;
}

/*----------  Results  ----------*/
.database-results {
    width: 100%;
    padding: 60px 20px 80px 20px;
}

@media (max-width: 48.05em) {
    .database-results {
        overflow: hidden;
        overflow-x: scroll;
        padding-top: 10px;
    }
}

.database-results-header {
    background-color: #3277bc;
    color: #ffffff;
    text-align: center;
}

.database-results-title {
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

.database-results-table-head-content td {
    width: 14.2%;
}

.database-results-table-body td {
    border: 1px solid #eceff1;
    text-align: center;
    padding: 8px;
}

/*----------  Top Content  ----------*/
.licenses-header {
    padding-top: 30px;
}

/*----------  Form  ----------*/
@media (max-width: 48.05em) {
    .licenses-form {
        padding: 10px;
    }
}

.licenses-form li {
    margin-bottom: 20px;
}

.licenses-form-items label {
    display: inline-block;
    font-family: "opensans";
    min-width: 180px;
    text-align: right;
    margin-right: 20px;
}

@media (max-width: 48.05em) {
    .licenses-form-items label {
        text-align: left;
    }
}

.licenses-submit {
    display: block;
    margin: 0 auto;
}

/*----------  Results  ----------*/
.licenses-results {
    width: 100%;
    padding: 60px 20px 80px 20px;
}

@media (max-width: 48.05em) {
    .licenses-results {
        overflow: hidden;
        overflow-x: scroll;
        padding-top: 10px;
    }
}

.licenses-results-header {
    background-color: #3277bc;
    color: #ffffff;
    text-align: center;
}

.licenses-results-title {
    text-align: center;
    font-weight: 600;
    padding: 8px;
}

.licenses-results-table-head-content td {
    width: 14.2%;
}

.licenses-results-table-body td {
    border: 1px solid #eceff1;
    text-align: center;
    padding: 8px;
}

@media (max-width: 48.05em) {
    .licenses-results-table-body td {
        min-width: 200px;
    }
}

/* Calculator Advanced Table */
@media (max-width: 48.05em) {
    .calc-advanced-table-section {
        display: none;
    }
}

.calc-advanced-table-wrapper {
    margin: 10px 0 20px 0;
}

@media (max-width: 48.05em) {
    .calc-advanced-table-wrapper {
        overflow: scroll;
        margin-left: 0;
    }
}

.calc-advanced-table-opener {
    display: block;
    cursor: pointer;
}

.calc-advanced-table-opener-icon {
    font-family: "comreg-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.calc-advanced-table {
    max-width: 660px;
}

@media (max-width: 48.05em) {
    .calc-advanced-table {
        max-width: auto;
        margin: 10px 0;
    }
}

.calc-advanced-table th {
    color: #727272;
    background: #eceff1;
    border: 1px solid #ffffff;
    font-size: 1.3rem;
    vertical-align: top;
}

.calc-advanced-table td[colspan="4"] {
    text-align: center;
}

.calc-advanced-table td {
    width: 225px;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 1.5rem;
    line-height: 3.5rem;
    padding: 4px 16px 2px;
    border: 1px solid #eceff1;
}

.calc-advanced-table input {
    padding: 0 2px !important;
    line-height: 3rem !important;
    height: 30px !important;
    width: 66px !important;
    text-align: center;
}

.calc-advanced-table .calca-provider-name {
    padding-left: 50px;
}

.calc-advanced-table .calca-total {
    text-align: center;
}

/* Mobile Calculator Results */
.calc-results-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 1024px;
    margin: 0 auto;
}

@media (max-width: 62em) {
    .calc-results-header {
        width: 90%;
    }
}

.calc-header-results-back-btn {
    font-size: 1.5rem;
    line-height: 3.5rem;
    font-family: "opensans_semibold";
    color: #383838;
    width: 130px;
    display: inline-block;
    text-decoration: none;
}

@media (max-width: 48.05em) {
    .calc-header-results-back-btn {
        width: 100%;
        padding: 0 2%;
        text-align: left;
    }
}

.calc-header-results-back-icon {
    font-family: "comreg-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.calc-get-results-btn {
    margin-top: 20px;
}

.calc-results-header-title {
    color: #008982;
    font-size: 1.8rem;
    line-height: 6rem;
    margin: 0;
}

@media (max-width: 48.05em) {
    .calc-results-header-title {
        margin-left: 2%;
    }
}

.calc-results-header-num-found {
    width: 130px;
    text-align: right;
    font-size: 1.5rem;
    line-height: 2.8rem;
}

@media (max-width: 48.05em) {
    .calc-results-header-num-found {
        padding-right: 2%;
        width: auto;
    }
}

.calc-results-table-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
    overflow-x: scroll;
}

@media (max-width: 75em) {
    .broadband-results-wrapper {
        overflow: hidden;
        overflow-x: scroll;
    }
}

.calc-results-table {
    width: 100%;
}

    .calc-results-table td, .calc-results-table th {
        border: 1px solid #eceff1;
        border-bottom: 0;
    }

    .calc-results-table td {
        font-size: 1.5rem;
        line-height: 2.1rem;
        padding: 15px 1%;
    }

        .calc-results-table td a.theme-industry,
        .theme-industry .calc-results-table td a {
            color: #3277bc;
        }

        .calc-results-table td a.theme-consumer,
        .theme-consumer .calc-results-table td a {
            color: #009688;
        }

        .calc-results-table td a.theme-default,
        .theme-default .calc-results-table td a {
            color: #009688;
        }

    .calc-results-table .calc-results-icon-td {
        padding: 5px 10px;
    }

    .calc-results-table tbody tr {
        background: #ffffff;
    }

        .calc-results-table tbody tr.-even {
            background: #f9f9f9;
        }

.calc-result-tooltip h3 {
    font-size: 1.6rem;
}

.calc-results-table-thead {
    background: #008982;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 2rem;
}

    .calc-results-table-thead th {
        padding: 5px 5px;
        position: relative;
    }

@media (max-width: 48.05em) {
    .calc-results-table-thead th {
        padding: 8px 10px;
    }
}

.calc-results-thead-features {
    background: #269e92;
    font-size: 1.4rem;
}

    .calc-results-thead-features th {
        border-top-color: #269e92;
        border-bottom-color: #269e92;
    }

.calc-header-results-back-btn {
    font-size: #383838;
}

.calc-column-sort-arrow, .calc-column-sort-desc, .calc-column-sort-asc {
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 6px solid transparent;
    border-top: 6px solid #ffffff;
    border-bottom: 0;
    position: absolute;
    bottom: 6px;
    left: 50%;
    margin-left: -3px;
}

.calc-column-sort-asc {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* Mobile calculator results icons */
.calc-results-icon {
    width: 60px;
    height: 60px;
    fill: #269e92;
    cursor: pointer;
}

    .calc-results-icon:hover {
        fill: #ffffff;
        background: #269e92;
    }

    .calc-results-icon.customer-service-icon {
        width: 42px;
        height: 42px;
    }

    .calc-results-icon.other-option-icon {
        width: 35px;
        height: 35px;
    }

.calc-results-icon-hint {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.calc-results-icon-td {
    vertical-align: middle;
    min-width: 70px;
}

    .calc-results-icon-td:hover {
        background: #269e92;
        border-top-color: #009688;
    }

        .calc-results-icon-td:hover .calc-results-icon {
            fill: #ffffff;
            background: #269e92;
        }

/**
 * Calculator tariff search form
 */
.calc-search-form {
    margin-bottom: 30px;
}

.calc-search-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 48.05em) {
    .calc-search-field {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.calc-search-query-input-wrapper {
    position: relative;
}

    .calc-search-query-input-wrapper .search-icon-components {
        position: absolute;
        left: 5px;
        top: 10px;
    }

@media (max-width: 48.05em) {
    .calc-search-query-input-wrapper .search-icon-components .search-icon {
        display: block;
    }
}

.calc-search-query-input-wrapper .search-icon-components .search-icon-circle {
    width: 8px;
    height: 8px;
}

.calc-search-query-input-wrapper .search-icon-components .search-icon-handle {
    right: 16px;
    bottom: 13px;
    width: 6px;
}

    .calc-search-query-input-wrapper .search-icon-components .search-icon-handle:after {
        width: 3px;
    }

@media (max-width: 48.05em) {
    .calc-search-query-input-wrapper {
        margin: 10px 0;
    }
}

.calc-search-query-label {
    min-width: 180px;
    cursor: pointer;
}

.calc-search-form .calc-search-query-input {
    line-height: 40px;
    height: 40px;
    padding: 0 10px 0 35px;
    background: #FBFBFB;
    border: 1px solid #EAE8E9;
    outline: none;
}

.calc-search-query-button {
    padding: 11px 10px;
    width: 150px;
    margin-right: 20px;
}

/* Calculator Results */
.calc-results-per-page {
    margin: 10px 0;
}

/* Tariff addon modal popup */
.tariff-addon-modal {
    /* get rid of the outer close button ... */
    /* ... but we want to keep the grey overlay */
}

    .tariff-addon-modal .modal-inner {
        top: 100px;
    }

    .tariff-addon-modal .modal-content {
        padding: 20px 10px;
        max-height: 700px;
        text-align: center;
    }

    .tariff-addon-modal .modal-inner-close-button {
        position: absolute;
        right: 0;
        padding-right: 12px;
        font-size: 2rem;
        text-decoration: none;
    }

    .tariff-addon-modal .modal-close:after {
        content: '';
        background: transparent;
    }

    .tariff-addon-modal .modal-close:before {
        background: rgba(0, 0, 0, 0.35);
    }

/**
 * Addons table
 */
.calc-addon-details-header {
    text-align: left;
}

.calc-addon-details-table {
    width: 100%;
    text-align: left;
    font-size: 80%;
}

.calc-addon-details-th {
    background: #009688;
    color: #ffffff;
    padding: 10px 10px;
}

.calc-addon-details-td {
    font-size: 1.5rem !important;
}

/**
 * Considerations text before start of calculator
 */
.calc-considerations-text {
    margin-bottom: 20px;
}

/**
 * A group of minutes fields on top of each other
 */
.calc-minutes-fieldgroup {
    width: 60%;
}

@media (max-width: 48.05em) {
    .calc-minutes-fieldgroup {
        width: 100%;
    }
}

.calc-minutes-fieldgroup-row {
    margin-bottom: 5px;
}

.calc-international-minutes-fieldgroup {
    margin-bottom: 5px;
}

    .calc-international-minutes-fieldgroup input[type=number] {
        width: 100px;
        padding-left: 10px;
        padding-right: 10px;
    }

.calc-results-mini-plan-table {
    border: 2px solid transparent;
    font-family: "opensans_semibold";
}

    .calc-results-mini-plan-table.theme-industry,
    .theme-industry .calc-results-mini-plan-table {
        border-color: #3277bc;
    }

    .calc-results-mini-plan-table.theme-consumer,
    .theme-consumer .calc-results-mini-plan-table {
        border-color: #009688;
    }

    .calc-results-mini-plan-table.theme-default,
    .theme-default .calc-results-mini-plan-table {
        border-color: #009688;
    }

    .calc-results-mini-plan-table tr.odd, .calc-results-mini-plan-table thead tr {
        background: #f7f8f9;
    }

    .calc-results-mini-plan-table td, .calc-results-mini-plan-table th {
        font-size: 12px;
        padding: 8px;
    }

    .calc-results-mini-plan-table th {
        color: #009688;
        height: 44px;
    }

    .calc-results-mini-plan-table td {
        border: 1px solid #eceff1;
        text-align: center;
    }

.calc-mini-details-table {
    border: 2px solid transparent;
    background: #ffffff;
}

    .calc-mini-details-table.theme-industry,
    .theme-industry .calc-mini-details-table {
        border-color: #3277bc;
    }

    .calc-mini-details-table.theme-consumer,
    .theme-consumer .calc-mini-details-table {
        border-color: #009688;
    }

    .calc-mini-details-table.theme-default,
    .theme-default .calc-mini-details-table {
        border-color: #009688;
    }

    .calc-mini-details-table th, .calc-mini-details-table td {
        text-align: left;
        font-size: 12px;
        padding: 0 7px;
        border: 1px solid #eceff1;
    }

.calc-roaming-tabs-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

    .calc-roaming-tabs-list li {
        background: #eceff1;
        border: 1px solid #eceff1;
        padding: 0;
        width: 260px;
        list-style: none;
        text-align: center;
    }

        .calc-roaming-tabs-list li a {
            color: #6f6d6d;
            display: block;
            font-size: 1.8rem;
            line-height: 3.6rem;
            text-decoration: none;
        }

            .calc-roaming-tabs-list li a:focus {
                outline: none;
            }

        .calc-roaming-tabs-list li.-active, .calc-roaming-tabs-list li.publications-search-option-button.-open {
            background: transparent;
            border-color: #727272;
        }

            .calc-roaming-tabs-list li.-active a, .calc-roaming-tabs-list li.publications-search-option-button.-open a {
                text-decoration: underline;
            }

                .calc-roaming-tabs-list li.-active a.theme-industry, .calc-roaming-tabs-list li.publications-search-option-button.-open a.theme-industry,
                .theme-industry .calc-roaming-tabs-list li.-active a,
                .theme-industry .calc-roaming-tabs-list li.publications-search-option-button.-open a {
                    color: #3277bc;
                }

                .calc-roaming-tabs-list li.-active a.theme-consumer, .calc-roaming-tabs-list li.publications-search-option-button.-open a.theme-consumer,
                .theme-consumer .calc-roaming-tabs-list li.-active a,
                .theme-consumer .calc-roaming-tabs-list li.publications-search-option-button.-open a {
                    color: #009688;
                }

                .calc-roaming-tabs-list li.-active a.theme-default, .calc-roaming-tabs-list li.publications-search-option-button.-open a.theme-default,
                .theme-default .calc-roaming-tabs-list li.-active a,
                .theme-default .calc-roaming-tabs-list li.publications-search-option-button.-open a {
                    color: #009688;
                }

.calc-results-county-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.comparison-results-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.comparison-results-heading {
    width: 100%;
    border-bottom: 1px solid #eceff1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    line-height: 3.5;
}

@media (max-width: 48.05em) {
    .comparison-results-heading {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cr-back {
    width: 25%;
    text-align: left;
    padding-left: 40px;
}

    .cr-back a {
        font-weight: 600;
        border-bottom: 0;
    }

@media (max-width: 48.05em) {
    .cr-back {
        display: none;
    }
}

.cr-back-mobile {
    display: none;
}

    .cr-back-mobile a {
        color: #727272;
        font-weight: 600;
        padding-left: 5px;
    }

@media (max-width: 48.05em) {
    .cr-back-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        padding: 8px 20px 8px 0;
    }
}

.cr-title {
    width: 75%;
    text-align: center;
}

@media (max-width: 48.05em) {
    .cr-title {
        width: 100%;
    }
}

.cr-bottom {
    margin-bottom: -25px;
}

.cr-content-heading {
    color: #00796b;
    font-weight: 600;
}

.comparison-results-content-left {
    width: 30%;
    margin-top: 30px;
}

@media (max-width: 48.05em) {
    .comparison-results-content-left {
        width: 100%;
    }
}

@media (max-width: 48.05em) {
    .comparison-results-items {
        padding-left: 0;
        word-break: break-word;
    }
}

@media (max-width: 62em) {
    .comparison-results-items {
        word-break: break-word;
    }
}

.comparison-results-items li {
    list-style: none;
    padding-bottom: 20px;
}

.comparison-results-items span {
    font-weight: 600;
}

.comparison-results-content-right {
    width: 70%;
    margin-top: 45px;
}

@media (max-width: 48.05em) {
    .comparison-results-content-right {
        width: 100%;
        margin-top: 10px;
    }
}

.comparison-results {
    width: 100%;
    padding: 20px;
}

@media (max-width: 48.05em) {
    .comparison-results {
        padding: 0;
        overflow: scroll;
    }
}

.cr-scroll {
    display: none;
    width: 100%;
    text-align: right;
}

@media (max-width: 48.05em) {
    .cr-scroll {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.cr-scroll-see-more {
    text-decoration: none;
    text-align: right;
    width: 100%;
    color: #727272;
}

    .cr-scroll-see-more:after {
        font-family: "comreg-icons";
        font-style: normal;
        font-weight: normal;
        speak: none;
        display: inline-block;
        text-decoration: inherit;
        width: 1em;
        text-align: center;
        /* For safety - reset parent styles, that can break glyph codes*/
        font-variant: normal;
        text-transform: none;
        /* Font smoothing. That was taken from TWBS */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: '\e803';
        margin-left: 5px;
        font-size: 1.8rem;
        color: #00796b;
    }

.comparison-results-table {
    width: 100%;
}

.comparison-results-table-header {
    background-color: #009688;
}

.comparison-results-table-title {
    color: #ffffff;
    text-align: center;
    padding: 5px;
    font-weight: 600;
}

.comparison-results-table-head {
    background-color: #eceff1;
}

    .comparison-results-table-head td {
        padding: 8px;
        border: 1px solid #ffffff;
    }

.comparison-results-table-content td {
    padding: 8px;
    border: 1px solid #eceff1;
}

/* Fixed Links Base Fees */
/*----------  Head  ----------*/
.fixed-links-fees-search-header {
    padding-top: 30px;
}

/*----------  Form  ----------*/
@media (max-width: 48.05em) {
    .fixed-links-fees-search-form {
        padding: 10px;
    }
}

.fixed-links-fees-search-form li {
    margin-bottom: 20px;
}

.fixed-links-fees-search-form-items label {
    display: inline-block;
    font-family: "opensans";
    min-width: 180px;
    text-align: right;
    margin-right: 20px;
}

@media (max-width: 48.05em) {
    .fixed-links-fees-search-form-items label {
        text-align: left;
    }
}

.fixed-links-fees-search-submit {
    display: block;
    margin: 0 auto;
}

/*----------  Results  ----------*/
.fixed-links-fees-search-results {
    position: relative;
    margin: 60px 20px 80px 20px;
    min-height: 150px;
}

@media (max-width: 48.05em) {
    .fixed-links-fees-search-results {
        overflow: hidden;
        overflow-x: scroll;
        padding-top: 10px;
    }
}

.fixed-links-fees-search-results-header {
    background-color: #3277bc;
    color: #ffffff;
    text-align: center;
}

.fixed-links-fees-search-results-title {
    text-align: center;
    padding: 8px;
    font-weight: 600;
}

.fixed-links-fees-search-results-table-head-content {
    width: 100%;
}

    .fixed-links-fees-search-results-table-head-content td {
        width: 14.2%;
    }

.fixed-links-fees-search-results-table-body td {
    border: 1px solid #eceff1;
    text-align: center;
    padding: 8px;
}

.fixed-links-fees-search-results-loading-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(200,200,200,0.5);
    z-index: 5;
}

/* Fixed links fee calculator */
.fixed-links-estimated-fee-body {
    position: relative;
}

.fixed-links-estimated-fee-form-header {
    margin-bottom: 40px;
}
/*----------  Form  ----------*/
.fixed-links-estimated-fee-welcome-text {
    text-align: justify;
}

.fixed-links-estimated-fee-form-items label {
    display: inline-block;
    font-family: "opensans";
    min-width: 200px;
    text-align: right;
    margin-right: 20px;
}

.fixed-links-estimated-fee-form-items .applications-select {
    width: 360px;
}

.fixed-links-estimated-fee-form-items .applications-select-options {
    width: 360px;
}

.fixed-links-estimated-fee-form-items .checkbox-container label {
    text-align: left;
}

.fixed-links-estimated-fee-form-items .help-text {
    margin-left: 10px;
}

.fixed-links-estimated-fee-form-items .inline-help {
    display: inline-block;
    border: solid 1px #3277bc;
    font-size: 0.8em;
    padding: 1em;
    margin: 0;
    max-width: 300px;
    background-color: #f1f5f9;
}

    .fixed-links-estimated-fee-form-items .inline-help ul {
    }

        .fixed-links-estimated-fee-form-items .inline-help ul li {
            margin-bottom: 0px;
            margin-top: 0px;
            margin-left: 20px;
            list-style-type: circle;
        }

@media (max-width: 48.05em) {
    .fixed-links-estimated-fee-form-items label {
        text-align: left;
    }
}

.fixed-links-estimated-fee-submit {
    display: block;
    margin: 0 auto;
}

    .fixed-links-estimated-fee-submit:disabled {
        opacity: 0.3;
    }

/*----------  Results  ----------*/
.fixed-links-estimated-fee-results {
    margin-bottom: 80px;
}

    .fixed-links-estimated-fee-results h2 {
        text-align: center;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .fixed-links-estimated-fee-results h6 {
        font-size: 0.9em;
        text-decoration: underline;
    }

    .fixed-links-estimated-fee-results p {
        font-size: 0.8em;
        margin-bottom: 0.0rem;
    }