@-webkit-viewport {
    width: device-width;
    zoom: 1.0;
}
@-moz-viewport {
    width: device-width;
    zoom: 1.0;
}
@-ms-viewport {
    width: device-width;
    zoom: 1.0;
}
@-o-viewport {
    width: device-width;
    zoom: 1.0;
}
@viewport {
    width: device-width;
    zoom: 1.0;
}


/* ------------------------------------------------------
Variables for easy find and replace

primary colour - #009B7A
accent colour - #A0CE67
accent colour - hover : #88AF57
font body - #333
font accent - #555
font highlight - #777

$body-font:             font-family: 'Arimo', Helvetica, Arial, sans-serif;;
weights: 400 / 700


Table of Contents for search based navigation


**** Box Model Reset

**** Typography
---- Fonts
---- Headings
---- Lists
---- Breadcrumbs
---- Blockquotes
---- Expando
---- HR
---- Text level elements
---- Links


**** Design Patterns
---- Buttons
---- Animations
---- Highlight
---- Site Messages
---- Icon sprite
---- Social list


**** Images


**** Forms
---- Form Errors
---- Submit Bar
---- Search Form
---- Search pagination
---- Captcha


**** Tables
---- Content tables
---- Responsive table
---- No Styles Table


**** Helper classes
---- Clearfix
---- Hiding classes
---- Pseudo elements
---- Floats and positioning
---- Grid system


**** Template Layout
---- Container
---- Simple content alignment classes
---- Sections
---- Content Box
---- Header
---- Footer
---- Magnific Popup


**** Widgets
---- Catch all
---- Related Links
---- Simple Image Gallery
---- Children Page Gallery
---- Sponsors module
---- Order Form
---- Videos

**** Page Sections
---- Article feature
---- Content gallery

**** Print styles

------------------------------------------------------ */

/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

/* ------------------------------------------------------
**** Breakpoints
------------------------------------------------------ */

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */

}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */

}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */

}

/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */

}

/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */

html {
    font-size: 62.5%;
}

body {
    line-height: 1.5;
    font-size: 1.4em;
    color: #333;
    font-family: 'Arimo', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Fonts ---- */

/* - Arimo - */

/*
font-family: 'Arimo', Helvetica, Arial, sans-serif;
*/

/* ---- Headings ---- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0 0 1.7rem 0;
    font-family: 'Arimo', Helvetica, Arial, sans-serif;
    font-weight: 400;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    font-weight: 400;
    line-height: 1;
    color: #8a7b7b;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
    margin-top: 2.8rem;
}


h1, .h1 {
    font-size: 3.5rem;
}

h2, .h2 {
    font-size: 2.8rem;
}

h3, .h3 {
    font-size: 2.1rem;
}

h4, .h4 {
    font-size: 1.8rem;
}

h5, .h5 {
    font-size: 1.6rem;
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    h1, .h1 {
        font-size: 4.2rem;
    }

    h2, .h2 {
        font-size: 3.5rem;
    }

    h3, .h3 {
        font-size: 2.8rem;
    }

    h4, .h4 {
        font-size: 2.1rem;
    }

    h5, .h5 {
        font-size: 1.8rem;
    }
}

.heading-inline {
    display: inline;
    float: left;
    padding: 0;
}

p {
    font-size: 1.4rem;
}

p,
ol,
ul,
dl,
address {
    margin: 0 0 1.4rem;
}

small {
    font-size: 1.28rem;
}


/* ---- Lists ---- */
ul,
ol {
    padding: 0 0 0 2rem;
}

li ul,
li ol {
    margin: 1rem 0;
}

ul.inline,
ol.inline {
    list-style-type: none;
    margin-left: 0;
}
ul.inline > li,
ol.inline > li {
    display: inline-block;
    padding-left: 12px;
    padding-right: 12px;
}

ol {
    list-style-type: none;
    counter-reset: item;
}

ol ul {
    list-style-type: disc;
}

ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

li ol > li {
    margin: 0;
}

li ol > li:before {
    content: counters(item, ".") " ";
}

/* ---- Additional bespoke text styles for mosa ---- */

.subheader {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #555;
    display: block;
}

.line-decal__container {
    position: relative;
}

.line-decal {
    height: 10px;
    background-color: #009B7A;
    width: 100%;
    position: absolute;
    top: 100%;
    transition: all 250ms ease-in-out;
}

.line-decal--overline {
    top: calc(0% + 21px);
}

.line-decal--left {
    left: -33%;
}

.line-decal--right {
    left: 50%;
    margin-top: 7px;
    bottom: 0;
}

.line-decal--right--long {
    left: 33%;
    top: calc(100% - 21px);
}

.line-decal--center {
    width: calc(100% + 49px);
    top: 35px;
    left: -24.5px;
    margin: 7px 0;
}

.line-decal--promo__top {
    display: none;
}

.line-decal--promo__bottom {
   display: none;
}

.text-link--arrows {
    font-size: 1.4rem;
    -webkit-transition: 300ms color ease-in-out;
    -o-transition: 300ms color ease-in-out;
    transition: 300ms color ease-in-out;
}

.text-link--arrows__label {
    text-transform: uppercase;
    text-decoration: underline;
    float: left;
    margin-right: 0.5em;
}

.text-link--arrows__icon {
   float: right;
}

.text-link--arrows #double-arrows {
    height: 0.8em;
    width: 1.1em;
}

.text-link--arrows #double-arrows .cls-1 {
    fill: #009B7A;
}

.text-link--arrows:hover a{
    color: #333;
}

.text-link--arrows:hover #double-arrows .cls-1 {
    fill: #333;
}

.text-link--arrows:hover .text-link--arrows__icon {
    -webkit-animation: arrows-slide .300s cubic-bezier(0.280, 0, 0.720, 1) normal;
            animation: arrows-slide .300s cubic-bezier(0.280, 0, 0.720, 1) normal;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

/* BP Extra small */
@media only screen and (min-width: 37.5em) { /* 600px */
    .subheader {
        display: inline-block;
    }
}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    .subheader {
        font-size: 0.5em;
    }
}

/* ---- Breadcrumbs ---- */
.breadcrumb {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
}
.breadcrumb > li {
    display: inline;
}
.breadcrumb > li:before {
    content: url(../images/icon_singular-arrow--green.svg);
    display: inline-block;
    margin: 0 7px;
    height: 12px;
}
.breadcrumb > li:first-child:before {
    content: none;
}
.breadcrumb > li > a {
    text-decoration: none;
    color: #777;
}
.breadcrumb > li:hover > a {
    text-decoration: underline;
}
.breadcrumb > li > span {
    color: #777;
}


/* ---- Blockquotes ---- */
blockquote {
    margin: 1.5rem 0;
    padding: 20px 25px 20px;
    background: #f0f0f0;
    font-style: italic;
    position: relative;
    clear: both;
}

blockquote *:first-child {
    margin-top: 0;
}

blockquote *:last-child {
    margin-bottom: 0;
}

blockquote:before,
blockquote:after {
    position: absolute;
    font-size: 13rem;
    display: block;
    height: 25px;
    width: 50px;
    color: #009B7A;
    font-style: italic;
    line-height: 10px;
    font-family: "Big Caslon","Book Antiqua","Palatino Linotype",Georgia,serif;
}

blockquote:before {
    content: '\201C';
    top: 38px;
    left: -8px;
}

blockquote:after {
    content: '\201D';
    bottom: -36px;
    right: 18px;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .blockquote--left {
        float: left;
        width: 45%;
        margin-left: 0px;
        margin-right: 20px;
        clear: right;
    }

    .blockquote--right {
        float: right;
        width: 45%;
        margin-left: 20px;
        margin-right: 0px;
        clear: left;
    }
}


/* ---- Expando ---- */
.expando-open {
    color: #009B7A;
}

/* ---- HR ---- */
hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 2em 0;
    padding: 0;
}


/* ---- Text level elements ---- */
abbr[title] {
    border-bottom: 1px dotted #c6bfbf;
    cursor: help;
}

b, strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

ins {
    background-color: #f0f0f0;
    color: #473f3f;
    text-decoration: none;
}

mark {
    background-color: #f0f0f0;
    color: #473f3f;
    font-style: italic;
    font-weight: bold;
}

pre,
code,
kbd,
samp {
    font-family: 'Monaco', 'Courier New', monospace;
    color: #484040;
    background: #efefef;
    background: rgba(0, 0, 0, .07);
    padding: 0 2px;
    margin: 0 -2px;
}

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

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

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}


/* ---- Links ---- */
a {
    color: #009B7A;
    word-break: break-word;
}

a:hover,
a:active,
a:focus {
    color: #006C55;
}

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

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

/* Include file type and size in document links */
a.document::after {
    content: " (" attr(data-ext) " " attr(data-size) ")";
}


/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */

/* ---- Background colours ---- */

/* White */
.bg-white {
    background-color: #fff;
}

/* Dark Green */
.bg-primary_colour {
    background-color: #009B7A;
    color: #fff;
}

/* Light Green */
.bg-accent_colour {
    background-color: #A0CE67;
    color: #fff;
}

/* Light grey */
.bg-lightgrey {
    background-color: #f0f0f3;
}

/* Dark Grey */
.bg-darkgrey {
    background-color: #555;
    color: #fff;
}

/* ---- Buttons ---- */
.button {
    display: inline-block;
    float: right;
    margin-bottom: 0;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    border-radius: 17.5px;
    border: none;
    outline: none;
    opacity: 1;
    position: relative;
    font-weight: 400;
    font-family: 'Arimo', Helvetica, Arial, sans-serif;
    font-size: 1.5;
    line-height: 1.5;
    transition: all 250ms ease-in-out;
    padding: 7px 40px 7px 17px;
    z-index: 2;
    background-color: transparent;
}

.button:after {
    content: " ";
    width: 35px;
    padding-left: 0;
    background-color: transparent;
    background-image: url(../images/icon_button--arrows--green.svg);
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    border-radius: 17.5px;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: calc(100% - 35px);
    right: 0;
}

.button:hover {
    color: #fff;
}
.button:before {
    content: " ";
    width: 35px;
    height: 35px;
    border-radius: 17.5px;
    background-color: #A0CE67;
    position: absolute;
    left: calc(100% - 35px);
    top: 0;
    z-index: -1;
    transition: all 250ms ease-in-out;
}
.button:hover::before {
    left: 0;
    top: 0;
    width: calc(100% - 1px);
}

/* Small */
.button .button-small {
    font-size: 1.4rem;
    padding: 4px 7px 4px;
}

form button {
    line-height: 1.5;
}
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .button.button-large {
        font-size: 1.9rem;
        padding: 14px 26px;
    }
}

.button[type="submit"] {
    float: none;
}

/* icon double arrow button */
.button--icon {
    float: right;
    position: relative;
}

.button--icon__icon__background{
    transition: all ease-in-out 300ms;
    border-radius: 11px;
    width: 21px;
    height: 21px;
    z-index: 1;
    float: right;
    position: absolute;
    right: 0;
}

.button--icon--white .button--icon__icon__background{
    background: #fff;
}

.button--icon:hover .button--icon__icon__background{
   border-radius: 21px;
   width: 100%;
}

.button--icon__content--active .button--icon__icon__background {
    width: 100%;
    border-radius: 21px;
}

.button--icon #icon-button--arrows {
    width: 42px;
    height: 42px;
}

.button--icon--label #icon-button--arrows {
    width: 21px;
    height: 21px;
}

/* icon double arrow butto with label/pre-text */
.button--icon__content {
    position: relative;
}

.button--icon__content p {
    margin: 0 0 0 0;
}

.button--icon__label {
    margin: 0 7px 0 20px;
    float: left;
    text-transform: uppercase;
    padding: 1px 0 0 28px;
    position: relative;
    width: 100%;
    right: 21px;
    z-index: 2;
}

.button--icon--label--full-width {
    width: 100%;
}

.button--icon--white .button--icon__content  .button--icon__label {
    color: #fff;
    transition: color ease-in-out 300ms
}

.button--icon--white:hover .button--icon__content .button--icon__label {
    color: #555;
}

.button--icon--colour .button--icon__content .button--icon__label {
    transition: color ease-in-out 300ms;
    color: #555;
}

.button--icon--colour:hover .button--icon__content .button--icon__label {
    color: #fff;
}

.button--icon--colour .button--icon__content--active .button--icon__label {
    color: #fff;
}

.button--icon--colour .button--icon__icon__background{
    background: #A0CE67;
}

.button--icon--colour:hover .button--icon__icon__background {
    background-color: #88AF57;
}

.button--icon--colour .button--icon__content--active {
    color: #fff;
}

.button--icon--colour:hover .button--icon__content--active .button--icon__icon__background {
    background-color: #88AF57;
}

.button--icon__content::before,
.button--icon__content::after {
    content: ' ';
    background-image: url(../images/icon_button_arrows--green.svg);
    position: absolute;
    background-size: contain;
    background-position: center center;
    width: 21px;
    height: 21px;
    border-radius: 11px;
    top: 0;
    left: calc(100% - 21px);
    z-index: 2;
    transition: opacity ease-in-out 300ms;
    opacity: 1;
}

/* coloured button */
.button--icon--colour .button--icon__content::after {
    background-image: url(../images/icon_button_arrows--green.svg);
}

.button--icon--colour .button--icon__content::before {
    background-image: url(../images/icon_button_arrows--green--hover.svg);
}

.button--icon__content:hover::before {
    opacity: 1;
}
.button--icon__content:hover::after {
    opacity: 0;
}

.case-study__button .button--icon__content::before,
.case-study__button .button--icon__content::after,
.promo__content__button .button--icon__content::before,
.promo__content__button .button--icon__content::after {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    left: calc(100% - 40px);
}

/* white button */
.button--icon--white .button--icon__content::after {
    background-image: url(../images/icon_button_arrows__inverse--green.svg);
    opacity: 1;
}
.button--icon--white .button--icon__content::before {
    background-image: url(../images/icon_button_arrows__inverse--green--hover.svg);
    opacity: 1;
}

.button--icon--white .button--icon__content:hover::after {
    background-image: url(../images/icon_button_arrows__inverse--green.svg);
    opacity: 0;
}
.button--icon--white .button--icon__content:hover::before {
    background-image: url(../images/icon_button_arrows__inverse--green--hover.svg);
    opacity: 1;
}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    .button--icon {
        height: 40px;
    }

    .button--icon__content::before,
    .button--icon__content::after {
        width: 40px;
        height: 40px;
        border-radius: 20px;
        left: calc(100% - 40px);
    }

    .button--icon__icon__background{
        width: 40px;
        height: 40px;
        border-radius: 40px;
    }

   .button--icon__label {
       margin: 0 7px 0 40px;
       padding: 11px 0 0 28px;
       right: 40px;
   }

   .section--hero-banner .button--icon__label--disable{
       border: 0;
       clip: rect(0 0 0 0);
       height: 1px;
       margin: -1px;
       overflow: hidden;
       padding: 0;
       position: absolute;
       width: 1px;
       }

    .section--hero-banner .button--icon--white .button--icon__icon__background {
        background: transparent;
   }
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--hero-banner  .button--icon__content::before,
    .section--hero-banner .button--icon__content::after {
        width: 60px;
        height: 60px;
        border-radius: 30px;
        left: calc(100% - 60px);
    }

    .section--hero-banner .slick-dots {
        position: absolute;
        top: calc(100% - 103px);
        bottom: 0;
        left: 88%;
        right: 0;
    }
}

/* BP Large */
@media only screen and (min-width: 80em) { /* 1280px */
    .section--hero-banner .slick-dots {
        left: calc( ( (100% - 1140px) /2) + 1060px);
    }
}

/* Block */
.button-block {
    display: block;
    width: 100%;
}

/* Disabled/unavailable button style */
.button[disabled],
.button-disabled,
.button-disabled:hover,
.button-disabled:focus,
.button-disabled:active {
    border: none;
    opacity: 0.4;
    cursor: default;
    -webkit-box-shadow: none;
            box-shadow: none;
}

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* - Inline buttons - */
.inline-buttons__item,
.inline-buttons__title {
    margin-bottom: 9px;
}

.inline-buttons__title {
    text-transform: uppercase;
    font-weight: bold;
}


/* Right */
.inline-buttons.inline-buttons--right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}


/* Max BP Extra small */
@media screen and (max-width: 34.938em) { /* 559px */
    .inline-buttons__item {
        width: 100%;
        display: block;
    }
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .inline-buttons {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    .inline-buttons__item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .inline-buttons__item,
    .inline-buttons__title {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .inline-buttons__title {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 100%;
            -ms-flex: 1 1 100%;
                flex: 1 1 100%;
    }
}

/* BP small */
@media screen and (min-width: 60em) { /* 960px */
    .inline-buttons__title {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        padding-right: 2.5rem;
    }
}


/* ---- Animations ---- */
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}

@-webkit-keyframes arrows-slide {
  0% {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
    }
 50% {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
    }
100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    }
}
@keyframes arrows-slide {
  0% {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
    }
 50% {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
    }
100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    }
}


/* ---- Highlight ---- */
.highlight,
.highlight--right,
.highlight--left {
    margin: 0 0 1.5rem;
    padding: 30px;
    background: #f0f0f0;
    clear: both;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .highlight--left {
        float: left;
        width: 45%;
        margin-right: 20px;
        clear: right;
    }

    .highlight--right {
        float: right;
        width: 45%;
        margin-left: 20px;
        clear: left;
    }
}

.highlight *:last-child,
.highlight--right *:last-child,
.highlight--left *:last-child {
    margin-bottom: 0;
}


/* ---- Site Messages ---- */
ul.messages {
    list-style: none;
    margin: 16px 0 25px;
    padding: 0;
}
ul.messages li {
    margin: 0 0 15px;
    padding: 10px 20px;
    vertical-align: bottom;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.2em;
}
ul.messages .error {
    background: #E04D4D;
    border-left: 4px solid #B72323;
    color: #FFF !important;
}
ul.messages .confirm {
    color: #FFF !important;
    background: #6DBB5A;
    border-left: 4px solid #439230;
}
ul.messages a {
    color: #FFF;
}

/* ---- Icon sprite ---- */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* ---- Social list ---- */
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-list .icon {
    font-size: 3.5rem;
}
.social-list__item a {
    color: inherit;
    display: block;
}

/* Inline */
.social-list.social-list--inline .social-list__item {
    display: inline-block;
}

/* ---- Block list ---- */
.block-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.block-list li {
    border-top: 1px solid rgba(0,0,0,0.2);
}
.block-list a {
    display: block;
    text-decoration: none;
    padding: 7px 0;
}


/* ------------------------------------------------------
**** Images
------------------------------------------------------ */

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* ------------------------------------------------------
**** Forms
------------------------------------------------------ */

/* ---- Base styles ---- */
.field-element {
    margin-bottom: 13px;
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element {
        margin-bottom: 21px;
    }
}

.field-element:before,
.field-element:after {
    content: " ";
    display: table;
}

.field-element:after {
    clear: both;
}

.field-input .textbox,
.field-input select {
    display: block;
    width: 100%;
    outline: none;
    line-height: normal;
    padding: 11px 20px 10px;
    -webkit-appearance: none;
}
.field-input .textbox,
.field-input select,
.field-element--fileselector .fs-preview-wrapper {
    line-height: 1.4;
    border: 1px solid #CED2DC;
    border-radius: 5px;
    background-color: #EEF0F3;
}

/* ---- Inline ---- */
.field-elements-inline:before,
.field-elements-inline:after {
    content: " ";
    display: table;
}

.field-elements-inline:after {
    clear: both;
}
.field-elements-inline .field-element {
    float: left;
    margin-right: 1%;
}
.field-elements-inline .field-element:last-child {
    margin-right: 0;
}

/* Button */
.field-elements-inline .field-element--button {
    margin-top: 29px;
}
.field-elements-inline .field-element--button.field-element--inline-no-label {
    margin-top: 0;
}

/* Add top margin to make empty space for margins */
.field-element--inline-with-label {
    margin-top: 29px;
}

/* ---- White ---- */
.field-element.field-element--white .field-input .textbox,
.field-element.field-element--white .field-input select,
.field-element--white.field-element--fileselector .fs-preview-wrapper {
    background-color: #fff;
}


/* ---- Sizes ---- */

/* Small */
.field-element .field-input .textbox,
.field-element .field-input select,
.field-element--fileselector .fs-preview-wrapper,
.field-element.field-element--small .field-input .textbox,
.field-element.field-element--small .field-input select,
.field-element.field-element--small.field-element--fileselector .fs-preview-wrapper {
    font-size: 1.6rem;
    padding: 5px 15px 3px;
}


/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    /* Regular */
    .field-element .field-input .textbox,
    .field-element .field-input select,
    .field-element.field-element--fileselector .fs-preview-wrapper {
        padding: 10px 20px 8px;
        font-size: 1.6rem;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--large .field-input .textbox,
    .field-element.field-element--large .field-input select,
    .field-element.field-element--large.field-element--fileselector .fs-preview-wrapper {
        font-size: 1.8rem;
        padding: 12px 25px 11px;
    }
}

/* ---- Disabled ---- */
.field-element.field-element--disabled,
.field-element .fieldset-input.fieldset-input--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.field-element.field-element--disabled .textbox[disabled],
.field-element.field-element--disabled select[disabled],
.field-element.field-element--disabled button[disabled],
.field-element.field-element--disabled input[type="checkbox"] + label,
.field-element .fieldset-input.fieldset-input--disabled input[type="checkbox"] + label,
.field-element.field-element--disabled input[type="radio"] + label,
.field-element .fieldset-input.fieldset-input--disabled input[type="radio"] + label {
    cursor: not-allowed;
}

/* ---- Caps ---- */
.field-element--caps .textbox,
.field-element--caps select {
    text-transform: uppercase;
}


/* ---- Placeholders ---- */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #a29999;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #a29999;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #a29999;
}
:-moz-placeholder { /* Firefox 18- */
    color: #a29999;
}
.field-element--dropdown--placeholder .field-input select {
    color: #a29999;
}

/* ---- Fieldset ---- */
.field-element fieldset {
    border: none;
    padding: 0;
    margin: 0;
}


/* ---- Labels and legends ---- */
.field-label,
.fieldset__legend {
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Arimo', Helvetica, Arial, sans-serif;
}

/* Instead of h3s */
.label.heading {
    margin: 30px 0px 20px;
    padding: 8px 8px 8px 0px;
    border-bottom: 1px solid #E2E2E2;
}

/* Hidden labels */
.field-element--hidden-label .field-label,
.field-element--hidden-label .fieldset__legend {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/* ---- Required ---- */
.field-label__required {
    text-indent: -9999px;
    line-height: 0;
    display: inline-block;
}

.field-label__required:after {
    content: "*";
    text-indent: 0;
    display: block;
    line-height: inherit;
}


/* ---- Field helpers ---- */
.field-helper {
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 1em;
}

.field-label .field-helper {
    margin-top: 0.3em;
    margin-bottom: 0;
}

/* ---- Attach wrapper ---- */
.field-element-attach-wrapper {
    position: relative;
}
.field-element-attach-wrapper__button {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 0 5px 5px 0;
    background: #d7dce0;
    border: none;
    outline: none;
    padding: 0 7px;
    z-index: 1;
    cursor: pointer;
}
.field-element-attach-wrapper__button .icon {
    color: #58595b;
}
.field-element-attach-wrapper__button:hover,
.field-element-attach-wrapper__button:active,
.field-element-attach-wrapper__button:focus {
    background-color: #c8cdd2;
}
.field-element-attach-wrapper .field-element .field-input .textbox,
.field-element-attach-wrapper .field-element .field-input select {
    padding-right: 55px;
}

.field-element-attach-wrapper--small .field-element-attach-wrapper__button .icon,
.field-element-attach-wrapper__button .icon {
    font-size: 2.7rem;
    margin-top: 2px;
}

/* White */
.field-element-attach-wrapper.field-element-attach-wrapper--white .field-element-attach-wrapper__button {
    background-color: #eaecf1;
}
.field-element-attach-wrapper.field-element-attach-wrapper--white .field-element-attach-wrapper__button:hover,
.field-element-attach-wrapper.field-element-attach-wrapper--white .field-element-attach-wrapper__button:active,
.field-element-attach-wrapper.field-element-attach-wrapper--white .field-element-attach-wrapper__button:focus {
    background-color: #e1e3e8;
}

/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element-attach-wrapper__button .icon {
        font-size: 3.1rem;
        margin-top: 3px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .field-element-attach-wrapper--large .field-element-attach-wrapper__button .icon {
        font-size: 3.4rem;
        margin-top: 4px;
    }
}


/* ---- Field errors ---- */
.field-element.field-element--error  .field-input .textbox,
.field-element.field-element--error  .field-input select {
    background-color: #f7eaec;
}
.field-error__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.field-error__list__item {
    color: #fff;
    background: #E04D4D;
    padding: 10px 20px;
    margin: 11px 0;
    border-left: 6px solid #b72323;
}

/* ---- Text area ---- */
textarea {
    resize: vertical;
}

/* ---- Range ---- */
.field-element.field-element--range .field-input .textbox {
    -webkit-appearance: slider-horizontal;
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
    background: none !important;
}
input[type=range]::-moz-focus-outer {
    border: 0;
}

/* ---- Selects ---- */
.field-element .field-input select {
    -moz-appearance: none;
    background-image: url(../images/form-icons.svg),
    url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
    padding-right: 55px;
}
.field-element .field-input select[multiple] {
    background-image: none;
    padding-right: 20px;
}

.field-element select::-ms-expand,
.daterangepicker select.monthselect::-ms-expand,
.daterangepicker select.yearselect::-ms-expand {
    display: none;
}

/* Multiple selects */
.field-element.field-element--select.field-element--select--multiple select {
    padding: 8px 8px;
    background-image: none;
}

.field-element.field-element--select.field-element--select--multiple option {
    padding: 6px 10px;
}

/* Small */
.field-element .field-input select,
.field-element.field-element--small .field-input select {
    background-position: top -262px right -104px, top -447px right -92px;
}
.field-element .field-input select,
.field-element.field-element--small .field-input select,
.field-element.field-element--large .field-input select {
    padding-right: 55px;
}


/* White + Small */
.field-element.field-element--white .field-input select,
.field-element.field-element--small.field-element--white .field-input select {
    background-position: top -262px right -104px, top -607px right -92px;
}

/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element .field-input select {
        background-position: top -257px right -104px, top -447px right -92px;
    }
    /* White */
    .field-element.field-element--white .field-input select {
        background-position: top -257px right -104px, top -607px right -92px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--large .field-input select {
        background-position: top -253px right -104px, top -447px right -92px;
    }
    /* White + Large */
    .field-element.field-element--large.field-element--white .field-input select {
        background-position: top -253px right -104px, top -607px right -92px;
    }
}


/* ---- Checkboxes and radio buttons ---- */
.field-element.field-element--checkbox,
.field-element.field-element--radio {
    font-size: 1.6rem;
}

.field-element input[type="checkbox"],
.field-element input[type="radio"] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.field-element input[type="checkbox"] + label,
.field-element input[type="radio"] + label,
.field-element.field-element--small input[type="checkbox"] + label,
.field-element.field-element--small input[type="radio"] + label {
    padding-left: 34px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.field-element input[type="checkbox"] + label:before,
.field-element input[type="radio"] + label:before,
.field-element.field-element--small input[type="checkbox"] + label:before,
.field-element.field-element--small input[type="radio"] + label:before {
    content: " ";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 13px;
    position: relative;
    top: 3px;
    background-color: #EEF0F3;
    border: 1px solid #CED2DC;
    margin-left: -34px;
}

/* Check and dot */
.field-element input[type="checkbox"]:checked + label:after,
.field-element input[type="radio"]:checked + label:after,
.field-element.field-element--small input[type="checkbox"]:checked + label:after,
.field-element.field-element--small input[type="radio"]:checked + label:after {
    content: " ";
    position: absolute;
    left: 1px;
    top: 6px;
}


/* Without labels */
.field-element.field-element--checkbox--no-label input[type="checkbox"] + label,
.field-element.field-element--radio--no-label input[type="radio"] + label {
    padding-left: 0;
}

.field-element.field-element--checkbox--no-label input[type="checkbox"] + label:before,
.field-element.field-element--radio--no-label input[type="radio"] + label:before {
    margin-left: 0;
    margin-right: 0;
}

.field-element.field-element--checkbox--no-label input[type="checkbox"]:checked + label:after,
.field-element.field-element--radio--no-label input[type="radio"]:checked + label:after {
    left: 1px;
}

.field-element.field-element.field-element--radio--no-label input[type="radio"]:checked + label:after {
    margin-left: 4px;
}


/* -- Checkboxes -- */

/* Box */
.field-element input[type="checkbox"]:checked + label:before {
    border-radius: 1px;
}

/* Check (pseudo element) */
.field-element input[type="checkbox"]:checked + label:after,
.field-element.field-element--small input[type="checkbox"]:checked + label:after {
    content: " ";
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top -702px left 1px;
    width: 17px;
    height: 17px;
    margin: -2px 0 0 -1px;
}

.field-element.field-element--checkboxlist--columns .field-element__input-set {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
}

/* -- Radio Buttons -- */

/* Radio button (pseudo element) */
.field-element input[type="radio"] + label:before,
.field-element.field-element--small input[type="radio"] + label:before {
    border-radius: 12px;
}

/* Radio dot (pseudo element) */
.field-element input[type="radio"]:checked + label:after,
.field-element.field-element--small input[type="radio"]:checked + label:after {
    left: 6px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #58595B;
}

/* White */
.field-element.field-element--white input[type="checkbox"] + label:before,
.field-element.field-element--white input[type="radio"] + label:before {
    background-color: #FFF;
}


/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element input[type="checkbox"] + label:before,
    .field-element input[type="radio"] + label:before {
        width: 24px;
        height: 24px;
        margin-right: 13px;
        top: 4px;
    }

    .field-element input[type="checkbox"]:checked + label:after {
        background-position: top -731px left 0;
        width: 23px;
        height: 23px;
        margin: 0;
    }

    /* Radio outer */
    .field-element input[type="radio"] + label:before {
        border-radius: 12px;
    }

    /* Radio dot (pseudo element) */
    .field-element input[type="radio"]:checked + label:after {
        left: 7px;
        top: 11px;
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--large input[type="checkbox"] + label:before,
    .field-element.field-element--large input[type="radio"] + label:before {
        width: 30px;
        height: 30px;
        margin-right: 16px;
        top: 9px;
    }

    .field-element.field-element--large input[type="checkbox"]:checked + label:after {
        background-position: top -759px left 1px;
        width: 29px;
        height: 29px;
        margin: 4px 0 0 -1px;
    }

    /* Radio outer */
    .field-element input[type="radio"] + label:before {
        border-radius: 15px;
    }
    .field-element.field-element--large input[type="radio"]:checked + label:after {
        left: 9px;
        top: 18px;
        width: 12px;
        height: 12px;
        border-radius: 6px;
    }
}

/* ---- Color picker ---- */

/* Small */
.field-element.field-element--colorpicker .textbox.colorpicker,
.field-element.field-element--colorpicker.field-element--small .textbox.colorpicker {
    padding: 2px 7px;
    height: 32px;
    width: 38px;
}

/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element.field-element--colorpicker .textbox.colorpicker {
        padding: 3px 8px;
        height: 42px;
        width: 49px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .field-element.field-element--colorpicker.field-element--large .textbox.colorpicker {
        padding: 4px 10px;
        height: 50px;
        width: 60px;
    }
}

/* ---- Money ---- */
.field-element.field-element--money .field-input .textbox {
    padding-left: 55px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: top -447px left 0;
}

.field-element.field-element--money .field-input {
    position: relative;
}
.field-element.field-element--money .field-input .money-symbol:before {
    content: "\00a4";       /* Generic currency sign */
    position: absolute;
    display: block;
    left: 0;
    color: #58595B;
    font-weight: bold;
    font-size: 19px;
    width: 41px;
    text-align: center;
}
.field-element.field-element--money .field-input .money-symbol--dollar:before {
    content: "$";    /* Dollars */
}
.field-element.field-element--money .field-input .money-symbol--pound:before {
    content: "\00a3";    /* Pounds */
}
.field-element.field-element--money .field-input .money-symbol--yen:before {
    content: "\00a5";    /* Yen */
}
.field-element.field-element--money .field-input .money-symbol--indian_rupee:before {
    content: "\20B9";   /* Indian rupee */
}


/* Small */
.field-element.field-element--money .field-input .textbox,
.field-element.field-element--money.field-element--small .field-input .textbox {
    background-position: top -447px left 0;
}
.field-element.field-element--money .field-input .money-symbol:before,
.field-element.field-element--money.field-element--small .field-input .money-symbol:before {
    top: 4px;
}

/* White */
.field-element--money.field-element--white .field-input .textbox,
.field-element--money.field-element--white.field-element--small .field-input .textbox,
.field-element--money.field-element--white.field-element--large .field-input .textbox {
    background-position: top -607px left 0;
}


/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element.field-element--money .field-input .money-symbol:before {
        top: 9px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .field-element.field-element--money.field-element--large .field-input .money-symbol:before {
        top: 14px;
    }
}


/* ---- Time pickers ---- */

.field-element.field-element--timepicker .field-input .textbox {
    padding-left: 55px;
    background-image: url(../images/form-icons.svg),
    url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top -170px left 12px, top -447px left 0;
}

/* Timepicker modal */
.ui-timepicker {
    display: block;
    position: absolute;
    height: 200px;
    overflow: auto;
    z-index: 9999 !important;
}

.ui-timepicker-standard {
    background-color: #FFF;
    border: 1px solid #CED2DC;
    display: block;
    margin: 3px 0 0;
    padding: 5px;
    list-style: none outside none;
    border-radius: 4px;
}

.ui-timepicker-standard a {
    color: #24292f;
}

.ui-timepicker-standard .ui-state-hover {
    background-color: #EAECF1;
}

.ui-timepicker-standard .ui-menu-item {
    clear: left;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
}

.ui-timepicker-standard .ui-menu-item a {
    display: block;
    padding: 5px 10px;
    line-height: 1.5;
    text-decoration: none;
    border-radius: 3px;
}

.ui-timepicker-hidden {
    display: none;
}


/* Small */
.field-element.field-element--timepicker .field-input .textbox,
.field-element.field-element--timepicker.field-element--small .field-input .textbox {
    background-position: top -175px left 12px, top -447px left 0;
}

/* White + Small */
.field-element.field-element--timepicker.field-element--white .field-input .textbox,
.field-element.field-element--timepicker.field-element--white.field-element--small .field-input .textbox {
    background-position: top -175px left 12px, top -607px left 0;
}

/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element.field-element--timepicker .field-input .textbox {
        background-position: top -170px left 12px, top -447px left 0;
    }
    /* White */
    .field-element.field-element--timepicker.field-element--white .field-input .textbox {
        background-position: top -170px left 12px, top -607px left 0;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--timepicker.field-element--large .field-input .textbox {
        background-position: top -166px left 12px, top -447px left 0;
    }
    /* White + Large */
    .field-element.field-element--timepicker.field-element--white.field-element--large .field-input .textbox {
        background-position: top -166px left 12px, top -607px left 0;
    }
}



/* ---- Date pickers ---- */

/* - Date picker and Date-range picker - */
.field-element.field-element--datepicker .field-input .textbox,
.field-element.field-element--daterangepicker .field-input .textbox {
    padding-left: 55px;
    background-image: url(../images/form-icons.svg),
    url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 11px left 12px, top -447px left 0;
}

/* Small */
.field-element.field-element--datepicker .field-input .textbox,
.field-element.field-element--datepicker.field-element--small .field-input .textbox,
.field-element.field-element--daterangepicker .field-input .textbox,
.field-element.field-element--daterangepicker.field-element--small .field-input .textbox {
    background-position: top 6px left 12px, top -447px left 0;
}

/* White + Small */
.field-element.field-element--datepicker.field-element--white .field-input .textbox,
.field-element.field-element--datepicker.field-element--white.field-element--small .field-input .textbox,
.field-element.field-element--daterangepicker.field-element--white .field-input .textbox,
.field-element.field-element--daterangepicker.field-element--white.field-element--small .field-input .textbox {
    background-position: top 7px left 12px, top -607px left 0;
}


/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element.field-element--datepicker .field-input .textbox,
    .field-element.field-element--daterangepicker .field-input .textbox {
        background-position: top 11px left 12px, top -447px left 0;
    }
    /* White */
    .field-element.field-element--datepicker.field-element--white .field-input .textbox,
    .field-element.field-element--daterangepicker.field-element--white .field-input .textbox {
        background-position: top 11px left 12px, top -607px left 0;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--datepicker.field-element--large .field-input .textbox,
    .field-element.field-element--daterangepicker.field-element--large .field-input .textbox {
        background-position: top 15px left 12px, top -447px left 0;
    }
    /* White + Large */
    .field-element.field-element--datepicker.field-element--white.field-element--large .field-input .textbox,
    .field-element.field-element--daterangepicker.field-element--white.field-element--large .field-input .textbox {
        background-position: top 15px left 12px, top -607px left 0;
    }
}


/* - Date/time picker - */
.field-element.field-element--datetimepicker .field-input .textbox,
.field-element.field-element--datetimerangepicker .field-input .textbox {
    padding-left: 55px;
    background-image: url(../images/form-icons.svg),
    url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
}

/* Small */
.field-element.field-element--datetimepicker .field-input .textbox,
.field-element.field-element--datetimepicker.field-element--small .field-input .textbox,
.field-element.field-element--datetimerangepicker .field-input .textbox,
.field-element.field-element--datetimerangepicker.field-element--small .field-input .textbox {
    background-position: top -93px left 12px, top -447px left 0;
}

/* White + Small */
.field-element.field-element--datetimepicker.field-element--white .field-input .textbox,
.field-element.field-element--datetimepicker.field-element--small.field-element--white .field-input .textbox,
.field-element.field-element--datetimerangepicker.field-element--white .field-input .textbox,
.field-element.field-element--datetimerangepicker.field-element--small.field-element--white .field-input .textbox {
    background-position: top -93px left 12px, top -607px left 0;
}


/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element.field-element--datetimepicker .field-input .textbox,
    .field-element.field-element--datetimerangepicker .field-input .textbox {
        background-position: top -88px left 12px, top -447px left 0;
    }

    /* White */
    .field-element.field-element--datetimepicker.field-element--white .field-input .textbox,
    .field-element.field-element--datetimerangepicker.field-element--white .field-input .textbox {
        background-position: top -88px left 12px, top -607px left 0;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--datetimepicker.field-element--large .field-input .textbox,
    .field-element.field-element--datetimerangepicker.field-element--large .field-input .textbox {
        background-position: top -85px left 12px, top -447px left 0;
    }
    /* White + Large */
    .field-element.field-element--datetimepicker.field-element--white.field-element--large .field-input .textbox,
    .field-element.field-element--datetimerangepicker.field-element--white.field-element--large .field-input .textbox {
        background-position: top -85px left 12px, top -607px left 0;
    }
}


/* Container Appearance */
.daterangepicker {
    position: absolute;
    background: #fff;
    top: 100px;
    left: 20px;
    padding: 4px;
    margin-top: 2px;
    border-radius: 4px;
    width: 278px;
}

.daterangepicker.opensleft:before {
    position: absolute;
    top: -7px;
    right: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker.opensleft:after {
    position: absolute;
    top: -6px;
    right: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: '';
}

.daterangepicker.openscenter:before {
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker.openscenter:after {
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: '';
}

.daterangepicker.opensright:before {
    position: absolute;
    top: -7px;
    left: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker.opensright:after {
    position: absolute;
    top: -6px;
    left: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: '';
}

.daterangepicker.dropup{
    margin-top: -5px;
}

.daterangepicker.dropup:before{
    top: initial;
    bottom:-7px;
    border-bottom: initial;
    border-top: 7px solid #CED2DC;
}

.daterangepicker.dropup:after{
    top: initial;
    bottom:-6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
}

.daterangepicker.dropdown-menu {
    max-width: none;
    z-index: 3000;
    display: none;
    border: 1px solid #CED2DC;
}

.daterangepicker.single .ranges, .daterangepicker.single .calendar {
    float: none;
}

.daterangepicker .calendar {
    display: none;
    max-width: 270px;
    margin: 4px;
}

.daterangepicker.show-calendar .calendar {
    display: block;
}

.daterangepicker .calendar.single .calendar-table {
    border: none;
}

/* Calendars */
.daterangepicker .calendar th, .daterangepicker .calendar td {
    white-space: nowrap;
    text-align: center;
    min-width: 32px;
    border: 1px solid #E8E8E8;
}

.daterangepicker .calendar-table {
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 4px;
    background: #fff;
}

.daterangepicker table {
    width: 100%;
    margin: 0;
    border: none;
}

.daterangepicker td,
.daterangepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    white-space: nowrap;
    padding: 2px;
}
.daterangepicker td,
.daterangepicker th.available {
    cursor: pointer;
}
.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
    color: #999;
    background: #fff;
    border-color: #E8E8E8;
}
.daterangepicker td.off.in-range {
    background-color: #F4FAFC;
}
.daterangepicker td.off.active {
    background-color: #AAD8EA;
    color: #FFF;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
    background: #EAECF1;
}

.daterangepicker td.in-range {
    background: #ebf4f8;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #358AAB;
    border-color: #358AAB;
    color: #fff;
}

.daterangepicker td.week, .daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.yearselect,
.daterangepicker select.monthselect,
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    margin-bottom: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 62px;
    background-color: #FFF;
    outline: none;
    border-radius: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 5px 23px 5px 8px;
    border: 1px solid #CED2DC;
    background-image: url(../images/form-icons.svg),
    url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top -355px right -119px, top -607px right -115px;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 40%;
}

.daterangepicker select.yearselect {
    width: 44%;
}

.daterangepicker th.month {
    width: auto;
}

/* Previous/Next buttons */
.daterangepicker th.prev .daterangepicker-prev-icon,
.daterangepicker th.next .daterangepicker-next-icon {
    width: 11px;
    height: 17px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto;
}
.daterangepicker th.prev:hover,
.daterangepicker th.next:hover {
    background: none;
    opacity: 0.8;
}
.daterangepicker th.prev .daterangepicker-prev-icon {
    background-position: top -820px left 0px;
}
.daterangepicker th.next .daterangepicker-next-icon {
    background-position: top -880px left 1px;
}

.daterangepicker th.prev,
.daterangepicker th.next,
.daterangepicker th.month,
.daterangepicker .calendar-table thead tr:first-child th {
    border: none;
    background: none;
}

.daterangepicker .calendar-table thead tr:nth-child(2) th {
    background-color: #F2F2F5;
}

/* Text Input Above Each Calendar */
.daterangepicker .input-mini {
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #555;
    display: block;
    height: 30px;
    line-height: 30px;
    vertical-align: middle;
    margin: 0 0 5px 0;
    padding: 0 6px 0 28px;
    width: 100%;
}

.daterangepicker .input-mini.active {
    border: 1px solid #358AAB;
    background-color: rgb(255, 255, 238);
}

.daterangepicker .daterangepicker_input i {
    position: absolute;
    left: 8px;
    top: 7px;
    color: #596474;
}

.daterangepicker .daterangepicker_input {
    position: relative;
}

/* Time Picker */
.daterangepicker .calendar-time {
    text-align: center;
    margin: 5px auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Predefined Ranges */
.daterangepicker .ranges {
    font-size: 11px;
    float: none;
    margin: 4px;
    text-align: left;
}

.daterangepicker .applyBtn {
    background-color: #009B7A;
    color: #FFF;
}
.daterangepicker .applyBtn:hover,
.daterangepicker .applyBtn:focus {
    background-color: #006C55;
    color: #FFF;
}

.daterangepicker .cancelBtn {
    background-color: #D0D3DA;
    color: #24292F;
}
.daterangepicker .cancelBtn:hover,
.daterangepicker .cancelBtn:focus {
    background-color: #BCBFC5;
    color: #24292f;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto 12px;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 1.3rem;
    background: #EAECF1;
    border: 1px solid #f5f5f5;
    color: #24292F;
    padding: 4px 12px 3px;
    margin-bottom: 7px;
    border-radius: 5px;
    cursor: pointer;
    line-height: 1.2;
}

.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
    background: #358AAB;
    border: 1px solid #358AAB;
    color: #fff;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .daterangepicker{
        width: auto;
    }

    .daterangepicker .ranges ul {
        width: 160px;
    }

    .daterangepicker.single .ranges ul {
        width: 100%;
    }

    .daterangepicker .calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .daterangepicker .calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .daterangepicker .calendar.left {
        clear: left;
        margin-right: 0;
    }

    .daterangepicker.single .calendar.left {
        clear: none;
    }

    .daterangepicker.single .ranges,
    .daterangepicker.single .calendar{
        float:left;
    }

    .daterangepicker .calendar.right {
        margin-left: 0;
    }

    .daterangepicker .left .daterangepicker_input {
        padding-right: 12px;
    }

    .daterangepicker .calendar.left .calendar-table {
        padding-right: 12px;
    }

    .daterangepicker .ranges,
    .daterangepicker .calendar {
        float: left;
    }

}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .daterangepicker .ranges {
        width: auto;
        float: left;
    }

    .daterangepicker .calendar.left {
        clear: none;
    }
}


/* ---- Total selector ---- */
.field-element.field-element--totalselector {
    position: relative;
}
.field-element--totalselector .field-input .total-selector__output {
    cursor: pointer;
    background-image: url(../images/form-icons.svg), url(../images/form-icons.svg);
    background-repeat: no-repeat, no-repeat;
}

/* Small */
.field-element.field-element--totalselector .field-input .total-selector__output,
.field-element.field-element--totalselector.field-element--small .field-input .total-selector__output {
    background-position: top -262px right -104px, top -447px right -92px;
}
.field-element.field-element--totalselector .field-input .total-selector__output,
.field-element.field-element--totalselector.field-element--small .field-input .total-selector__output,
.field-element.field-element--totalselector.field-element--large .field-input .total-selector__output {
    padding-right: 55px;
}


/* White + Small */
.field-element.field-element--totalselector.field-element--white .field-input .total-selector__output,
.field-element.field-element--totalselector.field-element--small.field-element--white .field-input .total-selector__output {
    background-position: top -262px right -104px, top -607px right -92px;
}

/* Responsive */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .field-element.field-element--totalselector .field-input .total-selector__output {
        background-position: top -257px right -104px, top -447px right -92px;
    }
    /* White */
    .field-element.field-element--totalselector.field-element--white .field-input .total-selector__output {
        background-position: top -257px right -104px, top -607px right -92px;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    /* Large */
    .field-element.field-element--totalselector.field-element--large .field-input .total-selector__output {
        background-position: top -253px right -104px, top -447px right -92px;
    }
    /* White + Large */
    .field-element.field-element--totalselector.field-element--large.field-element--white .field-input .total-selector__output {
        background-position: top -253px right -104px, top -607px right -92px;
    }
}



.field-element--totalselector__dropdown {
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 25px;
    margin-top: 2px;
    border-radius: 4px;
    z-index: 800;
    border: 1px solid #d1cfc9;
    display: none;
    white-space: nowrap;
}
.field-element--totalselector.field-element--totalselector--active .field-element--totalselector__dropdown {
    display: block;
}
.field-element--totalselector__dropdown:before {
    position: absolute;
    top: -7px;
    left: 14px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #d1cfc9;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}
.field-element--totalselector__dropdown:after {
    position: absolute;
    top: -6px;
    left: 15px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
    content: '';
}

.total-selector__dropdown__field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 11px;
}
.total-selector__dropdown__field:last-child {
    margin-bottom: 0;
}
.total-selector__dropdown__field__labels {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}
.total-selector__dropdown__field__buttons {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
.total-selector__dropdown__field__button {
    -webkit-appearance: none;
    border: 1px solid #dcd9d1;
    border-radius: 4px;
    outline: none;
    background: none;
    padding: 0;
    height: 29px;
    width: 32px;
    color: #908b7e;
    cursor: pointer;
    font-size: 1.4rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: top -1618px left 1px;
}
.total-selector__dropdown__field__button.total-selector__dropdown__field__button--decrease {
    background-position: top -1559px left 9px;
}
.total-selector__dropdown__field__button.total-selector__dropdown__field__button--increase {
    background-position: top -1534px left 9px;
}

.total-selector__dropdown__field__button:focus {
    color: #a29e94;
    border-color: #a29e94;
}
.total-selector__dropdown__field__button:hover {
    color: #908b7e;
    border-color: #908b7e;
}

/* Min / max */
.total-selector__dropdown__field__button.total-selector__dropdown__field__button--min,
.total-selector__dropdown__field__button.total-selector__dropdown__field__button--max {
    opacity: 0.5;
    pointer-events: none;
    color: #908b7e;
    border-color: #dcd9d1;
}

.total-selector__dropdown__field__total {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 3px 5px;
    width: 50px;
    text-align: center;
    font-size: 1.8rem;
}
.total-selector__dropdown__field__labels p {
    display: inline-block;
    margin-right: 8px;
}
.total-selector__dropdown__field__labels__title {
    margin: 0;
    font-size: 1.6rem;
}
.total-selector__dropdown__field__labels__helper {
    margin: 0;
    font-size: 1.5rem;
}
.field-element--totalselector__fields {
    display: none;
}

/* Done button */
.total-selector__dropdown__close__button-wrap {
    text-align: right;
    padding-top: 10px;
}

/* BP Extra small */
@media only screen and (min-width: 37.5em) { /* 600px */
    .field-element--totalselector__dropdown {
        right: auto;
    }
    .total-selector__dropdown__field__labels p {
        display: block;
        margin-right: 28px;
    }
    .total-selector__dropdown__field {
        margin: 0 0 23px;
    }
}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    /* Don't really need this close button above tablet */
    .total-selector__dropdown__close__button-wrap {
        display: none;
    }
}


/* ---- File upload area ---- */
.file-upload__input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.file-upload__helptext {
    padding-top: 14px;
}
.file-upload__helptext--hidden {
    display: none;
}
.file-upload__helptext__line2 {
    display: block;
    font-size: 1.3rem;
}
.file-upload__helptext p {
    margin: 0;
}
.file-upload__helptext:before {
    content: " ";
    display: block;
    width: 27px;
    height: 32px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: 0 -1317px;
    margin: 0 auto 10px;
}

.file-upload__area {
    cursor: pointer;
    text-align: center;
}
.field-input .textbox.file-upload__area--dragenter {
    border-color: #009B7A;
}

.file-upload__uploads:before,
.file-upload__uploads:after {
    content: " ";
    display: table;
}

.file-upload__uploads:after {
    clear: both;
}
.file-upload__item,
.file-upload__helptext {
    height: 110px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.file-upload__item {
    background-color: #FFF;
    border: 1px solid #ced2dc;
    width: 110px;
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
    position: relative;
    cursor: default;
    vertical-align: top;
}

.file-upload__item__remove {
    -webkit-appearance: none;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
}
.file-upload__item__remove:hover,
.file-upload__item__remove:focus {
    background: rgba(0, 0, 0, 0.7);
}

.file-upload__item__remove:after {
    content: " ";
    display: block;
    width: 17px;
    height: 17px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: 3px -938px;
}
.file-upload__item__remove__text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Feedback */
.file-upload__item__feedback__response {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.file-upload__item__feedback__response p {
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
}

/* Not image response */
.file-upload__item__feedback__response .file-upload__item__feedback__name {
    font-size: 1.2rem;
    margin: 0 0 5px;
}
.file-upload__item__feedback__size {
    font-size: 1.1rem;
    margin: 0;
}
.file-upload__item__feedback__response--success--not-image {
    padding: 26px 15px 20px;
}
.file-upload__item__feedback__response--success--not-image:before {
    content: " ";
    display: block;
    width: 28px;
    height: 24px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: 0px -1396px;
    margin: 0 auto 10px;
}

/* Image response */
.file-upload__item__feedback__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

/* Error */
.file-upload__item__feedback__response--error {
    padding: 25px 15px 20px;
}
.file-upload__item__feedback__response .file-upload__item__feedback__error__text {
    font-size: 1.2rem;
    white-space: normal;
    overflow: visible;
}
.file-upload__item__feedback__response--error:before {
    content: " ";
    display: block;
    width: 23px;
    height: 24px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: 0px -1473px;
    margin: 0 auto 10px;
}

/* Hover */
.file-upload__item__feedback__hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    color: #FFF;
    padding: 33px 15px 20px;
    overflow: hidden;
}
.file-upload__item:hover .file-upload__item__feedback__hover {
    opacity: 1;
}
.file-upload__item__feedback__hover__size {
    font-size: 1.1rem;
}
.file-upload__item__feedback__hover__dimensions {
    font-size: 1.1rem;
}
.file-upload__item__feedback__hover .file-upload__item__feedback__hover__name {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

/* Progress circles */
.file-upload__progress-circle {
    position: relative;
    font-size: 1.3rem;
    line-height: 1.1;
    display: block;
    width: 56px;
    height: 56px;
    padding: 21px 0 0 0;
    margin: 26px auto 0;
    text-align: center;
}
.file-upload__progress-circle__amount {
    z-index: 1;
    position: relative;
}
.file-upload__progress-circle__pie {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.file-upload__progress-circle__pie__piece {
    -webkit-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}



/* ---- File selector ---- */
.field-element--fileselector .fs-select-button {
    float: left;
    margin-right: 9px;
}

.field-element--fileselector .fs-preview-wrapper {
    background-color: #EEF0F3;
    position: relative;
    overflow: hidden;
    display: block;
}

.field-element--fileselector .fs-filename {
    padding: 10px 15px;
    word-break: break-all;
    overflow: hidden;
    display: block;
}
.field-element--fileselector .fs-file-selected .fs-filename {
    padding-left: 10px;
    padding-right: 38px;
}

.field-element--fileselector .fs-preview {
    width: 39px;
    display: none;
    float: left;
}
.field-element--fileselector .fs-file-selected .fs-preview {
    display: block;
}

.field-element--fileselector .fs-remove {
    display: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
    background: none;
    padding: 0;
    color: #D4D7DE;
    position: absolute;
    right: 6px;
    top: 9px;
    background-image: url(../images/form-icons.svg);
    background-repeat: no-repeat;
    background-position: top -1075px left 3px;
    width: 22px;
    height: 22px;
}
.field-element--fileselector .fs-remove:hover,
.field-element--fileselector .fs-remove:focus {background-position: top -1135px left 3px;}
.field-element--fileselector .fs-file-selected .fs-remove {
    display: block;
}


/* Small */
.field-element--fileselector.field-element--small .fs-preview {
    width: 30px;
}
.field-element--fileselector.field-element--small .fs-filename {
    padding-top: 8px;
    padding-bottom: 6px;
    font-size: 1.4rem;
}
.field-element--fileselector.field-element--small .fs-remove {
    top: 6px;
    background-position: top -964px left 3px;
    width: 20px;
    height: 20px;
}
.field-element--fileselector.field-element--small .fs-remove:hover,
.field-element--fileselector.field-element--small .fs-remove:focus {
    background-position: top -1023px left 3px;
}
.field-element--fileselector.field-element--small .fs-file-selected .fs-filename {
    padding-right: 31px;
}

/* Large */
.field-element--fileselector.field-element--large .fs-preview {
    width: 48px;
}
.field-element--fileselector.field-element--large .fs-filename {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 1.8rem;
}
.field-element--fileselector.field-element--large .fs-remove {
    top: 14px;
    right: 9px;
}
.field-element--fileselector.field-element--large .fs-file-selected .fs-filename {
    padding-right: 41px;
    padding-left: 20px;
}

/* Popup */
.file-selector-search-wrapper  {
    display: none;
}
.file-selector-search-wrapper.searched  {
    display: block;
}
#file-selector-preview {
    display: block;
    background: #f9f9fb;
    border: 1px solid #E0E3EA;
    margin: 0 0 20px;
    position: relative;
    padding: 20px 25px;
}
.no-results #file-selector-preview {
    display: none;
}
#file-selector-preview .preview-title {
    margin: 0 0 12px;
}
#file-selector-preview .preview-box {
    position: relative;
    height: 150px;
}
#file-selector-preview img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0 auto;
    display: block;
}

#file-selector-upload .field-element--new-category,
#file-selector-upload.new-category .field-element--select-category {
    display: none;
}
#file-selector-upload.new-category .field-element--new-category,
#file-selector-upload .field-element--select-category {
    display: block;
}

#file-selector-result-wrap {
    max-height: 450px;
    overflow: auto;
    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
}
#file-selector-upload .field-elements-inline,
#file-selector-search .field-elements-inline {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}
#file-selector-upload .field-elements-inline .field-element--dropdown,
#file-selector-search .field-elements-inline .field-element--dropdown {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
}
#file-selector-upload .field-elements-inline .field-element--text,
#file-selector-search .field-elements-inline .field-element--text {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
}

#file-selector-stats {
    font-size: 1.6rem;
    margin-bottom: 14px;
}
#file-selector-results .file-select-table {
    margin: 0;
    width: 100%;
    border-left: 1px solid #E0E3EA;
    border-right: 1px solid #E0E3EA;
}
#file-selector-results .file-select-table tr {
    border-bottom: 1px solid #D7D7D7;
    cursor: pointer;
}
#file-selector-results .file-select-table tr:last-child {
    border-bottom: 0;
}
#file-selector-results .file-select-table tr:nth-child(odd) {
    background-color: #f9f9fb;
}

/* Hover */
#file-selector-results .file-select-table tr:hover {
    background-color: #ECE9E9;
}

#file-selector-paginate {
    margin-top: 16px;
}
#file-selector-prev {
    float: left;
}
#file-selector-next {
    float: right;
}
#file-selector-results a {
    text-decoration: none;
    color: inherit;
    display: block;
}
#file-selector-results .file-select-table-thumbnail {
    width: 100px;
    padding: 5px 20px;
}
#file-selector-results .file-select-table-text a {
    padding: 27px 25px 27px 0;
}
#file-selector-results .table--content-standard tr:hover td {
    background-color: red;
}

/* ---- Autocomplete ---- */
.ui-autocomplete {
    list-style: none;
    background: #FFFFFF;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #CED2DC;
    border-radius: 4px;
    padding: 3px 0;
    margin: 0;
}
.ui-autocomplete .ui-menu-item {
    padding: 5px 11px;
    cursor: pointer;
}
.ui-autocomplete .ui-menu-item.ui-state-focus {
    padding: 5px 11px;
    background: #358AAB;
    color: #FFF;
}


/* ---- Lightweight elements ---- */
.field-element--lightweight {
    margin: 0;
}


/* ---- TinyMCE tweaks ---- */
.mce-panel {
    border-color: #CED2DC !important;
}
.mce-toolbar-grp,
.mce-flow-layout {
    background-color: #EAECF1 !important;
}
.mce-tinymce{
    border-radius: 5px !important;
    overflow: hidden !important;
}
.mce-btn {
    border: 1px solid #EAECF1 !important;
    background-color: #EAECF1 !important;
}
.mce-btn:hover,
.mce-btn:focus{
    color: #333;
    background-color: #DDE0E6 !important;
    border-color: #C6CAD2 !important;
}
.mce-btn.mce-active,
.mce-btn.mce-active:hover{
    background-color: #CED2DC !important;
    border-color: #B5B8C1 !important;
}
.mce-btn:active{
    background-color:#e0e0e0 !important;
    border-color: #ccc !important;
}
.mce-menu-item:hover, .mce-menu-item.mce-selected, .mce-menu-item:focus {
    background-color: #358AAB !important;
    color: #FFF !important;
}


/* ---- Submit Bar ---- */
.submit-bar {
    text-align: right;
    background: #f0f0f0;
    padding: 15px;
    margin: 15px 0;
}

.sidebar .submit-bar {
    padding: 10px 0;
}

.submit-bar a {
    margin-right: 20px;
}

.submit-bar .button {
    background-color: #A0CE67;
    color: #fff;
    height: 42px;
    border-radius: 21px;
    padding: 8px 17px 8px 17px;;
    z-index: 2;
}

.submit-bar .button:hover {
    background-color: #88AF57;
    color: #fff;
}


/* ---- Search Form ---- */
.site-search-form {
    margin: 0 0 40px;
}
.search-result {
    border-top: 1px solid #ced2dc;
    margin: 20px 0;
    padding: 20px 0;
}
.search-result p:last-child {
    margin-bottom: 0;
}


/* ---- Search pagination ---- */
.search-paginate {
    padding: 10px 0;
    text-align: center;
}
.search-paginate .page-prev {
    margin: 0 8px 0 0;
}
.search-paginate .page {
    padding: 2px 9px;
    margin: 0 3px;
    background: #eee;
    border: 1px #e85505 solid;
    text-decoration: none;
}
.search-paginate .page.on {
    color: #000;
    border-color: #000;
}
.search-paginate .page-next {
    margin: 0 0 0 8px;
}


/* ---- Captcha ---- */
.captcha {
    background-color: #f0f0f0;
    padding: 10px;
    width: 100%;
    border: 1px solid #D7D7D7;
}

.captcha .captcha-info, .captcha .info {
    float: right;
    padding-bottom: 8px;
}
.captcha .captcha-info, .captcha .info a {
    text-decoration: none;
}
.captcha .captcha-info .captcha-icon {
    width: 16px;
    height: 16px;
    margin-bottom: 16px;
}

.captcha .captcha-img {
    width: 200px;
    margin-bottom: 10px;
}

.captcha .captcha-input {
    width: 200px;
}


/* ------------------------------------------------------
**** Tables
------------------------------------------------------ */

table {
    border-collapse: collapse;
    border: 1px solid #d7d7d7;
}

th,
td {
    padding: 5px 10px;
    border: 1px solid #d7d7d7;
}

th,
thead td {
    background: #f0f0f0;
}

/* ---- Content tables ---- */
.table--content-standard {
    width: 100%;
    margin: 2rem 0;
}
.table--content-standard caption {
    text-align: left;
    padding-bottom: 13px;
}
.table--content-standard th,
.table--content-standard thead td {
    font-weight: bold;
    background-color: #F0F0F0;
    font-size: 1.7rem;
}
.table--content-standard td {
    background-color: #FFF;
}
.table--content-standard th,
.table--content-standard td {
    border: 1px solid #d7d7d7;
    padding: 12px 15px;
    text-align: left;
}


/* Small */
.table--content-standard.table--content-small {
    font-size: 1.3rem;
}
.table--content-standard.table--content-small th,
.table--content-standard.table--content-small td {
    padding: 5px 10px;
}
.table--content-standard.table--content-small th,
.table--content-standard.table--content-small thead td {
    font-size: 1.4rem;
}

/* ---- Responsive tables ---- */
@media only screen and (max-width: 600px) {
    .table--responsive {
        font-size: 1.4rem;
    }
    .table--responsive,
    .table--responsive tbody,
    .table--responsive tr {
        display: block;
        border: none;
    }
    .table--responsive thead,
    .table--responsive th {
        display: none;
    }
    .table--responsive tr {
        display: table;
        width: 100%;
    }
    .table--responsive tr.table--responsive__first-row {
        display: none;
    }
    .table--responsive td {
        display: table-row;
        padding: 0;
    }
    .table--responsive td[data-title]:before {
        content: attr(data-title);
        font-weight: bold;
        background-color: #F0F0F0;
        border-right: 1px solid #d7d7d7;
    }
    .table--responsive td[data-title] {
        border-left: 1px solid #d7d7d7;
        border-right: 1px solid #d7d7d7;
        border-top: 1px solid #d7d7d7;
    }
    .table--responsive tbody tr {
        margin-bottom: 20px;
        border-bottom: 1px solid #d7d7d7;
    }
    .table--responsive td[data-title]:before,
    .table--responsive__content {
        padding: 5px 15px;
        display: table-cell;
    }

}

/* ---- No Styles Table ---- */
.table__no-styles {
    border-collapse: separate !important;
    border: none !important;
    background: none !important;
    min-width: 0 !important;
}

.table__no-styles th,
.table__no-styles thead td,
.table__no-styles td {
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
}




/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */
.clear {
    height: 0;
    clear: both;
    display: block;
}

.-clearfix:before,
.-clearfix:after {
    content: " ";
    display: table;
}

.-clearfix:after {
    clear: both;
}


/* ---- Hiding classes ---- */
.-ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
}

.-ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

.-hidden {
    display: none !important;
    visibility: hidden;
}

.-vis-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

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

.-invisible {
    visibility: hidden;
}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    .invisible__screen-sm {
        display: none;
    }
}

/* ---- Pseudo elements ---- */

/* Angle Brackets */
.-r-arrow-after:after {
    content: "\00a0\003e";
}
.-r-arrow-before:before {
    content: "\003e\00a0";
}
.-l-arrow-after:after {
    content: "\00a0\003c";
}
.-l-arrow-before:before {
    content: "\003c\00a0";
}

/* Ellipsis */
.ellipsis-2:after {
    content: "..";
}
.ellipsis-3:after {
    content: "...";
}

/* ---- Floats and positioning ---- */

.left,
.center,
.right {
    margin: 30px auto;
    display: block;
}


/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .left {
        margin: 0 30px 30px 0;
        float: left;
    }

    .right {
        margin: 0 0 30px 30px;
        float: right;
    }
}

/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */

* {
    margin: 0;
}

html,
body {
    background: #FFF;
    height: 100%;
}

#wrap {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}


/* ---- Container ---- */
.container {
    width: 88%;
    max-width: 1140px;
    margin: 0 auto;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .container {
        width: 92%;
    }
}

/* ---- Simple content alignment classes ---- */

/*

For use fix flexgrid or when you don't need anything else
The breakpoints align with flexgrid breakpoints

*/

/* - Right - */

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

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .col-sm--right-align {
        text-align: right;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .col-md--right-align {
        text-align: right;
    }
}

/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
    .col-lg--right-align {
        text-align: right;
    }
}

/* - Left - */

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

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .col-sm--left-align {
        text-align: left;
    }
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .col-md--left-align {
        text-align: left;
    }
}

/* BP large */
@media only screen and (min-width: 75em) { /* 1200px */
    .col-lg--left-align {
        text-align: left;
    }
}


/* ---- Sections ---- */
.section {
    padding-top: 21px;
    padding-bottom: 21px;
}

/* Small */
.section--small {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Large */
.section--large {
    padding-top: 42px;
    padding-bottom: 42px;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .section {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .section--small {
        padding-top: 21px;
        padding-bottom: 21px;
    }
    .section--large {
        padding-top: 49px;
        padding-bottom: 49px;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section {
        padding-top: 42px;
        padding-bottom: 42px;
    }
    .section--small {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .section--large {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

/* ---- Blocks ---- */

/* like sections, but using margin instead of padding */

.block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.block-mb {
    margin-bottom: 20px;
}

.block-large {
    margin-top: 20px;
    margin-bottom: 20px;
}

.block-mb-large {
    margin-bottom: 20px;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .block-large {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .block-mb-large {
        margin-bottom: 25px;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .block-large {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .block-mb-large {
        margin-bottom: 30px;
    }
}


/* ---- Content Box ---- */

.box {
    padding: 20px 15px;
}

@media screen and (min-width: 23.75em) { /* 380px */
    .box {
        padding: 20px;
    }
}
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .box {
        padding: 30px;
    }
}

.box > *:last-child {
    margin-bottom: 0;
}

/* ---- Header ---- */
.section--header {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: none;
 }
 .header__logo {
    display: none;
 }

/* BP Small */
@media only screen and (min-width: 48.0625em) { /* 769px */
    .header__logo {
        position: relative;
        display: block;
        float: left;
        height: 84px;
    }
    .header__logo--container {
        height: 84px;
    }
    .header__logo:before {
        content: '';
        background-color: #fff;
        position: absolute;
        height: 100%;
        width: 200%;
        left: -200%;
    }
    .header__logo a {
        display: block;
    }
    .header__logo__wrapper {
        float: left;
        padding: 10px 0;
    }
    .header__logo__img {
        display: none;
    }
    .header__logo__img--condensed {
        margin-top: 26px;
    }

    /* ---- Nav ---- */
    .header__nav {
        padding: 0 0 0 35px;
    }

    .header__nav__wrapper {
        width: 100%;
        float: right;
        margin-top: 34px;
        position: relative;
    }
    .header__nav__wrapper--inner:before {
        content:"";
        background-color: #A0CE67;
        height: 10px;
        width: 98px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 80;
    }

    .header__nav__wrapper:after {
        content: '';
        background-color: #009B7A;
        position: absolute;
        height: 100%;
        width: 200%;
        left: 100%;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .header__logo--container--inner:before {
            content:"";
            background: #009B7A;
            height: 10px;
            width: 100%;
            position: absolute;
            top: 100%;
            left: -84.9%;
            z-index: 80;
        }

    .header__nav__wrapper--inner {
       margin-top: 0;
       padding: 34px 0 0 0;
    }
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .header__logo {
        height: 148px;
    }
    .header__logo:before {
        content: '';
        background-color: #fff;
        position: absolute;
        height: 100%;
        width: 200%;
        left: -200%;
    }
    .header__logo__wrapper {
        height: 100%;
        padding-top: 50px;
    }

    @supports (display: flex) {
        .header__logo__wrapper {
            padding: 10px 0;
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-end;
        }
    }

    .header__logo__img--condensed {
        display: none;
    }
    .header__logo__img {
        display: block;
        height: auto;
        max-width: 220px;
        max-height: 87.09px;
    }
    .header__nav {
        padding: 0 0 0 42px;
    }

    /* ---- Nav ---- */
    .header__nav__wrapper {
        margin-top: 90px;
    }
    .header__nav__container {
        width: 96%;
        max-width: calc(1140px * 0.80);
    }

    .header__logo--container {
        height: 148px;
    }

    .header__logo--container--inner:before {
            left: -62%;
        }

    .header__logo--container--inner:after{
            left: 33%;
    }

    .header__nav__wrapper--inner {
       margin-top: 0;
       padding: 90px 0 0 0;
    }
}

/* BP Large */
@media only screen and (min-width: 80em) { /* 1280px */
    .header__nav__wrapper {
        margin-top: 86px;
    }
    .header__nav__wrapper--inner {
        margin-top: 0;
        padding: 86px 0 0 0;
    }

    .header__logo__wrapper {
        padding-top: 30px;
    }
    .header__logo__img {
        max-width: 270px;
        max-height: 106.88px;
    }
}

/* ---- Footer ---- */
#footer {
    border-top: 10px solid #009B7A;
}

.section--pre-footer {
    text-align: center;
    color: #555;
}

.footer__text {
    margin-top: 21px;
}

.footer__text p{
    font-size: 1.1rem;
}

.footer__quicklinks h2{
    margin-top: 20px;
}

.footer__quicklinks .block-list li {
    padding: 7px 0 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    border-top: none;
    transition: all 250ms ease-in-out;
}

.footer__quicklinks .block-list a {
    color: #555;
    padding: 0 0 0 0;
}

.footer__quicklinks .block-list li:hover {
    padding: 7px 0 4px 0;
    border-bottom: 3px solid #555;
}

.footer__contact h2 {
    margin-bottom: 0.5em;
}
.footer__contact h5 {
    font-weight: bold;
    margin-bottom: 0.25em;
}

.footer__contact__detail {
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer__contact__detail__text{
    padding-left: 40px;
    display: inline-block;
}

.footer__contact__detail a{
    text-decoration: none;
    position: relative;
    color: #555;
    z-index: 1;
}

.footer__contact__section--button {
    margin-top: 14px;
}

.footer__contact__detail .footer-icon {
    display: inline-block;
}

.footer__contact__detail #icon_location--hover,
.footer__contact__detail #icon_phone--hover,
.footer__contact__detail #icon_envelope--hover {
    opacity: 0;
    z-index: 3;
    display: block;
    position: absolute;
    top: -0.5em;
    left: 0;
    transition: all 250ms ease-in-out;
}

.footer__contact__detail #icon_location,
.footer__contact__detail #icon_phone,
.footer__contact__detail #icon_envelope {
    opacity: 1;
    z-index: 2;
    display: block;
    position: absolute;
    top: -0.5em;
    left: 0;
    transition: all 250ms ease-in-out;
}

.footer__contact__detail:hover #icon_location,
.footer__contact__detail:hover #icon_phone,
.footer__contact__detail:hover #icon_envelope {
    opacity: 0;
}

.footer__contact__detail:hover #icon_location--hover,
.footer__contact__detail:hover #icon_phone--hover,
.footer__contact__detail:hover #icon_envelope--hover  {
    opacity: 1;
}

.footer__contact__detail a:hover .footer__contact__detail__content{
    text-decoration: underline;
}

.footer__contact__detail__content {
    display: inline-block;
}

.footer-icon-title {
    text-transform: uppercase;
    color: #878787;
    display: none;
    z-index: 1;
}

#icon_envelope,
#icon_phone,
#icon_location,
#icon_envelope--hover,
#icon_phone--hover,
#icon_location--hover {
    width: 30px;
    height: 30px;
}

.footer__contact__detail--address {
    display: none;
}

.footer__contact__section--uk {
    margin-top: 21px;
}

.footer__contact h5 {
    font-weight: bold;
}

.footer__contact__detail__content--rls {
    letter-spacing: -.5px;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--pre-footer {
        text-align: left;
    }
    .section--pre-footer .container .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .footer__quicklinks h2{
        margin-top: 0;
    }
    .footer__quicklinks .block-list li {
        padding: 7px 0 6px 14px;
    }
    .section--pre-footer h2 {
         margin-bottom: 0.2em;
     }
    .footer__contact h5 {
        margin: 7px 0 11px 0;
    }
    .footer-icon-title {
        display: inline-block;
    }
    .footer__contact__detail {
        margin-bottom: 28px;
    }
    .footer__contact__detail--address {
        display: inline-block;
        margin-bottom: 0;
    }
    .footer__contact__section--uk {
        margin-top: 0;
    }
    .footer__contact__detail__content {
        padding-left: 0;
        display: block;
    }
    .footer__contact__detail .footer-icon {
        position: relative;
        display: block;
    }
    .footer__contact__detail #icon_location--hover,
    .footer__contact__detail #icon_phone--hover,
    .footer__contact__detail #icon_envelope--hover {
        top: 0;
    }
    .footer__contact__detail #icon_location,
    .footer__contact__detail #icon_phone,
    .footer__contact__detail #icon_envelope {
        top: 0;
    }
    .section--footer {
    padding: 21px 0;
    }

    .footer__text {
        margin-top: 0;
    }
    .footer__text p {
        margin-bottom: 0;
    }
    .footer__contact__section--button {
        display: none;
    }
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--pre-footer .block-list {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .section--pre-footer .block-list li{
        padding: 10px 0 10px 21px;
        -webkit-column-break-inside: avoid;
                  page-break-inside: avoid;
                       break-inside: avoid;
    }
    .footer__quicklinks .block-list li:hover {
        padding: 10px 0 10px 0;
        border-bottom: 1px solid #555;
        padding-left: 0;
        -webkit-column-break-inside: avoid;
                  page-break-inside: avoid;
                       break-inside: avoid;
    }
    .footer-icon-title {
        display: none;
    }
    .footer-icon {
        margin-top: 0;
    }
    .footer__contact__detail {
         margin-bottom: 21px;
         border-bottom: 1px solid rgba(0,0,0,0.2);
     }
     .footer__contact__detail--address {
        border-bottom: none;
     }
     .footer__quicklinks {
         padding-right: 21px;
     }


/*     @supports (display: flex) {
        .footer__quicklinks .block-list li {
            width: 40%;
        }
        .section--pre-footer .block-list {
            display: flex;
            flex-flow: column wrap;

        }
     }*/
}

/* ---- Hero banner ---- */
.section--hero-banner {
    position: relative;
    width: 100%;
    height: 260px;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-banner__heading {
    font-size: 2.1rem;
}

.hero-banner--slider__list__item__img {
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner--slider__list {
    padding: 0 0 0 0;
}
.hero-banner--slider__list__item {
    position: relative;
}

.hero-banner__text {
    width: 100%;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-banner__text h2 {
    margin: 0 0 0 0;
}

.hero-banner__text .container {
    width: 100%;
}

.hero-banner__text .row {
    margin: 0;
}

.hero-banner__text__container {
    background-color: rgba(0, 155, 122, 0.9);
    padding: 10px 20px;
    z-index: 1;
}

.hero-banner__text__slider-dots {
    display: none;
}

.hero-banner__text__heading {
    width: 100%;
}

.hero-banner__text__description {
    display: none;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--hero-banner {
         height: 400px;
    }

    .hero-banner__heading {
        font-size: 2.8rem;
    }

    .hero-banner__text {
        padding: 30px 0;
    }

    .hero-banner__text .container {
        width: 88%;
    }
    .hero-banner__text .row {
        margin-right: -1rem;
        margin-left: -1rem;
    }

    .hero-banner__text__description {
        display: block;
        width: calc(100% - 54px);
        float: left;
    }

    .hero-banner__text__description h4 {
        margin: 0 0 0 0;
    }

    .hero-banner__text__link {
        height: 100%;
    }

    @supports (display: flex) {
        .hero-banner__text__link {
            width: 54px;
            -ms-flex-item-align: end;
            align-self: flex-end;
        }

        .container__row {
            box-sizing: border-box;
            display: -ms-flexbox;
            display: -webkit-box;
            display: flex;
            -ms-flex: 0 1 auto;
            -webkit-box-flex: 0;
            flex: 0 1 auto;
            -ms-flex-direction: row;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            flex-direction: row;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            justify-content: space-between;
        }
    }
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--hero-banner {
         height: 520px;
    }
    .hero-banner__heading {
        font-size: 3.5rem;
    }
    .hero-banner__text {
        padding: 84px 0;
    }
    .hero-banner__text .row {
        margin-right: 0.6rem;
        margin-left: -1.4rem;
    }
   .hero-banner__text__slider-dots ul{
       list-style-type: none;
       padding: 0 0 0 0;
       margin: 0 0 0 0;
   }
   .hero-banner__text__slider-dots li{
       display: inline-block;
   }
    .hero-banner__text__slider-dots {
        display: block;
        width: 100%;
        text-align: right;
    }
    .hero-banner__text__container {
        padding: 10px 20px 20px 20px;
    }
    .hero-banner__text__description {
        width: calc(100% - 67px);
    }
    .hero-banner__text__link {
        height: 50px;
    }
    .section--hero-banner .button--icon {
        margin-top: -10px;
    }
}

/* BP Custom */
@media only screen and (min-width: 76.875em) { /* 1230px */

}

/* BP Large */
@media only screen and (min-width: 80em) { /* 1280px */
    .section--hero-banner {
         height: 600px;
    }
    .hero-banner__text .row {
        margin-left: 0.8rem;
        margin-right: 2.4rem;
    }
}
/* BP Extra large */
@media only screen and (min-width: 87.5em) { /* 1400px */
    .section--hero-banner {
         height: 800px;
    }
}

/* ---- Promo ---- */
.promo-list {
    margin-top: 20px;
}
.promo {
    margin-bottom: 25px;
}
.promo__inner {
    height: 100%;
}
.promo__img img {
    width: 100%;
}
.promo__content {
    padding: 21px;
}
.promo__content__heading {
    float: left;
}
.promo__content__header h2 {
    margin: 0 0 1rem 0;
}
.promo__content__header {
    position: relative;
}
.promo__content__button {
    position: absolute;
    right: 0;
    top: -5px;
}
.promo__content__link {
    float: right;
}
.promo__content__description {
    margin-top: 10px;
    display: block;
}
.promo__content__header .line-decal--center {
    display: none;
}
.promo__container__header a {
    text-decoration: none;
    color: #333;
}
.promo__container__header a:hover {
    text-decoration: underline
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .promo-list {
        margin-top: 7px;
    }
    .promo__inner {
        margin: 0 7px;
    }
    .promo__content {
        padding: 14px;
    }
    .promo {
        margin-bottom: 0;
    }
    .promo__img {
        display: none;
    }
    .promo__container h2 {
        margin-bottom: 0;
    }
    .promo__content__description {
        margin-top: 21px;
    }
    .promo__content__link {
        display: none;
    }
    .promo__content__header .line-decal--center {
        display: block;
    }

    .promo:hover .line-decal--center {
        width: calc(100% + 28px);
        left: -14px;
    }
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--promo {
        min-height: 337px;
        height: 40vmin;
    }
    .line-decal--promo__top {
        display: block;
        width: 75%;
        right: 30%;
        top: 62px;
    }
    .line-decal--promo__bottom {
        display: block;
        width: 75%;
        left: 30%;
        top: calc(100% - 10px);
    }

    .promo__inner:hover .line-decal--promo__top {
        width: 70%;;
    }
    .promo__inner:hover .line-decal--promo__bottom {
        width: 70%;
    }
    .promo__container__header {
        display: none;
    }
    .promo__img {
        display: block;
    }
    .promo .line-decal--center {
        display: none;
    }
    .promo__container {
        position: relative;
    }
    .promo__container__offset{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        top: -111px;
    }
    .promo__content__button {
        top: 2px;
    }
    .promo__content__link {
        display: inline-block;
    }
    .promo__content {
        padding: 0;
    }
    .promo__content__header {
        padding: 10px 14px 0 14px;
    }
    .promo__content__text {
        padding: 0px 14px 14px 14px;
    }
    .promo__content__description {
        margin-top: 7px;
        max-height: 66px;
        overflow: hidden;
        line-height: 1.5;
    }
    .promo__content__link {
        margin-bottom: 14px;
    }

    @supports (display: flex) {
        .promo__content {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: stretch;
                -ms-flex-pack: stretch;
                    justify-content: stretch;
            height: 100%;
        }
        .promo__content__text {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            height: 100%;
        }
        .promo__content__link {
            -ms-flex-item-align: end;
                align-self: flex-end;
        }
        .promo__content__link {
            margin-bottom: 7px;
        }
    }
}

/* BP Custom */
@media only screen and (min-width: 71.25em) { /* 1140px */
    .section--promo {
        min-height: 360px;
        height: 43vmin;
    }
}

/* ---- Innerpage content ---- */
/* BP small */
@media screen and (min-width: 48em) { /* 768px */
    .section--content {
        padding-top: 112px;
        padding-bottom: 42px;
    }

    .section--content p {
        line-height: 1.5;
    }
}

/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--content {
        padding-top: 196px;
        padding-bottom: 42px;
    }
}

/* ---- Magnific Popup ---- */
.mfp-image-holder .mfp-content {
    max-width: 1000px;
}

.mfp-ajax-holder .mfp-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 50px;
    max-width: 700px;
}

/* Generic style for all widgets */


/* ------------------------------------------------------
**** Widgets

Widgets & Modules that ship with sprout.
If they don't they belong in separate partial file

------------------------------------------------------ */

/* BP Small */
@media only screen and (min-width: 48.0625em) { /* 769px */
    .sidebar {
    margin-right: 42px;
    }
}

/* ---- widget: blog post archive (case studies) ---- */
.sidebar-linklist__item__button {
    padding: 10px 18px 10px 21px;
}
.sidebar-linklist__item__button:before {
    content: url(../images/icon_singular-arrow--green.svg);
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: calc(7px + 0.2em);
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}
.sidebar-linklist__item:hover .sidebar-linklist__item__button:before {
    -webkit-animation: arrows-slide .300s cubic-bezier(0.280, 0, 0.720, 1) normal;
            animation: arrows-slide .300s cubic-bezier(0.280, 0, 0.720, 1) normal;
}
.post-sidebar-archive-list__item--expanded:hover .sidebar-linklist__item__button:before {
    animation: none;
}
.post-sidebar-archive-list__item--expanded .sidebar-linklist__item__button:before,
.sidebar-linklist__item:hover .sidebar-linklist__item__button:before{
    left: 0;
}
.sidebar-linklist__item__sublist {
    padding: 0;
}
.sidebar-linklist__item {
    border-bottom: none;
}
.sidebar-linklist__item__sublist__item a {
    color: #333;
    padding: .25em .25em .25em 1.5em;
    border-left: 5px solid #009B7A;
}
.sidebar-linklist__item__sublist__item:hover a {
    padding: .25em .25em .25em 1em;
    border-left: 5px solid #A0CE67;
}
.sidebar-linklist__item__sublist__item__link:before {
    content: none;
}
.sidebar-linklist__item__sublist__item__link:hover {
    background: none;
}



/* ---- widget: blog post single (case studies) ---- */
.widget-CaseStudy {
    background: #009B7A;
    color: #fff;
    padding: 21px;
}

.line-decal--case-study {
    background-color: #fff;
    position: absolute;
    left: -21px;
    top: 100%;
    width: calc(80% + 21px);
}

.widget-CaseStudy header{
    margin-bottom:28px;
}

.sidebar-link--block {
    display: inline-block;
    float: right;
}

.widget-CaseStudy h4 {
    margin: 0 0 1.5rem 0;
    font-size: 1.1em;
    font-weight: 700;
}

.widget-CaseStudy p {
    line-height: 1.75;
}

.widget-CaseStudy .sidebar-link--block p   {
    line-height: 1.5;
}


/* ---- Catch all ---- */
.sidebar .widget {
    margin-bottom: 25px;
}

/* ---- Related Links ---- */
.widget-RelatedLinks {
    margin-bottom: 25px;
}

.widget-RelatedLinks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-RelatedLinks a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 9px 0;
}


/* - Depth 1 - */
.widget-RelatedLinks li.depth1 {
    position: relative;
    padding-right: 42px;
}
.widget-RelatedLinks li.depth1:last-child {
    border-bottom: none;
}
.widget-RelatedLinks li.depth1 > a {
    padding: 10px 0px 10px 21px ;
    border-left: 10px solid #009B7A;
    color: #333;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.widget-RelatedLinks li.depth1 > a:after {
    content: url(../images/icon_double-arrows--nav-green.svg);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 42px);
    right: 0;
    width: 42px;
    height: 42px;
    padding: 14px;
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.widget-RelatedLinks li.depth1 > a:before {
    content: url(../images/icon_double-arrows--nav-green--hover.svg);
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 42px);
    right: 0;
    width: 42px;
    height: 42px;
    padding: 14px;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.widget-RelatedLinks li.depth1 > a:hover::after {
    opacity: 0;
}
.widget-RelatedLinks li.depth1 > a:hover::before {
    opacity: 1;
}

.widget-RelatedLinks li.depth1 > a:hover {
    padding: 10px 0px 10px 10px;
}
/* On */
.widget-RelatedLinks li.depth1.on > a {
    border-left: 10px solid #A0CE67;
    padding-left: 21px;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.widget-RelatedLinks li.depth1.on > a:hover {
    padding-left: 10px;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}


/* - Depth 2 - */
.widget-RelatedLinks li.depth2 {
    font-size: 1.4rem;
    border-left: 10px solid #009B7A;
}
.widget-RelatedLinks li.depth2 a:before {
    content: "- ";
    padding-right: 10px;
    -webkit-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.widget-RelatedLinks li.depth2 a {
    padding: 3px 0 3px 28px;
    color: #555;
}

/* Hover */
.widget-RelatedLinks li > a:hover {
    padding: 3px 0 3px 28px;
}
.widget-RelatedLinks li.depth2 a:hover::before {
    content: "- ";
    padding-right: 0;
}

/* On */
.widget-RelatedLinks li.depth2.on > a {
    color: #009B7A;
    font-weight: bold;
}

/* Ancestor */
.widget-RelatedLinks li.depth1.ancestor > a {
    border-left: 10px solid #A0CE67;
}


/* ---- Simple Image Gallery ---- */
.widget-GallerySimple {
    margin: 15px -10px;
}

.widget-GallerySimple h3 {
    padding: 10px;
}

.widget-GallerySimple .gallery-simple-thumb {
    width: 33.333%;
    padding: 10px;
    float: left;
}
.widget-GallerySimple .gallery-simple-thumb img {
    width: 100%;
}

/* ---- Children Page Gallery ---- */
.children-gallery-list {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 0;
}

.widget-ChildrenGallery .children-gallery-list-item {
    margin-bottom: 25px;
    position: relative;
}

.widget-ChildrenGallery .children-gallery-list-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.widget-ChildrenGallery .children-gallery-list-item-link:hover {
    text-decoration: underline;
}

.widget-ChildrenGallery .children-gallery-list-item-image {
    margin-bottom: 10px;
}

.children-gallery-list-item-image-placeholder {
    padding-top: 86.666666667%;
    margin-bottom: 10px;
    position: relative;
    background: rgba(0, 0, 0, 0.05) no-repeat center center;
    background-image: url(../images/logo_m--white.svg);
    background-size: 120px auto;
}

.widget-ChildrenGallery .children-gallery-list-item-link:hover .children-gallery-list-item-image {
    opacity: 0.9;
}

.widget-ChildrenGallery .children-gallery-list-item-title {
    margin: 0;
}

.widget-ChildrenGallery .children-gallery-list-item-anchor {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/* ---- Share links ---- */
.share-links {
    margin: 0 0 20px;
}
.share-link {
    display: inline-block;
    margin: 0 5px 0 0;
}
.share-link:last-child {
    margin-right: 0;
}
.share-link a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    padding: 5px;
    position: relative;
}
.share-link img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 22px;
}
.share-link a:hover {
    opacity: 0.9;
}


/* Facebook */
.share-link.share-link--facebook a {
    background-color: #3e5b98;
}

/* Twitter */
.share-link.share-link--twitter a {
    background-color: #4da7de;
}

/* Email */
.share-link.share-link--email a {
    background-color: #444;
}

/* LinkedIn */
.share-link.share-link--linkedin a {
    background-color: #3371b7;
}

/* ---- Sponsors module ---- */

.sponsors-list__item-link {
    text-decoration: none;
}

.sponsors-list__img-wrap {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px;
    position: relative;
    margin-bottom: 8px;
}

.sponsors-list__img-wrap:after {
    content: " ";
    position: absolute;
    background-color: #009B7A;
    height: 10px;
    width: 50%;
    left: 25%;
    top: calc(100% - 10px);
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.sponsors-list__item-link:hover .sponsors-list__img-wrap:after {
    width: 100%;
    left: 0;
}

.sponsors-list__img-wrap:before {
    content: "";
    display: block;
    padding-top: 100%;  /* initial ratio of 1:1*/
}

.sponsors-list-item-name {
    color: #555;
    font-size: 1.25em;
}

.sponsors-list__img-wrap__vert-center {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    overflow: hidden;
    transition: all 500ms ease-in-out;
}

.sponsors-list-item__image {
    display: inline-block;
    margin: 0 auto;
    max-height: 100%;
}

/* ---- blog hub module ---- */
.post-hub__item {
    padding: 21px;
    position: relative;
    margin: 7px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.post-hub__item:before {
    content: "";
    position: absolute;
    background-color: #009B7A;
    height: 10px;
    width: calc(75% - 28px);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 250ms ease-in-out;
    z-index: 1;
}
.post-hub__item:after {
    content: "";
    position: absolute;
    background-color: #009B7A;
    height: 10px;
    width: 75%;
    left: 25%;
    top: calc(100% - 10px);
    right: 0;
    bottom: 0;
    transition: all 250ms ease-in-out;
    z-index: 1;
}
.post-hub__item:hover:after {
    width: 100%;
    left: 0;
}
.post-hub__item:hover:before {
    width: 100%;
}
.post-hub__img-wrap {
    background: rgba(0, 0, 0, 0.05) no-repeat center center;
    background-image: url(../images/logo_m--white.svg);
    background-size: 120px auto;
}

.post-hub__body h2{
    font-size: 2.1rem;
    margin-top: 14px;
}

.post-hub__body h2 a{
    color: #555;
    text-decoration: none;
}

.post-hub__body h2:hover a{
    text-decoration: underline;
}
.post-hub__body p {
    line-height: 1.75;
}

.post-hub-filterlist {
    display: block;
    list-style-type: none;
    padding: 0 0 0 0;
}
.post-hub-filterlist__item {
    display: inline-block;
}
.post-hub-filterlist__button,
.post-view__cloud--categories a.button {
    background-color: #A0CE67;
    color: #fff;
    font-weight: bold;
    padding: 7px 28px 7px 14px;
    font-size: 0.9em;
}
.post-hub-filterlist__button:before,
.post-view__cloud--categories a.button:before {
    content: none;
}
.post-hub-filterlist__button:hover,
.post-view__cloud--categories a.button:hover {
    background-color: #88AF57;
}
.post-hub-filterlist__button:after,
.post-view__cloud--categories a.button:after {
    content: " ";
    background: url(../images/icon_singular-arrow--white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    background-color: transparent;
    width: 21px;
    height: 21px;
    position: absolute;
    border: none;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    left: calc(100% - 26px);
    top: calc(50% - 10.5px);
    transition: all 250ms ease-in-out;
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
    border-radius: 35px;
    z-index: 1;
}
.post-hub-filterlist__button:hover:after,
.post-view__cloud--categories a.button:hover:after {
    left: calc(100% - 23px);
    background-color: transparent;
    width: 21px;
    padding-left: 0;
}

.post-view__cloud--categories a.button {
    margin: 0 3.5px 7px;
}

@supports (display: flex) {
    .post-hub__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
    .post-hub__img-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
    }
    .post-hub__footer {
        -ms-flex-item-align: end;
            align-self: flex-end;
        position: absolute;
        top: calc(100% - 61px);
        right: 21px;
    }
}
.post-hub__img, .post-hub__img-placeholder {
    width: calc(100% - 42px);
    margin: 21px;
}
.post-hub__img-link {
    position: static;
}
.post-hub__body {
    margin-bottom: 49px;
}
.post-hub__body p {
    margin-bottom: 0;
}

.post-hub .col-xs-12 {
    max-width: calc(100% - 14px);
}


/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    .post-hub .col-sm-6 {
        max-width: calc(50% - 14px);
    }
}
/* BP Medium */
@media only screen and (min-width: 62em) { /* 992px */
    .post-hub .col-md-4 {
        max-width: calc(33.333% - 14px);
    }
    @supports (display: flex) {
        .post-hub__body {
            margin-bottom: 42px;
        }
    }
    .post-hub-filterlist__button {
        padding: 10px 35px 10px 20px;
    }
    .post-hub-filterlist__button:after {
        width: 35px;
        height: 35px;
        left: calc(100% - 37.5px);
        top: calc(50% - 17.5px);
    }
    .post-hub-filterlist__button:hover:after {
        left: calc(100% - 34px);
        width: 35px;
    }
}

/* ---- Order Form ---- */
.widget-OrderForm .product {
    width: 30%;
    margin-right: 5%;
    float: left;
}
.widget-OrderForm .product:nth-child(3n+3) {
    margin-right: 0;
}

/* ---- Videos ---- */
.tinymce-media-iframe,
.widget-Video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    clear: both;
}

.tinymce-media-iframe iframe,
.widget-Video iframe,
.widget-Video object,
.widget-Video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    border: 0;
}

.tinymce-media-iframe {
    margin: 2rem 0;
}

/* ---- Map Directions ---- */
.widget-MapDirections .directions-form {
    padding: 20px 25px;
    background: #f0f0f3;
    margin: 25px 0;
}
.widget-MapDirections .directions-list {
    padding: 20px 25px;
    background: #f0f0f3;
    margin: 25px 0;
}


/* ---- reCAPTCHA ---- */
.g-recaptcha {
    padding-bottom: 15px;
}

/* ------------------------------------------------------
**** Page Sections
------------------------------------------------------ */
/* ---- General ---- */
.section__heading--inline {
    display: inline-block;
    float: left;
}

.section__heading--inline h2{
    display: inline-block;
    margin: 0 0 0 0;
}

.section__heading--inline a{
    text-decoration: none;
    color: #333;
}

.section__heading--inline h2:hover a{
    text-decoration: underline;
}

@media screen and (min-width: 48em) { /* 768px */
    .section__heading--inline {
        padding: 7px 0;
    }
    .section__heading--inline h2{
        margin: 0 0 0 0;
    }
}

/* ---- Article Feature ---- */
.section--article-features {
    padding-bottom: 7px;
}

.section--article-features .line-decal {
    display: none;
}

.article-features__header .line-decal {
    display: block;
}

.section--article-features .line-decal--right {
    margin-top: 0;
}
.article-features__header {
    margin-bottom: 28px;
    display: block;
}

.article-features__link {
    display: none;
}

.article-features__navigation {
    list-style-type: none;
}

.article-features__content__heading {
    margin: 1em 0 0.5em 0;
    font-weight: bold;
}

.article-features__navigation__item {
    list-style: none;
    display: inline-block;
}

.article-features__navigation__item {
    border-left: 1px solid rgba(0,0,0,.5) ;
}

.article-features__navigation__item:first-child {
    border-left: 0;
}

.article-features__navigation__item a {
    padding: 0 8px;
}

.article-features__img {
    margin-bottom: 20px;
}

.article-features__content__link {
    float: right;
}

.article-feature-item-image-placeholder {
    min-height: 160px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 75%;
    position: relative;
    background: rgba(0, 0, 0, 0.05) no-repeat center center;
    background-image: url(../images/logo_m--white.svg);
    background-size: 120px auto;
}


@media screen and (min-width: 48em) { /* 768px */
    .section--article-features {
        padding-bottom: 42px;
    }
    .section--article-features .line-decal {
        display: block;
    }
    .article-features__header .line-decal {
        display: none;
    }
    .article-features__header {
        margin-bottom: 7px;
    }
    .article-features__link {
        display: none;
        padding: 11px 0 0 0;
    }
    .article-features__navigation {
        text-align: right;
    }
    .article-features__img {
        margin-bottom: 0;
    }
    .article-features__link {
        display: inline-block;
        float: right;
    }
    .article-feature-item-image-placeholder {
        min-height: 260px;
        width: 100%;
    }
}

@media screen and (min-width: 62em) { /* 992px */
    .article-features__header .section__heading--inline .subheader {
        display: none;
    }

    .article-features__header .section__heading--inline .subheader {
        display: none;
    }
    .article-features__content {
        margin-top: 14px;
    }
    .article-features__header--js {
        height: 42px;
    }

    .article-features__content__img img {
        margin-top: 14px;
    }

    @supports (display: flex) {
        .article-features__row,
        .article-features__content {
            display: flex;
            flex-flow: row wrap;
            align-items: stretch;
        }
        .article-features__content .row {
            display: flex;
            flex-flow: row wrap;
            align-items: stretch;
            width: 100%;
        }
        .article-features__content__img img {
            margin-top: 0;
        }
        .article-features__content__description {
            height: 100%;
            display: flex;
            flex-flow: column wrap;
            align-items: stretch;
            justify-content: center;
        }
    }

}
@media only screen and (min-width: 75em) { /* 1200px */

}

/* ---- Content Gallery ---- */
.section--content-gallery {
    padding-top: 7px;
}

.container--content-gallery__items {
    position: relative;
    padding-top: 14px;
}

.content-gallery__items {
list-style-type: none;
margin: 0 auto;
padding: 0 0 0 0;
position: relative;
}

.content-gallery__items__item {
    margin-bottom: 30px;
    margin: 10px;
}

.content-gallery__items__item__img {
    display: block;
    width: 100%;
    height: auto;
}

.content-gallery__items__button--top {
    display:none;
    float:right;
}

.content-gallery__items__button--bottom {
    display:inline-block;
    float:right;
}

.section--content-gallery .slick-arrow {
    height: 14px;
    top: 45%;
}

.section--content-gallery .slick-prev,
.section--content-gallery .slick-next {
    background: url(../images/icon_singular-arrow--grey.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}


.section--content-gallery .slick-prev {
transform: rotate(180deg);
right: 98%;
}

.section--content-gallery .slick-next {
left: 98%;
}

@supports (display: flex) {
    .content-gallery__items .slick-track {
        display: flex;
        align-items: center;
    }
}

/* BP Extra extra extra small */
@media only screen and (min-width: 25em) { /* 400px */
    .section--content-gallery .slick-prev {
    transform: rotate(180deg);
    right: 99%;
    }

    .section--content-gallery .slick-next {
    left: 99%;
    }
}

/* BP Extra small */
@media only screen and (min-width: 37.5em) { /* 600px */
    .section--content-gallery .slick-prev {
    transform: rotate(180deg);
    right: 100%;
    }

    .section--content-gallery .slick-next {
    left: 100%;
    }
}

@media screen and (min-width: 48em) { /* 768px */
    .container--content-gallery__items {
        padding-top: 0;
    }

    .content-gallery__items__button--top {
        display:inline-block;
        float:right;
    }
    .content-gallery__items__button--bottom {
        display:none;
        float:right;
    }
    .section--content-gallery {
        padding-top: 42px;
    }
}

@media screen and (min-width: 62em) { /* 992px */
    .section--content-gallery .section__heading--inline .subheader {
        display: none;
    }
}

/* ------------------------------------------------------
**** Slick slider
------------------------------------------------------ */
.hero-banner--slider__list,
.slick-list,
.slick-track {
    height: 100%;
}

.slick-slide img {
    margin-left: auto;
    margin-right: auto;
    max-height: 160px;
}

.slick-slider ul {
    padding: 0 0 0 0;
}

.slick-dots {
    float: right;
}
.slick-dots li{
    display: inline-block;
}
.slick-dots button{
    border-radius: 50%;
    -webkit-box-shadow: rgba(0,0,0,0.8) 0px 0 10px;
     -moz-box-shadow: rgba(0,0,0,0.8) 0 0 10px;
     box-shadow: rgba(0,0,0,0.8) 0 0 10px;
    color: transparent;
    width: 17px;
    height: 17px;
    margin: 0 4px;
    background-color: #fff;
    border: none;
    outline: none;
}

.slick-dots .slick-active button {
    background-color: #A0CE67;
}
.slick-arrow {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 40%;
    z-index: 2;
    color: transparent;
    border: none;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
    outline: none;
}

.slick-prev,
.slick-next {
    background: url(../images/icon_singular-arrow--shadow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.slick-prev {
right: 90%;
transform: rotate(180deg);
}

.slick-next {
left: 90%;
}

/* BP Extra extra extra small */
@media only screen and (min-width: 25em) { /* 400px */
    .slick-prev {
    right: 93%;
    }

    .slick-next {
    left: 93%;
    }
}

@media only screen and (min-width: 37.5em) { /* 600px */
    .slick-prev {
    right: 94.5%;
    }

    .slick-next {
    left: 94.5%;
    }
    .slick-slide img {
        height: auto;
    }
}

/* BP Small */
@media only screen and (min-width: 48em) { /* 768px */
    .slick-arrow {
        top: 53%;
    }
    .slick-prev {
    right: 96%;
    }

    .slick-next {
    left: 96%;
    }
}

/* ------------------------------------------------------
**** Print styles
------------------------------------------------------ */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /* Don't show links for images, or javascript/internal links */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
