/*
 * General Reset CSS
 * ---
 */
/*
 * @section Document
 * ----
 * 1. Prevent adjustments of font size after orientation changes in iOS.
 * 2. Use a better box model (opinionated).
 */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    }

/**
 * Use a more readable tab size (opinionated).
 */
:root {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    }

/**
 * @section Body
 * ---
 * 1. Remove the margin in all browsers.
 * 2. Default to sans-serif font for readability (opinionated).
 */
body {
    margin: 0;
    }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
    }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
    }

/* Address differences between Firefox and other browsers. */
hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace,serif;
    font-size: 1em;
    }

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }
sub {
    bottom: -.25em;
    }
sup {
    top: -.5em;
    }

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: .35em .75em .625em;
    }

/*
 * 1. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    padding: 0;
    }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    }

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

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
    }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
    }
html,
body {
    padding: 0;
    margin: 0 auto auto auto;
    }
.large {
    font-size: 120%;
    }
.larger {
    font-size: 150%;
    }
.light {
    opacity: .7;
    }
.lighter {
    opacity: .5;
    }

/*
	Headings & Paragraphs
	---------------------
	Please do not set paragraphs to have a margin and padding of zero
	as this makes life more difficult when dealing with CMS content.
	Some areas of the template will require a padding of zero, you
	should set these separately.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0 0 .2em;
    }
p {
    padding: 0;
    margin: 0 0 1em;
    }
p.last-paragraph,
.evEditable p.last-paragraph {
    margin-bottom: 0;
    }

/*
	Links:
	------
	The style and colouring of links is specific to each site.
	The styles below are purely for shared styles.
*/
a:link,
a:visited {
    text-decoration: none;
    }
a:hover,
a:active,
a:focus {
    text-decoration: underline;
    }

/*
	Lists: Unordered and Ordered
	----------------------------
	These are the styles for generic bog standard lists whether
	ordered or unordered. You should customise these settings only
	if they are to be the styles for the bog standard only.
*/
ul,
ol {
    margin: 0;
    padding: 0 0 0 25px;
    }
ul li,
ol li {
    list-style-position: outside;
    padding: .2em 0 .2em 0;
    }
ol {
    list-style-type: decimal;
    }
ul {
    list-style-type: disc;
    }

/*
 * Alignment
 * ---------
 * Various classes for alignment
 */
.alignLeft,
.align-left {
    text-align: left;
    }
.alignCenter,
.align-center {
    text-align: center;
    }
.alignRight,
.align-right {
    text-align: right;
    }
.vAlignMiddle {
    vertical-align: middle;
    }
.vAlignTop {
    vertical-align: top;
    }
.vAlignBottom {
    vertical-align: bottom;
    }

/*
 * .clear-after
 * ------------
 * This is a really handy piece of css
 * that enables us to clear floats without
 * the need for adding unecessary code
 * instead of doing this:
 * 		<div class="float-left"></div>
 * 		<div class="clear"></div>
 * do this:
 * 		<div class="float-left clear-after"></div>
 */
.clear-after:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.clear-after {
    display: block;
    }

/* Standard clears */
.clear-left {
    clear: left;
    }
.clear-right {
    clear: right;
    }
.clear {
    clear: both;
    }

/*
 * Forms
 * -----
 */
option {
    padding: 5px;
    }
label {
    display: inline-block;
    vertical-align: middle;
    margin: 4px 3px;
    }
.fieldContainer {
    border: 0;
    margin: 0;
    padding: 10px;
    }
.fieldContainer header,
.fieldContainer footer,
.fieldArea {
    padding: 10px;
    }
.fieldHeader {
    padding: 20px 20px 10px 20px;
    }
.fieldFooter {
    padding: 10px 20px 20px 20px;
    }
.fieldButtons {
    text-align: right;
    }
table.fieldArea {
    width: 100%;
    padding: 0;
    }
table.fieldArea > tr > td,
table.fieldArea > tbody > tr > td {
    padding: 4px;
    }
.table {
    display: table;
    width: 100%;
    }
.table.fixed {
    table-layout: fixed;
    }
.table .cell {
    display: table-cell;
    vertical-align: middle;
    }

/*
 * Columns
 * -------
 * Standard column set-up and widths
 */
.row,
.column,
.column1of4,
.column1of2,
.column3of4,
.column1of3,
.column2of3,
.column1of5,
.column2of5,
.column3of5,
.column4of5 {
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.row {
    clear: both;
    width: 100%;
    }
.full-width {
    width: 100%;
    }
.column1of4 {
    width: 25%;
    }
.column1of2 {
    width: 50%;
    }
.column3of4 {
    width: 75%;
    }
.column1of3 {
    width: 33.333333%;
    }
.column2of3 {
    width: 66.666666%;
    }
.column1of5 {
    width: 20%;
    }
.column2of5 {
    width: 40%;
    }
.column3of5 {
    width: 60%;
    }
.column4of5 {
    width: 80%;
    }

/*
	Responsive Stuff
*/
.gridContainer:after,
.bodyContainer:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.gridContainer,
.bodyContainer {
    display: block;
    }
.grid1of2,
.grid2of3,
.grid1of3,
.grid1of4,
.grid3of4 {
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.grid1of2 {
    width: 50%;
    }
.grid1of3 {
    width: 33.333333%;
    }
.grid2of3 {
    width: 66.666666%;
    }
.grid1of4 {
    width: 25%;
    }
.grid3of4 {
    width: 75%;
    }
@media screen and (max-width: 43.75em) {
.grid1of3 {
    width: 50%;
    }
.grid2of3 {
    width: 50%;
    }
.grid1of4 {
    width: 50%;
    }
.grid3of4 {
    width: 50%;
    }
}

@media screen and (max-width: 31.25em) {
.grid1of2 {
    width: 100%;
    }
.grid1of3 {
    width: 100%;
    }
.grid2of3 {
    width: 100%;
    }
.grid1of4 {
    width: 100%;
    }
.grid3of4 {
    width: 100%;
    }
}

/*
 * .clickable
 * ----------
 * Tell users that any element is clickable
 */
.clickable {
    cursor: pointer;
    }

/*
 * Floats
 * ------
 */
.floatLeft,
.float-left {
    float: left;
    }
.floatRight,
.float-right {
    float: right;
    }

/*
 * .mask
 * -----
 * Used by many interactive areas of Evance.
 * Sets most of the requirements for masked areas.
 */
.mask {
    overflow: hidden;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    }

/*
 * Padding and margins
 * -------------------
 * These are the standard Evance settings,
 * but these can be overwritten in themes
 */
.halfpad {
    padding: 5px;
    }
.stdpad {
    padding: 10px;
    }
.doublepad,
.contentBlock,
.headerContainer {
    padding: 20px;
    }
.tabsContainer {
    padding: 10px 20px 0 20px;
    }
.nopadv {
    padding-top: 0;
    padding-bottom: 0;
    }
.nopadh {
    padding-left: 0;
    padding-right: 0;
    }
.nopadl {
    padding-left: 0;
    }
.nopadr {
    padding-right: 0;
    }
.nopadt {
    padding-top: 0;
    }
.nopadb {
    padding-bottom: 0;
    }
.halfpadh {
    padding: 0 5px;
    }
.halfpadt {
    padding-top: 5px;
    }
.halfpadb {
    padding-bottom: 5px;
    }
.halfpadl {
    padding-left: 5px;
    }
.halfpadr {
    padding-right: 5px;
    }
.halfpadv {
    padding: 5px 0;
    }
.stdpadh {
    padding: 0 10px;
    }
.stdpadt {
    padding-top: 10px;
    }
.stdpadb {
    padding-bottom: 10px;
    }
.stdpadl {
    padding-left: 10px;
    }
.stdpadr {
    padding-right: 10px;
    }
.stdpadv {
    padding: 10px 0;
    }
.doublepadh {
    padding: 0 20px;
    }
.doublepadt {
    padding-top: 20px;
    }
.doublepadb {
    padding-bottom: 20px;
    }
.doublepadl {
    padding-left: 20px;
    }
.doublepadr {
    padding-right: 20px;
    }
.doublepadv {
    padding: 20px 0;
    }
.halfmar {
    margin: 5px;
    }
.stdmar {
    margin: 10px;
    }
.doublemar {
    margin: 20px;
    }
.nomarv {
    margin-top: 0;
    margin-bottom: 0;
    }
.nomarh {
    margin-left: 0;
    margin-right: 0;
    }
.nomart {
    margin-top: 0;
    }
.nomarr {
    margin-right: 0;
    }
.nomarb {
    margin-bottom: 0;
    }
.nomarl {
    margin-left: 0;
    }
.halfmarh {
    margin: 0 5px;
    }
.halfmart {
    margin-top: 5px;
    }
.halfmarb {
    margin-bottom: 5px;
    }
.halfmarl {
    margin-left: 5px;
    }
.halfmarr {
    margin-right: 5px;
    }
.halfmarv {
    margin: 5px 0;
    }
.stdmarh {
    margin: 0 10px;
    }
.stdmart {
    margin-top: 10px;
    }
.stdmarb {
    margin-bottom: 10px;
    }
.stdmarl {
    margin-left: 10px;
    }
.stdmarr {
    margin-right: 10px;
    }
.stdmarv {
    margin: 10px 0;
    }
.doublemarh {
    margin: 0 20px;
    }
.doublemart {
    margin-top: 20px;
    }
.doublemarb {
    margin-bottom: 20px;
    }
.doublemarl {
    margin-left: 20px;
    }
.doublemarr {
    margin-right: 20px;
    }
.doublemarv {
    margin: 20px 0;
    }

/*
 * Standard Tables
 */
table.standard {
    width: 100%;
    }
table.standard td,
table.standard th {
    vertical-align: middle;
    padding: 5px;
    }
.ev-swatch {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid #aaa;
    vertical-align: middle;
    margin-right: 5px;
    background-size: cover;
    }
.ev-swatch-code {
    font-family: monospace;
    display: inline-block;
    }
table.ev-cart-attributes tr td {
    border: none;
    padding: 3px 10px 3px 0 !important;
    }
.subtitle {
    font-size: 125%;
    }
.text-narrow {
    max-width: 36rem;
    margin: 0 auto;
    }
#evAccountScreen .aside.evAccountMenu {
    float: left;
    width: 220px;
    padding: 20px;
    }
#evAccountScreen .main.evAccountPage {
    margin-left: 240px;
    }
@media (max-width: 900px) {
#evUserSummary,
#evUserAddress {
    float: none;
    width: auto;
    }
}

@media (max-width: 700px) {
#evAccountScreen .aside.evAccountMenu {
    float: none;
    width: auto;
    }
#evAccountScreen .main.evAccountPage {
    margin-left: auto;
    }
}

#evAuthLoginArea,
#evCheckoutLoginArea {
    background-color: #fafafa;
    border-radius: 3px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    }
#evAuthDeduplicate .order {
    margin: 20px auto 0;
    width: auto;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 3px;
    -webkit-box-shadow: 2px 3px 10px rgba(0,0,0,.2);
    box-shadow: 2px 3px 10px rgba(0,0,0,.2);
    }
#storeFinderMapContainer {
    position: relative;
    width: 100%;
    height: 500px;
    }
#storeFinderMap-canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }
#reviewList .table-row-group {
    display: table-row-group;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    }
#reviewList .table-row-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
    }
#reviewList .table-cell {
    padding: 10px;
    }
#reviewList .table-cell:first-child {
    padding-left: 0;
    }
#reviewList .table-cell:last-child {
    padding-right: 0;
    }
#reviewList .reviewer,
#reviewList .review_rating {
    white-space: nowrap;
    }
.review_rating.x24 .icon {
    font-size: 24px;
    }
#reviewList dl {
    margin: 0;
    }
#reviewList dt {
    float: left;
    clear: left;
    font-weight: bold;
    }
#reviewList dt.pros {
    color: #4db538;
    }
#reviewList dt.cons {
    color: #be3535;
    }
#reviewList dt .label {
    display: none;
    }
#reviewList dd {
    margin-left: 24px;
    margin-bottom: 5px;
    }
#reviewList dd:last-child {
    margin-bottom: 0;
    }
#reviewList dd .no-comment {
    opacity: .9;
    font-style: italic;
    }
#reviewList .voteCount,
#reviewList .voteForm {
    display: inline-block;
    vertical-align: middle;
    }
#reviewList .voteForm span.evLangid {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    }
#reviewList .voteForm,
#reviewList .reported {
    white-space: nowrap;
    }
#reviewList .reported form > span.evLangid {
    margin-right: 5px;
    }
#reviewForm {
    margin-top: 20px;
    }
#reviewForm h6,
#reviewForm p {
    margin-bottom: 0;
    }
#reviewForm form .fieldArea {
    padding: 10px 0;
    }
#evTicketForm .eventTicket > td {
    vertical-align: bottom;
    }
#evTicketForm .eventTicketPrice {
    line-height: 40px;
    }
@media (max-width:1024px) {
#evTicketForm .eventTickets,
#evTicketForm .eventTicket,
#evTicketForm .eventTicket > td:first-of-type {
    display: block;
    }
#evTicketForm .eventBookingButton {
    padding-top: 20px;
    }
}

@media (max-width:500px) {
#evTicketForm .eventTicket > td {
    display: block;
    }
#evTicketForm .eventTicketPrice {
    line-height: inherit;
    text-align: right;
    }
}

#evLegalAgreementPage {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    }
#evLegalAgreementPage .evLegalAgreementWrapper {
    display: block;
    overflow: auto;
    padding: 40px;
    max-height: 50vh;
    }
#evLegalAgreementPage form {
    text-align: center;
    }
.evProductCustomisation .customisation {
    padding: 10px;
    }
.evProductCustomisation .customisation .header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    }
.evProductCustomisation .customisation .header > * {
    padding: 10px 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    }
.evProductCustomisation .customisation .header label {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
.evProductCustomisation .customisation .header .price {
    padding: 10px 20px;
    }
.evProductCustomisation .customisation .field .switch {
    padding-bottom: 20px;
    }
.evProductCustomisation .title {
    font-weight: bold;
    }
.evProductCustomisation .swatch {
    display: inline-block;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #aaa;
    vertical-align: middle;
    }
.evProductCustomisation .swatch > img {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    }
.evProductCustomisation .option {
    background-color: #fff;
    border-bottom: 1px solid #efefef;
    }
.evProductCustomisation .option label {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    padding: 10px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    }
.evProductCustomisation .option label > * {
    padding: 10px;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    }
.evProductCustomisation .option label .label {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
.evProductCustomisation .option label .title {
    font-weight: bold;
    }
.evProductCustomisation .option label .description {
    display: block;
    }
.evProductCustomisation .option label .price {
    white-space: nowrap;
    }
.evProductCustomisation .option .volumePrices {
    text-align: right;
    }
.evProductCustomisation .option .volumePrices table {
    display: inline-block;
    margin: -10px;
    }
.evProductCustomisation .option .volumePrices table td {
    padding: 10px;
    }
.positionStickyTop {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    }

/*
	evButton: Standard Buttons
	---------------------------
	This defines the standard buttons for the system. These buttons may be used with <a> or <button> elements.
	These take the form of:
	* <ev:button /> (<a />)
	* <ev:submit /> (<button />)
*/
.evButton,
.evButton > .label {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: left;
    width: auto;
    overflow: visible;
    position: relative;
    height: 30px;
    line-height: 28px;
    outline: 0;
    }
.evButton {
    vertical-align: middle;
    white-space: nowrap;
    border-color: #D9D9D9;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    padding: 0 7px;
    background-color: rgba(255,255,255,.5);
    }
.evButton > .label {
    padding: 0 5px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    }
.evButton:hover,
.evButton.hover,
.evButton:focus,
.evButton.focus {
    text-decoration: none;
    border-color: #B0B2B5;
    }
.evButton:active,
.evButton.active {
    text-decoration: none;
    border-color: #C0C2C4;
    background-color: #eee;
    }
.evButton > .label > .title {
    font-weight: bold;
    font-size: 12px;
    }
.open > .evButton {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    }

/*
	Disabled Buttons
	----------------
	Modifiers to disable a button.

	Usage:
	<ev:button disabled="disabled" />
	<ev:submit disabled="disabled" />
*/
.evButton.disabled,
.evButton.disabled > .label,
.evButton.disabled > .icon {
    cursor: default;
    }
.evButton.disabled > .icon {
    opacity: .4;
    }
.evButton.disabled > .label {
    color: #999;
    }

/*
	Coloured Buttons
	----------------
	Classes to give buttons a different look, but with same dimensions.

	Usage:
	<ev:button class="evButtonCancel" />
	<ev:submit class="evButtonCancel" />
*/
/*  Red Button  */
.evButtonCancel {
    background: #ff3019;
    border-color: #cf0404;
    }
.evButtonCancel:hover,
.evButtonCancel.hover,
.evButtonCancel:focus,
.evButtonCancel.focus {
    background: #cf0404;
    }
.evButtonCancel:active,
.evButtonCancel.active {
    background: #A00303;
    }
.evButtonCancel > .label,
.evButtonCancel > .icon {
    color: #fff;
    }

/*  Green Button  */
.evButtonProceed {
    background: #13c100;
    border-color: #1C7305;
    }
.evButtonProceed:hover,
.evButtonProceed.hover,
.evButtonProceed:focus,
.evButtonProceed.focus {
    background: #1C7305;
    }
.evButtonProceed:active,
.evButtonProceed.active {
    background: #0D7500;
    }
.evButtonProceed > .label,
.evButtonProceed > .icon {
    color: #fff;
    }

/*  Blue Button  */
.evButtonAction {
    background: #4096ee;
    border-color: #3079ed;
    }
.evButtonAction:hover,
.evButtonAction.hover,
.evButtonAction:focus,
.evButtonAction.focus {
    background: #3079ed;
    }
.evButtonAction:active,
.evButtonAction.active {
    background: #357ae8;
    }
.evButtonAction > .label,
.evButtonAction > .icon {
    color: #fff;
    }

/*
	evTextField
	------------
	CSS for:
	* UI object Evml TextField
	* <ev:textfield />
*/
.evTextField,
.evTextField > span,
.evTextField > .evTextFieldInput > input,
.evTagField {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    }
.evTextField,
.evTagField {
    vertical-align: middle;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 2px;
    border-color: #C0C0C0;
    border-width: 1px;
    border-style: solid;
    display: table;
    width: 100%;
    }
.evTextField > span {
    display: table-cell;
    vertical-align: middle;
    border-collapse: collapse;
    border-spacing: 0;
    }
.evTextField > .evTextFieldIcon {
    padding-left: 5px;
    }
.evTextField > .evTextFieldPostfix {
    padding-right: 5px;
    }
.evTextField > .evTextFieldInput {
    width: 100%;
    }
.evTextField:hover,
.evTextField.focus,
.evTagField:hover,
.evTagField.focus {
    -webkit-box-shadow: inset 0 1px 3px #ddd;
    box-shadow: inset 0 1px 3px #ddd;
    }
.evTextField > .evTextFieldInput > input {
    background-color: transparent;
    position: relative;
    top: 0;
    padding: 6px 5px;
    text-indent: 0;
    text-align: left;
    height: auto;
    line-height: normal;
    outline: none;
    color: #444;
    vertical-align: middle;
    width: 100%;
    display: block;
    }
input::-webkit-input-placeholder {
    color: #aaa;
    }
input:-moz-placeholder {
    color: #aaa;
    }

/* Numeric textfield */
.evTextField.numeric > .evTextFieldInput > input {
    text-align: right;
    }

/* Autogrow */
.evTextField.autogrow,
.evTextField.autogrow > .evTextFieldInput {
    width: auto !important;
    }

/* Focused Textfields */
.evTextField.focus,
.evTagField.focus {
    border-color: #4EA8F2;
    -webkit-box-shadow: 0 0 3px #4EA8F2;
    box-shadow: 0 0 3px #4EA8F2;
    }
.evTextField.focus > .evTextFieldInput > input {
    color: #000;
    }

/* Disabled Textfields */
.evTextField.disabled {
    opacity: .5;
    }
.evTextField > .evTextFieldInput > input:disabled {
    color: #5a5a5a;
    cursor: default;
    }

/* Textfield Errors */
.evTextField.error {
    border-color: #FA8991;
    background-color: #FCEDEE;
    }
.evTextField.error > .evTextFieldInput > input {
    color: #000;
    }
.evTextField .evTextFieldPrefix {
    cursor: default;
    }
.evTextField .evTextFieldPrefix .label {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    padding: 6px 5px;
    margin: 0;
    overflow: visible;
    opacity: .7;
    }

/*
 * evCombo
 * -------
 */
.evCombo {
    position: relative;
    display: block;
    vertical-align: middle;
    }
.evComboOptions {
    position: absolute;
    background-color: #fff;
    top: 23px;
    left: 1px;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.4);
    box-shadow: 0 2px 3px rgba(0,0,0,.4);
    overflow-y: auto;
    max-height: 300px;
    z-index: 99;
    text-align: left;
    color: #000;
    }
.evComboOptions .active {
    color: #fff !important;
    background: #5b9dde;
    }
.evComboOptions li {
    cursor: pointer;
    }

/*
	evTextArea
	----------
	CSS for:
	* UI Object Evml TextArea
	* <ev:textarea></ev:textarea>
*/
.evTextArea {
    display: inline-block;
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #C0C0C0;
    width: 100%;
    }
.evTextArea:hover,
.evTextArea.focus {
    -webkit-box-shadow: inset 0 1px 3px #ddd;
    box-shadow: inset 0 1px 3px #ddd;
    }
.evTextArea.focus {
    border-color: #4EA8F2;
    -webkit-box-shadow: 0 0 3px #4EA8F2;
    box-shadow: 0 0 3px #4EA8F2;
    }
.evTextArea textarea {
    margin: 0;
    overflow-y: scroll;
    border: 0;
    padding: 5px;
    outline: none;
    line-height: 20px;
    color: #444;
    background: transparent;
    zoom: 1;
    width: 100%;
    resize: vertical;
    }
.evTextArea.focus textarea {
    color: #000;
    }
textarea::-webkit-input-placeholder {
    color: #999;
    }
textarea:-moz-placeholder {
    color: #999;
    }
.evTextArea.error {
    border-color: #FA8991;
    background-color: #FCEDEE;
    }
.evTextArea.error textarea {
    color: #000;
    }
.evTextArea .footer {
    display: table;
    color: #aaa;
    border-top: 1px solid #eee;
    width: 100%;
    }
.evTextArea .footer .cell {
    padding: 8px;
    display: table-cell;
    }
.evTextArea .counter .remaining {
    font-weight: bold;
    }
.evTextArea .highlight .remaining {
    color: #f00;
    }
.evTextArea .autosubmit {
    text-align: right;
    }

/*
	evRadio & evCheckbox
	--------------------
	version 2 of evRadio
*/
a.evRadio,
a.evCheckbox {
    white-space: nowrap;
    display: inline-block;
    padding: 0;
    margin: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #C0C0C0;
    vertical-align: middle;
    border-radius: 9px;
    font-family: 'ev2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    line-height: 15px;
    text-decoration: none;
    outline: none;
    }
a.evCheckbox {
    border-radius: 3px;
    }
a.evRadio.checked,
a.evCheckbox.checked {
    border: 1px solid #5b9dde;
    background-color: #5b9dde;
    color: #fff;
    }
a.evRadio.checked:after,
a.evCheckbox.checked:after {
    content: "\e0ef";
    }
a.evRadio.hover,
a.evRadio:hover,
a.evCheckbox.hover,
a.evCheckbox:hover {
    border: 1px solid #4EA8F2;
    -webkit-box-shadow: 0 0 3px #4EA8F2;
    box-shadow: 0 0 3px #4EA8F2;
    }

/*
	evSwitch
	--------
	version 2 of evSwitch
*/
a.evSwitch {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    background-color: #fff;
    height: 30px;
    width: 60px;
    text-decoration: none;
    font-family: 'ev2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 2px;
    outline: none;
    }
a.evSwitch .inner {
    background: -webkit-linear-gradient(top,#fff 0%,#eee 100%);
    background: linear-gradient(top,#fff 0%,#eee 100%);
    display: block;
    height: 30px;
    width: 32px;
    border-color: #D9D9D9 #D9D9D9 #C0C0C0;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: left .25s ease-in-out;
    transition: left .25s ease-in-out;
    }
a.evSwitch:hover .inner,
a.evSwitch.hover .inner,
a.evSwitch:focus .inner,
a.evSwitch.focus .inner {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.25);
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
    }
a.evSwitch:active .inner,
a.evSwitch.active .inner {
    text-decoration: none;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.4);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.4);
    border-color: #C0C2C4 #C0C2C4 #B0B2B5;
    background: -webkit-linear-gradient(top,#ddd 0%,#eee 100%);
    background: linear-gradient(top,#ddd 0%,#eee 100%);
    }
a.evSwitch.checked .inner {
    left: 28px;
    }
a.evSwitch .inner:before,
a.evSwitch .inner:after {
    position: absolute;
    height: 28px;
    line-height: 28px;
    background-color: #eee;
    display: block;
    top: 0;
    width: 28px;
    text-align: center;
    font-size: 16px;
    -webkit-box-shadow: inset 0 1px 4px rgba(0,0,0,.6);
    box-shadow: inset 0 1px 4px rgba(0,0,0,.6);
    }
a.evSwitch .inner:before {
    content: "\e0ef";
    left: -29px;
    background-color: #4db538;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    }
a.evSwitch .inner:after {
    content: "\e0f0";
    right: -29px;
    background-color: #efefef;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    color: #999;
    }

/*
 * evComment
 * ---------
 */
.evComment,
.evCommentReply {
    display: block;
    padding-left: 80px;
    position: relative;
    top: 0;
    left: 0;
    }
.evComment > .evAvatar,
.evCommentReply > .evAvatar {
    position: absolute;
    top: 0;
    left: 0;
    }
.evCommentReply {
    padding-left: 60px;
    }
.evCommentReply > .evAvatar {
    top: 14px;
    left: 14px;
    }

/*
 * evComment
 * ---------
 */
.evComment,
.evCommentReply {
    display: block;
    padding-left: 80px;
    position: relative;
    top: 0;
    left: 0;
    }
.evComment > .thumbnailImage,
.evCommentReply > .thumbnailImage {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ddd;
    border-radius: 3px;
    border: 1px solid #ccc;
    }
.evCommentReply {
    padding-left: 60px;
    }
.evCommentReply > .thumbnailImage {
    width: 40px;
    height: 40px;
    top: 14px;
    left: 14px;
    background-color: transparent;
    border: 1px solid #ddd;
    }

/*
 * evDropdown
 * ----------
 *
 */
.evDropdown {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    height: 30px;
    z-index: 1;
    }
.evDropdown > .link {
    cursor: pointer;
    display: inline-block;
    padding: 0 4px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    height: 29px;
    line-height: 28px;
    }
.evDropdown > .link.evButton {
    height: 30px;
    }
.evDropdown > .link .label {
    padding: 0 0 0 5px;
    }
.evDropdown.iconOnly > .link .icon.select {
    display: none;
    }
.evDropdown:hover > .link .label {
    text-decoration: underline;
    }
.evDropdown.open {
    z-index: 2;
    }
.evDropdown.open > .link {
    border: 1px solid #B9B9B9;
    border-bottom: 0;
    text-decoration: none;
    padding: 0 3px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    background: #fff;
    }
.evDropdown > .content {
    position: absolute;
    border: 1px solid #B9B9B9;
    z-index: 1;
    background-color: #fff;
    display: none;
    right: 0;
    top: 28px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
    box-shadow: 1px 1px 2px rgba(0,0,0,.2);
    }
.evDropdown > .content .footer {
    border-top: 1px solid #B9B9B9;
    padding: 4px;
    white-space: nowrap;
    }
.evDropdown.open > .content {
    display: block;
    text-align: left;
    }
.evDropdownDark > .content,
.evDropdownDark.open > .link {
    background-color: #2b2731;
    border: 1px solid #444;
    }
.evDropdownDark.open > .link {
    border-bottom: 0;
    }
.evDropdownDark > .content a:link,
.evDropdownDark > .content a:visited {
    color: #BBB;
    }

/*
	When a drop box is in a textfield
*/
.evTextField .evDropdown {
    z-index: 1;
    height: 26px;
    line-height: 24px;
    }
.evTextFieldDark.focus .evDropdown {
    border-left: 1px solid #333;
    }
.evTextField .evDropdown {
    border-left: 1px solid #eee;
    margin-left: 5px;
    }
.evTextFieldDark .evDropdown {
    border-left: 1px solid #333;
    }
.evTextField .evDropdown > .content {
    top: 24px;
    }
.evTextField .evDropdown > .link {
    line-height: 20px;
    height: 24px;
    }
.evTextField .evDropdown > .link .label {
    font-size: 10px;
    }
.evTextField .evDropdown.open > .link {
    line-height: 19px;
    }
.evTextField .evDropdown .link .capLeft,
.evTextField .evDropdown .link .middle,
.evTextField .evDropdown .link .capRight {
    background-image: none;
    line-height: 19px;
    height: 20px;
    }

/*
	When a drop box is in a button
*/
.evButton .evDropdown {
    border-left: 1px solid rgba(0,0,0,.2);
    height: 26px;
    margin-right: -5px;
    margin-top: -2px;
    }
.evButton .evDropdown > .link {
    line-height: 24px;
    }
.evButtonDropdown > .content {
    top: 29px;
    right: 0;
    }

/* Modifiers */
.evDropdown.up > .content {
    top: auto;
    bottom: 29px;
    border-radius: 2px 2px 0 0;
    }
.evDropdown.up > .link {
    border-bottom: 1px;
    border-top: 0;
    border-radius: 0 0 2px 2px;
    }
.evDropdown.left > .content {
    right: auto;
    left: 0;
    }
.evDropdown.open.up > .link {
    border-bottom: 1px solid #B9B9B9;
    }

/*
 * List of Options
 */
.evDropdown > .content ul a {
    text-decoration: none;
    }
.evDropdownDark > .content ul li:hover {
    background-color: #3a3740;
    }
.evDropdown > .content ul.evListOfOptions a .icon {
    margin-right: 5px;
    margin-left: -5px;
    }
.ev-icon {
    aspect-ratio: 1;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    line-height: 1;
    width: var(--icon-size,24px);
    color: var(--icon-color,currentColor);
    }
.ev-icon > svg {
    width: auto;
    height: auto;
    }

/*
	icon: Standard Icons
	---------------------
	These are used in a variety of places as 16x16 icons.
	They are often used within buttons, round buttons or text fields.
	Usage: generally with a <span>, but an <a> may be used if the icon itself is to be linked.

	<span class="icon help"></span>
*/
@font-face {
    font-family: 'ev2';
    src: url(/portal/shared/theme/v1/common/fonts/ev2.eot);
    src: url(/portal/shared/theme/v1/common/fonts/ev2.eot?#iefix) format('embedded-opentype'),url(/portal/shared/theme/v1/common/fonts/ev2.woff) format('woff'),url(/portal/shared/theme/v1/common/fonts/ev2.ttf) format('truetype'),url(/portal/shared/theme/v1/common/fonts/ev2.svg#ev2) format('svg');
    font-style: normal;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    }
@-webkit-keyframes spin {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

@keyframes spin {
0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

/* The global icon format */
.icon {
    font-family: 'ev2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 14px;
    padding: 0;
    margin: 0;
    display: inline-block;
    outline: none;
    border: 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    }
.icon.x18 {
    font-size: 18px;
    line-height: 18px;
    }
.icon.x24 {
    font-size: 24px;
    line-height: 27px;
    }
.icon.x32 {
    font-size: 32px;
    line-height: 32px;
    }
.icon.x48 {
    font-size: 48px;
    line-height: 48px;
    }
.icon.x64 {
    font-size: 64px;
    line-height: 64px;
    }

/* Icon rotations and mirroring */
.icon.rotate90:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    }
.icon.rotate180:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    }
.icon.rotate270:before {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    }
.icon.flipHorizontal:before {
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    transform: scale(-1,1);
    }
.icon.flipVertical:before {
    -webkit-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    transform: scale(1,-1);
    }

/* ensure rotation occurs inside anchor tags */
a .icon.rotate90:before,
a .icon.rotate180:before,
a .icon.rotate270:before,
a .icon.flipHorizontal:before,
a .icon.flipVertical:before {
    display: inline-block;
    }

/* rotation animation */
.icon.rotating,
.icon.loading {
    display: inline-block;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    }
.icon.loading.x32 {
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    }
.icon.loading.x48 {
    width: 48px;
    height: 48px;
    line-height: 44px;
    text-align: center;
    }
.icon.loading.x64 {
    width: 64px;
    height: 64px;
    line-height: 58px;
    text-align: center;
    }

/* Now for the icons */
.icon.home:before {
    content: "\e000";
    }
.icon.pencil:before,
.icon.edit:before {
    content: "\e001";
    }
.icon.office:before,
.icon.business:before,
.icon.company:before {
    content: "\e002";
    }
.icon.paintFormat:before {
    content: "\e003";
    }
.icon.image:before {
    content: "\e004";
    }
.icon.headphones:before {
    content: "\e007";
    }
.icon.video:before {
    content: "\e008";
    }
.icon.connection:before {
    content: "\e009";
    }
.icon.book:before,
.icon.catalog:before,
.icon.catalogue:before,
.icon.products:before {
    content: "\e00a";
    }
.icon.stack:before {
    content: "\e00c";
    }
.icon.layers:before {
    content: "\e0f3";
    }
.icon.folder:before {
    content: "\e00d";
    }
.icon.folderOpen:before {
    content: "\e00e";
    }
.icon.tag:before {
    content: "\e00f";
    }
.icon.tags:before {
    content: "\e010";
    }
.icon.barcode:before {
    content: "\e011";
    }
.icon.qrcode:before {
    content: "\e012";
    }
.icon.ticket:before,
.icon.coupon:before,
.icon.voucher:before {
    content: "\e013";
    }
.icon.ticket2:before {
    content: "\e0da";
    }
.icon.cart:before,
.icon.order:before {
    content: "\e014";
    }
.icon.calculate:before {
    content: "\e016";
    }
.icon.support:before {
    content: "\e017";
    }
.icon.phone:before {
    content: "\e018";
    }
.icon.phoneDown:before {
    content: "\e019";
    }
.icon.pushpin:before {
    content: "\e01a";
    }
.icon.map:before {
    content: "\e01c";
    }
.icon.mapOutline:before {
    content: "\e005";
    }
.icon.clock:before,
.icon.time:before {
    content: "\e0c3";
    }
.icon.clockBold:before,
.icon.timeBold:before {
    content: "\e01d";
    }
.icon.earth:before,
.icon.public:before,
.icon.website:before {
    content: "\e01e";
    }
.icon.alarm:before {
    content: "\e01f";
    }
.icon.print:before,
.icon.fax:before {
    content: "\e022";
    }
.icon.screen:before,
.icon.desktop:before {
    content: "\e025";
    }
.icon.mobile:before {
    content: "\e024";
    }
.icon.tablet:before {
    content: "\e026";
    }
.icon.download:before {
    content: "\e027";
    }
.icon.upload:before {
    content: "\e028";
    }
.icon.undo:before {
    content: "\e029";
    }
.icon.redo:before {
    content: "\e02a";
    }
.icon.undo2:before {
    content: "\e02b";
    }
.icon.redo2:before {
    content: "\e02c";
    }
.icon.forward2:before {
    content: "\e02d";
    }
.icon.reply2:before {
    content: "\e02e";
    }
.icon.user:before,
.icon.contact:before,
.icon.person:before {
    content: "\e031";
    }
.icon.users:before,
.icon.contacts:before {
    content: "\e032";
    }
.icon.update:before {
    content: "\e033";
    }
.icon.shield:before {
    content: "\e035";
    }
.icon.lightning:before {
    content: "\e036";
    }
.icon.connect:before {
    content: "\e037";
    }
.icon.truck:before,
.icon.shipping:before,
.icon.delivery:before {
    content: "\e038";
    }
.icon.airplane:before,
.icon.airmail:before {
    content: "\e039";
    }
.icon.remove:before,
.icon.delete:before {
    content: "\e03a";
    }
.icon.lab:before {
    content: "\e03b";
    }
.icon.aid:before {
    content: "\e03c";
    }
.icon.bug:before {
    content: "\e03d";
    }
.icon.search:before {
    content: "\e03f";
    }
.icon.cog:before,
.icon.options:before {
    content: "\e040";
    }
.icon.equalizer:before {
    content: "\e041";
    }
.icon.equalizerHorizontal:before {
    content: "\e0fe";
    }
.icon.equalizerSmall:before {
    content: "\e0f6";
    }
.icon.key:before {
    content: "\e042";
    }
.icon.key2:before {
    content: "\e0f1";
    }
.icon.fullscreen:before {
    content: "\e045";
    }
.icon.fullscreenSmall:before {
    content: "\e0f8";
    }
.icon.enlarge:before {
    content: "\e046";
    }
.icon.reduce:before {
    content: "\e047";
    }
.icon.mug:before {
    content: "\e048";
    }
.icon.trophy:before {
    content: "\e049";
    }
.icon.gift:before {
    content: "\e04a";
    }
.icon.wand:before {
    content: "\e04b";
    }
.icon.rocket:before {
    content: "\e04c";
    }
.icon.link:before,
.icon.linked:before,
.icon.unlink:before {
    content: "\e04e";
    }
.icon.cloudUpload:before {
    content: "\e050";
    }
.icon.cloudDownload:before {
    content: "\e051";
    }
.icon.cloud:before {
    content: "\e052";
    }
.icon.tree:before {
    content: "\e053";
    }
.icon.menu:before {
    content: "\e054";
    }
.icon.menu2:before {
    content: "\e055";
    }
.icon.numberedList:before {
    content: "\e056";
    }
.icon.list:before {
    content: "\e057";
    }
.icon.list2:before {
    content: "\e058";
    }
.icon.eye:before,
.icon.preview:before {
    content: "\e059";
    }
.icon.eyeBlocked:before {
    content: "\e05a";
    }
.icon.bookmark:before {
    content: "\e05b";
    }
.icon.bookmarkNarrow:before {
    content: "\e125";
    }
.icon.reviewOff:before {
    content: "\e05c";
    }
.icon.reviewHalf:before {
    content: "\e05d";
    }
.icon.reviewOn:before {
    content: "\e05e";
    }
.icon.heart:before {
    content: "\e05f";
    }
.icon.thumbsUp:before {
    content: "\e060";
    }
.icon.thumbsDown:before {
    content: "\e061";
    }
.icon.thumbsUpSmall:before {
    content: "\e127";
    }
.icon.thumbsDownSmall:before {
    content: "\e128";
    }
.icon.complete:before {
    content: "\e062";
    }
.icon.cancelled:before {
    content: "\e063";
    }
.icon.blocked:before {
    content: "\e064";
    }
.icon.blocked2:before {
    content: "\e124";
    }
.icon.plus:before,
.icon.add:before {
    content: "\e0b1";
    }
.icon.minus:before,
.icon.subtract:before {
    content: "\e0b2";
    }
.icon.minusLarge:before {
    content: "\e066";
    }
.icon.plusLarge:before {
    content: "\e067";
    }
.icon.enter:before,
.icon.login:before {
    content: "\e068";
    }
.icon.exit:before,
.icon.logout:before {
    content: "\e069";
    }
.icon.shuffle:before {
    content: "\e06a";
    }
.icon.loop:before {
    content: "\e06b";
    }
.icon.scissors:before {
    content: "\e06c";
    }
.icon.creditcard:before,
.icon.card:before {
    content: "\e06d";
    }
.icon.frame:before {
    content: "\e015";
    }
.icon.graph:before {
    content: "\e04f";
    }
.icon.bars:before {
    content: "\e06f";
    }
.icon.briefcase:before {
    content: "\e070";
    }
.icon.switch:before {
    content: "\e071";
    }
.icon.flag:before {
    content: "\e072";
    }
.icon.filter:before {
    content: "\e073";
    }
.icon.volume:before {
    content: "\e078";
    }
.icon.mute:before {
    content: "\e079";
    }
.icon.code:before {
    content: "\e07a";
    }
.icon.ruler:before,
.icon.design:before {
    content: "\e07b";
    }
.icon.warehouse:before {
    content: "\e07c";
    }
.icon.presentation:before {
    content: "\e080";
    }
.icon.email:before,
.icon.envelope:before {
    content: "\e081";
    }
.icon.emailRead:before,
.icon.emailOpen:before,
.icon.envelopeOpen:before {
    content: "\e0f7";
    }
.icon.brush:before {
    content: "\e083";
    }
.icon.tools:before {
    content: "\e084";
    }
.icon.patch:before {
    content: "\e085";
    }
.icon.umbrella:before {
    content: "\e086";
    }
.icon.lab2:before {
    content: "\e087";
    }
.icon.gamepad:before {
    content: "\e088";
    }
.icon.microphone:before {
    content: "\e090";
    }
.icon.calendar:before,
.icon.date:before {
    content: "\e091";
    }
.icon.arrowRight:before,
.icon.pointRight:before {
    content: "\e092";
    }
.icon.arrowUp:before,
.icon.pointUp:before {
    content: "\e093";
    }
.icon.arrowDown:before,
.icon.pointDown:before {
    content: "\e094";
    }
.icon.arrowLeft:before,
.icon.pointLeft:before {
    content: "\e095";
    }
.icon.arrowRight2:before {
    content: "\e096";
    }
.icon.arrowUp2:before {
    content: "\e097";
    }
.icon.arrowDown2:before,
.icon.select:before {
    content: "\e098";
    }
.icon.arrowLeft2:before {
    content: "\e099";
    }
.icon.arrowLeft3:before,
.icon.goBack:before,
.icon.left:before {
    content: "\e09d";
    }
.icon.arrowDown3:before,
.icon.descending:before,
.icon.down:before {
    content: "\e09e";
    }
.icon.arrowUp3:before,
.icon.ascending:before,
.icon.up:before {
    content: "\e09f";
    }
.icon.arrowRight3:before,
.icon.goForward:before,
.icon.right:before {
    content: "\e0a0";
    }
.icon.arrowLeft4:before {
    content: "\e0e9";
    }
.icon.arrowDown4:before {
    content: "\e0ea";
    }
.icon.arrowUp4:before {
    content: "\e0eb";
    }
.icon.arrowRight4:before {
    content: "\e0ec";
    }
.icon.flowCascade:before {
    content: "\e09a";
    }
.icon.flowBranch:before,
.icon.merge:before {
    content: "\e09b";
    }
.icon.flowTree:before {
    content: "\e09c";
    }
.icon.flowLine:before {
    content: "\e0a1";
    }
.icon.cloud2:before {
    content: "\e0a2";
    }
.icon.cloudUpload2:before {
    content: "\e0a3";
    }
.icon.install:before {
    content: "\e0a4";
    }
.icon.flowParallel:before {
    content: "\e0a5";
    }
.icon.disk:before,
.icon.save:before {
    content: "\e0a6";
    }
.icon.inTray:before,
.icon.import:before {
    content: "\e0a7";
    }
.icon.outTray:before {
    content: "\e0a8";
    }
.icon.trash:before {
    content: "\e0a9";
    }
.icon.pictures:before {
    content: "\e0aa";
    }
.icon.shuffle2:before {
    content: "\e0ab";
    }
.icon.uturn:before {
    content: "\e0ac";
    }
.icon.return:before {
    content: "\e0ad";
    }
.icon.retweet:before {
    content: "\e0ae";
    }
.icon.loop2:before {
    content: "\e0af";
    }
.icon.history:before {
    content: "\e0b0";
    }
.icon.database:before {
    content: "\e0b3";
    }
.icon.locate:before,
.icon.location:before {
    content: "\e0b6";
    }
.icon.paperplane:before {
    content: "\e0b7";
    }
.icon.paperclip:before,
.icon.attachement:before {
    content: "\e0b9";
    }
.icon.user2:before {
    content: "\e0ba";
    }
.icon.users2:before {
    content: "\e0bb";
    }
.icon.address:before,
.icon.geolocation:before {
    content: "\e0bc";
    }
.icon.graduation:before,
.icon.education:before {
    content: "\e0bd";
    }
.icon.book2:before {
    content: "\e0be";
    }
.icon.hourglass:before {
    content: "\e0bf";
    }
.icon.gauge:before {
    content: "\e0c0";
    }
.icon.droplet:before {
    content: "\e0c1";
    }
.icon.calendar2:before {
    content: "\e0c2";
    }
.icon.lifebuoy:before {
    content: "\e0c4";
    }
.icon.mobile2:before {
    content: "\e0c6";
    }
.icon.directions:before {
    content: "\e0c7";
    }
.icon.target:before {
    content: "\e0c9";
    }
.icon.share:before {
    content: "\e0ca";
    }
.icon.chat:before {
    content: "\e0cc";
    }
.icon.comment:before,
.icon.comments:before {
    content: "\e0cd";
    }
.icon.quote:before {
    content: "\e0ce";
    }
.icon.trophy2:before {
    content: "\e0d0";
    }
.icon.megaphone:before {
    content: "\e0d1";
    }
.icon.audio:before {
    content: "\e0d2";
    }
.icon.music:before {
    content: "\e0d3";
    }
.icon.drive:before {
    content: "\e0d4";
    }
.icon.cone:before,
.icon.construction:before {
    content: "\e0d5";
    }
.icon.lineChart:before {
    content: "\e0d7";
    }
.icon.pieChart:before {
    content: "\e03e";
    }
.icon.pieChart2:before {
    content: "\e0d8";
    }
.icon.stats:before,
.icon.barChart:before {
    content: "\e0d9";
    }
.icon.info:before {
    content: "\e0db";
    }
.icon.infoBold:before {
    content: "\e065";
    }
.icon.warning:before,
.icon.attention:before {
    content: "\e0dc";
    }
.icon.help:before {
    content: "\e0dd";
    }
.icon.cycle:before {
    content: "\e0de";
    }
.icon.reload:before,
.icon.refresh:before,
.icon.clockwise:before {
    content: "\e0df";
    }
.icon.ccw:before,
.icon.antiClockwise:before,
.icon.counterClockwise:before {
    content: "\e0e0";
    }
.icon.play:before,
.icon.inProgress:before {
    content: "\e0e1";
    }
.icon.pause:before,
.icon.paused:before {
    content: "\e0e2";
    }
.icon.record:before {
    content: "\e0e3";
    }
.icon.stop:before {
    content: "\e0e4";
    }
.icon.next:before {
    content: "\e0e5";
    }
.icon.previous:before {
    content: "\e0e6";
    }
.icon.first:before {
    content: "\e0e7";
    }
.icon.last:before {
    content: "\e0e8";
    }
.icon.ellipsis:before,
.icon.pending:before {
    content: "\e0ed";
    }
.icon.eject:before {
    content: "\e0ee";
    }
.icon.checkmark:before,
.icon.yes:before {
    content: "\e0ef";
    }
.icon.cancel:before,
.icon.no:before {
    content: "\e0f0";
    }
.icon.cord:before {
    content: "\e0f2";
    }
.icon.collapseScreenSmall:before {
    content: "\e0f9";
    }
.icon.collapseScreen:before {
    content: "\e0fb";
    }
.icon.zoomOut:before {
    content: "\e0fc";
    }
.icon.zoomIn:before {
    content: "\e0fd";
    }
.icon.leaf:before {
    content: "\e0ff";
    }
.icon.leaf2:before {
    content: "\e0c8";
    }
.icon.signup:before,
.icon.todo:before {
    content: "\e100";
    }
.icon.download2:before {
    content: "\e101";
    }
.icon.upload2:before {
    content: "\e102";
    }
.icon.attachmentBold:before {
    content: "\e103";
    }
.icon.smileyOutline:before {
    content: "\e104";
    }
.icon.smiley:before {
    content: "\e105";
    }
.icon.sadOutline:before {
    content: "\e106";
    }
.icon.sad:before {
    content: "\e107";
    }
.icon.neutralOutline:before {
    content: "\e108";
    }
.icon.neutral:before {
    content: "\e109";
    }
.icon.happyOutline:before {
    content: "\e10a";
    }
.icon.happy:before {
    content: "\e10b";
    }
.icon.wonderingOutline:before {
    content: "\e10c";
    }
.icon.wondering:before {
    content: "\e10d";
    }
.icon.feed:before {
    content: "\e10f";
    }
.icon.twitter:before {
    content: "\e111";
    }
.icon.facebook:before {
    content: "\e112";
    }
.icon.twitter2:before {
    content: "\e110";
    }
.icon.googleplus:before {
    content: "\ea90";
    }
.icon.instagram:before {
    content: "\ea89";
    }
.icon.youtube:before {
    content: "\e113";
    }
.icon.youtubeOutline:before {
    content: "\e114";
    }
.icon.vimeo2:before {
    content: "\e115";
    }
.icon.vimeo:before {
    content: "\e116";
    }
.icon.linkedin:before {
    content: "\e117";
    }
.icon.pinterest:before {
    content: "\e118";
    }
.icon.replyAll:before {
    content: "\e119";
    }
.icon.reply:before {
    content: "\e11a";
    }
.icon.forward:before {
    content: "\e11b";
    }
.icon.newspaper:before {
    content: "\e11c";
    }
.icon.camera:before {
    content: "\e0b8";
    }
.icon.palette:before {
    content: "\e0cf";
    }
.icon.rocket2:before {
    content: "\e11d";
    }
.icon.brush2:before {
    content: "\e11e";
    }
.icon.decrease:before {
    content: "\e11f";
    }
.icon.increase:before {
    content: "\e120";
    }
.icon.contract:before {
    content: "\e121";
    }
.icon.expand:before {
    content: "\e122";
    }
.icon.cross:before,
.icon.close:before {
    content: "\e123";
    }
.icon.box:before,
.icon.archive:before {
    content: "\e08c";
    }
.icon.export:before {
    content: "\e08d";
    }
.icon.heartOn:before {
    content: "\e0cb";
    }
.icon.heartOff:before {
    content: "\e08e";
    }
.icon.starred:before,
.icon.favourite:before {
    content: "\e08f";
    }
.icon.unstarred:before,
.icon.unfavourite:before {
    content: "\e126";
    }
.icon.move:before,
.icon.drag:before {
    content: "\e04d";
    }
.icon.flickr:before {
    content: "\e06e";
    }
.icon.github:before {
    content: "\e074";
    }
.icon.unlocked:before {
    content: "\e075";
    }
.icon.lock:before,
.icon.locked:before {
    content: "\e076";
    }
.icon.hand:before {
    content: "\e077";
    }
.icon.suitcase:before {
    content: "\e08a";
    }
.icon.wrench:before,
.icon.spanner:before {
    content: "\e006";
    }
.icon.stamp:before,
.icon.postage:before {
    content: "\f242";
    }

/* should come last */
.icon.spinner-2:before,
.icon.loading:before {
    content: "\e0fa";
    }

/* Ratings */
.evRating a.icon {
    opacity: .6;
    cursor: pointer;
    outline: none;
    margin: 5px 2px;
    text-decoration: none;
    }
.evRating a.icon:before {
    content: "\e05c";
    }
.evRating a.icon.active {
    opacity: 1;
    color: #e19533;
    }
.evRating a.icon.active:before {
    content: "\e05e";
    }
.evRating a.icon.hover {
    opacity: 1;
    color: #5b9dde;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    }
.evRating a.icon.hover:before {
    content: "\e05e";
    }
.evRating a.icon:hover {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    }
.evRating span.icon {
    opacity: .6;
    margin: 5px 2px;
    cursor: default;
    }
.evRating span.icon.reviewOn,
.evRating span.icon.reviewHalf {
    opacity: 1;
    color: #e19533;
    }
.evRating.x24 .icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin: 5px;
    }
.evRating.x32 .icon {
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin: 5px;
    }
.evProgress {
    background-color: #eee;
    width: 100%;
    display: block;
    }
.evProgress .bar {
    background-color: #9266d6;
    display: block;
    height: 20px;
    }

/*
	evSelect
	---------
	Usage: you only need apply the evSelect class to a standard select html element
	without any wrappers and evance.ui Javascript for evSelect will wrap it for you.
	Usage:

	<select class="evSelect" name="myselect">...</select>
*/
select.evSelect {
    color: #000;
    padding: 0;
    margin: 0;
    height: 30px;
    overflow: hidden;
    border: 0;
    width: 100%;
    }
.evSelectButton {
    display: inline-block;
    overflow: visible;
    vertical-align: middle;
    position: relative;
    width: 100%;
    }
.evSelectButton > .evButton {
    display: none;
    margin-bottom: -30px;
    position: relative;
    }
.evSelectButtonJs > select {
    opacity: 0;
    cursor: pointer;
    }
.evSelectButtonJs > .evButton {
    display: block;
    }
.evSelectButton > .evButton > .icon.select {
    position: absolute;
    right: 5px;
    top: 9px;
    }
.evSelectButton > .evButton > .label {
    margin-right: 20px;
    display: block;
    }
.evSelectButton > .evButton > .evSelectButtonIcon {
    position: absolute;
    top: 9px;
    left: 5px;
    }
.evSelectButton.hasIcon > .evButton > .label {
    margin-left: 16px;
    }

/*
	evTabs
	-------
*/
ul.evTabs,
ul.evTabs li,
ul.evTabs li a {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    }
ul.evTabs li {
    list-style: none;
    }
ul.evTabs li a:visited,
ul.evTabs li a:link {
    color: inherit;
    padding: 0 10px;
    text-decoration: none;
    }
ul.evTabs li a .label {
    height: 28px;
    white-space: nowrap;
    line-height: 28px;
    }
ul.evTabs li.active a .label {
    color: #4b4b4b;
    }
ul.evTabs li.active {
    border-bottom: 2px solid #C00;
    }
ul.evTabs li a:hover .label {
    text-decoration: underline;
    }

/*
 * 	evSlidshow
 * -----------
 */
.evSlideshow,
.evSlideshowMask,
.evSlideshowSlides {
    position: relative;
    }
.evSlideshow,
.evSlideshowMask {
    display: block;
    overflow: hidden;
    }
.evSlideshowNext,
.evSlideshowPrevious {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    }
.evSlideshowPrevious {
    left: -80px;
    }
.evSlideshow:hover .evSlideshowPrevious {
    left: -25px;
    }
.evSlideshowPrevious a {
    -webkit-border-top-right-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    -moz-border-radius-bottomright: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    }
.evSlideshowNext {
    right: -80px;
    }
.evSlideshow:hover .evSlideshowNext {
    right: -25px;
    }
.evSlideshowNext a {
    -webkit-border-top-left-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    }
.evSlideshowButton .icon {
    margin-top: 23px;
    }
.evSlideshowNext .icon {
    margin-right: 10px;
    }
.evSlideshowPrevious .icon {
    margin-left: 10px;
    }
.evSlideshowButton a {
    height: 60px;
    width: 60px;
    background-color: rgba(0,0,0,.8);
    background-color: #fff;
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    text-align: center;
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
    box-shadow: 0 0 5px rgba(0,0,0,.4);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    margin: 3px;
    }
.evSlideshowButton a:hover {
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.6);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.6);
    box-shadow: 0 0 10px rgba(0,0,0,.6);
    }

/*
 * evSlideshowThumbnails
 * ---------------------
 */
.evSlideshowThumbnails .evSlideshowSlide {
    -khtml-opacity: .5;
    -moz-opacity: .5;
    -ms-filter: ”alpha(opacity=50)”;
    -webkit-filter: alpha(opacity=50);
    filter: alpha(opacity=50);
    opacity: .5;
    }
.evSlideshowThumbnails .active {
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: ”alpha(opacity=100)”;
    -webkit-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
    opacity: 1;
    }

/*
 * evSlideshowController
 */
.evController {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    padding: 2px;
    }
.evController li {
    list-style: none;
    display: block;
    float: left;
    margin: 2px 3px;
    }
.evController li a {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    text-indent: -1000px;
    overflow: hidden;
    width: 16px;
    height: 16px;
    background-color: #aaa;
    float: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    }
.evController li.active a {
    background-color: #000;
    }
ul.evListOfOptions {
    padding: 0;
    margin: 0;
    }
ul.evListOfOptions li {
    list-style: none;
    border-bottom: 1px solid #eee;
    padding: 4px 15px 4px 15px;
    white-space: nowrap;
    line-height: 26px;
    }
ul.evListOfOptions li.last {
    border: 0;
    }
ul.evListOfOptions.interactive li:hover {
    color: #fff;
    background-color: #0d67f7;
    }
ul.evListOfOptions.interactive li:hover .icon {
    background-position: -100px -50px !important;
    }
ul.evListOfOptions.interactive li a {
    color: inherit;
    }
.evPagination {
    margin: 0 -2px;
    display: inline-block;
    vertical-align: top;
    }
.evPagination .evButton {
    margin: 0 2px;
    }
.evPerPage {
    display: inline-block;
    vertical-align: top;
    margin: 0 -2px;
    }
.evPerPage .evSelectButton {
    margin: 0 2px;
    }
.evMenu {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    }
.evMenu ul {
    display: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.4);
    box-shadow: 0 1px 5px rgba(0,0,0,.4);
    z-index: 1;
    }
.evMenu li {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    }
.evMenu.horizontal > li {
    float: left;
    display: inline-block;
    }
.evMenu li a {
    display: block;
    padding: 5px 10px;
    }
.evMenu li a {
    border-bottom: 1px solid #eee;
    }
.evMenu.horizontal > li > a {
    border: 0;
    }
.evMenu li:hover > ul,
.evMenu li.open > ul {
    display: block;
    position: absolute;
    left: 98%;
    top: 2px;
    }
.evMenu.horizontal > li:hover > ul,
.evMenu.horizontal > li.open > ul {
    top: 100%;
    left: auto;
    }
.evMenu li:hover > a,
.evMenu li.open > a {
    background-color: #eee;
    }
.evMenu li.active > a {
    background-color: #0A246A;
    }
.evMenu .evMenuMegamenu > ul ul {
    left: auto !important;
    top: auto !important;
    position: relative !important;
    display: inline-block;
    border: 0;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evMenu .evMenuMegamenu > ul ul a {
    border: 0;
    }
.evMenu .evMenuMegamenu > ul {
    padding: 8px;
    }
.evMenu .evMenuMegamenu > ul > li {
    float: left;
    padding: 10px;
    }
.evMenu .evMenuGrid .evMenuLinkHasThumbnail > a {
    position: relative;
    min-height: 64px;
    padding-left: 80px;
    display: block;
    }
.evMenu .evMenuGrid > ul > li > a > .evMenuLinkThumbnail {
    position: absolute;
    top: 5px;
    left: 5px;
    }
.evMenu .evMenuGrid > ul > li > a > .evMenuLinkTitle {
    display: block;
    }
.evMenu .evMenuGrid > ul > li > a > .evMenuLinkDescription {
    white-space: normal !important;
    display: block;
    }
ul.evMenu a .evCount {
    float: right;
    }

/*
 * evBreadcrumbs
 */
ul.evBreadcrumbs {
    display: block;
    padding: 0;
    margin: 0;
    }
ul.evBreadcrumbs li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    }
ul.evBreadcrumbs a {
    color: inherit;
    }
.evOutputError {
    margin: 5px;
    display: inline-block;
    border: 1px solid #FA8991;
    background-color: #FCEDEE;
    border-radius: 3px;
    padding: 5px;
    font-size: 11px;
    color: #E12727;
    }
ul.evPriceList,
ul.evPriceList li {
    margin: 0;
    padding: 0;
    list-style: none;
    }
.evSocialLinks {
    display: inline-block;
    }
.evSocialLinks,
.evSocialLinks li {
    list-style: none;
    padding: 0;
    margin: 0;
    }
ul.evProductFilterGroup,
ul.evProductFilterGroup ul {
    padding: 0;
    margin: 0;
    }
ul.evProductFilterGroup {
    margin-bottom: 15px;
    }
ul.evProductFilterGroup ul {
    margin-top: 5px;
    border-top: 1px solid #eee;
    }
ul.evProductFilterGroup li {
    list-style: none;
    padding: 0;
    margin: 0;
    }
ul.evProductFilterGroup a {
    color: inherit;
    display: block;
    padding: 5px 10px;
    position: relative;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    }
ul.evProductFilterGroup a:hover {
    background-color: #eee;
    }
ul.evProductFilterGroup a .evCount,
ul.evProductFilterGroup a .icon {
    float: right;
    }
.evProductFilterGroup a .evSwatch {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    overflow: hidden;
    }
.evProductFilterGroup a .evSwatch .swatch {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.6);
    box-shadow: inset 0 0 3px rgba(0,0,0,.6);
    overflow: hidden;
    }
.evProductFilterGroup a .evSwatch + .label {
    display: inline-block;
    padding-left: 5px;
    }
.evProductFilterGroup .range-filter .range-slider {
    margin: 15px 6px;
    }
.evCount {
    display: inline-block;
    background-color: rgba(0,0,0,.1);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 12px;
    }
.evAlert {
    border: 1px solid #F3EA9E;
    background-color: #FFFBDD;
    color: #000;
    display: block;
    padding: 15px 15px 15px 40px;
    background-image: url(/portal/shared/theme/v1/common/images/icons/info.png);
    background-position: 5px 7px;
    background-repeat: no-repeat;
    }

/*
 * evCart
 */
.evCartLines {
    margin-top: 10px;
    border-top: 1px solid #eee;
    }
.evCartLines td {
    border-bottom: 1px solid #eee;
    }
.evCartLines td.image {
    text-align: center;
    width: 150px;
    }
.evCartLines td.remove {
    text-align: center;
    width: 20px;
    }
.evCartTotals {
    margin-top: 10px;
    }
.evCartTotals .first {
    text-align: left;
    }
.evCartTotals .last {
    text-align: right;
    }
.evCartTotals .active {
    font-weight: bold;
    }

/*
 * Search
 */
.evCmsDocument {
    display: block;
    padding: 15px;
    clear: both;
    }
.evCmsDocument p {
    padding: 0;
    margin: 0;
    }
.evCmsDocument .alias {
    font-size: 90%;
    }
.evCmsDocument .thumbnailImage {
    float: left;
    margin-right: 15px;
    }
.ui-slider {
    position: relative;
    text-align: left;
    }
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    cursor: default;
    }
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
    }
.ui-slider-horizontal {
    height: 12px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.25);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.25);
    background-color: #eee;
    }
.ui-slider-horizontal .ui-slider-handle {
    top: -10px;
    margin-left: -9px;
    }
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    }
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
    }
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
    }
.ui-slider-vertical {
    width: .8em;
    height: 100px;
    }
.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
    }
.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
    }
.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
    }
.ui-slider-vertical .ui-slider-range-max {
    top: 0;
    }

/*	Colours for Slider */
.ui-slider-handle {
    border-color: #D9D9D9 #D9D9D9 #D9D9D9;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    background-color: #fff;
    }
.ui-slider-handle.ui-state-hover,
.ui-slider-handle.ui-state-active {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.25);
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
    border-color: #C0C2C4 #C0C2C4 #B0B2B5;
    }
.ui-slider-range {
    background-color: #5b9dde;
    }
.ui-slider {
    border-color: #D9D9D9 #D9D9D9 #D9D9D9;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    }
.evAvatar {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    border: 2px solid;
    font-weight: 300;
    }
.evAvatar.x64 {
    width: 64px;
    height: 64px;
    font-size: 24px;
    line-height: 60px;
    }
.evAvatar.x48 {
    width: 48px;
    height: 48px;
    font-size: 20px;
    line-height: 44px;
    }
.evAvatar.x36 {
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    }
.evAvatar.evAvatarImage {
    display: inline-block;
    border: 0;
    }
.evAvatar.evAvatarImage img {
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    }

/*
	evMap
	-----
*/
.evMap {
    width: 100%;
    height: 100%;
    }

/*
	evForm
	-----
*/
.evFormWidgetCategories ul {
    list-style: none;
    padding: 0;
    }
.evFormWidgetCategories li {
    padding: 5px 0;
    margin: 0;
    }
.evFormWidgetCategories li > ul {
    display: none;
    padding-top: 5px;
    padding-left: 20px;
    }
.evFormWidgetProduct {
    padding: 5px;
    }
.evFormWidgetProduct > label {
    position: relative;
    display: block;
    margin: 0;
    border-width: 1px;
    border-style: solid;
    border-color: #e5e5e5;
    padding: 20px;
    }
.evFormWidgetProduct .input {
    position: absolute;
    top: 10px;
    right: 10px;
    }
.evFormWidgetProduct .image + .description {
    margin-top: 10px;
    }
.evFormWidgetProduct img {
    max-width: 100%;
    }
.evFormWidgetProduct.active > label {
    border-color: #5b9dde;
    }
.ev-password-strength {
    display: block;
    }
.ev-password-strength--indicator {
    background: #eee;
    width: 100%;
    margin: 1rem 0 .5rem 0;
    }
.ev-password-strength--bar {
    display: block;
    height: 10px;
    background: rgb(253,80,91);
    -webkit-transition: width .25s ease-in,background .25s ease-in;
    transition: width .25s ease-in,background .25s ease-in;
    border-radius: 3px;
    }
.strength-0 .ev-password-strength--bar {
    width: 20%;
    }
.strength-1 .ev-password-strength--bar {
    width: 40%;
    }
.strength-2 .ev-password-strength--bar {
    width: 60%;
    }
.strength-3 .ev-password-strength--bar {
    width: 80%;
    background: rgb(53,161,109);
    }
.strength-4 .ev-password-strength--bar {
    width: 100%;
    background: rgb(53,161,109);
    }
div.datepicker {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.6);
    box-shadow: 0 1px 5px rgba(0,0,0,.6);
    }
.datepickerContainer thead {
    background-color: #38333f;
    }
div.datepicker td td:hover {
    background-color: #eee;
    }
.datepickerContainer .datepickerDoW th {
    padding: 7px;
    font-size: 10px;
    text-transform: uppercase;
    border-top: 1px solid #4a4651;
    }
.datepickerHidden {
    display: none;
    }
div.datepicker table {
    border-collapse: collapse;
    }
div.datepicker a {
    text-decoration: none;
    cursor: pointer;
    outline: none;
    }
div.datepicker table td td {
    text-align: right;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
    font-size: 14px;
    }
div.datepicker th {
    text-align: center;
    color: #999;
    font-weight: normal;
    }
div.datepicker tbody th {
    text-align: left;
    }
div.datepicker tbody a {
    display: block;
    padding: 5px;
    }
.datepickerDays a {
    line-height: 16px;
    }
.datepickerYears a,
.datepickerMonths a {
    width: 54px;
    line-height: 36px;
    height: 46px;
    text-align: center;
    }
td.datepickerNotInMonth a {
    color: #aaa;
    }
tbody.datepickerDays td.datepickerSelected {
    background: #5b9dde !important;
    color: #fff;
    }
tbody.datepickerDays td.datepickerNotInMonth.datepickerSelected {
    background: #17384d;
    }
tbody.datepickerYears td.datepickerSelected,
tbody.datepickerMonths td.datepickerSelected {
    background: #17384d;
    }
div.datepicker tbody th {
    text-align: left;
    }
.datepickerSpace div {
    width: 0;
    }
.datepickerGoNext a,
.datepickerGoPrev a,
.datepickerMonth a {
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    }
.datepickerMonth a {
    font-weight: 400;
    }
div.datepicker .datepickerGoNext a,
div.datepicker .datepickerGoPrev a {
    font-size: 22px;
    padding: 10px;
    }
.datepickerGoNext a {
    float: right;
    width: 40px;
    }
.datepickerGoPrev a {
    float: left;
    width: 40px;
    }
table.datepickerViewDays tbody.datepickerMonths,
table.datepickerViewDays tbody.datepickerYears {
    display: none;
    }
table.datepickerViewMonths tbody.datepickerDays,
table.datepickerViewMonths tbody.datepickerYears,
table.datepickerViewMonths tr.datepickerDoW {
    display: none;
    }
table.datepickerViewYears tbody.datepickerDays,
table.datepickerViewYears tbody.datepickerMonths,
table.datepickerViewYears tr.datepickerDoW {
    display: none;
    }
td.datepickerDisabled a,
td.datepickerDisabled.datepickerNotInMonth a {
    color: #333;
    }
td.datepickerDisabled a:hover {
    color: #333;
    }
td.datepickerSpecial a {
    background: #700;
    }
td.datepickerSpecial.datepickerSelected a {
    background: #a00;
    }

/* Resaved 20/01/2022 */
/**
 * Owl Carousel v2.1.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
    }
.owl-carousel .owl-stage {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: relative;
    -ms-touch-action: pan-Y;
    }
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    }
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    }
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: none;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    }
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
    }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
    }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
.owl-carousel.owl-loaded {
    display: block;
    }
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
    }
.owl-carousel.owl-hidden {
    opacity: 0;
    }
.owl-carousel.owl-refresh .owl-item {
    display: none;
    }
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    }
.owl-carousel.owl-rtl {
    direction: rtl;
    }
.owl-carousel.owl-rtl .owl-item {
    float: right;
    }

/* No Js */
.no-js .owl-carousel {
    display: block;
    }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
.owl-carousel .owl-animated-in {
    z-index: 0;
    }
.owl-carousel .owl-animated-out {
    z-index: 1;
    }
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    }
@-webkit-keyframes fadeOut {
0% {
    opacity: 1;
    }
100% {
    opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
0% {
    opacity: 1;
    }
100% {
    opacity: 0;
    }
}

@keyframes fadeOut {
0% {
    opacity: 1;
    }
100% {
    opacity: 0;
    }
}

/*
 *     Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
    }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    }
.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
    }
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(/portal/web/960/theme/kuda-v5/common/plugin/owl.carousel/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -webkit-transition: transform 100ms ease;
    transition: transform 100ms ease;
    }
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3,1.3);
    -ms-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3);
    }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
    }
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    }
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    }

/* Resaved 20/01/2022 */
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    }
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    }
.slick-list:focus {
    outline: none;
    }
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
    }
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    }
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
    }
.slick-track:after {
    clear: both;
    }
.slick-loading .slick-track {
    visibility: hidden;
    }
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    }
[dir='rtl'] .slick-slide {
    float: right;
    }
.slick-slide img {
    display: block;
    }
.slick-slide.slick-loading img {
    display: none;
    }
.slick-slide.dragging img {
    pointer-events: none;
    }
.slick-initialized .slick-slide {
    display: block;
    }
.slick-loading .slick-slide {
    visibility: hidden;
    }
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
    }
.slick-arrow.slick-hidden {
    display: none;
    }

@charset "UTF-8";
/* Resaved 20/01/2022 */
/* Slider */
.slick-loading .slick-list {
    background: #fff url(/portal/web/960/theme/kuda-v5/common/plugin/slick/ajax-loader.gif) center center no-repeat;
    }

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;
    src: url(/portal/web/960/theme/kuda-v5/common/plugin/slick/fonts/slick.eot);
    src: url(/portal/web/960/theme/kuda-v5/common/plugin/slick/fonts/slick.eot#iefix) format('embedded-opentype'),url(/portal/web/960/theme/kuda-v5/common/plugin/slick/fonts/slick.woff) format('woff'),url(/portal/web/960/theme/kuda-v5/common/plugin/slick/fonts/slick.ttf) format('truetype'),url(/portal/web/960/theme/kuda-v5/common/plugin/slick/fonts/slick.svg#slick) format('svg');
    }

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    }
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
    }
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
    }
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
    }
.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.slick-prev {
    left: -25px;
    }
[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
    }
.slick-prev:before {
    content: '←';
    }
[dir='rtl'] .slick-prev:before {
    content: '→';
    }
.slick-next {
    right: -25px;
    }
[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
    }
.slick-next:before {
    content: '→';
    }
[dir='rtl'] .slick-next:before {
    content: '←';
    }

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
    }
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    }
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    }
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    }
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    }
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
    }
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
    }

/* Resaved 20/01/2022 */
ul.locales {
    padding: 0;
    margin: 0;
    list-style: none;
    }
ul.locales li {
    padding: 0;
    margin: 0;
    }
ul.locales li a {
    position: relative;
    padding: 8px 16px 8px 42px;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    }
ul.locales li a .country,
ul.locales li a .language {
    display: block;
    white-space: nowrap;
    }
ul.locales li a .flag {
    position: absolute;
    left: 8px;
    top: 14px;
    }
ul.locales li a .country {
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/;
    font-size: .875rem;
    }
ul.locales li a .language {
    font-size: .875rem;
    }
ul.locales li a:hover {
    background: rgba(0,0,0,.1);
    }
.flag.background {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    }
.icon.flag,
.flag {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    width: 1.33333333em;
    line-height: 1em;
    }
.icon.flag:before,
.flag:before {
    content: "\00a0";
    }
.icon.flag.squared,
.flag.squared {
    width: 1em;
    }
.flag.ad {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ad.svg?v=1733740114);
    }
.flag.ad.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ad.svg?v=1733740114);
    }
.flag.ae {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ae.svg?v=1733740114);
    }
.flag.ae.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ae.svg?v=1733740114);
    }
.flag.af {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/af.svg?v=1733740114);
    }
.flag.af.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/af.svg?v=1733740114);
    }
.flag.ag {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ag.svg?v=1733740114);
    }
.flag.ag.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ag.svg?v=1733740114);
    }
.flag.ai {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ai.svg?v=1733740114);
    }
.flag.ai.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ai.svg?v=1733740114);
    }
.flag.al {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/al.svg?v=1733740114);
    }
.flag.al.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/al.svg?v=1733740114);
    }
.flag.am {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/am.svg?v=1733740114);
    }
.flag.am.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/am.svg?v=1733740114);
    }
.flag.ao {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ao.svg?v=1733740114);
    }
.flag.ao.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ao.svg?v=1733740114);
    }
.flag.aq {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/aq.svg?v=1733740114);
    }
.flag.aq.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/aq.svg?v=1733740114);
    }
.flag.ar {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ar.svg?v=1733740114);
    }
.flag.ar.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ar.svg?v=1733740114);
    }
.flag.as {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/as.svg?v=1733740114);
    }
.flag.as.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/as.svg?v=1733740114);
    }
.flag.at {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/at.svg?v=1733740114);
    }
.flag.at.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/at.svg?v=1733740114);
    }
.flag.au {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/au.svg?v=1733740114);
    }
.flag.au.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/au.svg?v=1733740114);
    }
.flag.aw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/aw.svg?v=1733740114);
    }
.flag.aw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/aw.svg?v=1733740114);
    }
.flag.ax {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ax.svg?v=1733740114);
    }
.flag.ax.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ax.svg?v=1733740114);
    }
.flag.az {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/az.svg?v=1733740114);
    }
.flag.az.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/az.svg?v=1733740114);
    }
.flag.ba {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ba.svg?v=1733740114);
    }
.flag.ba.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ba.svg?v=1733740114);
    }
.flag.bb {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bb.svg?v=1733740114);
    }
.flag.bb.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bb.svg?v=1733740114);
    }
.flag.bd {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bd.svg?v=1733740114);
    }
.flag.bd.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bd.svg?v=1733740114);
    }
.flag.be {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/be.svg?v=1733740114);
    }
.flag.be.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/be.svg?v=1733740114);
    }
.flag.bf {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bf.svg?v=1733740114);
    }
.flag.bf.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bf.svg?v=1733740114);
    }
.flag.bg {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bg.svg?v=1733740114);
    }
.flag.bg.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bg.svg?v=1733740114);
    }
.flag.bh {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bh.svg?v=1733740114);
    }
.flag.bh.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bh.svg?v=1733740114);
    }
.flag.bi {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bi.svg?v=1733740114);
    }
.flag.bi.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bi.svg?v=1733740114);
    }
.flag.bj {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bj.svg?v=1733740114);
    }
.flag.bj.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bj.svg?v=1733740114);
    }
.flag.bl {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bl.svg?v=1733740114);
    }
.flag.bl.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bl.svg?v=1733740114);
    }
.flag.bm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bm.svg?v=1733740114);
    }
.flag.bm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bm.svg?v=1733740114);
    }
.flag.bn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bn.svg?v=1733740114);
    }
.flag.bn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bn.svg?v=1733740114);
    }
.flag.bo {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bo.svg?v=1733740114);
    }
.flag.bo.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bo.svg?v=1733740114);
    }
.flag.br {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/br.svg?v=1733740114);
    }
.flag.br.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/br.svg?v=1733740114);
    }
.flag.bq {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bq.svg?v=1733740114);
    }
.flag.bq.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bq.svg?v=1733740114);
    }
.flag.bs {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bs.svg?v=1733740114);
    }
.flag.bs.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bs.svg?v=1733740114);
    }
.flag.bt {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bt.svg?v=1733740114);
    }
.flag.bt.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bt.svg?v=1733740114);
    }
.flag.bw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bw.svg?v=1733740115);
    }
.flag.bw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bw.svg?v=1733740115);
    }
.flag.by {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/by.svg?v=1733740115);
    }
.flag.by.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/by.svg?v=1733740115);
    }
.flag.bz {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bz.svg?v=1733740115);
    }
.flag.bz.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/bz.svg?v=1733740115);
    }
.flag.ca {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ca.svg?v=1733740115);
    }
.flag.ca.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ca.svg?v=1733740115);
    }
.flag.cc {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cc.svg?v=1733740115);
    }
.flag.cc.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cc.svg?v=1733740115);
    }
.flag.cd {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cd.svg?v=1733740115);
    }
.flag.cd.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cd.svg?v=1733740115);
    }
.flag.cf {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cf.svg?v=1733740115);
    }
.flag.cf.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cf.svg?v=1733740115);
    }
.flag.cg {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cg.svg?v=1733740115);
    }
.flag.cg.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cg.svg?v=1733740115);
    }
.flag.ch {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ch.svg?v=1733740115);
    }
.flag.ch.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ch.svg?v=1733740115);
    }
.flag.ci {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ci.svg?v=1733740115);
    }
.flag.ci.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ci.svg?v=1733740115);
    }
.flag.ck {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ck.svg?v=1733740115);
    }
.flag.ck.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ck.svg?v=1733740115);
    }
.flag.cl {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cl.svg?v=1733740115);
    }
.flag.cl.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cl.svg?v=1733740115);
    }
.flag.cm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cm.svg?v=1733740115);
    }
.flag.cm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cm.svg?v=1733740115);
    }
.flag.cn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cn.svg?v=1733740115);
    }
.flag.cn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cn.svg?v=1733740115);
    }
.flag.co {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/co.svg?v=1733740115);
    }
.flag.co.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/co.svg?v=1733740115);
    }
.flag.cr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cr.svg?v=1733740115);
    }
.flag.cr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cr.svg?v=1733740115);
    }
.flag.cu {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cu.svg?v=1733740115);
    }
.flag.cu.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cu.svg?v=1733740115);
    }
.flag.cv {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cv.svg?v=1733740115);
    }
.flag.cv.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cv.svg?v=1733740115);
    }
.flag.cw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cw.svg?v=1733740115);
    }
.flag.cw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cw.svg?v=1733740115);
    }
.flag.cx {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cx.svg?v=1733740115);
    }
.flag.cx.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cx.svg?v=1733740115);
    }
.flag.cy {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cy.svg?v=1733740115);
    }
.flag.cy.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cy.svg?v=1733740115);
    }
.flag.cy2 {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cy2.svg?v=1733740115);
    }
.flag.cy2.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cy2.svg?v=1733740115);
    }
.flag.cz {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cz.svg?v=1733740115);
    }
.flag.cz.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/cz.svg?v=1733740115);
    }
.flag.de {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/de.svg?v=1733740115);
    }
.flag.de.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/de.svg?v=1733740115);
    }
.flag.dj {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dj.svg?v=1733740115);
    }
.flag.dj.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dj.svg?v=1733740115);
    }
.flag.dk {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dk.svg?v=1733740115);
    }
.flag.dk.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dk.svg?v=1733740115);
    }
.flag.dm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dm.svg?v=1733740115);
    }
.flag.dm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dm.svg?v=1733740115);
    }
.flag.do {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/do.svg?v=1733740114);
    }
.flag.do.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/do.svg?v=1733740114);
    }
.flag.dz {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dz.svg?v=1733740114);
    }
.flag.dz.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/dz.svg?v=1733740114);
    }
.flag.ec {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ec.svg?v=1733740114);
    }
.flag.ec.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ec.svg?v=1733740114);
    }
.flag.ee {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ee.svg?v=1733740114);
    }
.flag.ee.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ee.svg?v=1733740114);
    }
.flag.eg {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/eg.svg?v=1733740114);
    }
.flag.eg.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/eg.svg?v=1733740114);
    }
.flag.eh {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/eh.svg?v=1733740114);
    }
.flag.eh.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/eh.svg?v=1733740114);
    }
.flag.er {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/er.svg?v=1733740114);
    }
.flag.er.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/er.svg?v=1733740114);
    }
.flag.es {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/es.svg?v=1733740114);
    }
.flag.es.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/es.svg?v=1733740114);
    }
.flag.et {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/et.svg?v=1733740115);
    }
.flag.et.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/et.svg?v=1733740115);
    }
.flag.fi {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fi.svg?v=1733740115);
    }
.flag.fi.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fi.svg?v=1733740115);
    }
.flag.fj {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fj.svg?v=1733740115);
    }
.flag.fj.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fj.svg?v=1733740115);
    }
.flag.fk {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fk.svg?v=1733740115);
    }
.flag.fk.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fk.svg?v=1733740115);
    }
.flag.fm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fm.svg?v=1733740115);
    }
.flag.fm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fm.svg?v=1733740115);
    }
.flag.fo {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fo.svg?v=1733740115);
    }
.flag.fo.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fo.svg?v=1733740115);
    }
.flag.fr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fr.svg?v=1733740115);
    }
.flag.fr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/fr.svg?v=1733740115);
    }
.flag.ga {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ga.svg?v=1733740115);
    }
.flag.ga.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ga.svg?v=1733740115);
    }
.flag.gb {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gb.svg?v=1733740115);
    }
.flag.gb.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gb.svg?v=1733740115);
    }
.flag.gd {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gd.svg?v=1733740115);
    }
.flag.gd.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gd.svg?v=1733740115);
    }
.flag.ge {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ge.svg?v=1733740114);
    }
.flag.ge.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ge.svg?v=1733740114);
    }
.flag.gf {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gf.svg?v=1733740114);
    }
.flag.gf.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gf.svg?v=1733740114);
    }
.flag.gg {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gg.svg?v=1733740114);
    }
.flag.gg.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gg.svg?v=1733740114);
    }
.flag.gh {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gh.svg?v=1733740114);
    }
.flag.gh.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gh.svg?v=1733740114);
    }
.flag.gi {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gi.svg?v=1733740114);
    }
.flag.gi.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gi.svg?v=1733740114);
    }
.flag.gl {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gl.svg?v=1733740114);
    }
.flag.gl.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gl.svg?v=1733740114);
    }
.flag.gm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gm.svg?v=1733740114);
    }
.flag.gm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gm.svg?v=1733740114);
    }
.flag.gn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gn.svg?v=1733740114);
    }
.flag.gn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gn.svg?v=1733740114);
    }
.flag.gp {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gp.svg?v=1733740114);
    }
.flag.gp.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gp.svg?v=1733740114);
    }
.flag.gq {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gq.svg?v=1733740114);
    }
.flag.gq.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gq.svg?v=1733740114);
    }
.flag.gr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gr.svg?v=1733740114);
    }
.flag.gr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gr.svg?v=1733740114);
    }
.flag.gs {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gs.svg?v=1733740114);
    }
.flag.gs.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gs.svg?v=1733740114);
    }
.flag.gt {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gt.svg?v=1733740114);
    }
.flag.gt.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gt.svg?v=1733740114);
    }
.flag.gu {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gu.svg?v=1733740114);
    }
.flag.gu.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gu.svg?v=1733740114);
    }
.flag.gw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gw.svg?v=1733740114);
    }
.flag.gw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gw.svg?v=1733740114);
    }
.flag.gy {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gy.svg?v=1733740114);
    }
.flag.gy.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/gy.svg?v=1733740114);
    }
.flag.hk {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hk.svg?v=1733740114);
    }
.flag.hk.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hk.svg?v=1733740114);
    }
.flag.hm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hm.svg?v=1733740114);
    }
.flag.hm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hm.svg?v=1733740114);
    }
.flag.hn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hn.svg?v=1733740114);
    }
.flag.hn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hn.svg?v=1733740114);
    }
.flag.hr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hr.svg?v=1733740114);
    }
.flag.hr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hr.svg?v=1733740114);
    }
.flag.ht {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ht.svg?v=1733740114);
    }
.flag.ht.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ht.svg?v=1733740114);
    }
.flag.hu {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hu.svg?v=1733740114);
    }
.flag.hu.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/hu.svg?v=1733740114);
    }
.flag.id {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/id.svg?v=1733740114);
    }
.flag.id.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/id.svg?v=1733740114);
    }
.flag.ie {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ie.svg?v=1733740114);
    }
.flag.ie.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ie.svg?v=1733740114);
    }
.flag.il {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/il.svg?v=1733740114);
    }
.flag.il.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/il.svg?v=1733740114);
    }
.flag.im {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/im.svg?v=1733740114);
    }
.flag.im.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/im.svg?v=1733740114);
    }
.flag.in {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/in.svg?v=1733740114);
    }
.flag.in.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/in.svg?v=1733740114);
    }
.flag.io {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/io.svg?v=1733740115);
    }
.flag.io.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/io.svg?v=1733740115);
    }
.flag.iq {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/iq.svg?v=1733740115);
    }
.flag.iq.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/iq.svg?v=1733740115);
    }
.flag.ir {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ir.svg?v=1733740115);
    }
.flag.ir.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ir.svg?v=1733740115);
    }
.flag.is {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/is.svg?v=1733740115);
    }
.flag.is.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/is.svg?v=1733740115);
    }
.flag.it {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/it.svg?v=1733740115);
    }
.flag.it.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/it.svg?v=1733740115);
    }
.flag.je {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/je.svg?v=1733740115);
    }
.flag.je.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/je.svg?v=1733740115);
    }
.flag.jm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/jm.svg?v=1733740115);
    }
.flag.jm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/jm.svg?v=1733740115);
    }
.flag.jo {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/jo.svg?v=1733740115);
    }
.flag.jo.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/jo.svg?v=1733740115);
    }
.flag.jp {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/jp.svg?v=1733740115);
    }
.flag.jp.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/jp.svg?v=1733740115);
    }
.flag.ke {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ke.svg?v=1733740115);
    }
.flag.ke.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ke.svg?v=1733740115);
    }
.flag.kg {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kg.svg?v=1733740115);
    }
.flag.kg.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kg.svg?v=1733740115);
    }
.flag.kh {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kh.svg?v=1733740115);
    }
.flag.kh.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kh.svg?v=1733740115);
    }
.flag.ki {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ki.svg?v=1733740115);
    }
.flag.ki.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ki.svg?v=1733740115);
    }
.flag.km {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/km.svg?v=1733740115);
    }
.flag.km.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/km.svg?v=1733740115);
    }
.flag.kn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kn.svg?v=1733740115);
    }
.flag.kn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kn.svg?v=1733740115);
    }
.flag.kp {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kp.svg?v=1733740115);
    }
.flag.kp.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kp.svg?v=1733740115);
    }
.flag.kr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kr.svg?v=1733740115);
    }
.flag.kr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kr.svg?v=1733740115);
    }
.flag.kw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kw.svg?v=1733740115);
    }
.flag.kw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kw.svg?v=1733740115);
    }
.flag.ky {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ky.svg?v=1733740115);
    }
.flag.ky.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ky.svg?v=1733740115);
    }
.flag.kz {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kz.svg?v=1733740115);
    }
.flag.kz.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/kz.svg?v=1733740115);
    }
.flag.la {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/la.svg?v=1733740115);
    }
.flag.la.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/la.svg?v=1733740115);
    }
.flag.lb {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lb.svg?v=1733740115);
    }
.flag.lb.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lb.svg?v=1733740115);
    }
.flag.lc {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lc.svg?v=1733740115);
    }
.flag.lc.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lc.svg?v=1733740115);
    }
.flag.li {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/li.svg?v=1733740115);
    }
.flag.li.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/li.svg?v=1733740115);
    }
.flag.lk {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lk.svg?v=1733740115);
    }
.flag.lk.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lk.svg?v=1733740115);
    }
.flag.lr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lr.svg?v=1733740115);
    }
.flag.lr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lr.svg?v=1733740115);
    }
.flag.ls {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ls.svg?v=1733740115);
    }
.flag.ls.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ls.svg?v=1733740115);
    }
.flag.lt {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lt.svg?v=1733740115);
    }
.flag.lt.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lt.svg?v=1733740115);
    }
.flag.lu {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lu.svg?v=1733740115);
    }
.flag.lu.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lu.svg?v=1733740115);
    }
.flag.lv {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lv.svg?v=1733740115);
    }
.flag.lv.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/lv.svg?v=1733740115);
    }
.flag.ly {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ly.svg?v=1733740115);
    }
.flag.ly.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ly.svg?v=1733740115);
    }
.flag.ma {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ma.svg?v=1733740115);
    }
.flag.ma.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ma.svg?v=1733740115);
    }
.flag.mc {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mc.svg?v=1733740115);
    }
.flag.mc.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mc.svg?v=1733740115);
    }
.flag.md {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/md.svg?v=1733740115);
    }
.flag.md.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/md.svg?v=1733740115);
    }
.flag.me {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/me.svg?v=1733740115);
    }
.flag.me.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/me.svg?v=1733740115);
    }
.flag.mf {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mf.svg?v=1733740115);
    }
.flag.mf.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mf.svg?v=1733740115);
    }
.flag.mm {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mm.svg?v=1733740115);
    }
.flag.mm.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mm.svg?v=1733740115);
    }
.flag.mu {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mu.svg?v=1733740115);
    }
.flag.mu.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mu.svg?v=1733740115);
    }
.flag.mt {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mt.svg?v=1733740115);
    }
.flag.mt.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mt.svg?v=1733740115);
    }
.flag.mx {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mx.svg?v=1733740115);
    }
.flag.mx.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/mx.svg?v=1733740115);
    }
.flag.my {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/my.svg?v=1733740115);
    }
.flag.my.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/my.svg?v=1733740115);
    }
.flag.ni {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ni.svg?v=1733740115);
    }
.flag.ni.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ni.svg?v=1733740115);
    }
.flag.nl {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/nl.svg?v=1733740115);
    }
.flag.nl.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/nl.svg?v=1733740115);
    }
.flag.no {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/no.svg?v=1733740115);
    }
.flag.no.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/no.svg?v=1733740115);
    }
.flag.nz {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/nz.svg?v=1733740115);
    }
.flag.nz.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/nz.svg?v=1733740115);
    }
.flag.om {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/om.svg?v=1733740115);
    }
.flag.om.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/om.svg?v=1733740115);
    }
.flag.pa {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pa.svg?v=1733740115);
    }
.flag.pa.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pa.svg?v=1733740115);
    }
.flag.pe {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pe.svg?v=1733740115);
    }
.flag.pe.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pe.svg?v=1733740115);
    }
.flag.ph {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ph.svg?v=1733740115);
    }
.flag.ph.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ph.svg?v=1733740115);
    }
.flag.pk {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pk.svg?v=1733740115);
    }
.flag.pk.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pk.svg?v=1733740115);
    }
.flag.pl {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pl.svg?v=1733740115);
    }
.flag.pl.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/pl.svg?v=1733740115);
    }
.flag.py {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/py.svg?v=1733740115);
    }
.flag.py.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/py.svg?v=1733740115);
    }
.flag.qa {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/qa.svg?v=1733740115);
    }
.flag.qa.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/qa.svg?v=1733740115);
    }
.flag.ro {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ro.svg?v=1733740115);
    }
.flag.ro.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ro.svg?v=1733740115);
    }
.flag.ru {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ru.svg?v=1733740115);
    }
.flag.ru.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ru.svg?v=1733740115);
    }
.flag.rs {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/rs.svg?v=1733740115);
    }
.flag.rs.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/rs.svg?v=1733740115);
    }
.flag.sa {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/sa.svg?v=1733740115);
    }
.flag.sa.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/sa.svg?v=1733740115);
    }
.flag.se {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/se.svg?v=1733740115);
    }
.flag.se.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/se.svg?v=1733740115);
    }
.flag.sg {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/sg.svg?v=1733740115);
    }
.flag.sg.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/sg.svg?v=1733740115);
    }
.flag.si {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/si.svg?v=1733740115);
    }
.flag.si.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/si.svg?v=1733740115);
    }
.flag.sr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/sr.svg?v=1733740115);
    }
.flag.sr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/sr.svg?v=1733740115);
    }
.flag.th {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/th.svg?v=1733740115);
    }
.flag.th.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/th.svg?v=1733740115);
    }
.flag.tn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/tn.svg?v=1733740115);
    }
.flag.tn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/tn.svg?v=1733740115);
    }
.flag.tr {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/tr.svg?v=1733740115);
    }
.flag.tr.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/tr.svg?v=1733740115);
    }
.flag.tw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/tw.svg?v=1733740115);
    }
.flag.tw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/tw.svg?v=1733740115);
    }
.flag.ua {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ua.svg?v=1733740115);
    }
.flag.ua.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ua.svg?v=1733740115);
    }
.flag.us {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/us.svg?v=1733740115);
    }
.flag.us.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/us.svg?v=1733740115);
    }
.flag.uw {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/uw.svg);
    }
.flag.uw.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/uw.svg);
    }
.flag.ve {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ve.svg?v=1733740115);
    }
.flag.ve.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/ve.svg?v=1733740115);
    }
.flag.vn {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/vn.svg?v=1733740115);
    }
.flag.vn.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/vn.svg?v=1733740115);
    }
.flag.za {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/za.svg?v=1733740115);
    }
.flag.za.squared {
    background-image: url(/portal/web/960/theme/kuda-v5/common/css/../images/flags/za.svg?v=1733740115);
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
body,
input,
textarea {
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: /*style.text_font_size(*/16px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.6/*)*/;
    color: /*style.text_color(*/#56677F/*)*/;
    }
html,
body {
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: /*style.text_font_size(*/16px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.6/*)*/;
    }
body {
    background: /*style.footer_background_color(*/#F8FAFB/*)*/;
    }
body.blankLayout {
    background: /*style.body_background_color(*/#fff/*)*/;
    }
body.evDialogOpen {
    overflow: hidden;
    }

/* Our media queries for javascript funkiness */
body:after {
    display: none;
    }
@media screen and (max-width: /*style._second_content_break_max(*/658px/*)*/) {
body:after {
    content: 'final-content-breakpoint';
    }
}

@media screen and (min-width: /*style._second_content_break_min(*/659px/*)*/) {
body:after {
    content: 'second-content-breakpoint';
    }
}

@media screen and (min-width: /*style._first_content_break_min(*/961px/*)*/) {
body:after {
    content: 'first-content-breakpoint';
    }
}

@media screen and (min-width: /*style._content_width_with_gaps(*/1860px/*)*/) {
body:after {
    content: 'full-width';
    }
}

.is-fixed.fixed-menu body,
.is-fixed.fixed-panel body {
    overflow: hidden;
    }
*,
*:before,
*:after {
    zoom: 1;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    *behavior: url(/portal/shared/js/boxsizing.htc);
    }
img {
    vertical-align: middle;
    max-width: 100%;
    }
sup,
sub {
    vertical-align: baseline;
    position: relative;
    top: -.4em;
    }
sub {
    top: .4em;
    }
input[type='number'] {
    -moz-appearance: textfield;
    }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    }
span.todo {
    font-size: 30px;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    }

/*
	Headings & Paragraphs
	---------------------
	Please do not set paragraphs to have a margin and padding of zero
	as this makes life more difficult when dealing with CMS content. 
	Some areas of the template will require a padding of zero, you
	should set these separately.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.2/*)*/;
    text-transform: /*style.heading_text_transformation(*/none/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/;
    margin-bottom: /*style.text_font_size(*/16px/*)*/;
    }
h1:only-child,
h1.last,
h1:last-child,
h2:only-child,
h2.last,
h2:last-child,
h3:only-child,
h3.last,
h3:last-child,
h4:only-child,
h4.last,
h4:last-child,
h5:only-child,
h5.last,
h5:last-child,
h6:only-child,
h6.last,
h6:last-child {
    margin-bottom: 0;
    }
h1,
.h1-Style {
    font-size: /*style.h1_font_size(*/42px/*)*/;
    }
h2,
.h2-Style {
    font-size: /*style.h2_font_size(*/36px/*)*/;
    }
h3,
.h3-Style {
    font-size: /*style.h3_font_size(*/32px/*)*/;
    }
h4,
.h4-Style {
    font-size: /*style.h4_font_size(*/28px/*)*/;
    }
h5,
.h5-Style {
    font-size: /*style.h5_font_size(*/24px/*)*/;
    }
h6,
.h6-Style {
    font-size: /*style.h6_font_size(*/18px/*)*/;
    }
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold,
.title.bold {
    font-weight: /*style.strong_heading_font_weight(*/600/*)*/;
    }
h1.normal,
h2.normal,
h3.normal,
h4.normal,
h5.normal,
h6.normal,
.title.normal,
h1.lighter,
h2.lighter,
h3.lighter,
h4.lighter,
h5.lighter,
h6.lighter,
.title.lighter {
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    }
.heading,
.title {
    font-size: 1rem;
    }
b,
strong,
.heading,
.title,
.subscriptionTitle,
h5 {
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/ !important;
    }
p {
    font-size: /*style.text_font_size(*/16px/*)*/;
    line-height: /*style.text_line_height(*/1.6/*)*/;
    margin-bottom: /*style.text_font_size(*/16px/*)*/;
    }
p:only-child,
p.last,
p:last-child {
    margin-bottom: 0;
    }
#reviewForm p {
    margin-bottom: /*style.text_font_size(*/16px/*)*/;
    }
p.large,
span.large,
a.large {
    font-size: 150%;
    line-height: 1.4;
    }
p.small,
span.small,
a.small {
    font-size: 14px;
    }
p.primary,
span.primary,
a.primary {
    color: /*style.primary(*/#18af37/*)*/;
    }
p.eyebrow {
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    letter-spacing: 1px;
    color: /*style.text_eyebrow_color(*/#6C7D93/*)*/;
    }
p.eyebrow.category-sku {
    margin-bottom: 1rem;
    }
i.error,
span[class="error"] {
    color: /*style._alert_color(*/#fe553e/*)*/;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    height: auto;
    width: auto;
    }
i.error.inverted,
span[class="error"].inverted {
    border-radius: 2000px;
    background: /*style._alert_color(*/#fe553e/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
p.error {
    border: 1px solid /*style._alert_color(*/#fe553e/*)*/;
    padding: 10px;
    text-align: center;
    color: /*style._alert_color(*/#fe553e/*)*/;
    background: /*style._alert_color(*/rgba(254,85,62,.2)/*).colorAdjust(0,0,0,-80%)*/;
    font-weight: inherit;
    }
p.error .icon {
    color: inherit;
    }
i.success,
span[class="success"] {
    color: /*style._positive_text_color(*/#3ac981/*)*/;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    height: auto;
    width: auto;
    }
i.success.inverted,
span[class="success"].inverted {
    border-radius: 2000px;
    background: /*style._positive_text_color(*/#3ac981/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
p.success {
    border: 1px solid /*style._positive_text_color(*/#3ac981/*)*/;
    padding: 10px;
    text-align: center;
    color: /*style._positive_text_color(*/#3ac981/*)*/;
    background: /*style._positive_text_color(*/rgba(58,201,129,.2)/*).colorAdjust(0,0,0,-80%)*/;
    font-weight: inherit;
    }
p.success .icon {
    color: inherit;
    }
i.pending,
span[class="pending"] {
    color: /*style._pending_text_color(*/#E68333/*)*/;
    height: auto;
    width: auto;
    }
i.pending.inverted,
span[class="pending"].inverted {
    border-radius: 2000px;
    background: /*style._pending_text_color(*/#E68333/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
p.pending {
    border: 1px solid /*style._pending_text_color(*/#E68333/*)*/;
    padding: 10px;
    text-align: center;
    color: /*style._pending_text_color(*/#E68333/*)*/;
    background: /*style._pending_text_color(*/rgba(230,131,51,.2)/*).colorAdjust(0,0,0,-80%)*/;
    font-weight: inherit;
    }
p.pending .icon {
    color: inherit;
    }
strong {
    font-size: 1em;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    }
label {
    margin: 5px 1px;
    font-size: 14px;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    }
span.label,
span.iconLabel {
    vertical-align: middle;
    }
.emphasise {
    color: inherit;
    }
.tags {
    margin: 0 -2px;
    }
.tags .tag {
    display: inline-block;
    margin: 2px;
    padding: 7px 12px;
    border-radius: /*style.component_border_radius(*/3px/*)*/;
    font-size: 13px;
    }
.error-tag {
    text-transform: uppercase;
    background-color: #e05242;
    color: #fff;
    font-size: .75em;
    display: inline-block;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 3px;
    }
@media (max-width:/*style._second_content_break(*/658px/*)*/) {
h1,
.h1-Style {
    font-size: 28px;
    }
h2,
.h2-Style {
    font-size: 28px;
    }
h3,
.h3-Style {
    font-size: 25px;
    }
h4,
.h4-Style {
    font-size: 24px;
    }
h5,
.h5-Style {
    font-weight: /*style.strong_heading_font_weight(*/600/*)*/;
    }
h6,
.h6-Style {
    font-size: 18px;
    font-weight: /*style.strong_heading_font_weight(*/600/*)*/;
    }
}

/*
	Links:
	------
	The style and colouring of links is specific to each site.
	The styles below are purely for shared styles.
*/
a.action-link {
    color: /*style.link_color(*/#2CA94A/*)*/;
    }
a.action-link:after {
    content: url(/portal/web/960/theme/kuda-v5/common/images/link-arrow.svg?v=1733740116);
    margin-left: 10px;
    }
a:link,
a:visited {
    color: #2CA94A;
    outline: 0;
    }
a:link.tag,
a:visited.tag {
    color: /*style.text_color(*/#56677F/*)*/;
    background-color: /*style.body_background_color(*/#f5f5f5/*).colorAdjust(0,0,-4,0)*/;
    }
a:hover,
a.hover,
a:focus,
a.focus {
    color: #2CA94A;
    text-decoration: /*style.link_hover_decoration(*/underline/*)*/;
    outline: 0;
    }
a:hover.tag,
a.hover.tag,
a:focus.tag,
a.focus.tag {
    color: #2CA94A;
    background-color: /*style.body_background_color(*/#f7f7f7/*).colorAdjust(0,0,-3,0)*/;
    text-decoration: none;
    }
a.toggleButton {
    color: inherit;
    }
a.color-inherit {
    color: inherit;
    }
h1 a:link,
h1 a:visited,
h2 a:link,
h2 a:visited,
h3 a:link,
h3 a:visited,
h4 a:link,
h4 a:visited,
h5 a:link,
h5 a:visited,
h6 a:link,
h6 a:visited,
.heading a:link,
.heading a:visited {
    color: inherit;
    }

/*
	Padding and Margins
	-------------------
	These are the standard Evance settings,
	but these can be overwritten in themes
*/
.nopad {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    }
.halfpad {
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    }
.stdpad {
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    padding-left: 32px;
    }
.doublepad {
    padding-top: 64px;
    padding-right: 64px;
    padding-bottom: 64px;
    padding-left: 64px;
    }
.nopadh {
    padding-left: 0;
    padding-right: 0;
    }
.nopadt {
    padding-top: 0;
    }
.nopadb {
    padding-bottom: 0;
    }
.nopadl {
    padding-left: 0;
    }
.nopadr {
    padding-right: 0;
    }
.nopadv {
    padding-top: 0;
    padding-bottom: 0;
    }
.halfpadh {
    padding-left: 16px;
    padding-right: 16px;
    }
.halfpadt {
    padding-top: 16px;
    }
.halfpadb {
    padding-bottom: 16px;
    }
.halfpadl {
    padding-left: 16px;
    }
.halfpadr {
    padding-right: 16px;
    }
.halfpadv {
    padding-top: 16px;
    padding-bottom: 16px;
    }
.stdpadh {
    padding-left: 32px;
    padding-right: 32px;
    }
.stdpadt {
    padding-top: 32px;
    }
.stdpadb {
    padding-bottom: 32px;
    }
.stdpadl {
    padding-left: 32px;
    }
.stdpadr {
    padding-right: 32px;
    }
.stdpadv,
.contentSection,
.headerContainer,
.contentBlock,
.asideSection,
.asideItem {
    padding-top: 32px;
    padding-bottom: 32px;
    }
.doublepadh {
    padding-left: 64px;
    padding-right: 64px;
    }
.doublepadt {
    padding-top: 64px;
    }
.doublepadb {
    padding-bottom: 64px;
    }
.doublepadl {
    padding-left: 64px;
    }
.doublepadr {
    padding-right: 64px;
    }
.doublepadv {
    padding-top: 64px;
    padding-bottom: 64px;
    }
.nomar {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    }
.halfmar {
    margin-top: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-left: 16px;
    }
.stdmar {
    margin-top: 32px;
    margin-right: 32px;
    margin-bottom: 32px;
    margin-left: 32px;
    }
.doublemar {
    margin-top: 64px;
    margin-right: 64px;
    margin-bottom: 64px;
    margin-left: 64px;
    }
.nomarh {
    margin-left: 0;
    margin-right: 0;
    }
.nomart {
    margin-top: 0;
    }
.nomarb {
    margin-bottom: 0;
    }
.nomarl {
    margin-left: 0;
    }
.nomarr {
    margin-right: 0;
    }
.nomarv {
    margin-top: 0;
    margin-bottom: 0;
    }
.halfmarh {
    margin-left: 16px;
    margin-right: 16px;
    }
.halfmart {
    margin-top: 16px;
    }
.halfmarb {
    margin-bottom: 16px;
    }
.halfmarl {
    margin-left: 16px;
    }
.halfmarr {
    margin-right: 16px;
    }
.halfmarv {
    margin-top: 16px;
    margin-bottom: 16px;
    }
.stdmarh {
    margin-left: 32px;
    margin-right: 32px;
    }
.stdmart {
    margin-top: 32px;
    }
.stdmarb {
    margin-bottom: 32px;
    }
.stdmarl {
    margin-left: 32px;
    }
.stdmarr {
    margin-right: 32px;
    }
.stdmarv {
    margin-top: 32px;
    margin-bottom: 32px;
    }
.doublemarh {
    margin-left: 64px;
    margin-right: 64px;
    }
.doublemart {
    margin-top: 64px;
    }
.doublemarb {
    margin-bottom: 64px;
    }
.doublemarl {
    margin-left: 64px;
    }
.doublemarr {
    margin-right: 64px;
    }
.doublemarv {
    margin-top: 64px;
    margin-bottom: 64px;
    }
.blog_latest {
    height: 100%;
    }
.blog_latest .blogSlideshowWrap,
.blog_latest .evSlideshow,
.blog_latest .evSlideshowMask,
.blog_latest .evSlideshowSlides,
.blog_latest .evSlideshowSlide {
    min-height: 365px;
    }
.blog_latest .evBlogEntrySlideshow {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: table;
    }
.blog_latest .evBlogEntrySlideshow > a {
    display: table-cell;
    vertical-align: top;
    padding: 2rem;
    background: rgba(0,0,0,.6);
    text-decoration: none;
    color: white;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    }
.blog_latest .evBlogEntrySlideshow > a h1,
.blog_latest .evBlogEntrySlideshow > a h2,
.blog_latest .evBlogEntrySlideshow > a h3,
.blog_latest .evBlogEntrySlideshow > a h4,
.blog_latest .evBlogEntrySlideshow > a h5,
.blog_latest .evBlogEntrySlideshow > a h6,
.blog_latest .evBlogEntrySlideshow > a .title {
    color: white;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.blog_latest .evBlogEntrySlideshow > a:hover {
    background: rgba(0,0,0,.3);
    }
.blog_latest .evBlogEntrySlideshow .date {
    font-size: 14px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 0;
    }
.blog_latest .evBlogEntrySlideshow .date:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: /*style.primary(*/#18af37/*)*/;
    left: 0;
    top: -5px;
    }
.blog_latest .titleAndBlurb {
    position: relative;
    padding-left: 16px;
    max-width: 400px;
    margin-left: 16px;
    }
.blog_latest .evController {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 7;
    }
.blog_latest .evController li {
    opacity: 1;
    }
.blog_latest .evController li a {
    border: 1px solid #e0dfdf;
    background-color: rgba(255,255,255,.5);
    -webkit-transition: all ease /*style.animation_speed(*/0.2s/*)*/;
    transition: all ease /*style.animation_speed(*/0.2s/*)*/;
    }
.blog_latest .evController li a:hover,
.blog_latest .evController li a.hover,
.blog_latest .evController li a:focus,
.blog_latest .evController li a.focus {
    background-color: #fff;
    }
.blog_latest .evController li.active {
    border: 0;
    }
.blog_latest .evController li.active > a {
    background-color: #fff;
    }

/*
    Table
    -----
*/
table td,
table th {
    text-align: left;
    padding: 0;
    }
table td:not([width]),
table th:not([width]) {
    width: auto;
    }
table td.alignCenter,
table td[align="center"],
table th.alignCenter,
table th[align="center"] {
    text-align: center;
    }
table td.alignRight,
table td[align="right"],
table th.alignRight,
table th[align="right"] {
    text-align: right;
    }
table.standard td,
table.standard th {
    padding: 7px;
    padding-top: 0;
    text-align: left;
    }
table.standard td.first,
table.standard td:first-child,
table.standard th.first,
table.standard th:first-child {
    padding-left: 0;
    }
table.standard td.last,
table.standard td:last-child,
table.standard th.last,
table.standard th:last-child {
    padding-right: 0;
    }
table.standard td.alignCenter,
table.standard td[align="center"],
table.standard th.alignCenter,
table.standard th[align="center"] {
    text-align: center;
    }
table.standard td.alignRight,
table.standard td[align="right"],
table.standard th.alignRight,
table.standard th[align="right"] {
    text-align: right;
    }
table.standard tr.last td,
table.standard tr:last-child td,
table.standard tr.last th,
table.standard tr:last-child th {
    padding-bottom: 0;
    }
table.evProductVolumePrices:not(:last-child) {
    margin-bottom: /*style._content_gap(*/32px/*)*/;
    }
table.evProductVolumePrices td,
table.evProductVolumePrices th {
    padding: /*style._content_third_gap(*/10px/*)*/;
    padding-top: 0;
    text-align: left;
    }
table.evProductVolumePrices td.first,
table.evProductVolumePrices td:first-child,
table.evProductVolumePrices th.first,
table.evProductVolumePrices th:first-child {
    padding-left: 0;
    }
table.evProductVolumePrices td.last,
table.evProductVolumePrices td:last-child,
table.evProductVolumePrices th.last,
table.evProductVolumePrices th:last-child {
    padding-right: 0;
    }
table.evProductVolumePrices td.alignCenter,
table.evProductVolumePrices td[align="center"],
table.evProductVolumePrices th.alignCenter,
table.evProductVolumePrices th[align="center"] {
    text-align: center;
    }
table.evProductVolumePrices td.alignRight,
table.evProductVolumePrices td[align="right"],
table.evProductVolumePrices th.alignRight,
table.evProductVolumePrices th[align="right"] {
    text-align: right;
    }
table.evProductVolumePrices tr.last td,
table.evProductVolumePrices tr:last-child td,
table.evProductVolumePrices tr.last th,
table.evProductVolumePrices tr:last-child th {
    padding-bottom: 0;
    }
table.evCartLines td,
table.evCartLines th,
.evCartLines > table td,
.evCartLines > table th {
    padding: /*style._content_half_gap(*/16px/*)*/;
    }
table.evCartLines td,
table.evCartLines td.first,
table.evCartLines td:first-child,
table.evCartLines th,
table.evCartLines th.first,
table.evCartLines th:first-child,
.evCartLines > table td,
.evCartLines > table td.first,
.evCartLines > table td:first-child,
.evCartLines > table th,
.evCartLines > table th.first,
.evCartLines > table th:first-child {
    width: auto;
    }
table.evCartLines td.first,
table.evCartLines td:first-child,
table.evCartLines th.first,
table.evCartLines th:first-child,
.evCartLines > table td.first,
.evCartLines > table td:first-child,
.evCartLines > table th.first,
.evCartLines > table th:first-child {
    padding-left: 0;
    }
table.evCartLines td.last,
table.evCartLines td:last-child,
table.evCartLines th.last,
table.evCartLines th:last-child,
.evCartLines > table td.last,
.evCartLines > table td:last-child,
.evCartLines > table th.last,
.evCartLines > table th:last-child {
    padding-right: 0;
    }
table.evCartLines td.alignCenter,
table.evCartLines td[align="center"],
table.evCartLines th.alignCenter,
table.evCartLines th[align="center"],
.evCartLines > table td.alignCenter,
.evCartLines > table td[align="center"],
.evCartLines > table th.alignCenter,
.evCartLines > table th[align="center"] {
    text-align: center;
    }
table.evCartLines td.alignRight,
table.evCartLines td[align="right"],
table.evCartLines th.alignRight,
table.evCartLines th[align="right"],
.evCartLines > table td.alignRight,
.evCartLines > table td[align="right"],
.evCartLines > table th.alignRight,
.evCartLines > table th[align="right"] {
    text-align: right;
    }
table.evCartLines tr.last td,
table.evCartLines tr:last-child td,
table.evCartLines tr.last th,
table.evCartLines tr:last-child th,
.evCartLines > table tr.last td,
.evCartLines > table tr:last-child td,
.evCartLines > table tr.last th,
.evCartLines > table tr:last-child th {
    padding-bottom: /*style._content_half_gap(*/16px/*)*/;
    }
table.evAccountTable td,
table.evAccountTable th {
    color: /*style.text_color(*/#56677F/*)*/;
    }
table.evAccountTable td a:link,
table.evAccountTable td a:visited,
table.evAccountTable th a:link,
table.evAccountTable th a:visited {
    color: inherit;
    }
table.evAccountTable td.status.unread,
table.evAccountTable td.status.read,
table.evAccountTable td.status.packing,
table.evAccountTable th.status.unread,
table.evAccountTable th.status.read,
table.evAccountTable th.status.packing {
    color: /*style._pending_text_color(*/#E68333/*)*/;
    }
table.evAccountTable td.status.packing > span.icon,
table.evAccountTable th.status.packing > span.icon {
    font-size: 20px;
    }
table.evAccountTable td.status.complete,
table.evAccountTable th.status.complete {
    color: /*style._positive_text_color(*/#3ac981/*)*/;
    }
table.evAccountTable td.status.cancelled,
table.evAccountTable th.status.cancelled {
    color: /*style._cancel_text_color(*/#d1d1d1/*)*/;
    }
table.evAccountTable td.status span.icon,
table.evAccountTable th.status span.icon {
    line-height: 1em;
    }
#page-body .optionsTable,
#page-body .availablePostage {
    background-color: /*style.body_background_color(*/#fcfcfc/*).colorAdjust(0,0,-1,0)*/;
    border-color: /*style.border_color(*/#d7d9dc/*)*/;
    border-radius: 4px;
    }
#page-body .optionsTable table td,
#page-body .availablePostage table td {
    vertical-align: middle;
    padding: /*style._content_half_gap(*/16px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    border-color: /*style.border_color(*/#d7d9dc/*)*/;
    }
#page-body .optionsTable table td.checkbox a.evCheckbox,
#page-body .optionsTable table td.checkbox a.evRadio,
#page-body .availablePostage table td.checkbox a.evCheckbox,
#page-body .availablePostage table td.checkbox a.evRadio {
    vertical-align: baseline;
    }
#page-body .optionsTable table td.content,
#page-body .availablePostage table td.content {
    width: 100%;
    }
#page-body .optionsTable table td label,
#page-body .availablePostage table td label {
    margin: 0 0 1px;
    width: 100%;
    }

/*
    Lists
    -----
*/
ul li,
ol li {
    padding-top: 0;
    padding-bottom: /*style._content_half_gap(*/16px/*)*/;
    }
ul li.last,
ul li:last-child,
ol li.last,
ol li:last-child {
    padding-bottom: 0;
    }
.evEditable ul li,
ul.pretty li {
    list-style: none;
    position: relative;
    }
.evEditable ul li:before,
ul.pretty li:before {
    content: "";
    background-color: /*style.primary(*/#18af37/*)*/;
    width: .5em;
    height: .5em;
    border-radius: 1em;
    display: inline-block;
    position: absolute;
    left: -1.425em;
    top: .5em;
    }
.evEditable ul.tick-list {
    display: block;
    }
ul.tick-list li {
    list-style: none;
    position: relative;
    }
ul.tick-list li:before {
    content: "\e0ef";
    font-family: "ev2";
    background: none;
    color: /*style.primary(*/#18af37/*)*/;
    display: inline-block;
    position: absolute;
    left: -1.5em;
    top: .25em;
    line-height: 1;
    }
ul.qa {
    list-style-type: none;
    padding: 40px 0 20px;
    border-top: 1px solid /*style.border_color(*/#d7d9dc/*)*/;
    position: relative;
    }
ul.qa li {
    padding: 0 10px 20px 30px;
    position: relative;
    }
ul.qa li .error {
    display: inline-block;
    padding-right: 10px;
    position: absolute;
    left: 5px;
    }

/*
    Content
	-------
*/
.contentSection,
.headerContainer,
.contentBlock,
.asideSection,
.asideItem {
    position: relative;
    }
.contentSection.first,
.contentSection:first-child,
.headerContainer.first,
.headerContainer:first-child,
.contentBlock.first,
.contentBlock:first-child,
.asideSection.first,
.asideSection:first-child,
.asideItem.first,
.asideItem:first-child {
    padding-top: 0;
    }
.contentSection.last,
.contentSection:last-child,
.headerContainer.last,
.headerContainer:last-child,
.contentBlock.last,
.contentBlock:last-child,
.asideSection.last,
.asideSection:last-child,
.asideItem.last,
.asideItem:last-child {
    padding-bottom: 0;
    }
.asideItem {
    padding-top: /*style._content_half_gap(*/16px/*)*/;
    padding-bottom: /*style._content_half_gap(*/16px/*)*/;
    }
.contentBlock {
    padding-left: 0;
    padding-right: 0;
    }
.contentSection {
    border: 0 solid /*style.border_color(*/#bcbfc4/*).colorAdjust(0,0,-10%,0)*/;
    }
.contentSection[class*="halfpad"],
.contentSection[class*="stdpad"],
.contentSection[class*="doublepad"] {
    padding-top: /*style._content_gap(*/32px/*)*/;
    padding-right: 0;
    padding-bottom: /*style._content_gap(*/32px/*)*/;
    padding-left: 0;
    }
.contentSection.tabContainer,
.contentSection.toolbarSection {
    padding-bottom: 0;
    }
.contentSection.paginationSection {
    padding-top: 0;
    }
.contentSection.imageSection {
    position: relative;
    text-shadow: 0 0 10px rgba(0,0,0,.1);
    }
.contentSection.imageSection > .contentSection-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: .5;
    }
.contentSection.borderTop {
    border-top-width: 1px;
    }
.contentSection.borderBottom {
    border-bottom-width: 1px;
    }
.contentSection.borderLeft {
    border-left-width: 1px;
    }
.contentSection.borderRight {
    border-right-width: 1px;
    }
.headerContainer {
    position: relative;
    width: 100%;
    padding: 0 0 /*style._content_gap(*/32px/*)*/ 0;
    }
.headerContainer + .contentSection,
.headerContainer + .contentBlock {
    padding-top: 0;
    }

/*
    Alerts and Notices
    ------------------
*/
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) {
    background-image: none;
    background-color: /*style._alert_color(*/#fe553e/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/32px/*)*/;
    border-radius: 4px;
    color: #fff;
    }
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) h1,
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) h2,
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) h3,
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) h4,
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) h5,
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) h6,
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) .title {
    color: inherit;
    }
.evAlert:not(#evShippingAlert):not(.noAvailableShipping) + div {
    margin-top: /*style._content_gap(*/32px/*)*/;
    }
.evNotices .error-summary {
    background-color: /*style._alert_color(*/rgba(254,85,62,.1)/*).colorAdjust(0,0,0,-90%)*/;
    margin: /*style._content_third_gap(*/10px/*)*/ 0 /*style._content_two_third_gap(*/20px/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    border: 1px solid /*style._alert_color(*/#fe553e/*)*/;
    border-radius: 4px;
    color: /*style._alert_color(*/#fe553e/*)*/;
    }
.evNotices .success-summary,
.evNotices .flash.info,
.evFormComplete {
    margin: /*style._content_third_gap(*/10px/*)*/ 0 /*style._content_two_third_gap(*/20px/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    border: 1px solid /*style._positive_text_color(*/#3ac981/*)*/;
    border-radius: 4px;
    background-color: /*style._positive_text_color(*/rgba(58,201,129,.1)/*).colorAdjust(0,0,0,-90%)*/;
    color: /*style._positive_text_color(*/#3ac981/*)*/;
    }
.evNotices h1,
.evNotices h2,
.evNotices h3,
.evNotices h4,
.evNotices h5,
.evNotices h6,
.evNotices .title {
    color: inherit;
    font-size: /*style.h5_font_size(*/24px/*)*/;
    }
.evFormComplete {
    padding: /*style._content_two_third_gap(*/20px/*)*/ !important;
    }
#evAuthLoginArea {
    padding: 1.5rem;
    }
#evAuthLoginArea {
    margin: 1.5rem 0 0;
    }

/*
    Author
    ------
*/
.author {
    display: table;
    position: relative;
    color: /*style.heading_color(*/#001C42/*)*/;
    font-size: 14px;
    }
.author .author-thumbnail,
.author .author-details {
    display: table-cell;
    vertical-align: middle;
    }
.author .author-thumbnail {
    display: table-cell;
    }
.author .author-thumbnail .evAvatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 40px;
    }
.author .author-thumbnail .evAvatar span {
    display: inline-block;
    vertical-align: middle;
    }
.author .author-details {
    padding-left: 10px;
    }
.author .author-details .author-name,
.author .author-details .posted-on {
    display: block;
    }
.author .author-details .posted-on {
    font-size: 12px;
    }

/*
    Mobile Show/Hide
    ----------------
*/
.mobile-only {
    display: none;
    }
@media screen and (max-width: /*style._first_content_break_max(*/960px/*)*/) {
.mobile-only {
    display: block;
    }
.mobile-hide {
    display: none;
    }
}

.text-readable {
    max-width: 30rem;
    margin: 0 auto;
    }
.text-align-center {
    text-align: center;
    }
.text-small {
    font-size: .875em;
    }
.justify-content-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.align-items-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.evPerPage {
    display: block;
    }
.evPerPage .evSelectButton {
    margin: 0;
    }
.evRating {
    margin: -2px;
    }
.evRating.x32 {
    margin: -5px;
    }
.alternate-background {
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.alternate-background.is-pod.klarna-pod,
.alternate-background.is-pod.newpay-pod {
    border-radius: 16px;
    }
.alternate-background.is-pod.klarna-pod {
    background: #ffb3c7;
    color: #303030;
    }
.alternate-background.is-pod.newpay-pod {
    color: #fff;
    background: #02d09e;
    }
.alternate-background.is-pod.newpay-pod .eyebrow {
    color: rgba(255,255,255,.7);
    }
.alternate-background.is-pod a.action-link {
    color: #001C42;
    border-color: #fff;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.alternate-background.is-pod.klarna-pod a.action-link {
    background: #000;
    border-color: #000;
    color: #fff;
    font-weight: 400;
    }
.scrollable {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    }
.scrollable::-webkit-scrollbar,
.scrollable::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
    }
.scrollable::-webkit-scrollbar {
    width: .4em;
    }
.scrollable::-webkit-scrollbar-thumb {
    background: #d1d7d7;
    }
.scrollable::-webkit-scrollbar,
.scrollable::-webkit-scrollbar-thumb {
    overflow: visible;
    border-radius: 4px;
    }
.content-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    }
ul.faqs {
    padding: 0;
    border-bottom: 1px solid #dcdfe3;
    padding-bottom: 1rem;
    margin-top: 1rem;
    }
ul.faqs li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    padding-right: 40px;
    }
ul.faqs li:nth-child(odd) {
    font-weight: bold;
    position: relative;
    cursor: pointer;
    color: /*style.heading_color(*/#001C42/*)*/;
    margin-top: 1rem;
    border-top: 1px solid #dcdfe3;
    padding-top: 1.5rem;
    }
ul.faqs li:nth-child(odd):after {
    position: absolute;
    font-family: "ev2";
    content: "\e0b1";
    right: 0;
    top: 16px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    font-size: 24px;
    opacity: .5;
    }
ul.faqs li:nth-child(even) {
    overflow: hidden;
    max-height: 1000px;
    margin-top: .5rem;
    -webkit-transition: max-height .5s ease-in-out,opacity .5s ease-in-out;
    transition: max-height .5s ease-in-out,opacity .5s ease-in-out;
    opacity: 1;
    }
ul.faqs li:before {
    content: none;
    }
ul.faqs li.is-closed + li {
    max-height: 0;
    opacity: 0;
    }
ul.faqs li.is-closed:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    }
.alternate-background.is-pod {
    padding: 2rem;
    border-radius: 3px;
    }
img.border-radius {
    border-radius: 16px;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/* 
    Page Canvas
    -----------
*/
#page-canvas {
    position: relative;
    display: block;
    padding: 0;
    margin: -24px auto 0 auto;
    }

/*
	Wrappers
	--------
*/
#wrapper-links,
#wrapper-header,
#wrapper-notice,
#wrapper-banner,
#wrapper-breadcrumbs,
#wrapper-body,
#wrapper-footer,
#wrapper-company {
    display: block;
    clear: both;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    }

/*
	Page Breakdown
	--------------
*/
#page-links,
#page-header,
#page-notice,
#page-banner,
#page-breadcrumbs,
#page-body,
#page-footer,
#page-company {
    margin: 0 auto;
    position: relative;
    }

/*
    Cookie Consent
    --------------
*/
#page-cookie {
    padding-top: /*style._content_gap(*/32px/*)*/;
    padding-bottom: /*style._content_gap(*/32px/*)*/;
    }

/*
* Product Upselling
* -----------------
*/
#evCartUpsellScreen h1,
#evCartUpsellScreen h2,
#evCartUpsellScreen h3,
#evCartUpsellScreen h4,
#evCartUpsellScreen h5,
#evCartUpsellScreen h6,
#evCartUpsellScreen .title,
#upsellDialogInner h1,
#upsellDialogInner h2,
#upsellDialogInner h3,
#upsellDialogInner h4,
#upsellDialogInner h5,
#upsellDialogInner h6,
#upsellDialogInner .title {
    font-size: /*style.h4_font_size(*/28px/*)*/;
    }
#evCartUpsellScreen span.inline-block,
#upsellDialogInner span.inline-block {
    max-width: calc(100% - 80px);
    }
#evCartUpsellScreen .doublepad,
#evCartUpsellScreen .stdpad,
#upsellDialogInner .doublepad,
#upsellDialogInner .stdpad {
    padding: /*style._content_half_gap(*/16px/*)*/;
    }
#evCartUpsellScreen td > label,
#upsellDialogInner td > label {
    font-weight: /*style.text_font_weight(*/400/*)*/;
    }
@media (max-width:/*style._second_content_break(*/658px/*)*/) {
#evCartUpsellScreen td > label,
#upsellDialogInner td > label {
    font-size: 0;
    }
#evCartUpsellScreen td > label strong,
#upsellDialogInner td > label strong {
    font-size: 14px;
    }
}

/* Resaved 20/01/2022 */
/*
    @section Notice banner
*/
#desktop-header-wrapper {
    position: relative;
    z-index: 999;
    border-bottom: 4px solid /*style.primary(*/#18af37/*)*/;
    background-color: #FFF;
    padding-top: 1rem;
    }
@media (min-width: 960px) {
#desktop-header-wrapper {
    padding-bottom: 1rem;
    }
}

@media (min-width: 1200px) {
#desktop-header-wrapper {
    padding-bottom: 0;
    }
}

#mobile-header-wrapper {
    border-bottom: 4px solid /*style.primary(*/#18af37/*)*/;
    z-index: 101;
    width: 100%;
    background-color: #FFF;
    padding: 1rem 0 .5rem 0;
    }
#mobile-header-wrapper #header-logo {
    padding-right: 0;
    }
#mobile-header-wrapper #header-menu-toggle {
    margin-right: .5rem;
    }
#mobile-header-wrapper .header-search {
    position: absolute;
    width: 100%;
    bottom: 120%;
    left: 0;
    -webkit-transition: bottom 500ms;
    transition: bottom 500ms;
    }
#mobile-header-wrapper .header-search.active {
    bottom: -6rem;
    }
.header-logo svg {
    width: 100%;
    max-height: 50px;
    max-width: 200px;
    }
#wrapper-notice {
    background-color: /*style.header_notice_background_color(*/#2CA94A/*)*/;
    color: /*style.header_notice_text_color(*/#fff/*)*/;
    display: /*style.header_notice_bar(*/none/*)*/;
    margin-top: 24px;
    }
#page-notice {
    text-transform: /*style.header_text_transformation(*/none/*)*/;
    text-align: /*style.header_notice_alignment(*/center/*)*/;
    padding-top: 10px;
    padding-bottom: 10px;
    }
#page-notice a {
    color: inherit;
    text-decoration: underline;
    }
#page-notice p,
#page-notice a,
#page-notice span,
#page-notice div {
    font-size: 14px;
    }

/*
    Header
    ------
*/
#wrapper-header {
    background-color: /*style.header_background_color(*/#FFF/*)*/;
    color: /*style.header_text_color(*/#001C42/*)*/;
    border-bottom: 1px solid /*style.header_border_color(*/#E9E9E9/*)*/;
    }
#page-header {
    padding: 10px 20px;
    }
#page-header #header-menu-toggle .evMenuToggle span,
#page-header #header-menu-toggle .evMenuToggle span:before,
#page-header #header-menu-toggle .evMenuToggle span:after {
    background: /*style.header_text_color(*/#001C42/*)*/;
    }
#page-header .ev-block.icon-container {
    max-height: 24px;
    }
@media (min-width: 960px) {
#page-header {
    padding: 10px 30px;
    }
}

@media (min-width: 1200px) {
#page-header {
    padding: 10px 40px;
    }
}

@media (min-width: 1600px) {
#page-header {
    padding: 10px 60px;
    }
}

/*
    @section Header Cart Icon
    Show when the cart has items in it.
 */
#minicart-anchor.has-items .icon {
    position: relative;
    }
#minicart-anchor.has-items .icon:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: /*style.primary(*/#18af37/*)*/;
    border-radius: 50%;
    bottom: -8px;
    right: -8px;
    border: 3px solid /*style.header_background_color(*/#FFF/*)*/;
    }
#desktop-header-wrapper #header-logo {
    padding-right: 2rem;
    }
@media (min-width: 1200px) {
#desktop-header-wrapper #header-logo {
    position: relative;
    bottom: .5rem;
    }
}

.header-search {
    position: relative;
    z-index: 99;
    background-color: #f5f5f5;
    border-radius: 32px;
    }
.header-search:hover {
    background-color: #E8E8E8;
    }
.header-search:hover .textfieldContainer {
    background-color: #E8E8E8;
    }
.header-search:hover .textfieldContainer .evTextField {
    background-color: #E8E8E8;
    }
.header-search .textfieldContainer {
    padding: 0 8px;
    background-color: #f5f5f5;
    border-radius: 32px;
    }
.header-search .textfieldContainer .evTextField {
    border: 0;
    border-radius: 32px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    font-size: 14px;
    -webkit-transition: none;
    transition: none;
    background-color: #f5f5f5;
    }
.header-search .evTextFieldInput {
    height: auto;
    }
.header-search .quickSearchResults {
    position: absolute;
    z-index: 999;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    }
.header-search .quickSearchResults .more-results {
    background: #F5F5F5;
    }
#page-header .page-navigation {
    position: relative;
    z-index: 2;
    }
#page-header .page-navigation .navigation div {
    margin-left: 1rem;
    }
#page-header .page-navigation .navigation div:first-of-type {
    margin-left: 0;
    }
.quickSearchResults {
    overflow: auto;
    max-height: 70vh;
    }
.quickSearchResults .quickSearchResult {
    border-radius: .5rem;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
    border: 2px solid transparent;
    }
.quickSearchResults .quickSearchResult:hover {
    border: 2px solid /*style.primary(*/#18af37/*)*/;
    }

/**
        @section Custom scrollbars
    
        This is for the benefit of webkit browsers because we just don't like
        the standard rendering of scrollbars.
     */
body ::-webkit-scrollbar {
    width: .75rem;
    height: .75rem;
    }
body ::-webkit-scrollbar-corner {
    display: none;
    }
body ::-webkit-scrollbar-thumb {
    min-height: 28px;
    padding-top: 100px;
    border-radius: 8px;
    margin-right: 3px;
    border: 3px solid transparent;
    background-clip: padding-box;
    background-color: /*style.text_color(*/#56677F/*)*/;
    }
body ::-webkit-scrollbar-thumb:hover {
    background-color: /*style.text_color(*/#56677F/*)*/;
    }
body ::-webkit-scrollbar-track {
    border-left: 6px solid transparent;
    border-right: 1px solid transparent;
    background-clip: padding-box;
    }
body ::-webkit-scrollbar:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
#sub-nav,
#sub-nav-slider {
    margin-top: 24px;
    padding: .25rem 0;
    }
#sub-nav .sub-nav-item a,
#sub-nav-slider .sub-nav-item a {
    text-decoration: none;
    color: /*style.text_color(*/#56677F/*)*/;
    }
#sub-nav .sub-nav-item a svg,
#sub-nav-slider .sub-nav-item a svg {
    position: relative;
    top: 6px;
    height: 1.5rem;
    }
#sub-nav .sub-nav-item a span,
#sub-nav-slider .sub-nav-item a span {
    font-size: 14px;
    padding-left: 3px;
    }
#sub-nav .sub-nav-item a:hover,
#sub-nav-slider .sub-nav-item a:hover {
    color: /*style.primary(*/#18af37/*)*/;
    }
#sub-nav #subnav-slider-prev svg,
#sub-nav #subnav-slider-next svg,
#sub-nav-slider #subnav-slider-prev svg,
#sub-nav-slider #subnav-slider-next svg {
    width: 28px !important;
    height: 28px !important;
    position: relative;
    top: 6px;
    }
@media all and (min-width: 960px) {
#sub-nav,
#sub-nav-slider {
    margin-top: 0;
    }
}

@media all and (min-width: 1600px) {
#sub-nav-slider .owl-prev {
    display: none;
    }
#sub-nav-slider .owl-next {
    display: none;
    }
}

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Mobile
    ------
*/
#wrapper-mobile {
    z-index: 999;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: background-color ease-in .15s;
    transition: background-color ease-in .15s;
    }
.is-fixed.fixed-panel #wrapper-mobile {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background-color: rgba(0,0,0,.4);
    }
#page-mobile {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 420px;
    -webkit-transform: translateX(100%) translateZ(0);
    -ms-transform: translateX(100%) translateZ(0);
    transform: translateX(100%) translateZ(0);
    -webkit-transition: transform ease-in-out .15s;
    transition: transform ease-in-out .15s;
    }
.is-fixed.fixed-panel:not(.closing-fixed) #page-mobile {
    -webkit-transform: translateX(0) translateZ(0);
    -ms-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0);
    }
#page-mobile .evBubble {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    margin-left: /*style._content_gap(*/32px/*)*/;
    -webkit-box-shadow: 0 0 50px rgba(0,0,0,.2);
    box-shadow: 0 0 50px rgba(0,0,0,.2);
    }
#mobile-account .header,
#mobile-cart .header,
#mobile-wishlist .header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    border-bottom: 1px solid /*style.header_border_color(*/#E9E9E9/*)*/;
    font-size: 14px;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    }
#mobile-account .header .header-title .icon,
#mobile-account .header .header-title .label,
#mobile-cart .header .header-title .icon,
#mobile-cart .header .header-title .label,
#mobile-wishlist .header .header-title .icon,
#mobile-wishlist .header .header-title .label {
    vertical-align: top;
    }
#mobile-account .header .header-title .icon,
#mobile-cart .header .header-title .icon,
#mobile-wishlist .header .header-title .icon {
    font-size: 18px;
    margin-top: 3px;
    }
#mobile-account .header .header-title .icon.cart,
#mobile-cart .header .header-title .icon.cart,
#mobile-wishlist .header .header-title .icon.cart {
    margin-top: 4px;
    }
#mobile-account .header .header-title .icon.contact,
#mobile-cart .header .header-title .icon.contact,
#mobile-wishlist .header .header-title .icon.contact {
    margin-top: 2px;
    }
#mobile-account .header .header-title .label .items,
#mobile-cart .header .header-title .label .items,
#mobile-wishlist .header .header-title .label .items {
    font-weight: /*style.text_font_weight(*/400/*)*/;
    }
#mobile-account .header a span.icon.cancel,
#mobile-cart .header a span.icon.cancel,
#mobile-wishlist .header a span.icon.cancel {
    font-size: 1.4em;
    margin-top: 3px;
    }
#mobile-account .header a span.icon.heart,
#mobile-cart .header a span.icon.heart,
#mobile-wishlist .header a span.icon.heart {
    font-size: 1.1em;
    margin-top: 1px;
    }
#mobile-account .header a span.icon + .label,
#mobile-cart .header a span.icon + .label,
#mobile-wishlist .header a span.icon + .label {
    padding-left: 6px;
    }
#mobile-account .header a:link:hover,
#mobile-account .header a:link.hover,
#mobile-account .header a:link:focus,
#mobile-account .header a:link.focus,
#mobile-account .header a:visited:hover,
#mobile-account .header a:visited.hover,
#mobile-account .header a:visited:focus,
#mobile-account .header a:visited.focus,
#mobile-cart .header a:link:hover,
#mobile-cart .header a:link.hover,
#mobile-cart .header a:link:focus,
#mobile-cart .header a:link.focus,
#mobile-cart .header a:visited:hover,
#mobile-cart .header a:visited.hover,
#mobile-cart .header a:visited:focus,
#mobile-cart .header a:visited.focus,
#mobile-wishlist .header a:link:hover,
#mobile-wishlist .header a:link.hover,
#mobile-wishlist .header a:link:focus,
#mobile-wishlist .header a:link.focus,
#mobile-wishlist .header a:visited:hover,
#mobile-wishlist .header a:visited.hover,
#mobile-wishlist .header a:visited:focus,
#mobile-wishlist .header a:visited.focus {
    color: /*style.primary(*/#18af37/*)*/;
    }
#mobile-account .items-container,
#mobile-cart .items-container,
#mobile-wishlist .items-container {
    position: relative;
    }
#mobile-account .items-container.ps-active-y,
#mobile-cart .items-container.ps-active-y,
#mobile-wishlist .items-container.ps-active-y {
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
#mobile-account .account-container {
    text-align: center;
    padding: 1.5rem;
    }
#mobile-account .account-container .userThumbnail .evAvatar {
    color: /*style.primary(*/#18af37/*)*/;
    margin-bottom: /*style._content_half_gap(*/16px/*)*/;
    overflow: hidden;
    padding: 2px;
    }
#mobile-account .account-container .userThumbnail .evAvatar img {
    display: block;
    border-radius: 50%;
    }
#mobile-account .account-container .userThumbnail h1,
#mobile-account .account-container .userThumbnail h2,
#mobile-account .account-container .userThumbnail h3,
#mobile-account .account-container .userThumbnail h4,
#mobile-account .account-container .userThumbnail h5,
#mobile-account .account-container .userThumbnail h6,
#mobile-account .account-container .userThumbnail .title {
    margin: 0;
    }
#mobile-account .account-container .userMenu ul.evMenu {
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    text-align: center;
    }
#mobile-account .account-container .userMenu ul.evMenu li {
    text-align: inherit;
    }
#mobile-account .account-container .userMenu ul.evMenu li.active > a,
#mobile-account .account-container .userMenu ul.evMenu li a:hover,
#mobile-account .account-container .userMenu ul.evMenu li a.hover,
#mobile-account .account-container .userMenu ul.evMenu li a:focus,
#mobile-account .account-container .userMenu ul.evMenu li a.focus {
    color: /*style.primary(*/#18af37/*)*/;
    }
#mobile-account .account-container .userMenu ul.evMenu li a:hover,
#mobile-account .account-container .userMenu ul.evMenu li a.hover,
#mobile-account .account-container .userMenu ul.evMenu li a:focus,
#mobile-account .account-container .userMenu ul.evMenu li a.focus {
    background-color: /*style.primary(*/rgba(24,175,55,.05)/*).colorAdjust(0,0,0,-95)*/;
    }
#mobile-account .account-container .userForm .fieldContainer {
    text-align: left;
    }
#mobile-account .account-container .userForm .evButton {
    display: block;
    border-radius: 50px;
    }
#mobile-account .account-container .userForm .evButton.evButtonProceed {
    height: 50px;
    }
#mobile-account .account-container .userForm .evButton.evButtonProceed .label {
    height: 48px;
    line-height: 48px;
    }
#mobile-cart .items-container,
#mobile-wishlist .items-container {
    position: relative;
    overflow: auto;
    }
#mobile-cart .items-container.no-items,
#mobile-wishlist .items-container.no-items {
    padding: 0 /*style._content_two_third_gap(*/20px/*)*/;
    background: /*style.highlight_background_color(*/#FBF9F8/*)*/;
    opacity: .7;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    }
#mobile-cart .items-container.no-items .icon,
#mobile-wishlist .items-container.no-items .icon {
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
#mobile-cart .items-container.no-items .label,
#mobile-wishlist .items-container.no-items .label {
    padding: 0;
    }
#mobile-cart .items-container.no-items a,
#mobile-wishlist .items-container.no-items a {
    color: /*style.primary(*/#18af37/*)*/;
    }
#mobile-cart .items-container .evCartProduct,
#mobile-wishlist .items-container .evCartProduct {
    border-bottom: 1px solid #ebebeb;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_half_gap(*/16px/*)*/;
    }
#mobile-cart .items-container .evCartProduct > .inner,
#mobile-wishlist .items-container .evCartProduct > .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
#mobile-cart .items-container .evCartProduct > .inner h1,
#mobile-cart .items-container .evCartProduct > .inner h2,
#mobile-cart .items-container .evCartProduct > .inner h3,
#mobile-cart .items-container .evCartProduct > .inner h4,
#mobile-cart .items-container .evCartProduct > .inner h5,
#mobile-cart .items-container .evCartProduct > .inner h6,
#mobile-cart .items-container .evCartProduct > .inner .title,
#mobile-wishlist .items-container .evCartProduct > .inner h1,
#mobile-wishlist .items-container .evCartProduct > .inner h2,
#mobile-wishlist .items-container .evCartProduct > .inner h3,
#mobile-wishlist .items-container .evCartProduct > .inner h4,
#mobile-wishlist .items-container .evCartProduct > .inner h5,
#mobile-wishlist .items-container .evCartProduct > .inner h6,
#mobile-wishlist .items-container .evCartProduct > .inner .title {
    margin: 0;
    font-weight: normal;
    }
#mobile-cart .items-container .evCartProduct .productInner,
#mobile-wishlist .items-container .evCartProduct .productInner {
    padding-left: 1rem;
    width: 75%;
    }
#mobile-cart .items-container .evCartProduct .image,
#mobile-wishlist .items-container .evCartProduct .image {
    width: 25%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
#mobile-cart .items-container .evCartProduct .image img,
#mobile-wishlist .items-container .evCartProduct .image img {
    max-height: 100%;
    }
#mobile-cart .minicart-footer .evButton,
#mobile-cart .wishlist-footer .evButton,
#mobile-wishlist .minicart-footer .evButton,
#mobile-wishlist .wishlist-footer .evButton {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50px;
    }
#mobile-cart .minicart-footer .evButton.evButtonProceed,
#mobile-cart .wishlist-footer .evButton.evButtonProceed,
#mobile-wishlist .minicart-footer .evButton.evButtonProceed,
#mobile-wishlist .wishlist-footer .evButton.evButtonProceed {
    height: 50px;
    }
#mobile-cart .minicart-footer .evButton.evButtonProceed .label,
#mobile-cart .wishlist-footer .evButton.evButtonProceed .label,
#mobile-wishlist .minicart-footer .evButton.evButtonProceed .label,
#mobile-wishlist .wishlist-footer .evButton.evButtonProceed .label {
    height: 48px;
    line-height: 48px;
    }
#mobile-cart .minicart-footer .minicart-footer-total {
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    font-size: /*style.text_font_size(*/16px/*)*/;
    }
#mobile-cart .minicart-footer .minicart-footer-total table {
    width: 100%;
    }
#mobile-cart .minicart-footer .minicart-footer-total table td {
    padding: 0;
    }
#mobile-cart .minicart-footer .minicart-footer-total table td:not(:first-child) {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
#mobile-cart .minicart-footer .minicart-footer-total table td:not(:last-child) {
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
#mobile-cart .minicart-footer .minicart-footer-total table .price {
    text-align: right;
    }
#mobile-cart .minicart-footer .minicart-footer-total .price {
    font-size: 22px;
    }
@media screen and (max-width: ) {
#mobile-cart .minicart-footer .minicart-footer-total {
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
}

#mobile-cart .header .evButton:hover svg path,
#mobile-wishlist .header .evButton:hover svg path,
#mobile-account .header .evButton:hover svg path {
    stroke: /*style.primary(*/#18af37/*)*/;
    }
#mobile-cart .header .evButton:hover svg circle,
#mobile-wishlist .header .evButton:hover svg circle,
#mobile-account .header .evButton:hover svg circle {
    stroke: /*style.primary(*/#18af37/*)*/;
    }
.wishlist-items svg {
    width: 64px;
    height: 64px;
    }
#mobile-cart .cart-items svg {
    width: 64px;
    height: 64px;
    position: relative;
    right: 8px;
    bottom: 5px;
    }
.account-container .user-login-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
.account-container .user-login-container .user-login .userThumbnail svg {
    border: 2px solid /*style.primary(*/#18af37/*)*/;
    padding: 10px;
    border-radius: 50%;
    height: 74px;
    width: 74px;
    }
.account-container .user-login-container .user-login .userThumbnail svg path {
    stroke: /*style.primary(*/#18af37/*)*/;
    }

/* Resaved 20/01/2022 */
/*
    Mobile Menu
    
    The mobile menu is a slide drawer which slides out from the left of the page. 
    This CSS file is accompanied by the "~/theme/common/js/mobile-menu.js" file,
    which adds all of the required JavaScript for menu interactions.
*/
/*
    @section Mobile Menu Toggle
    
    The burger menu icon has a click event to open #mobile-menu.
*/
.mobile-menu-toggle {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 26px;
    height: 23px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background /*style.animation_speed(*/0.2s/*)*/;
    transition: background /*style.animation_speed(*/0.2s/*)*/;
    }
.mobile-menu-toggle span {
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: /*style.header_text_color(*/#001C42/*)*/;
    -webkit-transition: background 0s /*style.animation_speed(*/0.2s/*)*/;
    transition: background 0s /*style.animation_speed(*/0.2s/*)*/;
    }
.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: /*style.header_text_color(*/#001C42/*)*/;
    -webkit-transition-duration: /*style.animation_speed(*/0.2s/*)*/,/*style.animation_speed(*/0.2s/*)*/;
    transition-duration: /*style.animation_speed(*/0.2s/*)*/,/*style.animation_speed(*/0.2s/*)*/;
    -webkit-transition-delay: /*style.animation_speed(*/0.2s/*)*/,0s;
    transition-delay: /*style.animation_speed(*/0.2s/*)*/,0s;
    }
.mobile-menu-toggle span:before {
    top: -8px;
    -webkit-transition-property: top,transform;
    transition-property: top,transform;
    }
.mobile-menu-toggle span:after {
    bottom: -8px;
    -webkit-transition-property: bottom,transform;
    transition-property: bottom,transform;
    }
.mobile-menu-toggle.is-active span {
    background: none !important;
    }
.mobile-menu-toggle.is-active span:before,
.mobile-menu-toggle.is-active span:after {
    -webkit-transition-delay: 0s,/*style.animation_speed(*/0.2s/*)*/;
    transition-delay: 0s,/*style.animation_speed(*/0.2s/*)*/;
    }
.mobile-menu-toggle.is-active span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    }
.mobile-menu-toggle.is-active span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }

/**
    @section Disable body scrolling
    
    When the mobile menu is open, only the menu itself should be scrollable. 
    Scrolling on the main page is disabled to prevent multiple scroll points.
 */
html.is-menu-open,
html.is-menu-open body {
    overflow: hidden;
    }

/**
    @section Mobile Menu Container
    
    The mobile menu is sliding drawer, which is closed by default and 
    uses CSS transform to slide open rather than using JavaScript animations. 
 */
#mobile-menu {
    padding-top: 80px;
    background-color: /*style.header_background_color(*/#FFF/*)*/;
    color: /*style.header_text_color(*/#001C42/*)*/;
    height: calc(var(--vh,1vh) * 100);
    width: 100%;
    max-width: 300px;
    position: fixed;
    z-index: 100;
    top: 0;
    -webkit-box-shadow: 3px 3px 27px rgba(0,0,0,.4);
    box-shadow: 3px 3px 27px rgba(0,0,0,.4);
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    }
#mobile-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    }
@media (min-width: 960px) {
#mobile-menu {
    padding-top: 80px;
    }
}

/**
    @section Mobile menu header
    
    Contains a close button. 
 */
#mobile-menu header {
    text-align: right;
    -webkit-flex: initial;
    -ms-flex: initial;
    flex: initial;
    }
#mobile-menu header button {
    padding: 10px;
    }
#mobile-menu header button.close-menu {
    border: 0;
    background: transparent;
    }
#mobile-menu header button.close-menu .icon {
    line-height: 1;
    color: /*style.header_text_color(*/#001C42/*)*/;
    }
#mobile-menu footer {
    border-top: 1px solid #C2CCDA;
    padding: 1rem;
    }

/**
    @section Menu Nodes
    
    General styling of the menu node hierarchy. 
 */
#mobile-menu nav {
    overflow: auto;
    }
#mobile-menu .menu-container {
    overflow: hidden;
    }
#mobile-menu .evMenu {
    padding: 0 1em;
    position: relative;
    -webkit-transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    }
#mobile-menu .evMenu ul {
    border: 0;
    padding: 0 1em;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    position: absolute;
    -webkit-transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    min-width: auto;
    margin: 0;
    }
#mobile-menu .evMenu li {
    position: static;
    display: block;
    }
#mobile-menu .evMenu li a {
    border: 0;
    font-size: 1rem;
    padding: 1em;
    border-radius: 5px;
    white-space: normal;
    }
#mobile-menu .evMenu li:hover > a,
#mobile-menu .evMenu li:focus > a,
#mobile-menu .evMenu li:active > a,
#mobile-menu .evMenu li.active > a,
#mobile-menu .evMenu li.open > a {
    background-color: transparent;
    text-decoration: none;
    }
#mobile-menu .evMenu li:hover > ul,
#mobile-menu .evMenu li:focus > ul,
#mobile-menu .evMenu li:active > ul,
#mobile-menu .evMenu li.active > ul,
#mobile-menu .evMenu li.open > ul {
    display: none;
    }

/**
    @section Selected Menu Nodes
    
    A "is-selected" class is added to parent <li> nodes
    when clicked via JavaScript in the file:
    "~/theme/common/js/mobile-menu.js"
 */
#mobile-menu .evMenu li.is-selected > ul {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    }

/**
    @section Parent Menu Items
    
    Add a chevron to all parent nodes in the menu
    to denote the availability of child nodes. 
 */
#mobile-menu .evMenu li.evMenuParent > a {
    padding: 1em 2em 1em 1em;
    position: relative;
    }
#mobile-menu .evMenu li.evMenuParent > a:after {
    font-family: "ev2";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e092";
    font-size: 16px;
    position: absolute;
    right: .5em;
    top: 64%;
    margin-top: -.5em;
    }
#mobile-menu .evMenu li.evMenuLevel_1 > a:after {
    top: 50%;
    }

/**
    @section Mobile menu back buttons
    
    A back button is added via JavaScript in the 
    "~/theme/common/js/mobile-menu.js" file to all menu items that 
    are parent nodes. 
 */
#mobile-menu .evMenu li.menu-back {
    border-bottom: 1px solid /*style.header_border_color(*/#E9E9E9/*)*/;
    margin-bottom: .5em;
    }
#mobile-menu .evMenu li.menu-back a {
    position: relative;
    padding-left: 38px;
    font-weight: bold;
    }
#mobile-menu .evMenu li.menu-back a:after {
    font-family: "ev2";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e095";
    font-size: 16px;
    position: absolute;
    left: .5em;
    top: 50%;
    margin-top: -.5em;
    }
#mobile-menu .evMenu li.menu-back:hover a {
    color: /*style.primary(*/#18af37/*)*/;
    }

/**
    @section Mega Meny in Mobile Menu
    
    Mega menu should not have any effect/styling for the mobile
    menu otherwise it interferes with the sliding functionality. 
*/
#mobile-menu .evMenu li.evMenuMegamenu > ul > li {
    float: none;
    }
#mobile-menu .evMenu li.evMenuColumn {
    padding: 0;
    }
#mobile-menu .evMenu li.evMenuColumn > ul {
    padding: 0;
    }

/**
    @section Grid Menu in Mobile Menu
    
    Administrators may select a "grid menu" format, which
    shows a thumbnail image alongside the title and description
    for page/category objects. 
*/
#mobile-menu .evMenu li.evMenuGrid > ul > li.evMenuLinkHasThumbnail > a {
    padding-left: 60px;
    min-height: auto;
    }
#mobile-menu .evMenu li.evMenuGrid > ul > li.evMenuLinkHasThumbnail > a .evMenuLinkDescription {
    font-size: 90%;
    }
#mobile-menu .evMenu li.evMenuGrid > ul > li.evMenuLinkHasThumbnail > a .evMenuLinkThumbnail {
    width: 48px;
    height: 48px;
    left: 0;
    }

/**
    @section Mobile Menu Overlay
    
    An overlay which covers the page behind the mobile menu. 
    This should accept click events to close the mobile menu
    when the menu is open.
 */
#mobile-menu-overlay {
    background: /*style.primary(*/#06280d/*).colorAdjust(0,0,-30,0)*/;
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    width: 100%;
    z-index: 99;
    pointer-events: none;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    opacity: 0;
    }
#mobile-menu-overlay.is-open {
    opacity: .6;
    pointer-events: all;
    }

/* Resaved 20/01/2022 */
/*
    Header navigation
    
 */
#header-nav {
    z-index: 2;
    }
#header-nav .evMenu {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    }
#header-nav .evMenu {
    z-index: 999;
    font-size: .9375rem;
    }
#header-nav .evMenu a {
    color: /*style.text_color(*/#56677F/*)*/;
    }
#header-nav .evMenu > li {
    border-bottom: 4px solid transparent;
    }
#header-nav .evMenu > li:hover {
    border-bottom: 4px solid #003071;
    }
#header-nav .evMenu > li > a {
    font-family: "Outfit",Helvetica,Arial,sans-serif;
    font-weight: 600;
    color: #18315A;
    }
#header-nav .evMenu .evMenuColumn {
    float: none;
    padding: 0 1rem;
    }
#header-nav .evMenu .evMenuColumn > ul > li > a {
    font-family: "Outfit",Helvetica,Arial,sans-serif;
    font-weight: 600;
    color: #18315A;
    }
#header-nav .evMenu .evMenuColumn > ul > li > ul a {
    border-radius: 5px;
    -webkit-transition: .25s background ease-in-out;
    transition: .25s background ease-in-out;
    position: relative;
    padding-right: 32px;
    }
#header-nav .evMenu .evMenuColumn > ul > li > ul a:before {
    content: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-search-continue.svg?v=1733740115);
    width: 24px;
    height: 24px;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    position: absolute;
    right: .25rem;
    top: 50%;
    margin-top: -12px;
    -webkit-transform: translateX(-.5rem);
    -ms-transform: translateX(-.5rem);
    transform: translateX(-.5rem);
    opacity: 0;
    -webkit-transition: .25s all ease-in-out;
    transition: .25s all ease-in-out;
    }
#header-nav .evMenu .evMenuColumn > ul > li > ul a:hover,
#header-nav .evMenu .evMenuColumn > ul > li > ul a:focus {
    background: #F8FAFB;
    }
#header-nav .evMenu .evMenuColumn > ul > li > ul a:hover:before,
#header-nav .evMenu .evMenuColumn > ul > li > ul a:focus:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: .5;
    }
#header-nav .evMenu .evMenuColumn > ul > li + li {
    margin-top: 1.5rem;
    }
#header-nav .evMenu .evMenuColumn + .evMenuColumn {
    border-left: 1px solid #e8ebeb;
    }
#header-nav .evMenu li.evMenuMegamenu {
    position: initial;
    }
#header-nav .evMenu li.evMenuMegamenu > ul {
    width: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem 0 2rem 0;
    border-top: 1px solid #e8ebeb;
    top: 100%;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    border-bottom: 4px solid /*style.primary(*/#18af37/*)*/;
    }
#header-nav .evMenu li.evMenuMegamenu:hover > ul,
#header-nav .evMenu li.evMenuMegamenu:focus > ul,
#header-nav .evMenu li.evMenuMegamenu.open > ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    }
#header-nav .evMenu > li.evMenuFlyout > ul {
    padding: 1.5rem 1rem;
    }
#header-nav .evMenu > li.evMenuFlyout > ul a {
    border-radius: 5px;
    -webkit-transition: .25s background ease-in-out;
    transition: .25s background ease-in-out;
    position: relative;
    padding-right: 32px;
    }
#header-nav .evMenu > li.evMenuFlyout > ul a:before {
    content: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-search-continue.svg?v=1733740115);
    width: 24px;
    height: 24px;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    position: absolute;
    right: .25rem;
    top: 50%;
    margin-top: -12px;
    -webkit-transform: translateX(-.5rem);
    -ms-transform: translateX(-.5rem);
    transform: translateX(-.5rem);
    opacity: 0;
    -webkit-transition: .25s all ease-in-out;
    transition: .25s all ease-in-out;
    }
#header-nav .evMenu > li.evMenuFlyout > ul a:hover,
#header-nav .evMenu > li.evMenuFlyout > ul a:focus {
    background: #F8FAFB;
    }
#header-nav .evMenu > li.evMenuFlyout > ul a:hover:before,
#header-nav .evMenu > li.evMenuFlyout > ul a:focus:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: .5;
    }
#header-nav .evMenu > li:hover > ul,
#header-nav .evMenu > li:focus > ul,
#header-nav .evMenu > li.open > ul {
    -webkit-animation: .25s menu-open ease-in-out;
    animation: .25s menu-open ease-in-out;
    }
@-webkit-keyframes menu-open {
0% {
    -webkit-transform: translateY(-.5rem);
    transform: translateY(-.5rem);
    opacity: 0;
    }
80%,
100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    }
}

@keyframes menu-open {
0% {
    -webkit-transform: translateY(-.5rem);
    -ms-transform: translateY(-.5rem);
    transform: translateY(-.5rem);
    opacity: 0;
    }
80%,
100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    }
}

/* Resaved 20/01/2022 */
.header-search .textfieldContainer {
    position: relative;
    padding-left: 40px;
    }
.header-search .textfieldContainer svg {
    position: absolute;
    top: 7px;
    left: 20px;
    }
.header-search .textfieldContainer svg path {
    stroke: #6C7D93;
    }
.header-search .textfieldContainer .icon.search-continue {
    cursor: pointer;
    position: absolute;
    top: 6px;
    right: 20px;
    }
.header-search .textfieldContainer .icon.search-continue:before {
    content: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-search-continue.svg?v=1733740115);
    }
.header-search .textfieldContainer svg.hidden {
    visibility: hidden;
    }
.header-search .textfieldContainer svg.icon-in-progress {
    top: 9px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    }
.header-search .textfieldContainer .quickSearchResults .quickSearchResult {
    padding: 1rem;
    }
.header-search .textfieldContainer .quickSearchResults .quickSearchResult .product-image {
    width: 80px;
    height: 80px;
    position: relative;
    }
.header-search .textfieldContainer .quickSearchResults .quickSearchResult .product-image img {
    position: absolute;
    top: 0 right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    }
.header-search .textfieldContainer .quickSearchResults .quickSearchResult .product-details * {
    margin-bottom: 0;
    }
.header-search .textfieldContainer .quickSearchResults .quickSearchResult .product-details .price.is-current {
    font-weight: normal;
    }
.header-search .textfieldContainer .quickSearchResults .more-results a.action-link {
    display: inline-block;
    margin: 1rem 0;
    font-weight: 700;
    }
@-webkit-keyframes spin {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    }
}

@keyframes spin {
0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    }
}

/* Resaved 20/01/2022 */
/* 
   Banner 
   ------
   TODO
*/

/* Resaved 20/01/2022 */
/*
    Breadcrumbs
*/
#wrapper-breadcrumbs,
.breadcrumbsContainer {
    background-color: /*style.header_background_color(*/#FFF/*)*/;
    font-size: 13px;
    color: /*style.text_color(*/#8b9ab0/*).colorAdjust(0,0,20,0)*/;
    -webkit-box-shadow: 0 5px 10px -7px /*style.heading_color(*/rgba(0,28,66,.25)/*).colorAdjust(0,0,0,-75)*/;
    box-shadow: 0 5px 10px -7px /*style.heading_color(*/rgba(0,28,66,.25)/*).colorAdjust(0,0,0,-75)*/;
    }
.breadcrumbsContainer > ul.evBreadcrumbs {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 1.5rem;
    }
@media only screen and (min-width: 600px) {
.breadcrumbsContainer > ul.evBreadcrumbs {
    max-width: 90vw;
    }
}

@media only screen and (min-width: 1600px) {
.breadcrumbsContainer > ul.evBreadcrumbs {
    max-width: 1440px;
    }
}

ul.evBreadcrumbs {
    padding: 10px 0;
    }
ul.evBreadcrumbs li {
    padding: 2px 0;
    }
ul.evBreadcrumbs li a:hocus {
    color: /*style.primary(*/#18af37/*)*/;
    }
ul.evBreadcrumbs li.separator {
    padding-left: 5px;
    padding-right: 5px;
    }
ul.evBreadcrumbs li.crumb.location {
    color: /*style.heading_color(*/#001C42/*)*/;
    }

/*
    Body
    ----
*/
#wrapper-body {
    background-color: /*style.body_background_color(*/#fff/*)*/;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
#wrapper-newsletter p {
    font-size: 14px !important;
    margin-top: 20px;
    color: #56677F;
    }
#wrapper-newsletter form {
    border-bottom: none;
    }
#newsletter-form form {
    padding-top: 12px;
    padding-bottom: 10px;
    }
#newsletter-form form .textfieldContainer {
    position: relative;
    }
#newsletter-form form .textfieldContainer .evTextField {
    padding-left: 20px;
    border: 2px solid #AEB5BC;
    border-radius: 20px;
    }
#newsletter-form form .textfieldContainer .icon.search-continue {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    }
#newsletter-form form .textfieldContainer .icon.search-continue:before {
    content: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-search-continue.svg?v=1733740115);
    }

/*
    Social
    ------
*/
#wrapper-social {
    text-align: center;
    background-color: /*style.footer_background_color(*/#F8FAFB/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/;
    }
#wrapper-social a:link,
#wrapper-social a:visited,
#wrapper-social a:focus {
    color: inherit;
    }
#wrapper-social ul.evSocialLinks li a {
    text-decoration: none;
    }
#wrapper-social ul.evSocialLinks li a .socialIcon:not(:hover),
#wrapper-social ul.evSocialLinks li a .shareIcon:not(:hover),
#wrapper-social ul.evSocialLinks li a .byIcon:not(:hover) {
    color: inherit;
    background: transparent;
    }
#wrapper-social ul.evSocialLinks li a .label {
    display: none;
    }
@media (min-width: 1600px) {
#wrapper-social {
    text-align: right;
    margin-top: -50px;
    }
}

/*
    Footer
    ------
*/
#wrapper-footer {
    background-color: /*style.footer_background_color(*/#F8FAFB/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/;
    font-size: /*style.text_font_size(*/16px/*)*/;
    }
#wrapper-footer h1,
#wrapper-footer h2,
#wrapper-footer h3,
#wrapper-footer h4,
#wrapper-footer h5,
#wrapper-footer h6,
#wrapper-footer .title,
#wrapper-footer a:link,
#wrapper-footer a:visited,
#wrapper-footer a:hover,
#wrapper-footer a.hover,
#wrapper-footer a:focus,
#wrapper-footer a.focus {
    color: inherit;
    }
#wrapper-footer a:hover,
#wrapper-footer a.hover,
#wrapper-footer a:focus,
#wrapper-footer a.focus {
    text-decoration: /*style.link_hover_decoration(*/underline/*)*/;
    }
#wrapper-footer h1,
#wrapper-footer h2,
#wrapper-footer h3,
#wrapper-footer h4,
#wrapper-footer h5,
#wrapper-footer h6,
#wrapper-footer .title {
    font-size: /*style.h6_font_size(*/18px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    margin-top: 5px;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
#wrapper-footer p {
    font-size: inherit;
    }
#wrapper-footer h4:not(.newsletter-header) {
    margin: 0;
    cursor: pointer;
    font-weight: 700;
    }
#wrapper-footer h4:not(.newsletter-header):after {
    content: url(/portal/web/960/theme/kuda-v5/common/images/arrow-down.svg?v=1733740115);
    display: inline-block;
    margin-left: 10px;
    -webkit-transition: transform .5s;
    transition: transform .5s;
    }
#wrapper-footer h4:not(.newsletter-header).active:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    }
#wrapper-footer h4.newsletter-header {
    margin: 0;
    font-weight: 700;
    }
#wrapper-footer ul.navigation {
    display: none;
    }
#wrapper-footer ul.navigation > li > a {
    font-size: 14px;
    line-height: 18px;
    color: /*style.text_color(*/#56677F/*)*/;
    }
@media screen and (min-width: 600px) {
#wrapper-footer h4:not(.newsletter-header):after {
    display: none;
    }
#wrapper-footer ul.navigation {
    display: block !important;
    }
}

@media screen and (min-width: 960px) {
}

@media screen and (min-width: 1200px) {
}

@media screen and (min-width: 1600px) {
}

/*
    Company
    -------
*/
#wrapper-links {
    z-index: 1;
    background-color: /*style.footer_background_color(*/#F8FAFB/*)*/;
    color: /*style.footer_text_color(*/#56677F/*)*/;
    border-top: 1px solid /*style.footer_border_color(*/#C2CCDA/*)*/;
    font-size: 12px;
    }
#wrapper-links a:link,
#wrapper-links a:visited,
#wrapper-links a:hover,
#wrapper-links a.hover,
#wrapper-links a:focus,
#wrapper-links a.focus {
    color: inherit;
    }
#wrapper-links ul {
    padding: 0;
    list-style: none;
    }
#wrapper-links ul.evMenu.evMenu--inline {
    display: inline-block;
    margin: 0;
    }
#wrapper-links ul.evMenu.evMenu--inline li {
    text-align: inherit;
    }
#wrapper-links ul.evMenu.evMenu--inline li + li:before {
    display: inline;
    content: '-';
    }
#wrapper-links ul.evMenu.evMenu--inline li a {
    display: inline;
    }
#wrapper-links ul.evMenu.evMenu--inline + ul.evMenu.evMenu--inline:before {
    display: inline;
    content: '-';
    }
@media (max-width:/*style._first_content_break(*/960px/*)*/) {
#wrapper-links ul.evMenu.evMenu--inline {
    white-space: normal;
    text-align: center;
    display: block;
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
}

@media (min-width: 960px) {
#wrapper-links .evance {
    margin-left: auto;
    }
}

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    socialIcon
	----------
	@fragment socialIcon(#(0), #(1));
	#(0) is the icon font string; e.g. "\e600"
	#(1) is the colour for the icon; e.g. #ff0000
*/
@font-face {
    font-family: 'social';
    src: url(/portal/web/960/theme/kuda-v5/common/fonts/social/social.eot?-y9ukkv=&v=1733740114);
    src: url(/portal/web/960/theme/kuda-v5/common/fonts/social/social.eot?v=1733740114#iefix-y9ukkv) format('embedded-opentype'),url(/portal/web/960/theme/kuda-v5/common/fonts/social/social.woff?-y9ukkv=&v=1733740114) format('woff'),url(/portal/web/960/theme/kuda-v5/common/fonts/social/social.ttf?-y9ukkv=&v=1733740114) format('truetype'),url(/portal/web/960/theme/kuda-v5/common/fonts/social/social.svg?-y9ukkv=&v=1733740114#social) format('svg');
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.svg-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    }
.icon {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    font-size: 1rem;
    line-height: 1;
    }
.icon + .label,
.icon + .iconLabel {
    display: inline-block;
    vertical-align: middle;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.icon.x24 {
    line-height: 1;
    }
.icon.loading {
    line-height: 1em;
    }
.icon.reviewOn,
.icon.reviewOff {
    width: 16px;
    height: 16px;
    font-size: 16px;
    }
.icon.reviewOff:before {
    content: "\e05e";
    color: /*style._muted_color(*/#b9b9b9/*)*/;
    }
.icon.next:before {
    content: "\e092";
    }
.icon.previous:before {
    content: "\e095";
    }
.icon.evance {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    font-style: normal;
    speak: none;
    width: auto;
    height: auto;
    padding: 8px;
    font-size: 20px;
    border-radius: 5000px;
    color: inherit;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    }
.icon.evance:before {
    font-family: 'social';
    content: "\e70b";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.icon.evance:hover {
    background: #6c40ae;
    color: #fff;
    }

/*
    Social / Share Icons
    --------------------
    Brand colours retrieved from: http://brandcolors.net?brands=39,58,68,70,72,76,78,92,99,112,132,133,148,149,150,155,156,168.
    The colours can be changed to whatever (and can be customisable if you wish).
*/
.evSocialLinks,
.evShareLinks {
    display: inline-block;
    margin: 0 -5px;
    list-style: none;
    padding: 0;
    }
.evSocialLinks li,
.evShareLinks li {
    display: inline-block;
    padding: 0;
    margin: 0 5px;
    }
.evSocialLinks li span.label,
.evShareLinks li span.label {
    display: none;
    }
.socialIcon,
.shareIcon {
    position: relative;
    background-image: none !important;
    height: 2em;
    width: 2em;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: 24px;
    line-height: 1em;
    padding: .5em;
    border: 0;
    border-radius: /*style.social_icon_border_radius(*/100%/*)*/;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon:before,
.shareIcon:before {
    font-family: 'social';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: baseline;
    -webkit-transition: color /*style.animation_speed(*/0.2s/*)*/;
    transition: color /*style.animation_speed(*/0.2s/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.socialIcon:hover,
.socialIcon.hover,
.socialIcon:focus,
.socialIcon.focus,
a:hover .socialIcon,
a.hover .socialIcon,
a:focus .socialIcon,
a.focus .socialIcon,
.shareIcon:hover,
.shareIcon.hover,
.shareIcon:focus,
.shareIcon.focus,
a:hover .shareIcon,
a.hover .shareIcon,
a:focus .shareIcon,
a.focus .shareIcon {
    text-decoration: none;
    outline: none;
    }
.socialIcon:hover:before,
.socialIcon.hover:before,
.socialIcon:focus:before,
.socialIcon.focus:before,
a:hover .socialIcon:before,
a.hover .socialIcon:before,
a:focus .socialIcon:before,
a.focus .socialIcon:before,
.shareIcon:hover:before,
.shareIcon.hover:before,
.shareIcon:focus:before,
.shareIcon.focus:before,
a:hover .shareIcon:before,
a.hover .shareIcon:before,
a:focus .shareIcon:before,
a.focus .shareIcon:before {
    color: ##fff;
    }
.socialIcon.facebook,
.shareIcon.facebook {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #3b5998;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.facebook:before,
.shareIcon.facebook:before {
    content: "\e700";
    }
.socialIcon.facebook:hover,
.socialIcon.facebook.hover,
.socialIcon.facebook:focus,
.socialIcon.facebook.focus,
a:hover .socialIcon.facebook,
a.hover .socialIcon.facebook,
a:focus .socialIcon.facebook,
a.focus .socialIcon.facebook,
.shareIcon.facebook:hover,
.shareIcon.facebook.hover,
.shareIcon.facebook:focus,
.shareIcon.facebook.focus,
a:hover .shareIcon.facebook,
a.hover .shareIcon.facebook,
a:focus .shareIcon.facebook,
a.focus .shareIcon.facebook {
    color: #fff;
    background-color: #3b5998;
    }
.socialIcon.flickr,
.shareIcon.flickr {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #ff0084;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.flickr:before,
.shareIcon.flickr:before {
    content: "\e701";
    }
.socialIcon.flickr:hover,
.socialIcon.flickr.hover,
.socialIcon.flickr:focus,
.socialIcon.flickr.focus,
a:hover .socialIcon.flickr,
a.hover .socialIcon.flickr,
a:focus .socialIcon.flickr,
a.focus .socialIcon.flickr,
.shareIcon.flickr:hover,
.shareIcon.flickr.hover,
.shareIcon.flickr:focus,
.shareIcon.flickr.focus,
a:hover .shareIcon.flickr,
a.hover .shareIcon.flickr,
a:focus .shareIcon.flickr,
a.focus .shareIcon.flickr {
    color: #fff;
    background-color: #ff0084;
    }
.socialIcon.googlePlus,
.shareIcon.googlePlus {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #dc4e41;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.googlePlus:before,
.shareIcon.googlePlus:before {
    content: "\e702";
    }
.socialIcon.googlePlus:hover,
.socialIcon.googlePlus.hover,
.socialIcon.googlePlus:focus,
.socialIcon.googlePlus.focus,
a:hover .socialIcon.googlePlus,
a.hover .socialIcon.googlePlus,
a:focus .socialIcon.googlePlus,
a.focus .socialIcon.googlePlus,
.shareIcon.googlePlus:hover,
.shareIcon.googlePlus.hover,
.shareIcon.googlePlus:focus,
.shareIcon.googlePlus.focus,
a:hover .shareIcon.googlePlus,
a.hover .shareIcon.googlePlus,
a:focus .shareIcon.googlePlus,
a.focus .shareIcon.googlePlus {
    color: #fff;
    background-color: #dc4e41;
    }
.socialIcon.linkedIn,
.shareIcon.linkedIn {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #0077b5;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.linkedIn:before,
.shareIcon.linkedIn:before {
    content: "\e703";
    }
.socialIcon.linkedIn:hover,
.socialIcon.linkedIn.hover,
.socialIcon.linkedIn:focus,
.socialIcon.linkedIn.focus,
a:hover .socialIcon.linkedIn,
a.hover .socialIcon.linkedIn,
a:focus .socialIcon.linkedIn,
a.focus .socialIcon.linkedIn,
.shareIcon.linkedIn:hover,
.shareIcon.linkedIn.hover,
.shareIcon.linkedIn:focus,
.shareIcon.linkedIn.focus,
a:hover .shareIcon.linkedIn,
a.hover .shareIcon.linkedIn,
a:focus .shareIcon.linkedIn,
a.focus .shareIcon.linkedIn {
    color: #fff;
    background-color: #0077b5;
    }
.socialIcon.pinterest,
.shareIcon.pinterest {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #bd081c;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.pinterest:before,
.shareIcon.pinterest:before {
    content: "\e704";
    }
.socialIcon.pinterest:hover,
.socialIcon.pinterest.hover,
.socialIcon.pinterest:focus,
.socialIcon.pinterest.focus,
a:hover .socialIcon.pinterest,
a.hover .socialIcon.pinterest,
a:focus .socialIcon.pinterest,
a.focus .socialIcon.pinterest,
.shareIcon.pinterest:hover,
.shareIcon.pinterest.hover,
.shareIcon.pinterest:focus,
.shareIcon.pinterest.focus,
a:hover .shareIcon.pinterest,
a.hover .shareIcon.pinterest,
a:focus .shareIcon.pinterest,
a.focus .shareIcon.pinterest {
    color: #fff;
    background-color: #bd081c;
    }
.socialIcon.twitter,
.shareIcon.twitter {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #55acee;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.twitter:before,
.shareIcon.twitter:before {
    content: "\e705";
    }
.socialIcon.twitter:hover,
.socialIcon.twitter.hover,
.socialIcon.twitter:focus,
.socialIcon.twitter.focus,
a:hover .socialIcon.twitter,
a.hover .socialIcon.twitter,
a:focus .socialIcon.twitter,
a.focus .socialIcon.twitter,
.shareIcon.twitter:hover,
.shareIcon.twitter.hover,
.shareIcon.twitter:focus,
.shareIcon.twitter.focus,
a:hover .shareIcon.twitter,
a.hover .shareIcon.twitter,
a:focus .shareIcon.twitter,
a.focus .shareIcon.twitter {
    color: #fff;
    background-color: #55acee;
    }
.socialIcon.vimeo,
.shareIcon.vimeo {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #1ab7ea;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.vimeo:before,
.shareIcon.vimeo:before {
    content: "\e706";
    }
.socialIcon.vimeo:hover,
.socialIcon.vimeo.hover,
.socialIcon.vimeo:focus,
.socialIcon.vimeo.focus,
a:hover .socialIcon.vimeo,
a.hover .socialIcon.vimeo,
a:focus .socialIcon.vimeo,
a.focus .socialIcon.vimeo,
.shareIcon.vimeo:hover,
.shareIcon.vimeo.hover,
.shareIcon.vimeo:focus,
.shareIcon.vimeo.focus,
a:hover .shareIcon.vimeo,
a.hover .shareIcon.vimeo,
a:focus .shareIcon.vimeo,
a.focus .shareIcon.vimeo {
    color: #fff;
    background-color: #1ab7ea;
    }
.socialIcon.youTube,
.shareIcon.youTube {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #cd201f;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.youTube:before,
.shareIcon.youTube:before {
    content: "\e707";
    }
.socialIcon.youTube:hover,
.socialIcon.youTube.hover,
.socialIcon.youTube:focus,
.socialIcon.youTube.focus,
a:hover .socialIcon.youTube,
a.hover .socialIcon.youTube,
a:focus .socialIcon.youTube,
a.focus .socialIcon.youTube,
.shareIcon.youTube:hover,
.shareIcon.youTube.hover,
.shareIcon.youTube:focus,
.shareIcon.youTube.focus,
a:hover .shareIcon.youTube,
a.hover .shareIcon.youTube,
a:focus .shareIcon.youTube,
a.focus .shareIcon.youTube {
    color: #fff;
    background-color: #cd201f;
    }
.socialIcon.instagram,
.shareIcon.instagram {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #3f729b;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.instagram:before,
.shareIcon.instagram:before {
    content: "\e708";
    }
.socialIcon.instagram:hover,
.socialIcon.instagram.hover,
.socialIcon.instagram:focus,
.socialIcon.instagram.focus,
a:hover .socialIcon.instagram,
a.hover .socialIcon.instagram,
a:focus .socialIcon.instagram,
a.focus .socialIcon.instagram,
.shareIcon.instagram:hover,
.shareIcon.instagram.hover,
.shareIcon.instagram:focus,
.shareIcon.instagram.focus,
a:hover .shareIcon.instagram,
a.hover .shareIcon.instagram,
a:focus .shareIcon.instagram,
a.focus .shareIcon.instagram {
    color: #fff;
    background-color: #3f729b;
    }
.socialIcon.dribbble,
.shareIcon.dribbble {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #ea4c89;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.dribbble:before,
.shareIcon.dribbble:before {
    content: "\e709";
    }
.socialIcon.dribbble:hover,
.socialIcon.dribbble.hover,
.socialIcon.dribbble:focus,
.socialIcon.dribbble.focus,
a:hover .socialIcon.dribbble,
a.hover .socialIcon.dribbble,
a:focus .socialIcon.dribbble,
a.focus .socialIcon.dribbble,
.shareIcon.dribbble:hover,
.shareIcon.dribbble.hover,
.shareIcon.dribbble:focus,
.shareIcon.dribbble.focus,
a:hover .shareIcon.dribbble,
a.hover .shareIcon.dribbble,
a:focus .shareIcon.dribbble,
a.focus .shareIcon.dribbble {
    color: #fff;
    background-color: #ea4c89;
    }
.socialIcon.tumblr,
.shareIcon.tumblr {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #35465c;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.tumblr:before,
.shareIcon.tumblr:before {
    content: "\e710";
    }
.socialIcon.tumblr:hover,
.socialIcon.tumblr.hover,
.socialIcon.tumblr:focus,
.socialIcon.tumblr.focus,
a:hover .socialIcon.tumblr,
a.hover .socialIcon.tumblr,
a:focus .socialIcon.tumblr,
a.focus .socialIcon.tumblr,
.shareIcon.tumblr:hover,
.shareIcon.tumblr.hover,
.shareIcon.tumblr:focus,
.shareIcon.tumblr.focus,
a:hover .shareIcon.tumblr,
a.hover .shareIcon.tumblr,
a:focus .shareIcon.tumblr,
a.focus .shareIcon.tumblr {
    color: #fff;
    background-color: #35465c;
    }
.socialIcon.foursquare,
.shareIcon.foursquare {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #f94877;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.foursquare:before,
.shareIcon.foursquare:before {
    content: "\e711";
    }
.socialIcon.foursquare:hover,
.socialIcon.foursquare.hover,
.socialIcon.foursquare:focus,
.socialIcon.foursquare.focus,
a:hover .socialIcon.foursquare,
a.hover .socialIcon.foursquare,
a:focus .socialIcon.foursquare,
a.focus .socialIcon.foursquare,
.shareIcon.foursquare:hover,
.shareIcon.foursquare.hover,
.shareIcon.foursquare:focus,
.shareIcon.foursquare.focus,
a:hover .shareIcon.foursquare,
a.hover .shareIcon.foursquare,
a:focus .shareIcon.foursquare,
a.focus .shareIcon.foursquare {
    color: #fff;
    background-color: #f94877;
    }
.socialIcon.vine,
.shareIcon.vine {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #00b488;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.vine:before,
.shareIcon.vine:before {
    content: "\e712";
    }
.socialIcon.vine:hover,
.socialIcon.vine.hover,
.socialIcon.vine:focus,
.socialIcon.vine.focus,
a:hover .socialIcon.vine,
a.hover .socialIcon.vine,
a:focus .socialIcon.vine,
a.focus .socialIcon.vine,
.shareIcon.vine:hover,
.shareIcon.vine.hover,
.shareIcon.vine:focus,
.shareIcon.vine.focus,
a:hover .shareIcon.vine,
a.hover .shareIcon.vine,
a:focus .shareIcon.vine,
a.focus .shareIcon.vine {
    color: #fff;
    background-color: #00b488;
    }
.socialIcon.soundcloud,
.shareIcon.soundcloud {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #f80;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.soundcloud:before,
.shareIcon.soundcloud:before {
    content: "\e713";
    }
.socialIcon.soundcloud:hover,
.socialIcon.soundcloud.hover,
.socialIcon.soundcloud:focus,
.socialIcon.soundcloud.focus,
a:hover .socialIcon.soundcloud,
a.hover .socialIcon.soundcloud,
a:focus .socialIcon.soundcloud,
a.focus .socialIcon.soundcloud,
.shareIcon.soundcloud:hover,
.shareIcon.soundcloud.hover,
.shareIcon.soundcloud:focus,
.shareIcon.soundcloud.focus,
a:hover .shareIcon.soundcloud,
a.hover .shareIcon.soundcloud,
a:focus .shareIcon.soundcloud,
a.focus .shareIcon.soundcloud {
    color: #fff;
    background-color: #f80;
    }
.socialIcon.spotify,
.shareIcon.spotify {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #2ebd59;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.spotify:before,
.shareIcon.spotify:before {
    content: "\e714";
    }
.socialIcon.spotify:hover,
.socialIcon.spotify.hover,
.socialIcon.spotify:focus,
.socialIcon.spotify.focus,
a:hover .socialIcon.spotify,
a.hover .socialIcon.spotify,
a:focus .socialIcon.spotify,
a.focus .socialIcon.spotify,
.shareIcon.spotify:hover,
.shareIcon.spotify.hover,
.shareIcon.spotify:focus,
.shareIcon.spotify.focus,
a:hover .shareIcon.spotify,
a.hover .shareIcon.spotify,
a:focus .shareIcon.spotify,
a.focus .shareIcon.spotify {
    color: #fff;
    background-color: #2ebd59;
    }
.socialIcon.behance,
.shareIcon.behance {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #1769ff;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.behance:before,
.shareIcon.behance:before {
    content: "\e715";
    }
.socialIcon.behance:hover,
.socialIcon.behance.hover,
.socialIcon.behance:focus,
.socialIcon.behance.focus,
a:hover .socialIcon.behance,
a.hover .socialIcon.behance,
a:focus .socialIcon.behance,
a.focus .socialIcon.behance,
.shareIcon.behance:hover,
.shareIcon.behance.hover,
.shareIcon.behance:focus,
.shareIcon.behance.focus,
a:hover .shareIcon.behance,
a.hover .shareIcon.behance,
a:focus .shareIcon.behance,
a.focus .shareIcon.behance {
    color: #fff;
    background-color: #1769ff;
    }
.socialIcon.github,
.shareIcon.github {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #4183c4;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.github:before,
.shareIcon.github:before {
    content: "\e716";
    }
.socialIcon.github:hover,
.socialIcon.github.hover,
.socialIcon.github:focus,
.socialIcon.github.focus,
a:hover .socialIcon.github,
a.hover .socialIcon.github,
a:focus .socialIcon.github,
a.focus .socialIcon.github,
.shareIcon.github:hover,
.shareIcon.github.hover,
.shareIcon.github:focus,
.shareIcon.github.focus,
a:hover .shareIcon.github,
a.hover .shareIcon.github,
a:focus .shareIcon.github,
a.focus .shareIcon.github {
    color: #fff;
    background-color: #4183c4;
    }
.socialIcon.twitch,
.shareIcon.twitch {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #6441a5;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.twitch:before,
.shareIcon.twitch:before {
    content: "\e717";
    }
.socialIcon.twitch:hover,
.socialIcon.twitch.hover,
.socialIcon.twitch:focus,
.socialIcon.twitch.focus,
a:hover .socialIcon.twitch,
a.hover .socialIcon.twitch,
a:focus .socialIcon.twitch,
a.focus .socialIcon.twitch,
.shareIcon.twitch:hover,
.shareIcon.twitch.hover,
.shareIcon.twitch:focus,
.shareIcon.twitch.focus,
a:hover .shareIcon.twitch,
a.hover .shareIcon.twitch,
a:focus .shareIcon.twitch,
a.focus .shareIcon.twitch {
    color: #fff;
    background-color: #6441a5;
    }
.socialIcon.azexis,
.shareIcon.azexis {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #000;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.azexis:before,
.shareIcon.azexis:before {
    content: "\e70a";
    }
.socialIcon.azexis:hover,
.socialIcon.azexis.hover,
.socialIcon.azexis:focus,
.socialIcon.azexis.focus,
a:hover .socialIcon.azexis,
a.hover .socialIcon.azexis,
a:focus .socialIcon.azexis,
a.focus .socialIcon.azexis,
.shareIcon.azexis:hover,
.shareIcon.azexis.hover,
.shareIcon.azexis:focus,
.shareIcon.azexis.focus,
a:hover .shareIcon.azexis,
a.hover .shareIcon.azexis,
a:focus .shareIcon.azexis,
a.focus .shareIcon.azexis {
    color: #fff;
    background-color: #000;
    }
.socialIcon.evance,
.shareIcon.evance {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #6c40af;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.evance:before,
.shareIcon.evance:before {
    content: "\e70b";
    }
.socialIcon.evance:hover,
.socialIcon.evance.hover,
.socialIcon.evance:focus,
.socialIcon.evance.focus,
a:hover .socialIcon.evance,
a.hover .socialIcon.evance,
a:focus .socialIcon.evance,
a.focus .socialIcon.evance,
.shareIcon.evance:hover,
.shareIcon.evance.hover,
.shareIcon.evance:focus,
.shareIcon.evance.focus,
a:hover .shareIcon.evance,
a.hover .shareIcon.evance,
a:focus .shareIcon.evance,
a.focus .shareIcon.evance {
    color: #fff;
    background-color: #6c40af;
    }
.socialIcon.feed,
.shareIcon.feed {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #f57321;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.feed:before,
.shareIcon.feed:before {
    content: "\e71a";
    }
.socialIcon.feed:hover,
.socialIcon.feed.hover,
.socialIcon.feed:focus,
.socialIcon.feed.focus,
a:hover .socialIcon.feed,
a.hover .socialIcon.feed,
a:focus .socialIcon.feed,
a.focus .socialIcon.feed,
.shareIcon.feed:hover,
.shareIcon.feed.hover,
.shareIcon.feed:focus,
.shareIcon.feed.focus,
a:hover .shareIcon.feed,
a.hover .shareIcon.feed,
a:focus .shareIcon.feed,
a.focus .shareIcon.feed {
    color: #fff;
    background-color: #f57321;
    }
.socialIcon.send,
.shareIcon.send {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #000;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.send:before,
.shareIcon.send:before {
    content: "\e71b";
    }
.socialIcon.send:hover,
.socialIcon.send.hover,
.socialIcon.send:focus,
.socialIcon.send.focus,
a:hover .socialIcon.send,
a.hover .socialIcon.send,
a:focus .socialIcon.send,
a.focus .socialIcon.send,
.shareIcon.send:hover,
.shareIcon.send.hover,
.shareIcon.send:focus,
.shareIcon.send.focus,
a:hover .shareIcon.send,
a.hover .shareIcon.send,
a:focus .shareIcon.send,
a.focus .shareIcon.send {
    color: #fff;
    background-color: #000;
    }
.socialIcon.favourite,
.shareIcon.favourite {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #18af37;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.socialIcon.favourite:before,
.shareIcon.favourite:before {
    content: "\e71c";
    }
.socialIcon.favourite:hover,
.socialIcon.favourite.hover,
.socialIcon.favourite:focus,
.socialIcon.favourite.focus,
a:hover .socialIcon.favourite,
a.hover .socialIcon.favourite,
a:focus .socialIcon.favourite,
a.focus .socialIcon.favourite,
.shareIcon.favourite:hover,
.shareIcon.favourite.hover,
.shareIcon.favourite:focus,
.shareIcon.favourite.focus,
a:hover .shareIcon.favourite,
a.hover .shareIcon.favourite,
a:focus .shareIcon.favourite,
a.focus .shareIcon.favourite {
    color: #fff;
    background-color: #18af37;
    }
.shareIcon {
    color: /*style.heading_color(*/#001C42/*)*/ !important;
    }

/*
    Author / Platform Icons
    -----------------------
*/
.evByLinks {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    }
.evByLinks,
.evByLinks li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    }
.byIcon {
    position: relative;
    background-image: none;
    height: 2em;
    width: 2em;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: 24px;
    line-height: 1em;
    padding: .5em;
    border: 0;
    border-radius: /*style.social_icon_border_radius(*/100%/*)*/;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.byIcon:before {
    font-family: 'social';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: baseline;
    -webkit-transition: color /*style.animation_speed(*/0.2s/*)*/;
    transition: color /*style.animation_speed(*/0.2s/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.byIcon:hover,
.byIcon.hover,
.byIcon:focus,
.byIcon.focus,
a:hover .byIcon,
a.hover .byIcon,
a:focus .byIcon,
a.focus .byIcon {
    text-decoration: none;
    outline: none;
    }
.byIcon:hover:before,
.byIcon.hover:before,
.byIcon:focus:before,
.byIcon.focus:before,
a:hover .byIcon:before,
a.hover .byIcon:before,
a:focus .byIcon:before,
a.focus .byIcon:before {
    color: #fff;
    }
.byIcon.azexis {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #000;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.byIcon.azexis:before {
    content: "\e70a";
    }
.byIcon.azexis:hover,
.byIcon.azexis.hover,
.byIcon.azexis:focus,
.byIcon.azexis.focus,
a:hover .byIcon.azexis,
a.hover .byIcon.azexis,
a:focus .byIcon.azexis,
a.focus .byIcon.azexis {
    color: #fff;
    background-color: #000;
    }
.byIcon.evance {
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    background: none;
    color: #6c40af;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.byIcon.evance:before {
    content: "\e70b";
    }
.byIcon.evance:hover,
.byIcon.evance.hover,
.byIcon.evance:focus,
.byIcon.evance.focus,
a:hover .byIcon.evance,
a.hover .byIcon.evance,
a:focus .byIcon.evance,
a.focus .byIcon.evance {
    color: #fff;
    background-color: #6c40af;
    }

/*
    evRating
    --------
*/
.evRating {
    color: /*style._muted_color(*/#b9b9b9/*)*/;
    }
.evRating > span.icon,
.evRating > a.icon {
    color: inherit;
    margin-right: 3px;
    text-decoration: none;
    }
.evRating > span.icon.reviewOn,
.evRating > span.icon.reviewHalf,
.evRating > a.icon.reviewOn,
.evRating > a.icon.reviewHalf {
    color: /*style.star_rating_color(*/#ffb400/*)*/;
    }
form .evRating {
    font-size: 20px;
    }
form .evRating > .icon:before {
    content: "\e05e";
    }
form .evRating > .icon.active,
form .evRating > .icon.hover {
    color: /*style.star_rating_color(*/#ffb400/*)*/;
    }
form .evRating:hover > .icon.active:before,
form .evRating.hover > .icon.active:before,
form .evRating:focus > .icon.active:before,
form .evRating.focus > .icon.active:before {
    content: "\e05c";
    }
form .evRating:hover > .icon.hover:before,
form .evRating.hover > .icon.hover:before,
form .evRating:focus > .icon.hover:before,
form .evRating.focus > .icon.hover:before {
    content: "\e05e";
    }
button.icon {
    background: transparent;
    border: 0;
    outline: 0;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Main Header Menu
    ----------------
*/
#header-nav ul.evMenu > li {
    position: relative;
    }
#header-nav ul.evMenu > li > a {
    color: /*style.heading_color(*/#001C42/*)*/;
    }
#header-nav ul.evMenu > li:hover > a {
    color: /*style.primary(*/#18af37/*)*/;
    text-decoration: none;
    }
#header-nav ul.evMenu > li > ul {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: auto;
    padding: 0;
    }
#header-nav ul.evMenu > li > ul > li {
    position: relative;
    }
#header-nav ul.evMenu > li > ul > li:hover > a {
    color: /*style.primary(*/#18af37/*)*/;
    text-decoration: none;
    }
#header-nav ul.evMenu > li > ul > li ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: auto;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
#header-nav ul.evMenu > li > ul > li ul li {
    position: relative;
    }
#header-nav ul.evMenu > li > ul > li ul li:hover > a {
    color: /*style.primary(*/#18af37/*)*/;
    text-decoration: none;
    }
#header-nav ul.evMenu > li.drop-align-right > ul {
    left: auto;
    right: 0;
    }

/*
    Menu
    ----
*/
ul.evMenu {
    text-align: left;
    }
ul.evMenu li {
    text-align: left;
    }
ul.evMenu li a {
    border: 0 none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    color: inherit;
    }
ul.evMenu li a:hover,
ul.evMenu li a.hover,
ul.evMenu li a:focus,
ul.evMenu li a.focus {
    background: none transparent;
    color: /*style.primary(*/#18af37/*)*/;
    }
ul.evMenu li a .evMenuLinkTitle {
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    }
ul.evMenu li.alert > a {
    color: #EB1C66 !important;
    }
ul.evMenu li.alert2 > a {
    color: #FFF !important;
    background: #000 !important;
    }
ul.evMenu li:hover > a,
ul.evMenu li.hover > a,
ul.evMenu li:focus > a,
ul.evMenu li.focus > a,
ul.evMenu li.evMenuParent.open > a {
    color: /*style.primary(*/#18af37/*)*/;
    }
ul.evMenu li:hover.alert > a,
ul.evMenu li.hover.alert > a,
ul.evMenu li:focus.alert > a,
ul.evMenu li.focus.alert > a,
ul.evMenu li.evMenuParent.open.alert > a {
    color: /*style._alert_color(*/#fe280b/*).colorAdjust(0,0,-10%,0)*/ !important;
    }
ul.evMenu li:hover > a,
ul.evMenu li.hover > a,
ul.evMenu li:focus > a,
ul.evMenu li.focus > a,
ul.evMenu li:active > a,
ul.evMenu li.active > a,
ul.evMenu li.open > a {
    background: none transparent;
    }
ul.evMenu li ul {
    background: /*style.dropdown_menu_background_color(*/#FFF/*)*/;
    border: 0 none;
    border-radius: 0;
    -webkit-box-shadow: 0 12px 20px 0 rgba(0,0,0,.2);
    box-shadow: 0 12px 20px 0 rgba(0,0,0,.2);
    font-size: inherit;
    color: /*style.dropdown_menu_link_color(*/#403D37/*)*/;
    z-index: 1;
    }
ul.evMenu li ul > li > a {
    padding-left: /*style._content_two_third_gap(*/20px/*)*/;
    padding-right: /*style._content_two_third_gap(*/20px/*)*/;
    }
ul.evMenu li ul > li > a:hover,
ul.evMenu li ul > li > a.hover,
ul.evMenu li ul > li > a:focus,
ul.evMenu li ul > li > a.focus {
    color: /*style.dropdown_menu_hover_link_color(*/#00b7a9/*)*/;
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
ul.evMenu li ul > li:hover > a,
ul.evMenu li ul > li.hover > a,
ul.evMenu li ul > li:focus > a,
ul.evMenu li ul > li.focus > a,
ul.evMenu li ul > li.open > a {
    color: /*style.primary(*/#18af37/*)*/;
    }
ul.evMenu li ul > li.evMenuFooter > a {
    text-align: center;
    }
ul.evMenu li ul ul {
    -webkit-box-shadow: inset 5px 0 20px 0 rgba(0,0,0,.2),12px 12px 20px 0 rgba(0,0,0,.2);
    box-shadow: inset 5px 0 20px 0 rgba(0,0,0,.2),12px 12px 20px 0 rgba(0,0,0,.2);
    }
ul.evMenu.evMenu--inline {
    margin: 0 -10px;
    }
ul.evMenu.evMenu--inline li {
    display: inline-block;
    }
ul.evMenu.evMenu--inline li ul {
    margin: 0 -10px;
    }
ul.evMenu.evMenu--inline li ul > li {
    position: initial;
    display: block;
    }
ul.evMenu.evMenu--inline li ul > li > ul {
    top: 0;
    margin: 0;
    }
ul.evMenu.evMenu--inline li ul ul {
    margin: 0;
    }
ul.evMenu.evMenu--inline > li.evMenuParent > ul {
    top: 100%;
    left: 0;
    min-width: 115%;
    }
.asideMenu ul.evMenu li > a {
    padding: 5px /*style._content_third_gap(*/10px/*)*/;
    white-space: normal;
    color: /*style.heading_color(*/#001C42/*)*/;
    font-weight: 600;
    }
.asideMenu ul.evMenu li > a > .evCount {
    display: none;
    }
.asideMenu ul.evMenu li > a:hover,
.asideMenu ul.evMenu li > a.hover,
.asideMenu ul.evMenu li > a:focus,
.asideMenu ul.evMenu li > a.focus,
.asideMenu ul.evMenu li > a:active,
.asideMenu ul.evMenu li > a.active {
    color: /*style.heading_color(*/#001C42/*)*/;
    text-decoration: none;
    }
.asideMenu ul.evMenu li:hover > a,
.asideMenu ul.evMenu li.hover > a,
.asideMenu ul.evMenu li:focus > a,
.asideMenu ul.evMenu li.focus > a,
.asideMenu ul.evMenu li:active > a,
.asideMenu ul.evMenu li.active > a,
.asideMenu ul.evMenu li.open > a {
    color: /*style.primary(*/#18af37/*)*/;
    text-decoration: none;
    }
.asideMenu ul.evMenu li.active > a {
    color: /*style.primary(*/#18af37/*)*/;
    }
.asideMenu ul.evMenu li.evMenuParent > a {
    position: relative;
    padding-left: 30px;
    }
.asideMenu ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle {
    position: absolute;
    display: block;
    top: 6px;
    left: -10px;
    bottom: 5px;
    width: 31px;
    font-size: 16px;
    background: transparent;
    }
.asideMenu ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    }
.asideMenu ul.evMenu li.evMenuParent.accordion-open > a > span.evMenuAccordionToggle:after {
    content: "\e098";
    }
.asideMenu ul.evMenu li.evMenuParent > ul {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    overflow: hidden;
    }
.asideMenu ul.evMenu li.evMenuParent > ul > li {
    border: 0 none;
    }
.asideMenu ul.evMenu li.evMenuParent > ul > li > a {
    padding-left: 30px;
    }
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent:hover > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent.hover > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent:focus > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent.focus > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent.open > a:after {
    display: none;
    }
ul.evMenu[data-tiers="1"] li[data-level="1"] > ul {
    display: none;
    }
ul.evMenu[data-tiers="2"] li[data-level="2"].evMenuParent > a:after {
    display: none;
    }
ul.evMenu[data-tiers="2"] li[data-level="2"] > ul {
    display: none;
    }
ul.evMenu[data-tiers="3"] li[data-level="3"].evMenuParent > a:after {
    display: none;
    }
ul.evMenu[data-tiers="3"] li[data-level="3"] > ul {
    display: none;
    }

/**
    @section Flyout Menus
    
    Flyout menu style is the default menu styling. 
    This is effectively the drop-down style. 
 */
ul.evMenu li.evMenuFlyout ul {
    width: 240px;
    padding-top: 6.66667px;
    padding-bottom: 6.66667px;
    }
ul.evMenu li.evMenuFlyout ul li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    }
ul.evMenu li.evMenuFlyout ul li > ul {
    left: 100%;
    top: 0;
    }
ul.evMenu li.evMenuFlyout ul li > ul > li {
    position: relative;
    }
ul.evMenu li.evMenuFlyout ul li > ul > li > ul {
    top: 0;
    }
ul.evMenu li.evMenuFlyout ul li.evMenuParent > a {
    position: relative;
    padding-right: 30px;
    }
ul.evMenu li.evMenuFlyout ul li.evMenuParent > a:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 53%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }

/**
    @section Grid Menu
    
    Grid menus show a thumbnail, title and description. 
 */
ul.evMenu li.evMenuGrid > ul li > a .evMenuLinkTitle + .evMenuLinkDescription:not(:empty) {
    padding-top: 5px;
    }
ul.evMenu li.evMenuGrid > ul li > a .evMenuLinkDescription {
    -webkit-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    color: /*style.dropdown_menu_link_color(*/rgba(64,61,55,.85)/*).colorAdjust(0,0,0,-15)*/;
    }
ul.evMenu li.evMenuGrid > ul li > a:hover,
ul.evMenu li.evMenuGrid > ul li > a.hover,
ul.evMenu li.evMenuGrid > ul li > a:focus,
ul.evMenu li.evMenuGrid > ul li > a.focus {
    text-decoration: none;
    }
ul.evMenu li.evMenuGrid > ul li > a:hover .evMenuLinkTitle,
ul.evMenu li.evMenuGrid > ul li > a.hover .evMenuLinkTitle,
ul.evMenu li.evMenuGrid > ul li > a:focus .evMenuLinkTitle,
ul.evMenu li.evMenuGrid > ul li > a.focus .evMenuLinkTitle {
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a {
    min-height: 96px;
    padding-top: /*style._content_half_gap(*/16px/*)*/;
    padding-bottom: /*style._content_half_gap(*/16px/*)*/;
    padding-left: 96px;
    }
ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a > .evMenuLinkThumbnail {
    top: /*style._content_half_gap(*/16px/*)*/;
    left: /*style._content_half_gap(*/16px/*)*/;
    }

/**
    @section Mega Menus
    
    Bigger menus are popular and may have multiple columns. 
 */
ul.evMenu li.evMenuMegamenu > ul {
    padding: 0;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > a:after,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > a:after {
    display: none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > ul,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > ul {
    display: block;
    margin: 0;
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    background: none transparent;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > ul > li > a,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > ul > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2.evMenuParent > a,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3.evMenuParent > a {
    font-weight: 600;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3.last > ul.last,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3.last > ul:last-child,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3:last-child > ul.last,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3:last-child > ul:last-child {
    padding-bottom: 0;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4 {
    border-bottom: 0 none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4 ul {
    display: none;
    position: absolute !important;
    left: 98% !important;
    top: 2px !important;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4:hover > ul,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4.open > ul {
    display: block;
    }

/*
    evTabs
    ------
*/
ul.evTabs {
    width: 100%;
    margin-top: -1px;
    border-bottom: 1px solid /*style.border_color(*/#d7d9dc/*)*/;
    }
ul.evTabs li {
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
    }
ul.evTabs li a:link,
ul.evTabs li a:visited {
    color: /*style.heading_color(*/#001C42/*)*/;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    white-space: nowrap;
    }
ul.evTabs li a:link .label,
ul.evTabs li a:visited .label {
    text-decoration: none;
    }
ul.evTabs li a:hover,
ul.evTabs li a.hover,
ul.evTabs li a:focus,
ul.evTabs li a.focus,
ul.evTabs li a:active,
ul.evTabs li a.active {
    text-decoration: underline;
    }
ul.evTabs li.active {
    border-top-color: /*style.border_color(*/#d7d9dc/*)*/;
    border-right-color: /*style.border_color(*/#d7d9dc/*)*/;
    border-bottom-color: /*style.body_background_color(*/#fff/*)*/;
    border-left-color: /*style.border_color(*/#d7d9dc/*)*/;
    }
ul.evTabs li.active a:link,
ul.evTabs li.active a:visited {
    font-weight: bold;
    text-decoration: none;
    }
.tabContainer > ul.evTabs li a:link,
.tabContainer > ul.evTabs li a:visited {
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/32px/*)*/;
    }
.tabContainer > .evAccordionTab {
    display: none;
    margin: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: /*style.border_color(*/#d7d9dc/*)*/;
    }
.tabContainer > .evAccordionTab a:link,
.tabContainer > .evAccordionTab a:visited {
    display: block;
    color: /*style.heading_color(*/#001C42/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/32px/*)*/;
    }
.tabContainer > .evAccordionTab a:link .label,
.tabContainer > .evAccordionTab a:visited .label {
    text-decoration: none;
    }
.tabContainer > .evAccordionTab a:hover,
.tabContainer > .evAccordionTab a.hover,
.tabContainer > .evAccordionTab a:focus,
.tabContainer > .evAccordionTab a.focus,
.tabContainer > .evAccordionTab a:active,
.tabContainer > .evAccordionTab a.active {
    text-decoration: underline;
    }
.tabContainer > .evAccordionTab.active a:link,
.tabContainer > .evAccordionTab.active a:visited {
    font-weight: bold;
    text-decoration: none;
    }
@media screen and (max-width: /*style._first_content_break_max(*/960px/*)*/) {
.tabContainer > ul.evTabs {
    display: none;
    }
.tabContainer > .evAccordionTab {
    display: block;
    }
.tabContainer > .evAccordionTab + div:not(.evAccordionTab) > .tabbedContent {
    padding-top: /*style._content_third_gap(*/10px/*)*/ !important;
    padding-bottom: /*style._content_gap(*/32px/*)*/ !important;
    }
}

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Bubble
    ------
*/
.evBubble > .triangleWrapper {
    position: absolute;
    left: 50px;
    top: -10px;
    width: 16px;
    height: 10px;
    overflow: hidden;
    }
.evBubble > .evBubbleBody {
    position: relative;
    overflow: auto;
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    padding: 1.5rem;
    border-radius: 5px;
    }

/*
    Triangle Wrapper
    ----------------
*/
.evBubble .triangleWrapper > .triangle {
    width: 10px;
    height: 10px;
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: 5px;
    left: 3px;
    z-index: 1;
    }
.evBubble .triangleWrapper.bottomLeft > .triangle,
.evBubble .triangleWrapper.bottomRight > .triangle,
.evBubble .triangleWrapper.bottomCenter > .triangle {
    top: -5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evBubble .triangleWrapper.topLeft,
.evBubble .triangleWrapper.bottomLeft {
    left: 20px;
    }
.evBubble .triangleWrapper.topRight,
.evBubble .triangleWrapper.bottomRight {
    left: auto;
    right: 20px;
    }
.evBubble .triangleWrapper.topCenter,
.evBubble .triangleWrapper.bottomCenter {
    left: 50%;
    margin-left: -8px;
    }
.evBubble .triangleWrapper.bottomLeft,
.evBubble .triangleWrapper.bottomRight,
.evBubble .triangleWrapper.bottomCenter {
    top: auto;
    bottom: -10px;
    }
.evBubble .triangleWrapper.leftTop > .triangle,
.evBubble .triangleWrapper.leftBottom > .triangle,
.evBubble .triangleWrapper.leftCenter > .triangle {
    top: 3px;
    left: 5px;
    }
.evBubble .triangleWrapper.leftTop,
.evBubble .triangleWrapper.leftBottom,
.evBubble .triangleWrapper.leftCenter {
    left: -10px;
    height: 16px;
    width: 10px;
    }
.evBubble .triangleWrapper.leftTop,
.evBubble .triangleWrapper.rightTop {
    top: 24px;
    }
.evBubble .triangleWrapper.leftBottom,
.evBubble .triangleWrapper.rightBottom {
    top: auto;
    bottom: 24px;
    }
.evBubble .triangleWrapper.leftCenter,
.evBubble .triangleWrapper.rightCenter {
    top: 50%;
    margin-top: -8px;
    }
.evBubble .triangleWrapper.rightTop,
.evBubble .triangleWrapper.rightBottom,
.evBubble .triangleWrapper.rightCenter {
    left: auto;
    right: -10px;
    height: 16px;
    width: 10px;
    }
.evBubble .triangleWrapper.rightTop > .triangle,
.evBubble .triangleWrapper.rightBottom > .triangle,
.evBubble .triangleWrapper.rightCenter > .triangle {
    top: 3px;
    left: -6px;
    }

/**
    Drawer Bubbles
    For bubbles currently being uses as drawers.
 */
.evBubble.is-drawer > .evBubbleBody {
    background: /*style.body_background_color(*/#fff/*)*/;
    border-radius: 0;
    height: 100vh;
    height: calc(var(--vh,1vh) * 100);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    }
.evBubble.is-drawer > .evBubbleBody > .header,
.evBubble.is-drawer > .evBubbleBody > .footer {
    padding: 1.5rem;
    }
.evBubble.is-drawer > .evBubbleBody > .items-container {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    overflow: auto;
    }
.evBubble.is-drawer .triangleWrapper {
    display: none;
    }

/**
    Dark Bubble
 */
.evBubble.is-dark > .evBubbleBody {
    background: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evBubble.is-dark > .evBubbleBody a:not(.evButton) {
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evBubble.is-dark > .evBubbleBody a:not(.evButton):hover,
.evBubble.is-dark > .evBubbleBody a:not(.evButton).hover,
.evBubble.is-dark > .evBubbleBody a:not(.evButton):focus,
.evBubble.is-dark > .evBubbleBody a:not(.evButton).focus {
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    text-decoration: underline;
    }
.evBubble.is-dark > .evBubbleBody h1,
.evBubble.is-dark > .evBubbleBody h2,
.evBubble.is-dark > .evBubbleBody h3,
.evBubble.is-dark > .evBubbleBody h4,
.evBubble.is-dark > .evBubbleBody h5,
.evBubble.is-dark > .evBubbleBody h6 {
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evBubble.is-dark > .evBubbleBody .evButton {
    color: /*style.primary(*/#18af37/*)*/;
    border-color: /*style.text_color_on_primary(*/#FFF/*)*/ !important;
    background: /*style.text_color_on_primary(*/#FFF/*)*/ !important;
    }
.evBubble.is-dark .triangleWrapper > .triangle {
    background: /*style.primary(*/#18af37/*)*/;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Button
    ------
*/
.evDropdown {
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 14px;
    color: inherit;
    height: auto;
    padding: 0;
    }
.evDropdown:link,
.evDropdown:visited {
    color: inherit;
    }
.evDropdown > .link {
    display: block;
    vertical-align: baseline;
    line-height: 1;
    height: auto;
    padding: /*style._content_third_gap(*/10px/*)*/;
    border-radius: 0;
    }
.evDropdown > .link > .icon {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.1em;
    line-height: 1;
    text-decoration: none !important;
    color: inherit;
    width: auto;
    height: auto;
    margin: 0;
    }
.evDropdown > .link > .icon + .label {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.evDropdown > .link > .label + .icon {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.evDropdown > .link > .label {
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0;
    text-decoration: inherit;
    text-transform: inherit;
    line-height: 20px;
    }
.evDropdown > .content {
    top: 100%;
    right: auto;
    left: 0;
    min-width: 115%;
    margin: 0 -10px;
    background: /*style.dropdown_menu_background_color(*/#FFF/*)*/;
    border: 0 none;
    font-size: 14px;
    line-height: 20px;
    color: /*style.dropdown_menu_link_color(*/#403D37/*)*/;
    z-index: 1;
    }
.evDropdown > .content li {
    line-height: 1;
    border: 0 none;
    border-bottom: 1px solid /*style.dropdown_menu_link_seperator_color(*/#FFF/*)*/;
    padding: 0;
    margin: 0;
    }
.evDropdown > .content li.last,
.evDropdown > .content li:last-child {
    border-bottom: 0 none;
    }
.evDropdown > .content li > a,
.evDropdown > .content li > label {
    position: relative;
    display: block;
    border: 0 none;
    color: inherit;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    }
.evDropdown > .content li > a:hover,
.evDropdown > .content li > a.hover,
.evDropdown > .content li > a:focus,
.evDropdown > .content li > a.focus {
    color: /*style.dropdown_menu_hover_link_color(*/#00b7a9/*)*/;
    text-decoration: /*style.dropdown_menu_hover_decoration(*/none/*)*/;
    }
.evDropdown > .content li > label:hover a.evCheckbox,
.evDropdown > .content li > label.hover a.evCheckbox,
.evDropdown > .content li > label:focus a.evCheckbox,
.evDropdown > .content li > label.focus a.evCheckbox,
.evDropdown > .content li > label:hover a.evRadio,
.evDropdown > .content li > label.hover a.evRadio,
.evDropdown > .content li > label:focus a.evRadio,
.evDropdown > .content li > label.focus a.evRadio {
    border-color: /*style.primary(*/#18af37/*)*/;
    -webkit-box-shadow: 0 0 3px /*style.primary(*/#18af37/*)*/;
    box-shadow: 0 0 3px /*style.primary(*/#18af37/*)*/;
    color: /*style.field_text_color(*/#777/*)*/ !important;
    }
.evDropdown > .content li > label:hover a.evCheckbox:checked,
.evDropdown > .content li > label.hover a.evCheckbox:checked,
.evDropdown > .content li > label:focus a.evCheckbox:checked,
.evDropdown > .content li > label.focus a.evCheckbox:checked,
.evDropdown > .content li > label:hover a.evCheckbox.checked,
.evDropdown > .content li > label.hover a.evCheckbox.checked,
.evDropdown > .content li > label:focus a.evCheckbox.checked,
.evDropdown > .content li > label.focus a.evCheckbox.checked,
.evDropdown > .content li > label:hover a.evRadio:checked,
.evDropdown > .content li > label.hover a.evRadio:checked,
.evDropdown > .content li > label:focus a.evRadio:checked,
.evDropdown > .content li > label.focus a.evRadio:checked,
.evDropdown > .content li > label:hover a.evRadio.checked,
.evDropdown > .content li > label.hover a.evRadio.checked,
.evDropdown > .content li > label:focus a.evRadio.checked,
.evDropdown > .content li > label.focus a.evRadio.checked {
    background-color: /*style.primary(*/#18af37/*)*/;
    border-color: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/ !important;
    }
.evDropdown.open > .link {
    background: none transparent;
    border: 0 none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    border-radius: 0;
    }
.evDropdown.open > .link:after {
    content: '';
    display: block;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    }
.evDropdown.open > .content {
    top: calc(100% - 1px);
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Button
	------ 
*/
.evButton {
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    color: #001C42 !important;
    text-transform: /*style.component_text_transformation(*/none/*)*/;
    height: /*style.button_height(*/40px/*)*/;
    line-height: 1;
    padding: 0 1.5rem !important;
    background: /*style.button_background_color(*/#FFF/*)*/;
    border-width: 2px;
    border-color: #001C42;
    border-radius: 3px;
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.evButton:link,
.evButton:visited {
    color: /*style.button_text_color(*/#565758/*)*/;
    }
.evButton.evButtonAction {
    color: #FFF !important;
    }
.evButton:hover,
.evButton.hover,
.evButton:focus,
.evButton.focus,
.evButton:active,
.evButton.active,
.evDropdown.open > .evButton.link {
    -webkit-box-shadow: 0 4px 16px rgba(51,61,70,.25);
    box-shadow: 0 4px 16px rgba(51,61,70,.25);
    background: /*style.button_background_color(*/#FFF/*)*/;
    border-color: /*style.button_border_color(*/#9fabab/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.button_text_color(*/#3d3e3e/*).colorAdjust(0,0,-10,0)*/;
    }
.evButton > .icon {
    font-size: 1.125em;
    line-height: 1;
    text-decoration: none !important;
    color: inherit;
    width: auto;
    height: auto;
    margin: 0;
    font-weight: inherit !important;
    line-height: 38px;
    }
.evButton > .icon + .label {
    padding-left: 5px;
    }
.evButton > .label + .icon {
    padding-left: 5px;
    }
.evButton > .label {
    font-family: Helvetica,Arial,sans-serif;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0;
    text-decoration: inherit !important;
    text-transform: inherit !important;
    height: 38px;
    line-height: 38px;
    }
.evButton.disabled,
.evButton:disabled {
    opacity: .5;
    mix-blend-mode: luminosity;
    pointer-events: none;
    }
.evButton.disabled > .label,
.evButton.disabled > .icon,
.evButton:disabled > .label,
.evButton:disabled > .icon {
    color: inherit;
    opacity: .5;
    }
.evButton.full-width {
    width: 100%;
    }
.evButton.is-loading {
    position: relative;
    pointer-events: none;
    }
.evButton.is-loading .label,
.evButton.is-loading .icon {
    visibility: hidden;
    }
.evButton.is-loading:after {
    content: '';
    display: block;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    left: 50%;
    margin-top: -.75rem;
    margin-left: -.75rem;
    border-radius: 50%;
    border: 2px solid /*style.primary(*/#18af37/*)*/;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    }
a.button,
a.actionButton,
span.actionButton,
a.proceedButton,
span.proceedButton,
a.primaryButton,
span.primaryButton,
a.emptyButton,
span.emptyButton,
a.cancelButton,
span.cancelButton {
    display: inline-block;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: /*style.button_text_color(*/#565758/*)*/;
    text-transform: /*style.component_text_transformation(*/none/*)*/;
    text-align: center;
    height: /*style._button_height(*/40px/*)*/;
    padding: 0 /*style._content_half_gap(*/16px/*)*/;
    background: /*style.button_background_color(*/#FFF/*)*/;
    border-width: /*style._button_border_width(*/1px/*)*/;
    border-style: solid;
    border-color: /*style.button_border_color(*/#bac3c3/*)*/;
    border-radius: /*style.component_border_radius(*/3px/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    text-shadow: none !important;
    line-height: 36px;
    }
a.button:hover,
a.button.hover,
a.button:focus,
a.button.focus,
a.button:active,
a.button.active,
a.actionButton:hover,
a.actionButton.hover,
a.actionButton:focus,
a.actionButton.focus,
a.actionButton:active,
a.actionButton.active,
span.actionButton:hover,
span.actionButton.hover,
span.actionButton:focus,
span.actionButton.focus,
span.actionButton:active,
span.actionButton.active,
a.proceedButton:hover,
a.proceedButton.hover,
a.proceedButton:focus,
a.proceedButton.focus,
a.proceedButton:active,
a.proceedButton.active,
span.proceedButton:hover,
span.proceedButton.hover,
span.proceedButton:focus,
span.proceedButton.focus,
span.proceedButton:active,
span.proceedButton.active,
a.primaryButton:hover,
a.primaryButton.hover,
a.primaryButton:focus,
a.primaryButton.focus,
a.primaryButton:active,
a.primaryButton.active,
span.primaryButton:hover,
span.primaryButton.hover,
span.primaryButton:focus,
span.primaryButton.focus,
span.primaryButton:active,
span.primaryButton.active,
a.emptyButton:hover,
a.emptyButton.hover,
a.emptyButton:focus,
a.emptyButton.focus,
a.emptyButton:active,
a.emptyButton.active,
span.emptyButton:hover,
span.emptyButton.hover,
span.emptyButton:focus,
span.emptyButton.focus,
span.emptyButton:active,
span.emptyButton.active,
a.cancelButton:hover,
a.cancelButton.hover,
a.cancelButton:focus,
a.cancelButton.focus,
a.cancelButton:active,
a.cancelButton.active,
span.cancelButton:hover,
span.cancelButton.hover,
span.cancelButton:focus,
span.cancelButton.focus,
span.cancelButton:active,
span.cancelButton.active {
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    background: /*style.button_background_color(*/#FFF/*)*/;
    border-color: /*style.button_border_color(*/#9fabab/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.button_text_color(*/#3d3e3e/*).colorAdjust(0,0,-10,0)*/;
    }

/* Action Button */
.evButtonSuccess,
.evButtonProceed,
.evButtonAction {
    background: /*style.progress_button_background_color(*/#2CA94A/*)*/;
    border-color: /*style.progress_button_border_color(*/#2CA94A/*)*/ !important;
    color: /*style.progress_button_text_color(*/#FFF/*)*/ !important;
    }
.evButtonSuccess.is-loading:after,
.evButtonProceed.is-loading:after,
.evButtonAction.is-loading:after {
    border-top-color: #fff;
    border-left-color: #fff;
    }
.evButtonSuccess:link,
.evButtonSuccess:visited,
.evButtonProceed:link,
.evButtonProceed:visited,
.evButtonAction:link,
.evButtonAction:visited {
    color: /*style.progress_button_text_color(*/#FFF/*)*/;
    }
.evButtonSuccess:hover,
.evButtonSuccess.hover,
.evButtonSuccess:focus,
.evButtonSuccess.focus,
.evButtonSuccess:active,
.evButtonSuccess.active,
.evDropdown.open > .evButtonSuccess.link,
.evButtonProceed:hover,
.evButtonProceed.hover,
.evButtonProceed:focus,
.evButtonProceed.focus,
.evButtonProceed:active,
.evButtonProceed.active,
.evDropdown.open > .evButtonProceed.link,
.evButtonAction:hover,
.evButtonAction.hover,
.evButtonAction:focus,
.evButtonAction.focus,
.evButtonAction:active,
.evButtonAction.active,
.evDropdown.open > .evButtonAction.link {
    background: /*style.progress_button_background_color(*/#218138/*).colorAdjust(0,0,-10,0)*/;
    border-color: /*style.progress_button_border_color(*/#218138/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.progress_button_text_color(*/#FFF/*)*/;
    }
a.actionButton,
span.actionButton,
a.proceedButton,
span.proceedButton {
    background: /*style.progress_button_background_color(*/#2CA94A/*)*/;
    border-color: /*style.progress_button_border_color(*/#2CA94A/*)*/ !important;
    color: /*style.progress_button_text_color(*/#FFF/*)*/;
    }
a.actionButton:link,
a.actionButton:visited,
span.actionButton:link,
span.actionButton:visited,
a.proceedButton:link,
a.proceedButton:visited,
span.proceedButton:link,
span.proceedButton:visited {
    color: /*style.progress_button_text_color(*/#FFF/*)*/;
    }
a.actionButton:hover,
a.actionButton.hover,
a.actionButton:focus,
a.actionButton.focus,
a.actionButton:active,
a.actionButton.active,
span.actionButton:hover,
span.actionButton.hover,
span.actionButton:focus,
span.actionButton.focus,
span.actionButton:active,
span.actionButton.active,
a.proceedButton:hover,
a.proceedButton.hover,
a.proceedButton:focus,
a.proceedButton.focus,
a.proceedButton:active,
a.proceedButton.active,
span.proceedButton:hover,
span.proceedButton.hover,
span.proceedButton:focus,
span.proceedButton.focus,
span.proceedButton:active,
span.proceedButton.active {
    background: /*style.progress_button_background_color(*/#218138/*).colorAdjust(0,0,-10,0)*/;
    border-color: /*style.progress_button_border_color(*/#218138/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.progress_button_text_color(*/#FFF/*)*/;
    }
.evButton.is-large {
    height: 64px;
    }
.evButton.is-round {
    padding: 0 !important;
    width: /*style.button_height(*/40px/*)*/;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    }
.evButton.is-round.is-large {
    width: 64px;
    }
.evButton.is-nav {
    height: 54px;
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    border: 3px solid /*style.body_background_color(*/#fff/*)*/ !important;
    }
.evButton.is-nav .icon {
    line-height: 1;
    }
.evButton.is-nav.is-round {
    width: 54px;
    }
a.close-button {
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    padding: 0 !important;
    border: 0;
    text-decoration: none;
    }
a.close-button:hover,
a.close-button:focus {
    background: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/ !important;
    }

/* Cancel Button */
.evButtonCancel {
    background: /*style._pending_text_color(*/rgba(230,131,51,.5)/*).colorAdjust(0,0,0,-50%)*/;
    border-color: /*style._pending_text_color(*/#E68333/*)*/ !important;
    color: /*style._pending_text_color(*/#E68333/*)*/;
    }
.evButtonCancel:link,
.evButtonCancel:visited {
    color: /*style._pending_text_color(*/#E68333/*)*/;
    }
.evButtonCancel:hover,
.evButtonCancel.hover,
.evButtonCancel:focus,
.evButtonCancel.focus,
.evButtonCancel:active,
.evButtonCancel.active {
    background: /*style._pending_text_color(*/rgba(205,105,25,.5)/*).colorAdjust(0,0,0,-50%).colorAdjust(0,0,-10,0)*/;
    border-color: /*style._pending_text_color(*/#cd6919/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style._pending_text_color(*/#cd6919/*).colorAdjust(0,0,-10,0)*/;
    }
a.cancelButton,
span.cancelButton {
    background: /*style._pending_text_color(*/rgba(230,131,51,.5)/*).colorAdjust(0,0,0,-50%)*/;
    border-color: /*style._pending_text_color(*/#E68333/*)*/;
    color: /*style._pending_text_color(*/#E68333/*)*/;
    }
a.cancelButton:hover,
a.cancelButton.hover,
a.cancelButton:focus,
a.cancelButton.focus,
a.cancelButton:active,
a.cancelButton.active,
span.cancelButton:hover,
span.cancelButton.hover,
span.cancelButton:focus,
span.cancelButton.focus,
span.cancelButton:active,
span.cancelButton.active {
    background: /*style._pending_text_color(*/rgba(205,105,25,.5)/*).colorAdjust(0,0,0,-50%).colorAdjust(0,0,-10,0)*/;
    border-color: /*style._pending_text_color(*/#cd6919/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style._pending_text_color(*/#cd6919/*).colorAdjust(0,0,-10,0)*/;
    }

/* Primary Button */
.evButtonPrimary {
    background: /*style.primary(*/rgba(24,175,55,.7)/*).colorAdjust(0,0,0,-30%)*/;
    border-color: /*style.primary(*/#18af37/*)*/ !important;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evButtonPrimary:link,
.evButtonPrimary:visited {
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evButtonPrimary:hover,
.evButtonPrimary.hover,
.evButtonPrimary:focus,
.evButtonPrimary.focus,
.evButtonPrimary:active,
.evButtonPrimary.active,
.evDropdown.open > .evButtonPrimary.link {
    background: /*style.primary(*/#128229/*).colorAdjust(0,0,-10,0)*/;
    border-color: /*style.primary(*/#128229/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
a.primaryButton,
span.primaryButton {
    background: /*style.primary(*/rgba(24,175,55,.7)/*).colorAdjust(0,0,0,-30%)*/;
    border-color: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    padding: 0 /*style._content_gap(*/32px/*)*/;
    }
a.primaryButton:hover,
a.primaryButton.hover,
a.primaryButton:focus,
a.primaryButton.focus,
a.primaryButton:active,
a.primaryButton.active,
span.primaryButton:hover,
span.primaryButton.hover,
span.primaryButton:focus,
span.primaryButton.focus,
span.primaryButton:active,
span.primaryButton.active {
    background: /*style.primary(*/#128229/*).colorAdjust(0,0,-10,0)*/;
    border-color: /*style.primary(*/#128229/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }

/* Empty Button */
.evButtonEmpty {
    background: none transparent;
    border-color: transparent !important;
    color: inherit;
    }
.evButtonEmpty:link,
.evButtonEmpty:visited {
    color: inherit;
    }
.evButtonEmpty:hover,
.evButtonEmpty.hover,
.evButtonEmpty:focus,
.evButtonEmpty.focus,
.evButtonEmpty:active,
.evButtonEmpty.active,
.evDropdown.open > .evButtonEmpty.link {
    background: none transparent;
    border-color: transparent !important;
    }
a.emptyButton,
span.emptyButton {
    background: none transparent;
    border-color: transparent !important;
    color: inherit;
    }
a.emptyButton:hover,
a.emptyButton.hover,
a.emptyButton:focus,
a.emptyButton.focus,
a.emptyButton:active,
a.emptyButton.active,
span.emptyButton:hover,
span.emptyButton.hover,
span.emptyButton:focus,
span.emptyButton.focus,
span.emptyButton:active,
span.emptyButton.active {
    background: none transparent;
    border-color: transparent !important;
    color: inherit;
    }

/* CMS Styles */
.evEditable.button,
div[data-reference].button {
    position: inherit;
    }
.evEditable a.button,
.evEditable span.button,
.evEditable a.actionButton,
.evEditable span.actionButton,
.evEditable a.proceedButton,
.evEditable span.proceedButton,
.evEditable a.cancelButton,
.evEditable span.cancelButton,
.evEditable a.emptyButton,
.evEditable span.emptyButton,
div[data-reference] a.button,
div[data-reference] span.button,
div[data-reference] a.actionButton,
div[data-reference] span.actionButton,
div[data-reference] a.proceedButton,
div[data-reference] span.proceedButton,
div[data-reference] a.cancelButton,
div[data-reference] span.cancelButton,
div[data-reference] a.emptyButton,
div[data-reference] span.emptyButton {
    position: inherit;
    }

/*
    Pagination
    ----------
*/
.evPagination {
    margin: -5px;
    }
.evPagination .evButton {
    min-width: 0;
    background: none transparent;
    padding: 10px !important;
    border: 0 none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: /*style.text_color(*/#56677F/*)*/;
    font-weight: /*style.strong_text_font_weight(*/600/*)*/;
    margin: 5px;
    border-radius: 3px;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    height: auto;
    line-height: 1;
    position: relative;
    }
.evPagination .evButton > .label {
    height: auto;
    line-height: 1;
    padding: 0;
    }
.evPagination .evButton:hover,
.evPagination .evButton.hover,
.evPagination .evButton:focus,
.evPagination .evButton.focus,
.evPagination .evButton:active,
.evPagination .evButton.active {
    color: /*style.primary(*/#18af37/*)*/;
    }
.evPagination .evButton.active {
    border-bottom: 3px solid /*style.primary(*/#18af37/*)*/ !important;
    }
.evPagination .evButton.evPaginationPrevious > .label,
.evPagination .evButton.evPaginationNext > .label {
    display: none;
    }
.evPagination .evButton.is-loading:after {
    content: '';
    display: block;
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 50%;
    left: 50%;
    margin-top: -1rem;
    margin-left: -1rem;
    border-radius: 50%;
    border: 2px solid /*style.primary(*/#18af37/*)*/;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
a.evSwitch {
    border-radius: 24px;
    background-color: /*style.field_border_color(*/#bac3c3/*)*/;
    }
a.evSwitch .inner {
    border: 0;
    height: 26px;
    width: 26px;
    border-radius: 13px;
    top: 2px;
    left: 2px;
    background: /*style.body_background_color(*/#fff/*)*/;
    }
a.evSwitch .inner:before,
a.evSwitch .inner:after {
    background: none;
    color: /*style.body_background_color(*/#fff/*)*/ !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 26px;
    }
a.evSwitch.checked {
    background-color: /*style.primary(*/#18af37/*)*/;
    }
a.evSwitch.checked .inner {
    left: 32px;
    }
a.evSwitch.checked .inner:before,
a.evSwitch.checked .inner:after {
    color: /*style.text_color_on_primary(*/#FFF/*)*/ !important;
    }

/* VAT switch */
.vatToggleWrap a.evSwitch {
    width: 90px;
    }
.vatToggleWrap a.evSwitch:before {
    position: relative;
    content: 'inc VAT' !important;
    left: -10px;
    top: 2px;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-weight: 500;
    }
.vatToggleWrap a.evSwitch:after {
    position: relative;
    content: 'ex VAT' !important;
    right: -8px;
    top: 2px;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-weight: 500;
    }
.vatToggleWrap a.evSwitch .inner:before {
    content: '';
    }
.vatToggleWrap a.evSwitch .inner:after {
    content: '';
    }
.vatToggleWrap a.evSwitch.checked .inner {
    left: 62px;
    }
.vatToggleWrap a.evSwitch.checked:after {
    display: none;
    }
.vatToggleWrap a.evSwitch:not(.checked):before {
    display: none;
    }

/*
    Select
    ------
*/
.evSelectButton > .evButton {
    background-color: /*style.field_background_color(*/#F3F4F5/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-color: /*style.field_border_color(*/#bac3c3/*)*/ !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    color: /*style.field_text_color(*/#777/*)*/;
    padding: 0 1.5rem !important;
    text-align: left;
    text-transform: initial;
    margin-bottom: -42px;
    }
.evSelectButton > .evButton > .label > .prefix,
.evSelectButton > .evButton > .label > .postfix {
    opacity: .7;
    }
.evSelectButton > .evButton > .label > .prefix {
    padding-right: /*style._content_half_gap(*/16px/*)*/;
    }
.evSelectButton > .evButton > .label > .postfix {
    padding-left: /*style._content_half_gap(*/16px/*)*/;
    }
.evSelectButton > .evButton > .icon.select {
    top: 0;
    right: /*style._content_half_gap(*/16px/*)*/;
    }
.evSelectButton > .evButton:hover,
.evSelectButton > .evButton.hover,
.evSelectButton > .evButton:focus,
.evSelectButton > .evButton.focus,
.evSelectButton > .evButton:active,
.evSelectButton > .evButton.active {
    background: /*style.field_background_color(*/#F3F4F5/*)*/;
    border-color: /*style.field_border_color(*/#bac3c3/*)*/;
    color: /*style.field_text_color(*/#777/*)*/;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
select.evSelect {
    height: /*style._field_height(*/42px/*)*/;
    }

/*
    Combo
    -----
*/
.evCombo .evComboOptions {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evCombo .evComboOptions .active {
    background: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evCombo .evComboOptions li:last-child {
    border-bottom: 0 none;
    }

/*
    Textfield
    ---------
*/
.evTextField.focus,
.evTextField:focus,
.evTagField.focus,
.evTagField:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evTextField {
    background-color: /*style.field_background_color(*/#F3F4F5/*)*/;
    border: 1px solid /*style.field_border_color(*/#bac3c3/*)*/;
    border-radius: /*style.component_border_radius(*/3px/*)*/;
    -webkit-box-shadow: 'none';
    box-shadow: 'none';
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 1rem;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    color: /*style.field_text_color(*/#777/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    border-collapse: separate;
    padding: 0 .5em;
    }
.evTextField:hover,
.evTextField.hover,
.evTextField:focus,
.evTextField.focus,
.evTextField:active,
.evTextField.active {
    -webkit-box-shadow: 'none';
    box-shadow: 'none';
    outline: none;
    background: /*style.field_background_color(*/#ebecee/*).colorAdjust(0,0,-3,0)*/;
    border-color: /*style.field_border_color(*/#b2bcbc/*).colorAdjust(0,0,-3,0)*/ !important;
    color: /*style.field_text_color(*/#6f6f6f/*).colorAdjust(0,0,-3,0)*/;
    }
.evTextField:hover > .evTextFieldInput > input,
.evTextField.hover > .evTextFieldInput > input,
.evTextField:focus > .evTextFieldInput > input,
.evTextField.focus > .evTextFieldInput > input,
.evTextField:active > .evTextFieldInput > input,
.evTextField.active > .evTextFieldInput > input {
    color: inherit;
    }
.evTextField:hover > .evTextFieldPostfix .evDropdown,
.evTextField.hover > .evTextFieldPostfix .evDropdown,
.evTextField:focus > .evTextFieldPostfix .evDropdown,
.evTextField.focus > .evTextFieldPostfix .evDropdown,
.evTextField:active > .evTextFieldPostfix .evDropdown,
.evTextField.active > .evTextFieldPostfix .evDropdown {
    border-color: /*style.field_border_color(*/#b2bcbc/*).colorAdjust(0,0,-3,0)*/ !important;
    }
.evTextField.error {
    background: /*style.error_color(*/rgba(207,88,88,.05)/*).colorAdjust(0,0,0,-95)*/;
    border-color: /*style.error_color(*/#CF5858/*)*/ !important;
    }
.evTextField.error > .evTextFieldPostfix .evDropdown {
    border-color: /*style.error_color(*/#CF5858/*)*/ !important;
    }
.evTextField > .evTextFieldIcon,
.evTextField > .evTextFieldPostfix {
    padding: 0;
    }
.evTextField > .evTextFieldIcon,
.evTextField > .evTextFieldPrefix,
.evTextField > .evTextFieldPostfix {
    color: inherit;
    }
.evTextField > .evTextFieldIcon > .label,
.evTextField > .evTextFieldPrefix > .label,
.evTextField > .evTextFieldPostfix > .label {
    color: inherit;
    opacity: .7;
    padding: 0;
    }
.evTextField > .evTextFieldIcon > .icon,
.evTextField > .evTextFieldPrefix > .icon,
.evTextField > .evTextFieldPostfix > .icon {
    width: auto;
    height: auto;
    }
.evTextField > .evTextFieldIcon:empty,
.evTextField > .evTextFieldPrefix:empty,
.evTextField > .evTextFieldPostfix:empty {
    display: none;
    }
.evTextField > .evTextFieldPrefix,
.evTextField > .evTextFieldPostfix {
    font-size: .875em;
    }
.evTextField > .evTextFieldPostfix .evDropdown {
    border-color: /*style.field_border_color(*/#bac3c3/*)*/;
    margin: 0;
    height: 40px;
    line-height: 38px;
    }
.evTextField > .evTextFieldPostfix .evDropdown > .link {
    padding: 0;
    padding-left: /*style._content_half_gap(*/16px/*)*/;
    height: 40px;
    line-height: 38px;
    }
.evTextField > .evTextFieldPostfix .evButton {
    background: none transparent;
    border: 0 none;
    min-width: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 /*style._content_half_gap(*/16px/*)*/ !important;
    margin-right: -17px;
    }
.evTextField > .evTextFieldInput > input {
    font-family: Helvetica,Arial,sans-serif;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0 .5em;
    line-height: /*style.text_line_height(*/1.6/*)*/;
    height: 40px;
    }
.evTextField > .evTextFieldInput > input:-webkit-autofill {
    -webkit-box-shadow: 'none',0 0 0 50px /*style.field_background_color(*/#F3F4F5/*)*/ inset;
    color: /*style.field_text_color(*/#777/*)*/;
    border-radius: /*style.component_border_radius(*/3px/*)*/;
    }
.evTextField > .evTextFieldInput > input:-webkit-autofill:focus {
    border-radius: /*style.component_border_radius(*/3px/*)*/;
    -webkit-box-shadow: 'none',0 0 0 50px /*style.field_background_color(*/#ebecee/*).colorAdjust(0,0,-3,0)*/ inset;
    color: /*style.field_text_color(*/#6f6f6f/*).colorAdjust(0,0,-3,0)*/;
    }

/*
    Textarea
    --------
*/
.evTextArea {
    background-color: /*style.field_background_color(*/#F3F4F5/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-radius: /*style.component_border_radius(*/3px/*)*/;
    border-color: /*style.field_border_color(*/#bac3c3/*)*/;
    -webkit-box-shadow: 'none';
    box-shadow: 'none';
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: /*style.field_text_color(*/#777/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    }
.evTextArea:hover,
.evTextArea.hover {
    -webkit-box-shadow: 'none';
    box-shadow: 'none';
    outline: none;
    background: /*style.field_background_color(*/#ebecee/*).colorAdjust(0,0,-3,0)*/;
    border-color: /*style.field_border_color(*/#b2bcbc/*).colorAdjust(0,0,-3,0)*/ !important;
    color: /*style.field_text_color(*/#6f6f6f/*).colorAdjust(0,0,-3,0)*/;
    }
.evTextArea:focus,
.evTextArea.focus {
    -webkit-box-shadow: 'none';
    box-shadow: 'none';
    outline: none;
    background: /*style.field_background_color(*/#ebecee/*).colorAdjust(0,0,-3,0)*/;
    border-color: /*style.field_border_color(*/#b2bcbc/*).colorAdjust(0,0,-3,0)*/ !important;
    color: /*style.field_text_color(*/#6f6f6f/*).colorAdjust(0,0,-3,0)*/;
    }
.evTextArea.error {
    background: /*style.error_color(*/rgba(207,88,88,.03)/*).colorAdjust(0,0,0,-97)*/;
    border-color: /*style.error_color(*/#CF5858/*)*/ !important;
    }
.evTextArea textarea {
    font-family: Helvetica,Arial,sans-serif;
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: inherit;
    font-weight: inherit;
    color: inherit !important;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_half_gap(*/16px/*)*/;
    line-height: /*style.text_line_height(*/1.6/*)*/;
    }

/*
    Checkbox / Radio
    ----------------
*/
a.evCheckbox,
a.evRadio {
    border: 2px solid /*style.field_border_color(*/#bac3c3/*)*/;
    border-radius: 4px;
    text-decoration: none;
    -webkit-transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.2s/*)*/ ease-in;
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
a.evCheckbox:after,
a.evRadio:after {
    font-size: 1em;
    line-height: 1;
    }
a.evCheckbox:hover,
a.evCheckbox.hover,
a.evCheckbox:focus,
a.evCheckbox.focus,
a.evRadio:hover,
a.evRadio.hover,
a.evRadio:focus,
a.evRadio.focus {
    border: 2px solid /*style.primary(*/#18af37/*)*/;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
a.evCheckbox:checked,
a.evCheckbox.checked,
a.evRadio:checked,
a.evRadio.checked {
    background-color: /*style.primary(*/#18af37/*)*/;
    border-color: /*style.primary(*/#18af37/*)*/;
    }
a.evCheckbox + input:not([name^="field"]) + label,
a.evRadio + input:not([name^="field"]) + label {
    font-weight: /*style.text_font_weight(*/400/*)*/;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
a.evRadio {
    border-radius: 50%;
    line-height: .875em;
    }
.evCheckoutSubscription .evCheckbox {
    margin-top: 2px;
    }

/*
    Range Slider
    ------------
*/
.ui-slider {
    border: 0 none;
    }
.ui-slider .ui-slider-range {
    background-color: /*style.primary(*/#18af37/*)*/;
    }
.ui-slider .ui-slider-handle {
    width: 24px;
    height: 24px;
    top: -11px;
    border: 3px solid #fff !important;
    padding: 0;
    margin-left: -12px;
    border: 0 none;
    background-color: /*style.primary(*/#18af37/*)*/;
    }
.ui-slider .ui-slider-handle.ui-state-active {
    border: 3px solid /*style.primary(*/#18af37/*)*/ !important;
    background-color: #fff;
    }
.ui-slider-horizontal {
    height: 2px;
    background-color: /*style.field_border_color(*/#bac3c3/*)*/;
    -webkit-box-shadow: none;
    box-shadow: none;
    }

/*
    Inline Buttons
    --------------
*/
.inline-buttons {
    font-size: 0;
    white-space: nowrap;
    }
.inline-buttons > * {
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
    }
.no-cssremunit .inline-buttons > * {
    font-size: 16px;
    }
.inline-buttons > .evButton + .evButton,
.inline-buttons > .evButton + .evDropdown,
.inline-buttons > .evDropdown + .evButton,
.inline-buttons > .evDropdown + .evDropdown {
    margin-left: 1px;
    }
.inline-buttons > .evButton {
    border-radius: 0 !important;
    }
.inline-buttons > .evButton.first,
.inline-buttons > .evButton:first-child {
    border-top-left-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    }
.inline-buttons > .evButton.last,
.inline-buttons > .evButton:last-child {
    border-top-right-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    }
.inline-buttons > .evDropdown > .evButton {
    border-radius: 0 !important;
    }
.inline-buttons > .evDropdown.first > .evButton,
.inline-buttons > .evDropdown:first-child > .evButton {
    border-top-left-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    }
.inline-buttons > .evDropdown.open.first > .evButton,
.inline-buttons > .evDropdown.open:first-child > .evButton {
    border-bottom-left-radius: 0 !important;
    }
.inline-buttons > .evDropdown.last > .evButton,
.inline-buttons > .evDropdown:last-child > .evButton {
    border-top-right-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    }
.inline-buttons > .evDropdown.open.last > .evButton,
.inline-buttons > .evDropdown.open:last-child > .evButton {
    border-bottom-right-radius: 0 !important;
    }
.inline-buttons .evTextFieldButton > .evTextField {
    border-radius: 0 !important;
    }
.inline-buttons .evTextFieldButton > .evTextField .evTextFieldInput > input {
    text-align: center;
    }
.inline-buttons .evTextFieldButton.first > .evTextField,
.inline-buttons .evTextFieldButton:first-child > .evTextField {
    border-top-left-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    }
.inline-buttons .evTextFieldButton.last > .evTextField,
.inline-buttons .evTextFieldButton:last-child > .evTextField {
    border-top-right-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/3px/*)*/ !important;
    }
.inline-buttons.quantity-buttons {
    display: table;
    width: 100%;
    }
.inline-buttons.quantity-buttons > * {
    display: table-cell;
    vertical-align: middle;
    line-height: 0;
    }
.inline-buttons.quantity-buttons .evButton {
    min-width: 0;
    background-color: /*style.field_background_color(*/#F3F4F5/*)*/;
    padding: 0 /*style._content_half_gap(*/16px/*)*/ !important;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-color: /*style.field_border_color(*/#bac3c3/*)*/ !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: /*style.field_text_color(*/#777/*)*/;
    font-weight: 400;
    height: 42px;
    }
.inline-buttons.quantity-buttons .evButton > .label {
    height: 40px;
    line-height: 38px;
    padding: 0;
    }
.inline-buttons.quantity-buttons .evButton:hover,
.inline-buttons.quantity-buttons .evButton.hover,
.inline-buttons.quantity-buttons .evButton:focus,
.inline-buttons.quantity-buttons .evButton.focus,
.inline-buttons.quantity-buttons .evButton:active,
.inline-buttons.quantity-buttons .evButton.active {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.inline-buttons.quantity-buttons .evTextFieldButton {
    width: 100%;
    padding: 0;
    }
.inline-buttons.quantity-buttons .evTextFieldButton .evTextField {
    border-left-width: 0;
    border-right-width: 0;
    width: 100% !important;
    }

/*
    Form / Field Styling
    --------------------
*/
.fieldContainer {
    margin: 0 -20px;
    }
.fieldHeader,
.fieldFooter {
    padding: 2rem 0 1rem 0;
    }

/*
    Form Field Combo
    ----------------
*/
form.fieldCombo {
    display: table;
    width: 100%;
    border-bottom: 1px solid /*style.field_border_color(*/#bac3c3/*)*/;
    }
form.fieldCombo > .textfieldContainer {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    }
form.fieldCombo > .textfieldContainer .evTextField {
    border: 0;
    background: transparent;
    }
form.fieldCombo > .textfieldContainer .evTextField,
form.fieldCombo > .textfieldContainer .evTextField input {
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-size: /*style.h6_font_size(*/18px/*)*/;
    }
form.fieldCombo > .textfieldContainer .evTextField input {
    padding-left: 0;
    }
form.fieldCombo > .textfieldContainer .evTextField:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
@media (max-width:/*style._second_content_break(*/658px/*)*/) {
form.fieldCombo > .textfieldContainer .evTextField,
form.fieldCombo > .textfieldContainer .evTextField input {
    font-size: /*style.text_font_size(*/16px/*)*/;
    }
}

form.fieldCombo > .buttonContainer {
    display: table-cell;
    vertical-align: middle;
    }
form.fieldCombo > .buttonContainer .evButton:hover,
form.fieldCombo > .buttonContainer .evButton.hover,
form.fieldCombo > .buttonContainer .evButton:focus,
form.fieldCombo > .buttonContainer .evButton.focus,
form.fieldCombo > .buttonContainer .evButton:active,
form.fieldCombo > .buttonContainer .evButton.active,
.evDropdown.open > form.fieldCombo > .buttonContainer .evButton.link {
    background: /*style.primary(*/#128229/*).colorAdjust(0,0,-10,0)*/;
    border-color: /*style.primary(*/#128229/*).colorAdjust(0,0,-10,0)*/ !important;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }

/*
    Custom Address Fixes
    --------------------
*/
#address .zipArea {
    width: 100%;
    }
#address .regionsArea:not([style*="display: none"]) + .zipArea {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
#address .regionsArea:not([style*="display: none"]) + .zipArea.cell {
    width: auto;
    }
#address .regionsArea[style*="display: none"] + .zipArea .evTextField {
    width: 100%;
    }
form[name="address"] .regionsArea:not([style*="display: none"]) + .zipArea {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
form[name="address"] .regionsArea:not([style*="display: none"]) + .zipArea.cell {
    width: auto;
    }
form[name="address"] .regionsArea[style*="display: none"] + .zipArea .evTextField {
    width: 100%;
    }

/**
    Form errors
 */
.ev-errors {
    color: /*style.error_color(*/#CF5858/*)*/;
    }
.ev-errors h2 {
    color: /*style.error_color(*/#CF5858/*)*/;
    }

/* Resaved 20/01/2022 */
/* Category Banner */
#category-banner {
    position: relative;
    }

/*
    @section Category Cards
    
    Used for displaying sub-categories within another category.
*/
.category-card .content {
    padding: 2rem 0;
    }
.category-card .content h3 {
    margin-bottom: .4em;
    }

/*
    @section Product Cards
    
    Used for displaying product information in a card in various locations:
    - Showing products in categories
    - Related products
    - Associated products in articles (e.g. blog posts)
    - Discontinued product alternatives
 */
.product-card {
    background: /*style.body_background_color(*/#fff/*)*/;
    position: relative;
    z-index: 0;
    }
.product-card .content {
    font-size: .875em;
    padding: 1rem 0;
    }
.product-card .content h3 {
    font-size: 18px;
    }
.product-card .content p {
    font-size: 1em;
    margin-bottom: 0;
    }
.product-card-image {
    height: 0;
    width: 100%;
    padding-bottom: /*style.product_aspect_ratio(*/100%/*)*/;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    }
.product-card-image img {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: auto;
    }
.product-card-content {
    font-size: .875em;
    padding: 1rem 0;
    }
.product-card-content h3 {
    font-size: 1.4em;
    margin-bottom: .4em;
    }
.product-card-content p {
    font-size: 1em;
    }

/*
    @section Product cards in a carousel
    
    Correctly formatting product-cards when shown inside owl carousel.
*/
.owl-item .product-card {
    height: 100%;
    }

/*
    @section Product Pricing
    
    Pricing is shown on various pages throughout the website.
    So we should have a standard way of displaying product pricing.
 */
.price.is-rrp,
.price.is-standard {
    font-size: 82%;
    opacity: .8;
    }
.price.is-current {
    color: /*style.heading_color(*/#001C42/*)*/;
    font-size: /*style.text_font_size(*/16px/*)*/;
    font-weight: bold;
    }
.price .price-unit {
    font-size: 82%;
    opacity: .8;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Slideshow
    ---------
*/
.evSlideshow .evSlideshowSlide .ev360 .ev360Toolbar {
    left: auto;
    right: 0;
    }
.evSlideshow .evSlideshowSlide .evCmsVideo {
    position: static;
    }
.evSlideshow .evSlideshowButton a {
    width: 35px;
    height: 35px;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    }
.evSlideshow .evSlideshowButton .icon {
    width: 35px;
    height: 35px;
    margin: 0;
    line-height: 35px;
    text-align: center;
    color: inherit;
    }
.evSlideshow .evSlideshowPrevious,
.evSlideshow .evSlideshowNext {
    margin-top: -17px;
    z-index: 2;
    }
.evSlideshow .evSlideshowPrevious {
    left: -40px;
    }
.evSlideshow .evSlideshowNext {
    right: -40px;
    }
.evSlideshow:hover .evSlideshowPrevious {
    left: 0;
    }
.evSlideshow:hover .evSlideshowNext {
    right: 0;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlides {
    min-height: 102px;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide {
    opacity: 1;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: white;
    border: 1px solid /*style.border_color(*/#d7d9dc/*)*/;
    -webkit-transition: all ease /*style.animation_speed(*/0.2s/*)*/;
    transition: all ease /*style.animation_speed(*/0.2s/*)*/;
    height: 100px !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide img {
    max-width: 90px;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide .evProductMediaIcon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 40px;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide .evProductMediaIcon > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    height: auto;
    width: auto;
    font-size: inherit;
    line-height: 1;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide.active {
    border-width: 1px;
    border-color: /*style.primary(*/#18af37/*)*/;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide.active .evProductMediaIcon {
    background: rgba(0,0,0,.2);
    }
@media screen and (max-width: /*style._first_content_break_max(*/960px/*)*/) {
.evSlideshow .evSlideshowPrevious {
    left: 0;
    }
.evSlideshow .evSlideshowNext {
    right: 0;
    }
}

/*
    Controller
    ----------
*/
.evController {
    padding: 0;
    }
.evController li {
    padding: 0;
    margin: 4px;
    border: 0;
    -webkit-transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    display: inline-block;
    vertical-align: middle;
    float: none;
    }
.evController li a {
    width: 3vw;
    height: .75rem;
    border-radius: 2px;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,.5);
    -webkit-transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    }
.evController li a:hover,
.evController li a.hover,
.evController li a:focus,
.evController li a.focus {
    background-color: #fff;
    }
.evController li.active {
    border: 0;
    opacity: 1;
    }
.evController li.active > a {
    width: 6vw;
    height: 1rem;
    background-color: #fff;
    }

/*
    Owl Carousel
    ------------
*/
.owl-dots {
    text-align: center;
    margin-top: 2rem;
    }
.owl-dots .owl-dot {
    cursor: pointer;
    opacity: .7;
    width: 3vw;
    height: .75rem;
    border: 2px solid /*style.button_border_color(*/#bac3c3/*)*/;
    border-radius: 2px;
    margin: 4px;
    display: inline-block;
    background-color: transparent;
    -webkit-transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    vertical-align: middle;
    }
.owl-dots .owl-dot:hover,
.owl-dots .owl-dot.hover,
.owl-dots .owl-dot:focus,
.owl-dots .owl-dot.focus {
    background-color: /*style.button_border_color(*/#bac3c3/*)*/;
    }
.owl-dots .owl-dot.active {
    opacity: 1;
    border: 2px solid /*style.primary(*/#18af37/*)*/;
    background-color: /*style.primary(*/#18af37/*)*/;
    width: 6vw;
    height: 1rem;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Dialog
    ------
*/
.evDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 102;
    }
.evDialog .evDialogWindow {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 90vw;
    padding: /*style._content_gap(*/32px/*)*/;
    border: 1px solid /*style.border_color(*/#d7d9dc/*)*/;
    border-radius: 4px;
    background: /*style.body_background_color(*/#fff/*)*/;
    -webkit-box-shadow: 0 0 50px /*style.text_color(*/rgba(86,103,127,.2)/*).colorAdjust(0,0,0,-80%)*/;
    box-shadow: 0 0 50px /*style.text_color(*/rgba(86,103,127,.2)/*).colorAdjust(0,0,0,-80%)*/;
    }
.evDialog .evDialogWindow .header {
    color: /*style.heading_color(*/#001C42/*)*/;
    font-size: /*style.h5_font_size(*/24px/*)*/;
    }
.evDialog .evDialogWindow .header .headerIcon {
    display: none;
    }
.evDialog .evDialogWindow .header .headerTitle h1,
.evDialog .evDialogWindow .header .headerTitle h2,
.evDialog .evDialogWindow .header .headerTitle h3,
.evDialog .evDialogWindow .header .headerTitle h4,
.evDialog .evDialogWindow .header .headerTitle h5,
.evDialog .evDialogWindow .header .headerTitle h6,
.evDialog .evDialogWindow .header .headerTitle .title {
    font-size: inherit;
    font-weight: /*style.strong_heading_font_weight(*/600/*)*/;
    }
.evDialog .evDialogWindow .closeIcon {
    position: absolute;
    top: /*style._content_two_third_gap(*/20px/*)*/;
    right: /*style._content_two_third_gap(*/20px/*)*/;
    font-size: 26px;
    }
.evDialog .evDialogWindow .closeIcon a {
    text-decoration: none;
    color: /*style.text_color(*/#56677F/*)*/;
    }
.evDialog .evDialogWindow .closeIcon a:hover,
.evDialog .evDialogWindow .closeIcon a.hover,
.evDialog .evDialogWindow .closeIcon a:focus,
.evDialog .evDialogWindow .closeIcon a.focus {
    color: /*style.primary(*/#18af37/*)*/;
    }
.evDialog .evDialogWindow .content {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    }
.evDialog .evDialogWindow .footer {
    display: none;
    }
.evDialog.evDialogModal {
    background: /*style.text_color(*/rgba(86,103,127,.4)/*).colorAdjust(0,0,0,-60)*/;
    }
.evDialog .contentCover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: /*style.text_color(*/rgba(86,103,127,.7)/*).colorAdjust(0,0,0,-30)*/;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
.evDialog .contentCover .icon.loading.x64 {
    line-height: 64px;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
    Widgets
    -------
*/
.evWidget {
    position: relative;
    display: block;
    text-align: left;
    padding: 0;
    }
.evWidget > .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: inherit;
    text-decoration: none;
    height: 100%;
    }
.evWidget .image {
    height: 60vh;
    }
.evWidget .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    }
.grid1of1 > .evWidget .image {
    height: auto;
    }
.evWidget .details {
    padding: 2rem 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
    }
.evWidget .details h1:not(:last-child),
.evWidget .details h2:not(:last-child),
.evWidget .details h3:not(:last-child),
.evWidget .details h4:not(:last-child),
.evWidget .details h5:not(:last-child),
.evWidget .details h6:not(:last-child),
.evWidget .details .title:not(:last-child),
.evWidget .details p:not(:last-child) {
    margin-bottom: 5px;
    }
.evWidget .details h1,
.evWidget .details h2,
.evWidget .details h3,
.evWidget .details h4,
.evWidget .details h5,
.evWidget .details h6,
.evWidget .details .title {
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    }
.evWidget .image + .details {
    height: auto;
    }
.evWidget .image + .details .hiddenSection {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all ease .4s;
    transition: all ease .4s;
    }
.evWidget:hover > a.inner .image + .details .hiddenSection,
.evWidget.hover > a.inner .image + .details .hiddenSection,
.evWidget:focus > a.inner .image + .details .hiddenSection,
.evWidget.focus > a.inner .image + .details .hiddenSection {
    max-height: 200px;
    }
.evWidget.evPod {
    border: 1px solid /*style.highlight_background_color(*/#f5f1ee/*).colorAdjust(0,0,-3,0)*/;
    }
.flexbox .evWidget {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    }
.flexbox .evWidget.flexstart {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    }
.flexbox .evWidget.flexend {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    }
@media screen and (min-width: /*style._content_width_with_gaps(*/1860px/*)*/) {
.evWidget .image {
    height: 335px;
    }
.grid1of1 > .evWidget .image {
    height: auto;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/658px/*)*/) {
.evWidget:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,.3);
    z-index: 1;
    }
.evWidget[style*=" color: #fff"]:before {
    background: rgba(0,0,0,.4);
    }
.evWidget > .inner {
    z-index: 2;
    }
.evWidget .image + .details {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    border-top: 1px solid /*style.highlight_background_color(*/#f5f1ee/*).colorAdjust(0,0,-3,0)*/;
    background: none;
    }
a.inner .evWidget .image + .details .hiddenSection {
    max-height: 200px;
    }
}

/* Resaved 20/01/2022 */
/**
 * Spacing
 * Based on {property}{direction}-{breakpoint}-{size}
 * Where:
 *
 * - {property}
 * -- 'p' for padding
 * -- 'm' for margin
 *
 * - {direction}
 * -- 't' applies the spacing for *-top
 * -- 'b' applies the spacing for *-bottom
 * -- 'l' applies the spacing for *-left
 * -- 'r' applies the spacing for *-right
 * -- 'x' applies the spacing for both *-left and *-right
 * -- 'y' applies the spacing for both *-top and *-bottom
 * -- 'a' applies the spacing for the property in all directions
 *
 * - {breakpoint}
 * -- 'xs' Extra small breakpoint
 * -- 'sm' Small breakpoint
 * -- 'md' Medium breakpoint
 * -- 'lg' Large breakpoint
 * -- 'xl' Extra large breakpoint
 *
 * {size}
 * -- 'auto' sets the spacing to auto
 * -- '0' removes the spacing by setting it to 0
 * -- '1' sets the spacing to $spacer-1
 * -- '2' sets the spacing to $spacer-2
 * -- '3' sets the spacing to $spacer-3
 * -- '4' sets the spacing to $spacer-4
 * -- '5' sets the spacing to $spacer-5
 * -- 'auto' sets spacing to 'auto'
 *
 */
@media all and (min-width: 0) {
/* Margins */
/* Padding */
.ma-xs-auto {
    margin: auto auto !important;
    }
.my-xs-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
    }
.mx-xs-auto {
    margin-left: auto !important;
    margin-right: auto !important;
    }
.mt-xs-auto {
    margin-top: auto !important;
    }
.mr-xs-auto {
    margin-right: auto !important;
    }
.mb-xs-auto {
    margin-bottom: auto !important;
    }
.ml-xs-auto {
    margin-left: auto !important;
    }
.ma-xs-0 {
    margin: 0 0 !important;
    }
.my-xs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }
.mx-xs-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    }
.mt-xs-0 {
    margin-top: 0 !important;
    }
.mr-xs-0 {
    margin-right: 0 !important;
    }
.mb-xs-0 {
    margin-bottom: 0 !important;
    }
.ml-xs-0 {
    margin-left: 0 !important;
    }
.ma-xs-1 {
    margin: .25rem .25rem !important;
    }
.my-xs-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
    }
.mx-xs-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
    }
.mt-xs-1 {
    margin-top: .25rem !important;
    }
.mr-xs-1 {
    margin-right: .25rem !important;
    }
.mb-xs-1 {
    margin-bottom: .25rem !important;
    }
.ml-xs-1 {
    margin-left: .25rem !important;
    }
.ma-xs-2 {
    margin: .5rem .5rem !important;
    }
.my-xs-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    }
.mx-xs-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
    }
.mt-xs-2 {
    margin-top: .5rem !important;
    }
.mr-xs-2 {
    margin-right: .5rem !important;
    }
.mb-xs-2 {
    margin-bottom: .5rem !important;
    }
.ml-xs-2 {
    margin-left: .5rem !important;
    }
.ma-xs-3 {
    margin: 1rem 1rem !important;
    }
.my-xs-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    }
.mx-xs-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    }
.mt-xs-3 {
    margin-top: 1rem !important;
    }
.mr-xs-3 {
    margin-right: 1rem !important;
    }
.mb-xs-3 {
    margin-bottom: 1rem !important;
    }
.ml-xs-3 {
    margin-left: 1rem !important;
    }
.ma-xs-4 {
    margin: 1.5rem 1.5rem !important;
    }
.my-xs-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    }
.mx-xs-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    }
.mt-xs-4 {
    margin-top: 1.5rem !important;
    }
.mr-xs-4 {
    margin-right: 1.5rem !important;
    }
.mb-xs-4 {
    margin-bottom: 1.5rem !important;
    }
.ml-xs-4 {
    margin-left: 1.5rem !important;
    }
.ma-xs-5 {
    margin: 3rem 3rem !important;
    }
.my-xs-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    }
.mx-xs-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
    }
.mt-xs-5 {
    margin-top: 3rem !important;
    }
.mr-xs-5 {
    margin-right: 3rem !important;
    }
.mb-xs-5 {
    margin-bottom: 3rem !important;
    }
.ml-xs-5 {
    margin-left: 3rem !important;
    }
.pa-xs-0 {
    padding: 0 0 !important;
    }
.py-xs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    }
.px-xs-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    }
.pt-xs-0 {
    padding-top: 0 !important;
    }
.pr-xs-0 {
    padding-right: 0 !important;
    }
.pb-xs-0 {
    padding-bottom: 0 !important;
    }
.pl-xs-0 {
    padding-left: 0 !important;
    }
.pa-xs-1 {
    padding: .25rem .25rem !important;
    }
.py-xs-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    }
.px-xs-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
    }
.pt-xs-1 {
    padding-top: .25rem !important;
    }
.pr-xs-1 {
    padding-right: .25rem !important;
    }
.pb-xs-1 {
    padding-bottom: .25rem !important;
    }
.pl-xs-1 {
    padding-left: .25rem !important;
    }
.pa-xs-2 {
    padding: .5rem .5rem !important;
    }
.py-xs-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    }
.px-xs-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    }
.pt-xs-2 {
    padding-top: .5rem !important;
    }
.pr-xs-2 {
    padding-right: .5rem !important;
    }
.pb-xs-2 {
    padding-bottom: .5rem !important;
    }
.pl-xs-2 {
    padding-left: .5rem !important;
    }
.pa-xs-3 {
    padding: 1rem 1rem !important;
    }
.py-xs-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    }
.px-xs-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    }
.pt-xs-3 {
    padding-top: 1rem !important;
    }
.pr-xs-3 {
    padding-right: 1rem !important;
    }
.pb-xs-3 {
    padding-bottom: 1rem !important;
    }
.pl-xs-3 {
    padding-left: 1rem !important;
    }
.pa-xs-4 {
    padding: 1.5rem 1.5rem !important;
    }
.py-xs-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    }
.px-xs-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    }
.pt-xs-4 {
    padding-top: 1.5rem !important;
    }
.pr-xs-4 {
    padding-right: 1.5rem !important;
    }
.pb-xs-4 {
    padding-bottom: 1.5rem !important;
    }
.pl-xs-4 {
    padding-left: 1.5rem !important;
    }
.pa-xs-5 {
    padding: 3rem 3rem !important;
    }
.py-xs-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    }
.px-xs-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    }
.pt-xs-5 {
    padding-top: 3rem !important;
    }
.pr-xs-5 {
    padding-right: 3rem !important;
    }
.pb-xs-5 {
    padding-bottom: 3rem !important;
    }
.pl-xs-5 {
    padding-left: 3rem !important;
    }
}

@media all and (min-width: 37.5em) {
/* Margins */
/* Padding */
.ma-sm-auto {
    margin: auto auto !important;
    }
.my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
    }
.mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
    }
.mt-sm-auto {
    margin-top: auto !important;
    }
.mr-sm-auto {
    margin-right: auto !important;
    }
.mb-sm-auto {
    margin-bottom: auto !important;
    }
.ml-sm-auto {
    margin-left: auto !important;
    }
.ma-sm-0 {
    margin: 0 0 !important;
    }
.my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }
.mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    }
.mt-sm-0 {
    margin-top: 0 !important;
    }
.mr-sm-0 {
    margin-right: 0 !important;
    }
.mb-sm-0 {
    margin-bottom: 0 !important;
    }
.ml-sm-0 {
    margin-left: 0 !important;
    }
.ma-sm-1 {
    margin: .25rem .25rem !important;
    }
.my-sm-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
    }
.mx-sm-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
    }
.mt-sm-1 {
    margin-top: .25rem !important;
    }
.mr-sm-1 {
    margin-right: .25rem !important;
    }
.mb-sm-1 {
    margin-bottom: .25rem !important;
    }
.ml-sm-1 {
    margin-left: .25rem !important;
    }
.ma-sm-2 {
    margin: .5rem .5rem !important;
    }
.my-sm-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    }
.mx-sm-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
    }
.mt-sm-2 {
    margin-top: .5rem !important;
    }
.mr-sm-2 {
    margin-right: .5rem !important;
    }
.mb-sm-2 {
    margin-bottom: .5rem !important;
    }
.ml-sm-2 {
    margin-left: .5rem !important;
    }
.ma-sm-3 {
    margin: 1rem 1rem !important;
    }
.my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    }
.mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    }
.mt-sm-3 {
    margin-top: 1rem !important;
    }
.mr-sm-3 {
    margin-right: 1rem !important;
    }
.mb-sm-3 {
    margin-bottom: 1rem !important;
    }
.ml-sm-3 {
    margin-left: 1rem !important;
    }
.ma-sm-4 {
    margin: 1.5rem 1.5rem !important;
    }
.my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    }
.mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    }
.mt-sm-4 {
    margin-top: 1.5rem !important;
    }
.mr-sm-4 {
    margin-right: 1.5rem !important;
    }
.mb-sm-4 {
    margin-bottom: 1.5rem !important;
    }
.ml-sm-4 {
    margin-left: 1.5rem !important;
    }
.ma-sm-5 {
    margin: 3rem 3rem !important;
    }
.my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    }
.mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
    }
.mt-sm-5 {
    margin-top: 3rem !important;
    }
.mr-sm-5 {
    margin-right: 3rem !important;
    }
.mb-sm-5 {
    margin-bottom: 3rem !important;
    }
.ml-sm-5 {
    margin-left: 3rem !important;
    }
.pa-sm-0 {
    padding: 0 0 !important;
    }
.py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    }
.px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    }
.pt-sm-0 {
    padding-top: 0 !important;
    }
.pr-sm-0 {
    padding-right: 0 !important;
    }
.pb-sm-0 {
    padding-bottom: 0 !important;
    }
.pl-sm-0 {
    padding-left: 0 !important;
    }
.pa-sm-1 {
    padding: .25rem .25rem !important;
    }
.py-sm-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    }
.px-sm-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
    }
.pt-sm-1 {
    padding-top: .25rem !important;
    }
.pr-sm-1 {
    padding-right: .25rem !important;
    }
.pb-sm-1 {
    padding-bottom: .25rem !important;
    }
.pl-sm-1 {
    padding-left: .25rem !important;
    }
.pa-sm-2 {
    padding: .5rem .5rem !important;
    }
.py-sm-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    }
.px-sm-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    }
.pt-sm-2 {
    padding-top: .5rem !important;
    }
.pr-sm-2 {
    padding-right: .5rem !important;
    }
.pb-sm-2 {
    padding-bottom: .5rem !important;
    }
.pl-sm-2 {
    padding-left: .5rem !important;
    }
.pa-sm-3 {
    padding: 1rem 1rem !important;
    }
.py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    }
.px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    }
.pt-sm-3 {
    padding-top: 1rem !important;
    }
.pr-sm-3 {
    padding-right: 1rem !important;
    }
.pb-sm-3 {
    padding-bottom: 1rem !important;
    }
.pl-sm-3 {
    padding-left: 1rem !important;
    }
.pa-sm-4 {
    padding: 1.5rem 1.5rem !important;
    }
.py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    }
.px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    }
.pt-sm-4 {
    padding-top: 1.5rem !important;
    }
.pr-sm-4 {
    padding-right: 1.5rem !important;
    }
.pb-sm-4 {
    padding-bottom: 1.5rem !important;
    }
.pl-sm-4 {
    padding-left: 1.5rem !important;
    }
.pa-sm-5 {
    padding: 3rem 3rem !important;
    }
.py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    }
.px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    }
.pt-sm-5 {
    padding-top: 3rem !important;
    }
.pr-sm-5 {
    padding-right: 3rem !important;
    }
.pb-sm-5 {
    padding-bottom: 3rem !important;
    }
.pl-sm-5 {
    padding-left: 3rem !important;
    }
}

@media all and (min-width: 60em) {
/* Margins */
/* Padding */
.ma-md-auto {
    margin: auto auto !important;
    }
.my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
    }
.mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
    }
.mt-md-auto {
    margin-top: auto !important;
    }
.mr-md-auto {
    margin-right: auto !important;
    }
.mb-md-auto {
    margin-bottom: auto !important;
    }
.ml-md-auto {
    margin-left: auto !important;
    }
.ma-md-0 {
    margin: 0 0 !important;
    }
.my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }
.mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    }
.mt-md-0 {
    margin-top: 0 !important;
    }
.mr-md-0 {
    margin-right: 0 !important;
    }
.mb-md-0 {
    margin-bottom: 0 !important;
    }
.ml-md-0 {
    margin-left: 0 !important;
    }
.ma-md-1 {
    margin: .25rem .25rem !important;
    }
.my-md-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
    }
.mx-md-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
    }
.mt-md-1 {
    margin-top: .25rem !important;
    }
.mr-md-1 {
    margin-right: .25rem !important;
    }
.mb-md-1 {
    margin-bottom: .25rem !important;
    }
.ml-md-1 {
    margin-left: .25rem !important;
    }
.ma-md-2 {
    margin: .5rem .5rem !important;
    }
.my-md-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    }
.mx-md-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
    }
.mt-md-2 {
    margin-top: .5rem !important;
    }
.mr-md-2 {
    margin-right: .5rem !important;
    }
.mb-md-2 {
    margin-bottom: .5rem !important;
    }
.ml-md-2 {
    margin-left: .5rem !important;
    }
.ma-md-3 {
    margin: 1rem 1rem !important;
    }
.my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    }
.mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    }
.mt-md-3 {
    margin-top: 1rem !important;
    }
.mr-md-3 {
    margin-right: 1rem !important;
    }
.mb-md-3 {
    margin-bottom: 1rem !important;
    }
.ml-md-3 {
    margin-left: 1rem !important;
    }
.ma-md-4 {
    margin: 1.5rem 1.5rem !important;
    }
.my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    }
.mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    }
.mt-md-4 {
    margin-top: 1.5rem !important;
    }
.mr-md-4 {
    margin-right: 1.5rem !important;
    }
.mb-md-4 {
    margin-bottom: 1.5rem !important;
    }
.ml-md-4 {
    margin-left: 1.5rem !important;
    }
.ma-md-5 {
    margin: 3rem 3rem !important;
    }
.my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    }
.mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
    }
.mt-md-5 {
    margin-top: 3rem !important;
    }
.mr-md-5 {
    margin-right: 3rem !important;
    }
.mb-md-5 {
    margin-bottom: 3rem !important;
    }
.ml-md-5 {
    margin-left: 3rem !important;
    }
.pa-md-0 {
    padding: 0 0 !important;
    }
.py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    }
.px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    }
.pt-md-0 {
    padding-top: 0 !important;
    }
.pr-md-0 {
    padding-right: 0 !important;
    }
.pb-md-0 {
    padding-bottom: 0 !important;
    }
.pl-md-0 {
    padding-left: 0 !important;
    }
.pa-md-1 {
    padding: .25rem .25rem !important;
    }
.py-md-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    }
.px-md-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
    }
.pt-md-1 {
    padding-top: .25rem !important;
    }
.pr-md-1 {
    padding-right: .25rem !important;
    }
.pb-md-1 {
    padding-bottom: .25rem !important;
    }
.pl-md-1 {
    padding-left: .25rem !important;
    }
.pa-md-2 {
    padding: .5rem .5rem !important;
    }
.py-md-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    }
.px-md-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    }
.pt-md-2 {
    padding-top: .5rem !important;
    }
.pr-md-2 {
    padding-right: .5rem !important;
    }
.pb-md-2 {
    padding-bottom: .5rem !important;
    }
.pl-md-2 {
    padding-left: .5rem !important;
    }
.pa-md-3 {
    padding: 1rem 1rem !important;
    }
.py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    }
.px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    }
.pt-md-3 {
    padding-top: 1rem !important;
    }
.pr-md-3 {
    padding-right: 1rem !important;
    }
.pb-md-3 {
    padding-bottom: 1rem !important;
    }
.pl-md-3 {
    padding-left: 1rem !important;
    }
.pa-md-4 {
    padding: 1.5rem 1.5rem !important;
    }
.py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    }
.px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    }
.pt-md-4 {
    padding-top: 1.5rem !important;
    }
.pr-md-4 {
    padding-right: 1.5rem !important;
    }
.pb-md-4 {
    padding-bottom: 1.5rem !important;
    }
.pl-md-4 {
    padding-left: 1.5rem !important;
    }
.pa-md-5 {
    padding: 3rem 3rem !important;
    }
.py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    }
.px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    }
.pt-md-5 {
    padding-top: 3rem !important;
    }
.pr-md-5 {
    padding-right: 3rem !important;
    }
.pb-md-5 {
    padding-bottom: 3rem !important;
    }
.pl-md-5 {
    padding-left: 3rem !important;
    }
}

@media all and (min-width: 75em) {
/* Margins */
/* Padding */
.ma-lg-auto {
    margin: auto auto !important;
    }
.my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
    }
.mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
    }
.mt-lg-auto {
    margin-top: auto !important;
    }
.mr-lg-auto {
    margin-right: auto !important;
    }
.mb-lg-auto {
    margin-bottom: auto !important;
    }
.ml-lg-auto {
    margin-left: auto !important;
    }
.ma-lg-0 {
    margin: 0 0 !important;
    }
.my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }
.mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    }
.mt-lg-0 {
    margin-top: 0 !important;
    }
.mr-lg-0 {
    margin-right: 0 !important;
    }
.mb-lg-0 {
    margin-bottom: 0 !important;
    }
.ml-lg-0 {
    margin-left: 0 !important;
    }
.ma-lg-1 {
    margin: .25rem .25rem !important;
    }
.my-lg-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
    }
.mx-lg-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
    }
.mt-lg-1 {
    margin-top: .25rem !important;
    }
.mr-lg-1 {
    margin-right: .25rem !important;
    }
.mb-lg-1 {
    margin-bottom: .25rem !important;
    }
.ml-lg-1 {
    margin-left: .25rem !important;
    }
.ma-lg-2 {
    margin: .5rem .5rem !important;
    }
.my-lg-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    }
.mx-lg-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
    }
.mt-lg-2 {
    margin-top: .5rem !important;
    }
.mr-lg-2 {
    margin-right: .5rem !important;
    }
.mb-lg-2 {
    margin-bottom: .5rem !important;
    }
.ml-lg-2 {
    margin-left: .5rem !important;
    }
.ma-lg-3 {
    margin: 1rem 1rem !important;
    }
.my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    }
.mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    }
.mt-lg-3 {
    margin-top: 1rem !important;
    }
.mr-lg-3 {
    margin-right: 1rem !important;
    }
.mb-lg-3 {
    margin-bottom: 1rem !important;
    }
.ml-lg-3 {
    margin-left: 1rem !important;
    }
.ma-lg-4 {
    margin: 1.5rem 1.5rem !important;
    }
.my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    }
.mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    }
.mt-lg-4 {
    margin-top: 1.5rem !important;
    }
.mr-lg-4 {
    margin-right: 1.5rem !important;
    }
.mb-lg-4 {
    margin-bottom: 1.5rem !important;
    }
.ml-lg-4 {
    margin-left: 1.5rem !important;
    }
.ma-lg-5 {
    margin: 3rem 3rem !important;
    }
.my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    }
.mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
    }
.mt-lg-5 {
    margin-top: 3rem !important;
    }
.mr-lg-5 {
    margin-right: 3rem !important;
    }
.mb-lg-5 {
    margin-bottom: 3rem !important;
    }
.ml-lg-5 {
    margin-left: 3rem !important;
    }
.pa-lg-0 {
    padding: 0 0 !important;
    }
.py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    }
.px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    }
.pt-lg-0 {
    padding-top: 0 !important;
    }
.pr-lg-0 {
    padding-right: 0 !important;
    }
.pb-lg-0 {
    padding-bottom: 0 !important;
    }
.pl-lg-0 {
    padding-left: 0 !important;
    }
.pa-lg-1 {
    padding: .25rem .25rem !important;
    }
.py-lg-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    }
.px-lg-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
    }
.pt-lg-1 {
    padding-top: .25rem !important;
    }
.pr-lg-1 {
    padding-right: .25rem !important;
    }
.pb-lg-1 {
    padding-bottom: .25rem !important;
    }
.pl-lg-1 {
    padding-left: .25rem !important;
    }
.pa-lg-2 {
    padding: .5rem .5rem !important;
    }
.py-lg-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    }
.px-lg-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    }
.pt-lg-2 {
    padding-top: .5rem !important;
    }
.pr-lg-2 {
    padding-right: .5rem !important;
    }
.pb-lg-2 {
    padding-bottom: .5rem !important;
    }
.pl-lg-2 {
    padding-left: .5rem !important;
    }
.pa-lg-3 {
    padding: 1rem 1rem !important;
    }
.py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    }
.px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    }
.pt-lg-3 {
    padding-top: 1rem !important;
    }
.pr-lg-3 {
    padding-right: 1rem !important;
    }
.pb-lg-3 {
    padding-bottom: 1rem !important;
    }
.pl-lg-3 {
    padding-left: 1rem !important;
    }
.pa-lg-4 {
    padding: 1.5rem 1.5rem !important;
    }
.py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    }
.px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    }
.pt-lg-4 {
    padding-top: 1.5rem !important;
    }
.pr-lg-4 {
    padding-right: 1.5rem !important;
    }
.pb-lg-4 {
    padding-bottom: 1.5rem !important;
    }
.pl-lg-4 {
    padding-left: 1.5rem !important;
    }
.pa-lg-5 {
    padding: 3rem 3rem !important;
    }
.py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    }
.px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    }
.pt-lg-5 {
    padding-top: 3rem !important;
    }
.pr-lg-5 {
    padding-right: 3rem !important;
    }
.pb-lg-5 {
    padding-bottom: 3rem !important;
    }
.pl-lg-5 {
    padding-left: 3rem !important;
    }
}

@media all and (min-width: 100em) {
/* Margins */
/* Padding */
.ma-xl-auto {
    margin: auto auto !important;
    }
.my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
    }
.mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
    }
.mt-xl-auto {
    margin-top: auto !important;
    }
.mr-xl-auto {
    margin-right: auto !important;
    }
.mb-xl-auto {
    margin-bottom: auto !important;
    }
.ml-xl-auto {
    margin-left: auto !important;
    }
.ma-xl-0 {
    margin: 0 0 !important;
    }
.my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    }
.mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    }
.mt-xl-0 {
    margin-top: 0 !important;
    }
.mr-xl-0 {
    margin-right: 0 !important;
    }
.mb-xl-0 {
    margin-bottom: 0 !important;
    }
.ml-xl-0 {
    margin-left: 0 !important;
    }
.ma-xl-1 {
    margin: .25rem .25rem !important;
    }
.my-xl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
    }
.mx-xl-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
    }
.mt-xl-1 {
    margin-top: .25rem !important;
    }
.mr-xl-1 {
    margin-right: .25rem !important;
    }
.mb-xl-1 {
    margin-bottom: .25rem !important;
    }
.ml-xl-1 {
    margin-left: .25rem !important;
    }
.ma-xl-2 {
    margin: .5rem .5rem !important;
    }
.my-xl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    }
.mx-xl-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
    }
.mt-xl-2 {
    margin-top: .5rem !important;
    }
.mr-xl-2 {
    margin-right: .5rem !important;
    }
.mb-xl-2 {
    margin-bottom: .5rem !important;
    }
.ml-xl-2 {
    margin-left: .5rem !important;
    }
.ma-xl-3 {
    margin: 1rem 1rem !important;
    }
.my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    }
.mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    }
.mt-xl-3 {
    margin-top: 1rem !important;
    }
.mr-xl-3 {
    margin-right: 1rem !important;
    }
.mb-xl-3 {
    margin-bottom: 1rem !important;
    }
.ml-xl-3 {
    margin-left: 1rem !important;
    }
.ma-xl-4 {
    margin: 1.5rem 1.5rem !important;
    }
.my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    }
.mx-xl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
    }
.mt-xl-4 {
    margin-top: 1.5rem !important;
    }
.mr-xl-4 {
    margin-right: 1.5rem !important;
    }
.mb-xl-4 {
    margin-bottom: 1.5rem !important;
    }
.ml-xl-4 {
    margin-left: 1.5rem !important;
    }
.ma-xl-5 {
    margin: 3rem 3rem !important;
    }
.my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
    }
.mx-xl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
    }
.mt-xl-5 {
    margin-top: 3rem !important;
    }
.mr-xl-5 {
    margin-right: 3rem !important;
    }
.mb-xl-5 {
    margin-bottom: 3rem !important;
    }
.ml-xl-5 {
    margin-left: 3rem !important;
    }
.pa-xl-0 {
    padding: 0 0 !important;
    }
.py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    }
.px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    }
.pt-xl-0 {
    padding-top: 0 !important;
    }
.pr-xl-0 {
    padding-right: 0 !important;
    }
.pb-xl-0 {
    padding-bottom: 0 !important;
    }
.pl-xl-0 {
    padding-left: 0 !important;
    }
.pa-xl-1 {
    padding: .25rem .25rem !important;
    }
.py-xl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    }
.px-xl-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
    }
.pt-xl-1 {
    padding-top: .25rem !important;
    }
.pr-xl-1 {
    padding-right: .25rem !important;
    }
.pb-xl-1 {
    padding-bottom: .25rem !important;
    }
.pl-xl-1 {
    padding-left: .25rem !important;
    }
.pa-xl-2 {
    padding: .5rem .5rem !important;
    }
.py-xl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    }
.px-xl-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
    }
.pt-xl-2 {
    padding-top: .5rem !important;
    }
.pr-xl-2 {
    padding-right: .5rem !important;
    }
.pb-xl-2 {
    padding-bottom: .5rem !important;
    }
.pl-xl-2 {
    padding-left: .5rem !important;
    }
.pa-xl-3 {
    padding: 1rem 1rem !important;
    }
.py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    }
.px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    }
.pt-xl-3 {
    padding-top: 1rem !important;
    }
.pr-xl-3 {
    padding-right: 1rem !important;
    }
.pb-xl-3 {
    padding-bottom: 1rem !important;
    }
.pl-xl-3 {
    padding-left: 1rem !important;
    }
.pa-xl-4 {
    padding: 1.5rem 1.5rem !important;
    }
.py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    }
.px-xl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    }
.pt-xl-4 {
    padding-top: 1.5rem !important;
    }
.pr-xl-4 {
    padding-right: 1.5rem !important;
    }
.pb-xl-4 {
    padding-bottom: 1.5rem !important;
    }
.pl-xl-4 {
    padding-left: 1.5rem !important;
    }
.pa-xl-5 {
    padding: 3rem 3rem !important;
    }
.py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    }
.px-xl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    }
.pt-xl-5 {
    padding-top: 3rem !important;
    }
.pr-xl-5 {
    padding-right: 3rem !important;
    }
.pb-xl-5 {
    padding-bottom: 3rem !important;
    }
.pl-xl-5 {
    padding-left: 3rem !important;
    }
}

/* Resaved 20/01/2022 */
html.is-drawer-open {
    overflow: hidden;
    }
.ev-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    }
.ev-drawer .ev-drawer-content {
    background-color: #fff;
    width: 50vw;
    min-width: 320px;
    max-width: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
    right: 0;
    height: 100%;
    z-index: 1;
    max-width: 600px;
    -webkit-box-shadow: 3px 3px 27px rgba(0,0,0,.4);
    box-shadow: 3px 3px 27px rgba(0,0,0,.4);
    -webkit-transform: translateX(120%);
    -ms-transform: translateX(120%);
    transform: translateX(120%);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
.ev-drawer .ev-drawer-header {
    text-align: right;
    padding: 1.5rem 1.5rem 0 1.5rem;
    -webkit-flex: initial;
    -ms-flex: initial;
    flex: initial;
    }
.ev-drawer .ev-drawer-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
    }
.ev-drawer .ev-drawer-backdrop {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: /*style.primary(*/#06280d/*).colorAdjust(0,0,-30,0)*/;
    opacity: 0;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    }
.ev-drawer.is-open {
    height: 100%;
    pointer-events: all;
    visibility: visible;
    }
.ev-drawer.is-open .ev-drawer-content {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    }
.ev-drawer.is-open .ev-drawer-backdrop {
    opacity: .6;
    }

/* Resaved 20/01/2022 */
div.datepicker {
    font-family: /*style.text_font_family(*/"Roboto"/*)*/,Helvetica,Arial,sans-serif;
    font-size: /*style.text_font_size(*/16px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.6/*)*/;
    color: /*style.text_color(*/#56677F/*)*/;
    background-color: /*style.body_background_color(*/#fff/*)*/;
    -webkit-box-shadow: 0 1px 20px rgb(0 0 0 / 25%);
    box-shadow: 0 1px 20px rgb(0 0 0 / 25%);
    }
div.datepicker .icon {
    height: auto;
    width: auto;
    }
div.datepicker a:listed {
    color: inherit;
    }
div.datepicker table td td {
    text-align: center;
    border: 0;
    }
div.datepicker table td td:hover {
    background: transparent !important;
    }
div.datepicker table td td a {
    border-radius: 4px;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
div.datepicker table td td a:hover {
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
div.datepicker tbody.datepickerDays td a {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    }
div.datepicker td.datepickerSelected {
    background: transparent !important;
    }
div.datepicker td.datepickerSelected a {
    background: /*style.primary(*/#18af37/*)*/ !important;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
div.datepicker td.datepickerNotInMonth a {
    opacity: .6;
    }
div.datepicker a {
    color: inherit;
    }
div.datepicker th {
    color: /*style.heading_color(*/#001C42/*)*/;
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    }
div.datepickerContainer thead {
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/ !important;
    }
div.datepickerContainer > table {
    border: 0;
    }
div.datepickerContainer .datepickerDoW th {
    border: 0;
    }
div.datepickerContainer .datepickerDoW th span {
    opacity: .6;
    }
div.datepickerContainer thead .datepickerGoPrev,
div.datepickerContainer thead .datepickerMonth,
div.datepickerContainer thead .datepickerGoNext {
    padding: 10px 0 0;
    }
div.datepickerContainer tbody .datepickerDays td,
div.datepickerContainer tbody .datepickerMonths td,
div.datepickerContainer tbody .datepickerYears td {
    padding: 5px;
    }
div.datepickerContainer .datepickerViewYears thead .datepickerGoPrev,
div.datepickerContainer .datepickerViewYears thead .datepickerMonth,
div.datepickerContainer .datepickerViewYears thead .datepickerGoNext,
div.datepickerContainer .datepickerViewMonths thead .datepickerGoPrev,
div.datepickerContainer .datepickerViewMonths thead .datepickerMonth,
div.datepickerContainer .datepickerViewMonths thead .datepickerGoNext {
    padding-bottom: 10px;
    }

/* Resaved 20/01/2022 */
/* Resaved 20/01/2022 */
/*
        Heading stylings
        ----------------
    	Preset styles that the cms user can choose from for any
        of the available headings (h1, h2, h3, h4, h5, h6);
    */
.evEditable h1.h1-Style,
.evEditable h1.h2-Style,
.evEditable h1.h3-Style,
.evEditable h1.h4-Style,
.evEditable h1.h5-Style,
.evEditable h1.h6-Style,
.evEditable h2.h1-Style,
.evEditable h2.h2-Style,
.evEditable h2.h3-Style,
.evEditable h2.h4-Style,
.evEditable h2.h5-Style,
.evEditable h2.h6-Style,
.evEditable h3.h1-Style,
.evEditable h3.h2-Style,
.evEditable h3.h3-Style,
.evEditable h3.h4-Style,
.evEditable h3.h5-Style,
.evEditable h3.h6-Style,
.evEditable h4.h1-Style,
.evEditable h4.h2-Style,
.evEditable h4.h3-Style,
.evEditable h4.h4-Style,
.evEditable h4.h5-Style,
.evEditable h4.h6-Style,
.evEditable h5.h1-Style,
.evEditable h5.h2-Style,
.evEditable h5.h3-Style,
.evEditable h5.h4-Style,
.evEditable h5.h5-Style,
.evEditable h5.h6-Style,
.evEditable h6.h1-Style,
.evEditable h6.h2-Style,
.evEditable h6.h3-Style,
.evEditable h6.h4-Style,
.evEditable h6.h5-Style,
.evEditable h6.h6-Style,
.evEditable .title.h1-Style,
.evEditable .title.h2-Style,
.evEditable .title.h3-Style,
.evEditable .title.h4-Style,
.evEditable .title.h5-Style,
.evEditable .title.h6-Style {
    position: inherit;
    }
.no-text-shadow {
    text-shadow: none;
    }
.evEditable p.no-text-shadow,
.evEditable span.no-text-shadow,
.evEditable h1.no-text-shadow,
.evEditable h2.no-text-shadow,
.evEditable h3.no-text-shadow,
.evEditable h4.no-text-shadow,
.evEditable h5.no-text-shadow,
.evEditable h6.no-text-shadow,
.evEditable .title.no-text-shadow {
    zoom: 1;
    }

/*
        Text styles
        -----------
        Preset styles that the cms user can choose from
    */
.evEditable p.pending,
.evEditable span.pending {
    color: /*style._pending_text_color(*/#E68333/*)*/;
    }
.evEditable p.large,
.evEditable span.large,
.evEditable p.small,
.evEditable span.small {
    position: inherit;
    }
.evEditable p.large.nomar {
    margin-bottom: 0;
    }
a.underline,
span.underline {
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-weight: bold;
    padding-top: 11px;
    color: /*style.primary(*/#18af37/*)*/;
    -webkit-transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    }
a.underline:before,
span.underline:before {
    content: "";
    position: absolute;
    width: 80%;
    left: 10%;
    height: 1px;
    top: 0;
    color: inherit;
    background: /*style.primary(*/#18af37/*)*/;
    -webkit-transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    transition: all linear /*style.animation_speed(*/0.2s/*)*/;
    }
a.underline.bottom,
span.underline.bottom {
    padding-top: auto;
    padding-bottom: 11px;
    }
a.underline.bottom:before,
span.underline.bottom:before {
    top: auto;
    bottom: 0;
    }
a.underline:hover,
span.underline:hover {
    color: /*style.primary(*/#128229/*).colorAdjust(0,0,-10%,0)*/;
    }
a.underline:hover:before,
span.underline:hover:before {
    background: /*style.primary(*/#128229/*).colorAdjust(0,0,-10%,0)*/;
    }
.evEditable a.underline,
.evEditable span.underline {
    zoom: 1;
    }

/*
        The styles below already have their styling set
        within generic.css. We are just re-calling inside
        the .evEditable to ensure they are loaded within
        the cms styles dropdown
    */
p.large,
span.large,
a.large {
    position: inherit;
    }
p.small,
span.small,
a.small {
    position: inherit;
    }
p.error,
p.success,
p.pending {
    position: inherit;
    }
.evEditable h1.display-1,
.evEditable h2.display-1,
.evEditable h3.display-1,
.evEditable h4.display-1,
.evEditable h5.display-1,
.evEditable h6.display-1 {
    font-size: 5vw;
    }
h1.display-1,
h2.display-1,
h3.display-1,
h4.display-1,
h5.display-1,
h6.display-1 {
    font-size: 5vw;
    }
ul.navigation {
    display: block;
    list-style: none;
    padding: 20px 0 0;
    }
.evEditable ul.navigation {
    display: block;
    }
.evEditable i.highlight-normal,
i.highlight-normal,
.evEditable em.highlight-normal,
em.highlight-normal {
    color: /*style.primary(*/#18af37/*)*/;
    font-style: normal;
    }
.evEditable h1.display-title {
    display: block;
    }

/* Action Link */
.evEditable a.action-link {
    color: /*style.primary(*/#18af37/*)*/;
    }
.evEditable a.action-link:after {
    content: url(/portal/web/960/theme/kuda-v5/common/images/link-arrow.svg?v=1733740116);
    margin-left: 10px;
    }
.evEditable table.basic {
    zoom: 1;
    }
table.basic tr td {
    border-top: 1px solid #d5e1e7;
    padding: .25rem 0;
    }
table.basic tr td + td {
    padding-left: .5rem;
    }
.evEditable ul.faqs,
.evEditable p.eyebrow {
    zoom: 1;
    }

/* Resaved 20/01/2022 */
/**
 * Grids
 * Evance has a 12 point grid system. Built using flex-box, the grid is used to layout page's content.
 *
 * Sections:
 * - .ev-container
 * - .ev-layout
 * - .ev-flex
 * - .ev-block
 * - Gutters
 * - Justify Content
 * - Align Items
 * - Align Content
 * - Self Alignment
 */
/**
 * @section .ev-container
 * can be used for a center focused page
 * 1. Non-fluid containers are limited in width.
 * 2. Default padding is adjusted according to screen size. 
 *
 */
.ev-container,
.bodyContainer {
    margin: auto;
    width: 100%;
    padding: 1.5rem;
    }
.ev-container.fluid {
    max-width: 100%;
    }
.ev-container.fill-height {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    }
.ev-container.fill-height > .ev-layout {
    height: 100%;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    }
.bodyContainer {
    padding: 3rem 1.5rem;
    }

/* 2 */
/* Slightly increase container padding at md and above */
@media all and (min-width: 960px) {
.ev-container {
    padding: 1.5rem;
    }
}

/* 1 */
/* 1 */
@media only screen and (min-width: 600px) {
.ev-container,
.bodyContainer {
    max-width: 90vw;
    }
}

/* 1 */
@media only screen and (min-width: 1600px) {
.ev-container,
.bodyContainer {
    max-width: 1440px;
    }
}

/**
 * @section .ev-layout
 * used for separating sections
 *
 */
.ev-layout {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 0;
    }
.ev-layout.flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
.ev-layout.flex-column.reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    }
.ev-layout.flex-row {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    }
.ev-layout.flex-row.reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    }
.ev-layout.nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    }
.flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    }
.flex-column.reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    }
.flex-row {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    }
.flex-row.reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    }

/**
 * @section .ev-block
 *
 */
.ev-block {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
    }

/*@media all and (min-width: 0rem) {*/
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    }
.ev-block.order-xs-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    }
.ev-block.offset-xs-1 {
    margin-left: 8.3333333333%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    }
.ev-block.order-xs-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    }
.ev-block.offset-xs-2 {
    margin-left: 16.6666666667%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    }
.ev-block.order-xs-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    }
.ev-block.offset-xs-3 {
    margin-left: 25%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    }
.ev-block.order-xs-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    }
.ev-block.offset-xs-4 {
    margin-left: 33.3333333333%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    }
.ev-block.order-xs-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    }
.ev-block.offset-xs-5 {
    margin-left: 41.6666666667%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    }
.ev-block.order-xs-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    }
.ev-block.offset-xs-6 {
    margin-left: 50%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    }
.ev-block.order-xs-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
    }
.ev-block.offset-xs-7 {
    margin-left: 58.3333333333%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    }
.ev-block.order-xs-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
    }
.ev-block.offset-xs-8 {
    margin-left: 66.6666666667%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    }
.ev-block.order-xs-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
    }
.ev-block.offset-xs-9 {
    margin-left: 75%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    }
.ev-block.order-xs-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
    }
.ev-block.offset-xs-10 {
    margin-left: 83.3333333333%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    }
.ev-block.order-xs-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
    }
.ev-block.offset-xs-11 {
    margin-left: 91.6666666667%;
    }
.ev-block.xs-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xs-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
.ev-block.order-xs-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
    }
.ev-block.offset-xs-12 {
    margin-left: 100%;
    }

/*}*/
@media all and (min-width: 600px) {
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    }
.ev-block.order-sm-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    }
.ev-block.offset-sm-1 {
    margin-left: 8.3333333333%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    }
.ev-block.order-sm-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    }
.ev-block.offset-sm-2 {
    margin-left: 16.6666666667%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    }
.ev-block.order-sm-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    }
.ev-block.offset-sm-3 {
    margin-left: 25%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    }
.ev-block.order-sm-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    }
.ev-block.offset-sm-4 {
    margin-left: 33.3333333333%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    }
.ev-block.order-sm-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    }
.ev-block.offset-sm-5 {
    margin-left: 41.6666666667%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    }
.ev-block.order-sm-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    }
.ev-block.offset-sm-6 {
    margin-left: 50%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    }
.ev-block.order-sm-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
    }
.ev-block.offset-sm-7 {
    margin-left: 58.3333333333%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    }
.ev-block.order-sm-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
    }
.ev-block.offset-sm-8 {
    margin-left: 66.6666666667%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    }
.ev-block.order-sm-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
    }
.ev-block.offset-sm-9 {
    margin-left: 75%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    }
.ev-block.order-sm-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
    }
.ev-block.offset-sm-10 {
    margin-left: 83.3333333333%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    }
.ev-block.order-sm-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
    }
.ev-block.offset-sm-11 {
    margin-left: 91.6666666667%;
    }
.ev-block.sm-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.sm-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
.ev-block.order-sm-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
    }
.ev-block.offset-sm-12 {
    margin-left: 100%;
    }
}

@media all and (min-width: 960px) {
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-grow {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    }
.ev-block.md-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    }
.ev-block.order-md-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    }
.ev-block.offset-md-1 {
    margin-left: 8.3333333333%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    }
.ev-block.order-md-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    }
.ev-block.offset-md-2 {
    margin-left: 16.6666666667%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    }
.ev-block.order-md-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    }
.ev-block.offset-md-3 {
    margin-left: 25%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    }
.ev-block.order-md-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    }
.ev-block.offset-md-4 {
    margin-left: 33.3333333333%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    }
.ev-block.order-md-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    }
.ev-block.offset-md-5 {
    margin-left: 41.6666666667%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    }
.ev-block.order-md-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    }
.ev-block.offset-md-6 {
    margin-left: 50%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    }
.ev-block.order-md-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
    }
.ev-block.offset-md-7 {
    margin-left: 58.3333333333%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    }
.ev-block.order-md-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
    }
.ev-block.offset-md-8 {
    margin-left: 66.6666666667%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    }
.ev-block.order-md-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
    }
.ev-block.offset-md-9 {
    margin-left: 75%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    }
.ev-block.order-md-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
    }
.ev-block.offset-md-10 {
    margin-left: 83.3333333333%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    }
.ev-block.order-md-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
    }
.ev-block.offset-md-11 {
    margin-left: 91.6666666667%;
    }
.ev-block.md-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.md-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
.ev-block.order-md-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
    }
.ev-block.offset-md-12 {
    margin-left: 100%;
    }
}

@media all and (min-width: 1200px) {
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    }
.ev-block.order-lg-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    }
.ev-block.offset-lg-1 {
    margin-left: 8.3333333333%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    }
.ev-block.order-lg-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    }
.ev-block.offset-lg-2 {
    margin-left: 16.6666666667%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    }
.ev-block.order-lg-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    }
.ev-block.offset-lg-3 {
    margin-left: 25%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    }
.ev-block.order-lg-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    }
.ev-block.offset-lg-4 {
    margin-left: 33.3333333333%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    }
.ev-block.order-lg-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    }
.ev-block.offset-lg-5 {
    margin-left: 41.6666666667%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    }
.ev-block.order-lg-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    }
.ev-block.offset-lg-6 {
    margin-left: 50%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    }
.ev-block.order-lg-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
    }
.ev-block.offset-lg-7 {
    margin-left: 58.3333333333%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    }
.ev-block.order-lg-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
    }
.ev-block.offset-lg-8 {
    margin-left: 66.6666666667%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    }
.ev-block.order-lg-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
    }
.ev-block.offset-lg-9 {
    margin-left: 75%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    }
.ev-block.order-lg-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
    }
.ev-block.offset-lg-10 {
    margin-left: 83.3333333333%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    }
.ev-block.order-lg-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
    }
.ev-block.offset-lg-11 {
    margin-left: 91.6666666667%;
    }
.ev-block.lg-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.lg-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
.ev-block.order-lg-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
    }
.ev-block.offset-lg-12 {
    margin-left: 100%;
    }
}

@media all and (min-width: 1600px) {
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-1 {
    -webkit-flex: 0 0 8.3333333333%;
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
    }
.ev-block.order-xl-1 {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    }
.ev-block.offset-xl-1 {
    margin-left: 8.3333333333%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-2 {
    -webkit-flex: 0 0 16.6666666667%;
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
    }
.ev-block.order-xl-2 {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    }
.ev-block.offset-xl-2 {
    margin-left: 16.6666666667%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-3 {
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    }
.ev-block.order-xl-3 {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    }
.ev-block.offset-xl-3 {
    margin-left: 25%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-4 {
    -webkit-flex: 0 0 33.3333333333%;
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
    }
.ev-block.order-xl-4 {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    }
.ev-block.offset-xl-4 {
    margin-left: 33.3333333333%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-5 {
    -webkit-flex: 0 0 41.6666666667%;
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
    }
.ev-block.order-xl-5 {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    }
.ev-block.offset-xl-5 {
    margin-left: 41.6666666667%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-6 {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    }
.ev-block.order-xl-6 {
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
    }
.ev-block.offset-xl-6 {
    margin-left: 50%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-7 {
    -webkit-flex: 0 0 58.3333333333%;
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    }
.ev-block.order-xl-7 {
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
    }
.ev-block.offset-xl-7 {
    margin-left: 58.3333333333%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-8 {
    -webkit-flex: 0 0 66.6666666667%;
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
    }
.ev-block.order-xl-8 {
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
    }
.ev-block.offset-xl-8 {
    margin-left: 66.6666666667%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-9 {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    }
.ev-block.order-xl-9 {
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
    }
.ev-block.offset-xl-9 {
    margin-left: 75%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-10 {
    -webkit-flex: 0 0 83.3333333333%;
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
    }
.ev-block.order-xl-10 {
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
    }
.ev-block.offset-xl-10 {
    margin-left: 83.3333333333%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-11 {
    -webkit-flex: 0 0 91.6666666667%;
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
    }
.ev-block.order-xl-11 {
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
    }
.ev-block.offset-xl-11 {
    margin-left: 91.6666666667%;
    }
.ev-block.xl-auto {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    }
.ev-block.xl-12 {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    }
.ev-block.order-xl-12 {
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
    }
.ev-block.offset-xl-12 {
    margin-left: 100%;
    }
}

/**
 * @section Gutters
 * @todo Not sure if these are desirable yet
 */
/*@media all and (min-width: 0rem) {*/
.ev-layout.gutter-xs-0 > .ev-block {
    padding: 0;
    }
.ev-layout.gutter-xs-0:only-child {
    margin: 0;
    }
.ev-layout.gutter-xs-0:not(:only-child) {
    margin: auto 0;
    }
.ev-layout.gutter-xs-1 > .ev-block {
    padding: .125rem;
    }
.ev-layout.gutter-xs-1:only-child {
    margin: -.125rem;
    }
.ev-layout.gutter-xs-1:not(:only-child) {
    margin: auto -.125rem;
    }
.ev-layout.gutter-xs-2 > .ev-block {
    padding: .25rem;
    }
.ev-layout.gutter-xs-2:only-child {
    margin: -.25rem;
    }
.ev-layout.gutter-xs-2:not(:only-child) {
    margin: auto -.25rem;
    }
.ev-layout.gutter-xs-3 > .ev-block {
    padding: .5rem;
    }
.ev-layout.gutter-xs-3:only-child {
    margin: -.5rem;
    }
.ev-layout.gutter-xs-3:not(:only-child) {
    margin: auto -.5rem;
    }
.ev-layout.gutter-xs-4 > .ev-block {
    padding: .75rem;
    }
.ev-layout.gutter-xs-4:only-child {
    margin: -.75rem;
    }
.ev-layout.gutter-xs-4:not(:only-child) {
    margin: auto -.75rem;
    }
.ev-layout.gutter-xs-5 > .ev-block {
    padding: 1rem;
    }
.ev-layout.gutter-xs-5:only-child {
    margin: -1rem;
    }
.ev-layout.gutter-xs-5:not(:only-child) {
    margin: auto -1rem;
    }

/*}*/
@media all and (min-width: 600px) {
.ev-layout.gutter-sm-0 > .ev-block {
    padding: 0;
    }
.ev-layout.gutter-sm-0:only-child {
    margin: 0;
    }
.ev-layout.gutter-sm-0:not(:only-child) {
    margin: auto 0;
    }
.ev-layout.gutter-sm-1 > .ev-block {
    padding: .125rem;
    }
.ev-layout.gutter-sm-1:only-child {
    margin: -.125rem;
    }
.ev-layout.gutter-sm-1:not(:only-child) {
    margin: auto -.125rem;
    }
.ev-layout.gutter-sm-2 > .ev-block {
    padding: .25rem;
    }
.ev-layout.gutter-sm-2:only-child {
    margin: -.25rem;
    }
.ev-layout.gutter-sm-2:not(:only-child) {
    margin: auto -.25rem;
    }
.ev-layout.gutter-sm-3 > .ev-block {
    padding: .5rem;
    }
.ev-layout.gutter-sm-3:only-child {
    margin: -.5rem;
    }
.ev-layout.gutter-sm-3:not(:only-child) {
    margin: auto -.5rem;
    }
.ev-layout.gutter-sm-4 > .ev-block {
    padding: .75rem;
    }
.ev-layout.gutter-sm-4:only-child {
    margin: -.75rem;
    }
.ev-layout.gutter-sm-4:not(:only-child) {
    margin: auto -.75rem;
    }
.ev-layout.gutter-sm-5 > .ev-block {
    padding: 1rem;
    }
.ev-layout.gutter-sm-5:only-child {
    margin: -1rem;
    }
.ev-layout.gutter-sm-5:not(:only-child) {
    margin: auto -1rem;
    }
}

@media all and (min-width: 960px) {
.ev-layout.gutter-md-0 > .ev-block {
    padding: 0;
    }
.ev-layout.gutter-md-0:only-child {
    margin: 0;
    }
.ev-layout.gutter-md-0:not(:only-child) {
    margin: auto 0;
    }
.ev-layout.gutter-md-1 > .ev-block {
    padding: .125rem;
    }
.ev-layout.gutter-md-1:only-child {
    margin: -.125rem;
    }
.ev-layout.gutter-md-1:not(:only-child) {
    margin: auto -.125rem;
    }
.ev-layout.gutter-md-2 > .ev-block {
    padding: .25rem;
    }
.ev-layout.gutter-md-2:only-child {
    margin: -.25rem;
    }
.ev-layout.gutter-md-2:not(:only-child) {
    margin: auto -.25rem;
    }
.ev-layout.gutter-md-3 > .ev-block {
    padding: .5rem;
    }
.ev-layout.gutter-md-3:only-child {
    margin: -.5rem;
    }
.ev-layout.gutter-md-3:not(:only-child) {
    margin: auto -.5rem;
    }
.ev-layout.gutter-md-4 > .ev-block {
    padding: .75rem;
    }
.ev-layout.gutter-md-4:only-child {
    margin: -.75rem;
    }
.ev-layout.gutter-md-4:not(:only-child) {
    margin: auto -.75rem;
    }
.ev-layout.gutter-md-5 > .ev-block {
    padding: 1rem;
    }
.ev-layout.gutter-md-5:only-child {
    margin: -1rem;
    }
.ev-layout.gutter-md-5:not(:only-child) {
    margin: auto -1rem;
    }
}

@media all and (min-width: 1200px) {
.ev-layout.gutter-lg-0 .ev-block {
    padding: 0;
    }
.ev-layout.gutter-lg-0:only-child {
    margin: 0;
    }
.ev-layout.gutter-lg-0:not(:only-child) {
    margin: auto 0;
    }
.ev-layout.gutter-lg-1 > .ev-block {
    padding: .125rem;
    }
.ev-layout.gutter-lg-1:only-child {
    margin: -.125rem;
    }
.ev-layout.gutter-lg-1:not(:only-child) {
    margin: auto -.125rem;
    }
.ev-layout.gutter-lg-2 > .ev-block {
    padding: .25rem;
    }
.ev-layout.gutter-lg-2:only-child {
    margin: -.25rem;
    }
.ev-layout.gutter-lg-2:not(:only-child) {
    margin: auto -.25rem;
    }
.ev-layout.gutter-lg-3 > .ev-block {
    padding: .5rem;
    }
.ev-layout.gutter-lg-3:only-child {
    margin: -.5rem;
    }
.ev-layout.gutter-lg-3:not(:only-child) {
    margin: auto -.5rem;
    }
.ev-layout.gutter-lg-4 > .ev-block {
    padding: .75rem;
    }
.ev-layout.gutter-lg-4:only-child {
    margin: -.75rem;
    }
.ev-layout.gutter-lg-4:not(:only-child) {
    margin: auto -.75rem;
    }
.ev-layout.gutter-lg-5 > .ev-block {
    padding: 1rem;
    }
.ev-layout.gutter-lg-5:only-child {
    margin: -1rem;
    }
.ev-layout.gutter-lg-5:not(:only-child) {
    margin: auto -1rem;
    }
}

@media all and (min-width: 1600px) {
.ev-layout.gutter-xl-0 > .ev-block {
    padding: 0;
    }
.ev-layout.gutter-xl-0:only-child {
    margin: 0;
    }
.ev-layout.gutter-xl-0:not(:only-child) {
    margin: auto 0;
    }
.ev-layout.gutter-xl-1 > .ev-block {
    padding: .125rem;
    }
.ev-layout.gutter-xl-1:only-child {
    margin: -.125rem;
    }
.ev-layout.gutter-xl-1:not(:only-child) {
    margin: auto -.125rem;
    }
.ev-layout.gutter-xl-2 > .ev-block {
    padding: .25rem;
    }
.ev-layout.gutter-xl-2:only-child {
    margin: -.25rem;
    }
.ev-layout.gutter-xl-2:not(:only-child) {
    margin: auto -.25rem;
    }
.ev-layout.gutter-xl-3 > .ev-block {
    padding: .5rem;
    }
.ev-layout.gutter-xl-3:only-child {
    margin: -.5rem;
    }
.ev-layout.gutter-xl-3:not(:only-child) {
    margin: auto -.5rem;
    }
.ev-layout.gutter-xl-4 > .ev-block {
    padding: .75rem;
    }
.ev-layout.gutter-xl-4:only-child {
    margin: -.75rem;
    }
.ev-layout.gutter-xl-4:not(:only-child) {
    margin: auto -.75rem;
    }
.ev-layout.gutter-xl-5 > .ev-block {
    padding: 1rem;
    }
.ev-layout.gutter-xl-5:only-child {
    margin: -1rem;
    }
.ev-layout.gutter-xl-5:not(:only-child) {
    margin: auto -1rem;
    }
}

/**
 * @section Justify Content
 *
 */
.justify-content-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.justify-content-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    }
.justify-content-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
    }

/*@media (min-width: 0rem) {*/
.justify-content-xs-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-xs-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.justify-content-xs-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-xs-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    }
.justify-content-xs-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
    }

/*}*/
@media (min-width: 600px) {
.justify-content-sm-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-sm-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.justify-content-sm-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-sm-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    }
.justify-content-sm-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
    }
}

@media (min-width: 960px) {
.justify-content-md-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-md-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.justify-content-md-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-md-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    }
.justify-content-md-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
    }
}

@media (min-width: 1200px) {
.justify-content-lg-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-lg-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.justify-content-lg-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-lg-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    }
.justify-content-lg-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
    }
}

@media (min-width: 1600px) {
.justify-content-xl-start {
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    }
.justify-content-xl-end {
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
    }
.justify-content-xl-center {
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    }
.justify-content-xl-between {
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    }
.justify-content-xl-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
    }
}

/**
 * @section Align Items
 *
 */
.align-items-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.align-items-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    }
.align-items-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    }

/*@media (min-width: 0rem) {*/
.align-items-xs-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-xs-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.align-items-xs-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-xs-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    }
.align-items-xs-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    }

/*}*/
@media (min-width: 600px) {
.align-items-sm-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-sm-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.align-items-sm-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-sm-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    }
.align-items-sm-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    }
}

@media (min-width: 960px) {
.align-items-md-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-md-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.align-items-md-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-md-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    }
.align-items-md-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    }
}

@media (min-width: 1200px) {
.align-items-lg-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-lg-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.align-items-lg-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-lg-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    }
.align-items-lg-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    }
}

@media (min-width: 1600px) {
.align-items-xl-start {
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    }
.align-items-xl-end {
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    }
.align-items-xl-center {
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    }
.align-items-xl-baseline {
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
    }
.align-items-xl-stretch {
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    }
}

/**
 * @section Align Content
 *
 */
.align-content-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    }
.align-content-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
    }
.align-content-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
    }
.align-content-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
    }
.align-content-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
    }
.align-content-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
    }

/*@media (min-width: 0rem) {*/
.align-content-xs-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    }
.align-content-xs-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
    }
.align-content-xs-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
    }
.align-content-xs-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
    }
.align-content-xs-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
    }
.align-content-xs-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
    }

/*}*/
@media (min-width: 600px) {
.align-content-sm-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    }
.align-content-sm-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
    }
.align-content-sm-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
    }
.align-content-sm-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
    }
.align-content-sm-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
    }
.align-content-sm-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
    }
}

@media (min-width: 960px) {
.align-content-md-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    }
.align-content-md-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
    }
.align-content-md-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
    }
.align-content-md-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
    }
.align-content-md-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
    }
.align-content-md-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
    }
}

@media (min-width: 1200px) {
.align-content-lg-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    }
.align-content-lg-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
    }
.align-content-lg-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
    }
.align-content-lg-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
    }
.align-content-lg-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
    }
.align-content-lg-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
    }
}

@media (min-width: 1600px) {
.align-content-xl-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
    }
.align-content-xl-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
    }
.align-content-xl-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
    }
.align-content-xl-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
    }
.align-content-xl-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
    }
.align-content-xl-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
    }
}

/**
 * @section Self Alignment
 *
 */
.align-self-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    }
.align-self-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
    }
.align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
    }
.align-self-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    }
.align-self-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    }

/*@media (min-width: 0rem) {*/
.align-self-xs-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    }
.align-self-xs-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
    }
.align-self-xs-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
    }
.align-self-xs-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    }
.align-self-xs-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    }

/*}*/
@media (min-width: 600px) {
.align-self-sm-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    }
.align-self-sm-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
    }
.align-self-sm-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
    }
.align-self-sm-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    }
.align-self-sm-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    }
}

@media (min-width: 960px) {
.align-self-md-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    }
.align-self-md-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
    }
.align-self-md-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
    }
.align-self-md-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    }
.align-self-md-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
.align-self-lg-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    }
.align-self-lg-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
    }
.align-self-lg-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
    }
.align-self-lg-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    }
.align-self-lg-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    }
}

@media (min-width: 1600px) {
.align-self-xl-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    }
.align-self-xl-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
    }
.align-self-xl-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
    }
.align-self-xl-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    }
.align-self-xl-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
    }
}

.ev-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }
@media (min-width: 600px) {
.ev-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }
}

@media (min-width: 960px) {
.ev-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }
}

@media (min-width: 1200px) {
.ev-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }
}

@media (min-width: 1600px) {
.ev-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }
}

/* Resaved 20/01/2022 */
.flex-column-card {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    }
.flex-column-card > *:last-child {
    margin-top: auto;
    }
.img-fluid {
    max-width: 100%;
    height: auto;
    }
.h-100 {
    height: 100%;
    }

/* Add class to an ev-container or ev-block class element to remove vertical padding */
.no-vertical-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    }

/* Generally used on last element within h-100 elements when you require bottom alignment */
.mt-auto {
    margin-top: auto;
    }

/* xs */
.xs-left {
    text-align: left;
    }
.xs-center {
    text-align: center;
    }
.xs-right {
    text-align: right;
    }

/* Visibility helpers for use on ev-block */
.xs-hide {
    display: none !important;
    }
.xs-show {
    display: block !important;
    }
.xs-show-inline {
    display: inline-block !important;
    }
.xs-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }

/* Spacers */
.mb-xs-0 {
    margin-bottom: 0;
    }
.mt-xs-0 {
    margin-top: 0;
    }
.mb-xs-1 {
    margin-bottom: .25rem;
    }
.mt-xs-1 {
    margin-top: .25rem;
    }
.mb-xs-2 {
    margin-bottom: .5rem;
    }
.mt-xs-2 {
    margin-top: .5rem;
    }
.mb-xs-3 {
    margin-bottom: 1rem;
    }
.mt-xs-3 {
    margin-top: 1rem;
    }
.mb-xs-4 {
    margin-bottom: 1.5rem;
    }
.mt-xs-4 {
    margin-top: 1.5rem;
    }
.mb-xs-5 {
    margin-bottom: 3rem;
    }
.mt-xs-5 {
    margin-top: 3rem;
    }

/* sm */
@media only screen and (min-width: 600px) {
.sm-left {
    text-align: left;
    }
.sm-center {
    text-align: center;
    }
.sm-right {
    text-align: right;
    }
.sm-hide {
    display: none !important;
    }
.sm-show {
    display: block !important;
    }
.sm-show-inline {
    display: inline-block !important;
    }
.sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }

/* Spacers */
.mb-sm-0 {
    margin-bottom: 0;
    }
.mt-sm-0 {
    margin-top: 0;
    }
.mb-sm-1 {
    margin-bottom: .25rem;
    }
.mt-sm-1 {
    margin-top: .25rem;
    }
.mb-sm-2 {
    margin-bottom: .5rem;
    }
.mt-sm-2 {
    margin-top: .5rem;
    }
.mb-sm-3 {
    margin-bottom: 1rem;
    }
.mt-sm-3 {
    margin-top: 1rem;
    }
.mb-sm-4 {
    margin-bottom: 1.5rem;
    }
.mt-sm-4 {
    margin-top: 1.5rem;
    }
.mb-sm-5 {
    margin-bottom: 3rem;
    }
.mt-sm-5 {
    margin-top: 3rem;
    }
}

/* md */
@media only screen and (min-width: 960px) {
.md-left {
    text-align: left;
    }
.md-center {
    text-align: center;
    }
.md-right {
    text-align: right;
    }
.md-hide {
    display: none !important;
    }
.md-show {
    display: block !important;
    }
.md-show-inline {
    display: inline-block !important;
    }
.md-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }

/* Spacers */
.mb-md-0 {
    margin-bottom: 0;
    }
.mt-md-0 {
    margin-top: 0;
    }
.mb-md-1 {
    margin-bottom: .25rem;
    }
.mt-md-1 {
    margin-top: .25rem;
    }
.mb-md-2 {
    margin-bottom: .5rem;
    }
.mt-md-2 {
    margin-top: .5rem;
    }
.mb-md-3 {
    margin-bottom: 1rem;
    }
.mt-md-3 {
    margin-top: 1rem;
    }
.mb-md-4 {
    margin-bottom: 1.5rem;
    }
.mt-md-4 {
    margin-top: 1.5rem;
    }
.mb-md-5 {
    margin-bottom: 3rem;
    }
.mt-md-5 {
    margin-top: 3rem;
    }
}

/* lg */
@media only screen and (min-width: 1200px) {
.lg-left {
    text-align: left;
    }
.lg-center {
    text-align: center;
    }
.lg-right {
    text-align: right;
    }
.lg-hide {
    display: none !important;
    }
.lg-show {
    display: block !important;
    }
.lg-show-inline {
    display: inline-block !important;
    }
.lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }

/* Spacers */
.mb-lg-0 {
    margin-bottom: 0;
    }
.mt-lg-0 {
    margin-top: 0;
    }
.mb-lg-1 {
    margin-bottom: .25rem;
    }
.mt-lg-1 {
    margin-top: .25rem;
    }
.mb-lg-2 {
    margin-bottom: .5rem;
    }
.mt-lg-2 {
    margin-top: .5rem;
    }
.mb-lg-3 {
    margin-bottom: 1rem;
    }
.mt-lg-3 {
    margin-top: 1rem;
    }
.mb-lg-4 {
    margin-bottom: 1.5rem;
    }
.mt-lg-4 {
    margin-top: 1.5rem;
    }
.mb-lg-5 {
    margin-bottom: 3rem;
    }
.mt-lg-5 {
    margin-top: 3rem;
    }
}

/* xl */
@media only screen and (min-width: 1600px) {
.xl-left {
    text-align: left;
    }
.xl-center {
    text-align: center;
    }
.xl-right {
    text-align: right;
    }
.xl-hide {
    display: none !important;
    }
.xl-show {
    display: block !important;
    }
.xl-show-inline {
    display: inline-block !important;
    }
.xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    }

/* Spacers */
.mb-xl-0 {
    margin-bottom: 0;
    }
.mt-xl-0 {
    margin-top: 0;
    }
.mb-xl-1 {
    margin-bottom: .25rem;
    }
.mt-xl-1 {
    margin-top: .25rem;
    }
.mb-xl-2 {
    margin-bottom: .5rem;
    }
.mt-xl-2 {
    margin-top: .5rem;
    }
.mb-xl-3 {
    margin-bottom: 1rem;
    }
.mt-xl-3 {
    margin-top: 1rem;
    }
.mb-xl-4 {
    margin-bottom: 1.5rem;
    }
.mt-xl-4 {
    margin-top: 1.5rem;
    }
.mb-xl-5 {
    margin-bottom: 3rem;
    }
.mt-xl-5 {
    margin-top: 3rem;
    }
}

/* Resaved 20/01/2022 */
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    }
.fixed {
    position: fixed !important;
    }
#klarna {
    background-color: #F5F3F4;
    border-radius: 16px;
    padding: 2rem 0;
    text-align: center;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/klarna-vertical-bg.png?v=1733740116);
    background-repeat: no-repeat;
    background-size: 100% 70%;
    background-position: center -80px;
    }
#klarna p {
    font-size: 18px;
    line-height: 27px;
    }
#klarna .flexible-payment {
    padding: 0 1rem;
    }
#klarna .flexible-payment h1,
#klarna .flexible-payment h2,
#klarna .flexible-payment h3,
#klarna .flexible-payment p {
    color: #FFF;
    }
#klarna .flexible-payment h2 {
    margin-bottom: 5px;
    }
#klarna .flexible-payment p {
    font-size: 20px;
    line-height: 30px;
    }
#klarna .flexible-payment-logos {
    margin-top: 1.5rem;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    }
#klarna .zero-percent-finance {
    padding: 0 1rem;
    }
#klarna .zero-percent-finance h3 {
    margin-bottom: 5px;
    }
#klarna .buy-now-pay-later {
    padding: 0 1rem;
    }
#klarna .buy-now-pay-later h3 {
    margin-bottom: 5px;
    }
#klarna .klarna-spacer {
    margin-top: 250px;
    }
#klarna.category {
    background-color: #FFF;
    }
#klarna.category .flexible-payment {
    padding-top: 1rem;
    }
#klarna.category .buy-now-pay-later {
    padding-top: 1rem;
    padding-bottom: 1rem;
    }

/* Small - sm - 600px */
@media all and (min-width: 600px) {
}

/* Medium - md - 960px */
@media all and (min-width: 960px) {
#klarna:not(.category) {
    padding: 0 2rem;
    text-align: left;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/klarna-horizontal-bg.png?v=1733740116);
    background-size: 45% 100%;
    background-position: left center;
    }
#klarna:not(.category) .flexible-payment {
    padding: 3rem 1rem;
    }
#klarna:not(.category) .zero-percent-finance {
    padding: 0;
    }
#klarna:not(.category) .buy-now-pay-later {
    padding: 0;
    }
#klarna:not(.category) .klarna-spacer {
    margin-top: 0;
    }
}

/* Large - lg - 1200px */
@media all and (min-width: 1200px) {
}

/* Extra Large - xl - 1600px */
@media all and (min-width: 1600px) {
}

#fleet-services {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/fleet-services-bg.png?v=1733740116);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 8rem;
    }
#fleet-services img.fleet-services-image {
    position: absolute;
    bottom: 0;
    right: 0;
    }
#fleet-services #fleet-services-content {
    padding: 2rem 1rem 2rem 3rem;
    }
#fleet-services #fleet-services-content h2 {
    color: #FFF;
    }
#fleet-services #fleet-services-content h2 span {
    font-weight: 400;
    }
#fleet-services #fleet-services-content p {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    }
#fleet-services #fleet-services-content ul.list-with-icons {
    padding-left: 0;
    list-style-type: none;
    }
#fleet-services #fleet-services-content ul.list-with-icons li {
    padding-left: 2.5rem;
    color: #FFF;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-list-item.svg?v=1733740115);
    background-repeat: no-repeat;
    background-position: left top;
    }
#fleet-services #fleet-services-content ul.list-with-icons li:before {
    content: none;
    }
@media all and (min-width: 960px) {
#fleet-services {
    padding-bottom: 0;
    }
#fleet-services img.fleet-services-image {
    bottom: 15%;
    right: -15%;
    }
}

@media all and (min-width: 1200px) {
#fleet-services img.fleet-services-image {
    bottom: 10%;
    right: -10%;
    }
}

@media all and (min-width: 1600px) {
#fleet-services img.fleet-services-image {
    bottom: 0;
    }
}

#fitting-services {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/fleet-services-bg.png?v=1733740116);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 8rem;
    }
#fitting-services img.fitting-services-image {
    position: absolute;
    bottom: 0;
    left: 60%;
    }
#fitting-services #fitting-services-content {
    padding: 2rem 3rem 2rem 3rem;
    }
#fitting-services #fitting-services-content h2 {
    color: #FFF;
    }
#fitting-services #fitting-services-content h2 span {
    color: #1FA7FF;
    }
#fitting-services #fitting-services-content p {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    }
#fitting-services.category {
    border-radius: 16px;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/fleet-services-bg.png?v=1733740116);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
#fitting-services.category #fitting-services-content {
    padding: 2rem 3rem 2rem 3rem;
    }
#fitting-services.category #fitting-services-content h2 {
    color: #FFF;
    }
#fitting-services.category #fitting-services-content h2 span {
    color: #1FA7FF;
    }
#fitting-services.category #fitting-services-content p {
    color: #FFF;
    font-size: 20px;
    line-height: 30px;
    }
@media all and (min-width: 960px) {
#fitting-services {
    padding-bottom: 0;
    }
#fitting-services img.fitting-services-image {
    bottom: 15%;
    left: 70%;
    }
#fitting-services.category img.fitting-services-image {
    bottom: 0;
    left: 70%;
    }
}

@media all and (min-width: 1200px) {
#fitting-services img.fitting-services-image {
    bottom: 10%;
    left: 0;
    }
#fitting-services.category img.fitting-services-image {
    bottom: 0;
    left: 70%;
    }
#fitting-services #fitting-services-content {
    padding: 2rem 3rem 2rem 50%;
    }
}

@media all and (min-width: 1600px) {
#fitting-services img.fitting-services-image {
    bottom: 0;
    }
#fitting-services.category img.fitting-services-image {
    bottom: 0;
    left: 70%;
    }
}

#fleet-services a.white-link {
    position: relative;
    z-index: 2;
    }
#fitting-services a.white-link {
    position: relative;
    z-index: 2;
    }
a.white-link {
    display: inline-block;
    margin-top: 2rem;
    border: 2px solid #FFF;
    border-radius: 8px;
    color: #FFF;
    padding: .5rem 3rem .5rem 1rem;
    text-decoration: none;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-continue.svg?v=1733740115);
    background-repeat: no-repeat;
    background-position: 90% center;
    }

/*Klarna finance Partial */
.finance {
    margin-bottom: 1rem;
    }
.finance .ev-block {
    padding: .5rem 0;
    }
.finance .ev-block.finance-option:last-of-type {
    position: relative;
    z-index: 1;
    border-left: 1px solid #C7CCD1;
    padding-left: 2rem;
    }
.finance .ev-block.finance-option:last-of-type span.or {
    display: inline-block;
    position: absolute;
    z-index: 2;
    width: 14px;
    height: 16px;
    top: 35%;
    left: -7px;
    background: #FFF;
    font-size: 14px;
    line-height: 14px;
    }
.finance .ev-block span:not(.or) {
    display: block;
    font-size: 14px;
    }
.finance .ev-block span.price-value {
    display: inline;
    font-size: 24px;
    }
.finance .ev-block span.price-value.was-price,
.finance .ev-block span.price-value.rrp-price {
    font-size: 14px;
    }
.finance .ev-block span.price-suffix {
    display: inline;
    font-weight: 400;
    }
.finance .ev-block span.price-header {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    }
@media all and (min-width: 600px) {
.finance .ev-block.finance-option {
    position: relative;
    z-index: 1;
    border-left: 1px solid #C7CCD1;
    padding-left: 2rem;
    }
.finance .ev-block.finance-option span.or {
    display: inline-block;
    position: absolute;
    z-index: 2;
    width: 14px;
    height: 16px;
    top: 35%;
    left: -7px;
    background: #FFF;
    font-size: 14px;
    line-height: 14px;
    }
}

@media all and (min-width: 960px) {
.finance .ev-block.finance-option {
    border-left: none;
    padding-left: 0;
    }
.finance .ev-block.finance-option:last-of-type {
    border-left: 1px solid #C7CCD1;
    padding-left: 2rem;
    }
.finance .ev-block.finance-option:last-of-type span.or {
    top: 35%;
    left: -7px;
    }
}

@media all and (min-width: 1600px) {
.finance .ev-block.finance-option {
    border-top: none;
    border-left: 1px solid #C7CCD1;
    padding-left: 2rem;
    padding-top: 0;
    }
.finance .ev-block.finance-option span.or {
    top: 35%;
    left: -7px;
    }
}

.pricing .price-value.offer {
    color: #EB1C66;
    }
#page-header #header-links {
    padding-left: 0;
    padding-right: 0;
    }
.author .author-details {
    padding-left: 0;
    }
#evAuthLoginScreen,
#evAuthRegisterScreen,
#evAuthForgottenScreen {
    max-width: 600px;
    }
#evAuthActions {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.searchResultDetails h5,
.searchResultDetails .title {
    margin: 0;
    font-size: 1rem;
    }
.searchResultDetails .sku,
.searchResultDetails .blurb {
    font-size: .875rem;
    }
.main .pagination {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    }
.bodyContainer .bodyContainer {
    padding: 1rem 0;
    }
.slider-arrows-container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    }
.slider-arrows-container button {
    border: none;
    background: none;
    outline: 0;
    }
.slider-arrows-container button svg path,
.slider-arrows-container button svg line {
    stroke: #001C42;
    }
.slider-arrows-container button .slider-prev {
    cursor: pointer;
    display: inline-block;
    margin-right: 15px;
    }
.slider-arrows-container button .slider-prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    }
.slider-arrows-container button .slider-next {
    cursor: pointer;
    display: inline-block;
    }
.slider-arrows-container button.disabled svg {
    opacity: .25;
    }
.slider-arrows-container button.disabled .slider-prev {
    cursor: default;
    }
.slider-arrows-container button.disabled .slider-next {
    cursor: default;
    }
#sub-nav-slider .ev-container {
    position: relative;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container button {
    border: none;
    background: none;
    outline: 0;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container button svg path,
#sub-nav-slider .ev-container #subnav-slider-arrows-container button svg line {
    stroke: #001C42;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container button.disabled {
    cursor: default;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container button.disabled svg {
    opacity: .25;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container #subnav-slider-prev {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container #subnav-slider-prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container #subnav-slider-next {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    }
@media all and (min-width: 600px) {
#sub-nav-slider .ev-container #subnav-slider-arrows-container #subnav-slider-prev {
    left: -30px;
    }
#sub-nav-slider .ev-container #subnav-slider-arrows-container #subnav-slider-next {
    right: -30px;
    }
}

@media all and (min-width: 1600px) {
#sub-nav .vat {
    position: relative;
    top: 4px;
    }
}

/*
    Pagination (Category & Blog)
*/
.evPagination .evButton {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    }
.evPagination .evButton.active {
    border-bottom: none;
    background-color: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.homeBlogSlideshow .owl-stage,
.categoryProductSlideshow .owl-stage,
.productSlideshow .owl-stage {
    margin-left: -50px;
    }
@media (min-width: 600px) {
.homeBlogSlideshow .owl-stage,
.categoryProductSlideshow .owl-stage,
.productSlideshow .owl-stage {
    margin-left: 0;
    }
}

.add-to-cart-button {
    border-radius: 3px;
    position: relative;
    }
.add-to-cart-button span {
    padding-left: 50px !important;
    }
.add-to-cart-button span:before {
    position: absolute;
    top: 6px;
    right: 90px;
    content: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-white-cart.svg?v=1733740115);
    }
#wrapper-newsletter #mc_embed_signup_scroll {
    position: relative;
    }
#wrapper-newsletter #mc_embed_signup_scroll input {
    border-radius: 20px;
    border: 2px solid #AEB5BC;
    width: 100%;
    padding: 5px 14px;
    }
#wrapper-newsletter #mc_embed_signup_scroll #mc-embedded-subscribe {
    position: absolute;
    width: 32px;
    height: 100%;
    top: 0;
    right: 0;
    border: none;
    background-color: transparent;
    background-image: url(/portal/web/960/theme/kuda-v5/common/images/icons/icon-search-continue.svg?v=1733740115);
    background-position: center center;
    }
.quickSearchResults {
    -webkit-box-shadow: 0 12px 20px 0 rgba(0,0,0,.2);
    box-shadow: 0 12px 20px 0 rgba(0,0,0,.2);
    }

/* Resaved 20/01/2022 */
.evCartLines tr.evCartLine {
    font-size: .875rem;
    }
.evCartLines tr.evCartLine h3,
.evCartLines tr.evCartLine .title {
    margin: 0;
    font-size: 1rem;
    }
.evCartLines tr.evCartLine .image img {
    width: 64px;
    max-width: 64px;
    }
.evCartLines tr.evCartLine a.cancel {
    background: /*style.alternate_background_color(*/#F8FAFB/*)*/;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: inherit;
    }
.evCartLines tr.evCartLine a.cancel:hover,
.evCartLines tr.evCartLine a.cancel:focus {
    background-color: /*style.primary(*/#18af37/*)*/;
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.evCartLines tr.evCartLine td.remove {
    width: 2rem;
    }
.evCartTotals .total .price {
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/;
    }
.ev-cart-attributes {
    margin-bottom: -16px;
    }
#evCartScreen .evCartTotals {
    margin-top: 2rem;
    margin-bottom: 2rem;
    }
#evCheckoutDetails .doublepad,
#evCheckoutDetails .doublepadh {
    padding: 0;
    }
#evCheckoutDetails .headerContainer {
    padding: 0;
    }
#evCheckoutDetails form > .gridContainer,
#evAccountScreen form > .gridContainer {
    padding: 1.5rem;
    margin: -3rem;
    }
#evCheckoutDetails form > .gridContainer > .grid1of2,
#evCheckoutDetails form > .gridContainer > .grid1of3,
#evCheckoutDetails form > .gridContainer > .grid2of3,
#evAccountScreen form > .gridContainer > .grid1of2,
#evAccountScreen form > .gridContainer > .grid1of3,
#evAccountScreen form > .gridContainer > .grid2of3 {
    padding: 1.5rem;
    }
#evCheckoutDetails #customerReference,
#evAccountScreen #customerReference {
    padding-top: 1.5rem;
    }
.evCheckoutSubscription .cell {
    vertical-align: middle !important;
    }
.evCheckoutSubscription .cell .label {
    padding: 0;
    }
.evCheckoutSubscription .subscriptionSubtitle {
    display: none;
    }
.evCheckoutSubscription .subscriptionDescription {
    opacity: 1 !important;
    }
.availablePostage .postage-title {
    font-family: /*style.heading_font_family(*/"Outfit"/*)*/,Helvetica,Arial,sans-serif;
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    color: /*style.heading_color(*/#001C42/*)*/;
    font-size: 1rem;
    }
.availablePostage .checkbox {
    width: 32px;
    }
@media only screen and (max-width: 1200px) {
.cell.regionsArea {
    display: block;
    width: 100%;
    }
.cell.zipArea {
    display: block;
    }
}

@media only screen and (max-width: 860px) {
.grid1of2 {
    width: 100%;
    }
}

@media only screen and (max-width: 650px) {
table.evCartlines {
    display: block;
    }
tr.evCartLine {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid /*style.border_color(*/#d7d9dc/*)*/;
    padding-bottom: 1rem;
    }
tr.evCartLine > td {
    border: 0;
    }
tr.evCartLine > td.remove {
    display: block;
    width: 40px;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    }
tr.evCartLine > td.image {
    display: block;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 80px;
    padding: 1rem 0;
    }
tr.evCartLine > td.image a {
    display: block;
    }
tr.evCartLine > td.description {
    display: block;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    display: block;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: calc(100% - 140px);
    padding-left: .5rem;
    }
tr.evCartLine > td.price {
    display: block;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    width: calc(100% - 100px);
    }
tr.evCartLine > td.discount {
    display: none;
    }
tr.evCartLine > td.qty {
    display: block;
    width: 100px;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
    }
tr.evCartLine > td.total {
    display: none;
    }
}

@media only screen and (max-width: 600px) {
#evCheckoutDetails form > .gridContainer,
#evAccountScreen form > .gridContainer {
    padding: 0;
    margin: -1.5rem;
    }
}

/* Resaved 20/01/2022 */
/*
 * mobile_viewport_width
 * desktop_viewport_width
 * mobile_display_font_size
 * mobile_display_line_height
 * desktop_display_font_size
 * desktop_display_line_height 
 * mobile_h1_font_size
 * mobile_h1_line_height
 * desktop_h1_font_size
 * desktop_h1_line_height
 * mobile_h2_font_size
 * mobile_h2_line_height
 * desktop_h2_font_size
 * desktop_h2_line_height
 * mobile_h3_font_size
 * mobile_h3_line_height
 * desktop_h3_font_size
 * desktop_h3_line_height
 * mobile_h4_font_size
 * mobile_h4_line_height
 * desktop_h4_font_size
 * desktop_h4_line_height
 * mobile_h5_font_size
 * mobile_h5_line_height
 * desktop_h5_font_size
 * desktop_h5_line_height
 * mobile_text_font_size
 * mobile_text_line_height
 * desktop_text_font_size
 * desktop_text_line_height 
 * mobile_subtitle_font_size
 * mobile_subtitle_line_height
 * desktop_subtitle_font_size
 * desktop_subtitle_line_height
 * mobile_small_text_font_size
 * mobile_small_text_line_height
 * desktop_small_text_font_size
 * desktop_small_text_line_height 
 */
h1,
h2,
h3,
h4,
.display-title {
    font-weight: /*style.heading_font_weight(*/700/*)*/;
    }
h5,
h6 {
    font-weight: /*style.strong_heading_font_weight(*/600/*)*/;
    }
.display-title {
    font-size: /*style.mobile_display_font_size_px(*/calc(/*style.mobile_display_font_size(*/28/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_display_line_height_px(*/calc(/*style.mobile_display_line_height(*/33.6/*)*/ * 1px)/*)*/;
    }
h1 {
    font-size: /*style.mobile_h1_font_size_px(*/calc(/*style.mobile_h1_font_size(*/22/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_h1_line_height_px(*/calc(/*style.mobile_h1_line_height(*/26.4/*)*/ * 1px)/*)*/;
    }
h2 {
    font-size: /*style.mobile_h2_font_size_px(*/calc(/*style.mobile_h2_font_size(*/20/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_h2_line_height_px(*/calc(/*style.mobile_h2_line_height(*/24/*)*/ * 1px)/*)*/;
    }
h3 {
    font-size: /*style.mobile_h3_font_size_px(*/calc(/*style.mobile_h3_font_size(*/18/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_h3_line_height_px(*/calc(/*style.mobile_h3_line_height(*/21.6/*)*/ * 1px)/*)*/;
    }
h4 {
    font-size: /*style.mobile_h4_font_size_px(*/calc(/*style.mobile_h4_font_size(*/16/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_h4_line_height_px(*/calc(/*style.mobile_h4_line_height(*/19.2/*)*/ * 1px)/*)*/;
    }
h5 {
    font-size: /*style.mobile_h5_font_size_px(*/calc(/*style.mobile_h5_font_size(*/15/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_h5_line_height_px(*/calc(/*style.mobile_h5_line_height(*/18/*)*/ * 1px)/*)*/;
    }

/*
 * h6 remains same at all viewport widths
 */
h6 {
    font-size: 14px;
    line-height: 16.8px;
    }
p {
    font-size: /*style.mobile_text_font_size_px(*/calc(/*style.mobile_text_font_size(*/15/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_text_line_height_px(*/calc(/*style.mobile_text_line_height(*/22.5/*)*/ * 1px)/*)*/;
    }
.subtitle {
    font-size: /*style.mobile_subtitle_font_size_px(*/calc(/*style.mobile_subtitle_font_size(*/18/*)*/ * 1px)/*)*/;
    line-height: /*style.mobile_subtitle_line_height_px(*/calc(/*style.mobile_subtitle_line_height(*/27/*)*/ * 1px)/*)*/;
    }
.small {
    font-size: /*style.mobile_small_text_font_size_px(*/calc(/*style.mobile_small_text_font_size(*/12/*)*/ * 1px)/*)*/ !important;
    line-height: /*style.mobile_small_text_line_height_px(*/calc(/*style.mobile_small_text_line_height(*/18/*)*/ * 1px)/*)*/;
    }
:root {
    --mobile_display_font_size_px: /*style.mobile_display_font_size_px(*/calc(/*style.mobile_display_font_size(*/28/*)*/ * 1px)/*)*/;
    --mobile_h1_font_size_px: /*style.mobile_h1_font_size_px(*/calc(/*style.mobile_h1_font_size(*/22/*)*/ * 1px)/*)*/;
    }
@media (min-width: /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) {
.display-title {
    font-size: calc(/*style.mobile_display_font_size_px(*/calc(/*style.mobile_display_font_size(*/28/*)*/ * 1px)/*)*/ + (/*style.desktop_display_font_size(*/48/*)*/ - /*style.mobile_display_font_size(*/28/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_display_line_height_px(*/calc(/*style.mobile_display_line_height(*/33.6/*)*/ * 1px)/*)*/ + (/*style.desktop_display_line_height(*/57.6/*)*/ - /*style.mobile_display_line_height(*/33.6/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
h1 {
    font-size: calc(var(--mobile_h1_font_size_px) + (/*style.desktop_h1_font_size(*/40/*)*/ - /*style.mobile_h1_font_size(*/22/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_h1_line_height_px(*/calc(/*style.mobile_h1_line_height(*/26.4/*)*/ * 1px)/*)*/ + (/*style.desktop_h1_line_height(*/48/*)*/ - /*style.mobile_h1_line_height(*/26.4/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
h2 {
    font-size: calc(/*style.mobile_h2_font_size_px(*/calc(/*style.mobile_h2_font_size(*/20/*)*/ * 1px)/*)*/ + (/*style.desktop_h2_font_size(*/32/*)*/ - /*style.mobile_h2_font_size(*/20/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_h2_line_height_px(*/calc(/*style.mobile_h2_line_height(*/24/*)*/ * 1px)/*)*/ + (/*style.desktop_h2_line_height(*/38.4/*)*/ - /*style.mobile_h2_line_height(*/24/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
h3 {
    font-size: calc(/*style.mobile_h3_font_size_px(*/calc(/*style.mobile_h3_font_size(*/18/*)*/ * 1px)/*)*/ + (/*style.desktop_h3_font_size(*/24/*)*/ - /*style.mobile_h3_font_size(*/18/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_h3_line_height_px(*/calc(/*style.mobile_h3_line_height(*/21.6/*)*/ * 1px)/*)*/ + (/*style.desktop_h3_line_height(*/28.8/*)*/ - /*style.mobile_h3_line_height(*/21.6/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
h4 {
    font-size: calc(/*style.mobile_h4_font_size_px(*/calc(/*style.mobile_h4_font_size(*/16/*)*/ * 1px)/*)*/ + (/*style.desktop_h4_font_size(*/18/*)*/ - /*style.mobile_h4_font_size(*/16/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_h4_line_height_px(*/calc(/*style.mobile_h4_line_height(*/19.2/*)*/ * 1px)/*)*/ + (/*style.desktop_h4_line_height(*/21.6/*)*/ - /*style.mobile_h4_line_height(*/19.2/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
h5 {
    font-size: calc(/*style.mobile_h5_font_size_px(*/calc(/*style.mobile_h5_font_size(*/15/*)*/ * 1px)/*)*/ + (/*style.desktop_h5_font_size(*/16/*)*/ - /*style.mobile_h5_font_size(*/15/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_h5_line_height_px(*/calc(/*style.mobile_h5_line_height(*/18/*)*/ * 1px)/*)*/ + (/*style.desktop_h5_line_height(*/19.2/*)*/ - /*style.mobile_h5_line_height(*/18/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
p {
    font-size: calc(/*style.mobile_text_font_size_px(*/calc(/*style.mobile_text_font_size(*/15/*)*/ * 1px)/*)*/ + (/*style.desktop_text_font_size(*/16/*)*/ - /*style.mobile_text_font_size(*/15/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_text_line_height_px(*/calc(/*style.mobile_text_line_height(*/22.5/*)*/ * 1px)/*)*/ + (/*style.desktop_text_line_height(*/24/*)*/ - /*style.mobile_text_line_height(*/22.5/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
.subtitle {
    font-size: calc(/*style.mobile_subtitle_font_size_px(*/calc(/*style.mobile_subtitle_font_size(*/18/*)*/ * 1px)/*)*/ + (/*style.desktop_subtitle_font_size(*/20/*)*/ - /*style.mobile_subtitle_font_size(*/18/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    line-height: calc(/*style.mobile_subtitle_line_height_px(*/calc(/*style.mobile_subtitle_line_height(*/27/*)*/ * 1px)/*)*/ + (/*style.desktop_subtitle_line_height(*/30/*)*/ - /*style.mobile_subtitle_line_height(*/27/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
.small {
    font-size: calc(/*style.mobile_small_text_font_size_px(*/calc(/*style.mobile_small_text_font_size(*/12/*)*/ * 1px)/*)*/ + (/*style.desktop_small_text_font_size(*/14/*)*/ - /*style.mobile_small_text_font_size(*/12/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/))) !important;
    line-height: calc(/*style.mobile_small_text_line_height_px(*/calc(/*style.mobile_small_text_line_height(*/18/*)*/ * 1px)/*)*/ + (/*style.desktop_small_text_line_height(*/21/*)*/ - /*style.mobile_small_text_line_height(*/18/*)*/) * ((100vw - /*style.mobile_viewport_width_px(*/calc(/*style.mobile_viewport_width(*/375/*)*/ * 1px)/*)*/) / (/*style.desktop_viewport_width(*/1440/*)*/ - /*style.mobile_viewport_width(*/375/*)*/)));
    }
}

@media (min-width: /*style.desktop_viewport_width_px(*/calc(/*style.desktop_viewport_width(*/1440/*)*/ * 1px)/*)*/) {
.display-title {
    font-size: /*style.desktop_display_font_size_px(*/calc(/*style.desktop_display_font_size(*/48/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_display_line_height_px(*/calc(/*style.desktop_display_line_height(*/57.6/*)*/ * 1px)/*)*/;
    }
h1 {
    font-size: /*style.desktop_h1_font_size_px(*/calc(/*style.desktop_h1_font_size(*/40/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_h1_line_height_px(*/calc(/*style.desktop_h1_line_height(*/48/*)*/ * 1px)/*)*/;
    }
h2 {
    font-size: /*style.desktop_h2_font_size_px(*/calc(/*style.desktop_h2_font_size(*/32/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_h2_line_height_px(*/calc(/*style.desktop_h2_line_height(*/38.4/*)*/ * 1px)/*)*/;
    }
h3 {
    font-size: /*style.desktop_h3_font_size_px(*/calc(/*style.desktop_h3_font_size(*/24/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_h3_line_height_px(*/calc(/*style.desktop_h3_line_height(*/28.8/*)*/ * 1px)/*)*/;
    }
h4 {
    font-size: /*style.desktop_h4_font_size_px(*/calc(/*style.desktop_h4_font_size(*/18/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_h4_line_height_px(*/calc(/*style.desktop_h4_line_height(*/21.6/*)*/ * 1px)/*)*/;
    }
h5 {
    font-size: /*style.desktop_h5_font_size_px(*/calc(/*style.desktop_h5_font_size(*/16/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_h5_line_height_px(*/calc(/*style.desktop_h5_line_height(*/19.2/*)*/ * 1px)/*)*/;
    }
p {
    font-size: /*style.desktop_text_font_size_px(*/calc(/*style.desktop_text_font_size(*/16/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_text_line_height_px(*/calc(/*style.desktop_text_line_height(*/24/*)*/ * 1px)/*)*/;
    }
.subtitle {
    font-size: /*style.desktop_subtitle_font_size_px(*/calc(/*style.desktop_subtitle_font_size(*/20/*)*/ * 1px)/*)*/;
    line-height: /*style.desktop_subtitle_line_height_px(*/calc(/*style.desktop_subtitle_line_height(*/30/*)*/ * 1px)/*)*/;
    }
.small {
    font-size: /*style.desktop_small_text_font_size_px(*/calc(/*style.desktop_small_text_font_size(*/14/*)*/ * 1px)/*)*/ !important;
    line-height: /*style.desktop_small_text_line_height_px(*/calc(/*style.desktop_small_text_line_height(*/21/*)*/ * 1px)/*)*/;
    }
}

/* Resaved 20/01/2022 */
.image-container {
    padding-top: /*style.image_aspect_ratio(*/56.25%/*)*/;
    position: relative;
    }
.image-container .offer {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: #EB1C66;
    color: #FFF;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    }
.image-container img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    }
.image-container .content {
    position: absolute;
    bottom: 10%;
    left: 10%;
    }

/* Please note - this class should only be used to wrap HTML5 video tags */
.video-container {
    padding-top: /*style.banner_aspect_ratio(*/40%/*)*/;
    position: relative;
    min-height: 500px;
    }
.video-container video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    }
#banner {
    position: relative;
    min-height: 500px;
    width: 100%;
    }
#banner .image-container {
    min-height: 500px;
    }
#banner .content-container {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    text-align: center;
    }
#banner .content-container .display-title,
#banner .content-container .eyebrow,
#banner .content-container p {
    color: #FFF;
    }
#banner .content-container p {
    font-size: 20px;
    line-height: 30px;
    }
#banner .content-container .evButton {
    margin-top: 2rem;
    padding: 1.5rem !important;
    color: #FFF !important;
    }
#banner .content-container .evButton svg {
    position: relative;
    top: 2px;
    left: 5px;
    }
#banner .events-content-container,
#banner .blog-content-container {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 3rem;
    }
#banner .events-content-container .evButton,
#banner .blog-content-container .evButton {
    margin: 1rem 0;
    }
#banner .light *:not(.evButton) {
    color: /*style.heading_color(*/#001C42/*)*/;
    }
#banner .dark *:not(.evButton) {
    color: /*style.text_color_on_primary(*/#FFF/*)*/;
    }
.image-container.banner-image {
    padding-top: /*style.banner_aspect_ratio(*/40%/*)*/;
    }
.image-container.category-card-img {
    padding-top: /*style.category_aspect_ratio(*/100%/*)*/;
    }
.image-container.product-card-img {
    padding-top: /*style.product_aspect_ratio(*/100%/*)*/;
    }
.image-container.blog-entry-card-image {
    padding-top: /*style.blog_entry_card_aspect_ratio(*/100%/*)*/;
    }
.image-container.blog-entry-image {
    padding-top: /*style.blog_entry_aspect_ratio(*/56.25%/*)*/;
    margin-bottom: 3rem;
    margin-top: 3rem;
    }
.image-container.event-card-img {
    padding-top: /*style.event_card_aspect_ratio(*/100%/*)*/;
    }
.image-container.event-image {
    padding-top: /*style.event_aspect_ratio(*/56.25%/*)*/;
    }
.image-container.avatar {
    padding-top: 100%;
    }
